| | |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * HRM 绩效考核方案 Response VO |
| | |
| | | @DictFormat(cn.iocoder.yudao.module.hrm.enums.DictTypeConstants.HRM_PERFORMANCE_SCOPE_TYPE) |
| | | private Integer scopeType; |
| | | |
| | | @Schema(description = "指定班组编号集合(scopeType=2 时生效,关联 MES 排班组)") |
| | | private List<Long> scopeTeamIds; |
| | | |
| | | @Schema(description = "方案状态", example = "0") |
| | | private Integer status; |
| | | |
| | |
| | | @Schema(description = "审批状态名称", example = "草稿") |
| | | private String auditStatusName; |
| | | |
| | | @Schema(description = "审批流程实例编号") |
| | | private String processInstanceId; |
| | | @Schema(description = "审核人用户编号", example = "1") |
| | | private Long reviewerId; |
| | | |
| | | @Schema(description = "审核人", example = "1") |
| | | private Long auditUserId; |
| | | @Schema(description = "审核人姓名", example = "李四") |
| | | private String reviewerName; |
| | | |
| | | @Schema(description = "审核时间") |
| | | private LocalDateTime auditTime; |
| | | private LocalDateTime reviewTime; |
| | | |
| | | @Schema(description = "审核备注") |
| | | private String auditRemark; |
| | | @Schema(description = "审核意见(审核通过时的意见 / 审核不通过时的原因)") |
| | | private String reviewRemark; |
| | | |
| | | @Schema(description = "备注") |
| | | @ExcelProperty("备注") |