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
26
27
28
29
30
31
32
33
package cn.iocoder.yudao.module.hrm.controller.admin.performanceappraise.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotEmpty;
import lombok.Data;
 
/**
 * HRM 绩效考核方案 保存 Request VO
 */
@Schema(description = "HRM 绩效考核方案 - 保存 Request VO")
@Data
public class HrmPerformanceAppraiseSaveReqVO {
 
    @Schema(description = "编号(修改时必填)", example = "1")
    private Long id;
 
    @Schema(description = "方案名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "8月绩效考核")
    @NotEmpty(message = "方案名称不能为空")
    private String name;
 
    @Schema(description = "考核周期类型: 1-月度 2-季度 3-年度", example = "1")
    private Integer periodType;
 
    @Schema(description = "考核周期描述, 如 2026-08", example = "2026-08")
    private String period;
 
    @Schema(description = "考核范围类型: 1-全部员工 2-指定班组", example = "1")
    private Integer scopeType;
 
    @Schema(description = "备注")
    private String remark;
 
}