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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package cn.iocoder.yudao.module.hrm.controller.admin.performanceappraise.vo;
 
import cn.iocoder.yudao.framework.excel.core.annotations.DictFormat;
import cn.iocoder.yudao.framework.excel.core.convert.DictConvert;
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
import cn.idev.excel.annotation.ExcelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
 
/**
 * HRM 绩效考核方案 Response VO
 */
@Schema(description = "HRM 绩效考核方案 Response VO")
@Data
@ExcelIgnoreUnannotated
public class HrmPerformanceAppraiseRespVO {
 
    @Schema(description = "编号", example = "1")
    @ExcelProperty("编号")
    private Long id;
 
    @Schema(description = "方案名称", example = "8月绩效考核")
    @ExcelProperty("方案名称")
    private String name;
 
    @Schema(description = "考核周期类型", example = "1")
    @ExcelProperty(value = "考核周期类型", converter = DictConvert.class)
    @DictFormat(cn.iocoder.yudao.module.hrm.enums.DictTypeConstants.HRM_PERFORMANCE_PERIOD_TYPE)
    private Integer periodType;
 
    @Schema(description = "考核周期描述", example = "2026-08")
    @ExcelProperty("考核周期")
    private String period;
 
    @Schema(description = "考核范围类型", example = "1")
    @ExcelProperty(value = "考核范围", converter = DictConvert.class)
    @DictFormat(cn.iocoder.yudao.module.hrm.enums.DictTypeConstants.HRM_PERFORMANCE_SCOPE_TYPE)
    private Integer scopeType;
 
    @Schema(description = "方案状态", example = "0")
    private Integer status;
 
    @Schema(description = "方案状态名称", example = "草稿")
    private String statusName;
 
    @Schema(description = "审批状态", example = "0")
    private Integer auditStatus;
 
    @Schema(description = "审批状态名称", example = "草稿")
    private String auditStatusName;
 
    @Schema(description = "审批流程实例编号")
    private String processInstanceId;
 
    @Schema(description = "审核人", example = "1")
    private Long auditUserId;
 
    @Schema(description = "审核时间")
    private LocalDateTime auditTime;
 
    @Schema(description = "审核备注")
    private String auditRemark;
 
    @Schema(description = "备注")
    @ExcelProperty("备注")
    private String remark;
 
    @Schema(description = "考核指标数", example = "5")
    private Integer itemCount;
 
    @Schema(description = "已评分人数", example = "3")
    private Integer resultCount;
 
    @Schema(description = "创建时间")
    @ExcelProperty("创建时间")
    private LocalDateTime createTime;
 
}