| | |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import org.dromara.common.excel.annotation.ExcelDictFormat; |
| | | import org.dromara.common.excel.convert.ExcelDictConvert; |
| | | import org.dromara.system.domain.SysPost; |
| | | import io.github.linpeilie.annotations.AutoMapper; |
| | | import lombok.Data; |
| | | import org.dromara.common.excel.annotation.ExcelDictFormat; |
| | | import org.dromara.common.excel.convert.ExcelDictConvert; |
| | | import org.dromara.common.translation.annotation.Translation; |
| | | import org.dromara.common.translation.constant.TransConstant; |
| | | import org.dromara.system.domain.SysPost; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 岗位信息视图对象 sys_post |
| | |
| | | private Long postId; |
| | | |
| | | /** |
| | | * 部门id |
| | | */ |
| | | @ExcelProperty(value = "部门id") |
| | | private Long deptId; |
| | | |
| | | /** |
| | | * 岗位编码 |
| | | */ |
| | | @ExcelProperty(value = "岗位编码") |
| | |
| | | */ |
| | | @ExcelProperty(value = "岗位名称") |
| | | private String postName; |
| | | |
| | | /** |
| | | * 岗位类别编码 |
| | | */ |
| | | @ExcelProperty(value = "类别编码") |
| | | private String postCategory; |
| | | |
| | | /** |
| | | * 显示顺序 |
| | |
| | | @ExcelProperty(value = "创建时间") |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * 部门名 |
| | | */ |
| | | @Translation(type = TransConstant.DEPT_ID_TO_NAME, mapper = "deptId") |
| | | private String deptName; |
| | | |
| | | } |