| | |
| | | package com.yuanchu.mom.excel; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.yuanchu.mom.pojo.FeStandardSubstance; |
| | | import lombok.Data; |
| | |
| | | @ExcelProperty("存放位置") |
| | | private String position; |
| | | |
| | | @ExcelProperty("借调状态") |
| | | @ExcelIgnore |
| | | private Integer state; |
| | | |
| | | @ExcelProperty("借调状态") |
| | | private String stateName; |
| | | |
| | | @ExcelProperty("备注") |
| | | private String remark; |
| | | |
| | | @ExcelProperty("创建人") |
| | | private String createUser; |
| | | |
| | | @ExcelProperty("创建日期") |
| | | private LocalDateTime createTime; |
| | | |
| | | } |