xiaoyi
4 天以前 c9d4ba37c1f681b12e24014013fa9a28734bad42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package cn.iocoder.yudao.module.hrm.controller.admin.performanceappraise.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotNull;
import lombok.Data;
 
/**
 * HRM 绩效考核方案 审批 Request VO
 */
@Schema(description = "HRM 绩效考核方案 - 审批 Request VO")
@Data
public class HrmPerformanceAppraiseAuditReqVO {
 
    @Schema(description = "方案编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    @NotNull(message = "方案编号不能为空")
    private Long id;
 
    @Schema(description = "审批结果(20 通过 / 30 驳回)", requiredMode = Schema.RequiredMode.REQUIRED, example = "20")
    @NotNull(message = "审批结果不能为空")
    private Integer auditStatus;
 
    @Schema(description = "审批备注", example = "同意发布")
    private String remark;
 
}