| File was renamed from src/main/java/org/springblade/modules/assessment/excel/AssessmentSetDeptExcel.java |
| | |
| | | |
| | | |
| | | /** |
| | | * 考核权重-部门 Excel实体类 |
| | | * 考核任务考核人 Excel实体类 |
| | | * |
| | | * @author aix |
| | | * @since 2023-12-12 |
| | | * @author Aix |
| | | * @since 2024-01-02 |
| | | */ |
| | | @Data |
| | | @ColumnWidth(25) |
| | | @HeadRowHeight(20) |
| | | @ContentRowHeight(18) |
| | | public class AssessmentSetDeptExcel implements Serializable { |
| | | public class AssessmentSetAssessorExcel implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | |
| | | @ExcelProperty("租户ID") |
| | | private String tenantId; |
| | | /** |
| | | * 被考核人 |
| | | * 被考核人表id |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("被考核人") |
| | | private Long deptId; |
| | | @ExcelProperty("被考核人表id") |
| | | private Long assessmentSetId; |
| | | /** |
| | | * 考核人 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("考核人") |
| | | private Long toUserId; |
| | | private Long userId; |
| | | /** |
| | | * 考核人名称 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("考核人名称") |
| | | private String userName; |
| | | /** |
| | | * 考核人部门id |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("考核人部门id") |
| | | private Long deptId; |
| | | /** |
| | | * 考核人部门名称 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("考核人部门名称") |
| | | private String deptName; |
| | | /** |
| | | * 考核人职位名称 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("考核人职位名称") |
| | | private String postName; |
| | | /** |
| | | * 权值 |
| | | */ |