| File was renamed from src/main/java/org/springblade/modules/evaluate/excel/EvaluateCandidateAssessorExcel.java |
| | |
| | | package org.springblade.modules.evaluate.excel; |
| | | |
| | | |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | | import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
| | | import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | |
| | | /** |
| | | * 候选人评定表 Excel实体类 |
| | | * 评优任务推荐人员表 Excel实体类 |
| | | * |
| | | * @author Aix |
| | | * @since 2023-12-29 |
| | | * @author aix |
| | | * @since 2024-01-05 |
| | | */ |
| | | @Data |
| | | @ColumnWidth(25) |
| | | @HeadRowHeight(20) |
| | | @ContentRowHeight(18) |
| | | public class EvaluateCandidateAssessorExcel implements Serializable { |
| | | public class EvaluateTaskReferrerExcel implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | |
| | | @ExcelProperty("租户ID") |
| | | private String tenantId; |
| | | /** |
| | | * 候选人表id |
| | | * 评优任务id |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("候选人表id") |
| | | private Long evaluateCandidateId; |
| | | @ExcelProperty("评优任务id") |
| | | private Long evaluateTaskId; |
| | | /** |
| | | * 评定人id |
| | | * 被推荐人员id |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("评定人id") |
| | | @ExcelProperty("被推荐人员id") |
| | | private Long userId; |
| | | /** |
| | | * 评定人名称 |
| | | * 被推荐人员名称 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("评定人名称") |
| | | @ExcelProperty("被推荐人员名称") |
| | | private String userName; |
| | | /** |
| | | * 评定人部门id |
| | | * 被推荐人员部门id |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("评定人部门id") |
| | | @ExcelProperty("被推荐人员部门id") |
| | | private Long deptId; |
| | | /** |
| | | * 评定人部门名称 |
| | | * 被推荐人员部门名称 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("评定人部门名称") |
| | | @ExcelProperty("被推荐人员部门名称") |
| | | private String deptName; |
| | | /** |
| | | * 评定人职位名称 |
| | | * 被推荐人员职位名称 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("评定人职位名称") |
| | | @ExcelProperty("被推荐人员职位名称") |
| | | private String postName; |
| | | /** |
| | | * 是否已删除 |