| | |
| | | import cn.idev.excel.annotation.ExcelProperty; |
| | | import cn.iocoder.yudao.framework.excel.core.annotations.DictFormat; |
| | | import cn.iocoder.yudao.framework.excel.core.convert.DictConvert; |
| | | import cn.iocoder.yudao.module.system.api.storage.dto.StorageBlobRespDTO; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | |
| | | @ExcelProperty("部门名称") |
| | | private String deptName; |
| | | |
| | | @Schema(description = "岗位ID") |
| | | private Long postId; |
| | | @Schema(description = "岗位ID列表") |
| | | private List<Long> postIds; |
| | | |
| | | @Schema(description = "岗位名称") |
| | | @Schema(description = "岗位名称列表") |
| | | @ExcelProperty("岗位名称") |
| | | private String postName; |
| | | private String postNames; |
| | | |
| | | @Schema(description = "员工姓名") |
| | | @ExcelProperty("员工姓名") |
| | |
| | | @DictFormat("hrm_employee_status") |
| | | private Integer employeeStatus; |
| | | |
| | | @Schema(description = "员工类别") |
| | | @ExcelProperty(value = "员工类别", converter = DictConvert.class) |
| | | @DictFormat("hrm_employee_category") |
| | | private Integer employeeCategory; |
| | | |
| | | @Schema(description = "年假余额(天)") |
| | | @ExcelProperty("年假余额") |
| | | private BigDecimal annualLeaveBalance; |
| | |
| | | @ExcelProperty("创建时间") |
| | | private LocalDateTime createTime; |
| | | |
| | | @Schema(description = "附件列表") |
| | | private List<StorageBlobRespDTO> attachmentList; |
| | | |
| | | } |