| | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.format.DateTimeFormat; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | | import com.alibaba.excel.annotation.write.style.ContentStyle; |
| | | import com.ycl.platform.domain.vo.DynamicColumnVO; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 点位导入导出 |
| | |
| | | */ |
| | | @Data |
| | | public class PointExport { |
| | | |
| | | private Integer id; |
| | | @ColumnWidth(50) |
| | | @ExcelProperty("点位名称(可修改)") |
| | | |
| | | private String pointName; |
| | | |
| | | @ColumnWidth(30) |
| | |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("是否部级标签(可修改)") |
| | | private String deptTag; |
| | | private String deptTagString; |
| | | |
| | | @ExcelIgnore |
| | | private Boolean deptTag; |
| | | @ExcelIgnore |
| | | private Boolean importantTag; |
| | | |
| | | // @ExcelProperty("是否重点点位") |
| | | // private String importantTagString; |
| | | @ExcelProperty("是否重点点位") |
| | | private String importantTagString; |
| | | |
| | | @ExcelIgnore |
| | | private Boolean importantCommandImageTag; |
| | | |
| | | |
| | | private List<DynamicColumnVO> dynamicData; |
| | | } |