| | |
| | | package com.ycl.platform.domain.excel; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.format.DateTimeFormat; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | |
| | | @ExcelProperty("运维结束时间") |
| | | private Date endTime; |
| | | |
| | | @ExcelIgnore |
| | | private Boolean provinceTag; |
| | | |
| | | @ExcelProperty("是否省厅标签") |
| | | private String provinceTagString; |
| | | |
| | | @ExcelIgnore |
| | | private Boolean importantTag; |
| | | |
| | | @ExcelProperty("是否重点点位") |
| | | private String importantTagString; |
| | | |
| | | @ExcelIgnore |
| | | private Boolean importantCommandImageTag; |
| | | |
| | | @ExcelProperty("是否重点指挥图像") |
| | | private String importantCommandImageTagString; |
| | | } |