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