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; }