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
package cn.iocoder.yudao.module.hrm.controller.admin.performanceappraise.vo;
 
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
 
/**
 * HRM 绩效考核方案 分页 Request VO
 */
@Schema(description = "HRM 绩效考核方案 - 分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class HrmPerformanceAppraisePageReqVO extends PageParam {
 
    @Schema(description = "方案名称", example = "8月绩效考核")
    private String name;
 
    @Schema(description = "考核周期类型", example = "1")
    private Integer periodType;
 
    @Schema(description = "方案状态", example = "0")
    private Integer status;
 
}