| | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * HRM 绩效考核方案 审批 Request VO |
| | | * HRM 绩效考核方案 审核 Request VO |
| | | */ |
| | | @Schema(description = "HRM 绩效考核方案 - 审批 Request VO") |
| | | @Schema(description = "HRM 绩效考核方案 - 审核 Request VO") |
| | | @Data |
| | | public class HrmPerformanceAppraiseAuditReqVO { |
| | | |
| | |
| | | @NotNull(message = "方案编号不能为空") |
| | | private Long id; |
| | | |
| | | @Schema(description = "审批结果(20 通过 / 30 驳回)", requiredMode = Schema.RequiredMode.REQUIRED, example = "20") |
| | | @NotNull(message = "审批结果不能为空") |
| | | private Integer auditStatus; |
| | | @Schema(description = "是否通过:true=审核通过 / false=审核不通过", requiredMode = Schema.RequiredMode.REQUIRED, example = "true") |
| | | @NotNull(message = "请选择审核结果") |
| | | private Boolean pass; |
| | | |
| | | @Schema(description = "审批备注", example = "同意发布") |
| | | private String remark; |
| | | @Schema(description = "审核意见(通过时选填 / 不通过时必填)", example = "考核指标需补充说明") |
| | | private String reviewRemark; |
| | | |
| | | } |