| | |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.annotation.NumberFormatHandler; |
| | | import lombok.Data; |
| | | import org.apache.poi.ss.usermodel.IndexedColors; |
| | | |
| | | import java.util.Date; |
| | | @Data |
| | |
| | | |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "编任者") |
| | | @Excel(name = "编任者", headerColor = IndexedColors.BLACK) |
| | | private String creator; |
| | | |
| | | @Excel(name = "文件编号", headerColor = IndexedColors.BLACK) |
| | | private String documentNumber; |
| | | /** $column.columnComment */ |
| | | @Excel(name = "文件题名") |
| | | @Excel(name = "文件题名", headerColor = IndexedColors.BLACK) |
| | | private String title; |
| | | |
| | | /** $column.columnComment */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd", headerColor = IndexedColors.BLACK) |
| | | private Date date; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "页号", handler = NumberFormatHandler.class) |
| | | @Excel(name = "页号", handler = NumberFormatHandler.class, headerColor = IndexedColors.BLACK) |
| | | private Long pageNumber; |
| | | |
| | | @Excel(name = "材料类型", headerColor = IndexedColors.BLACK) |
| | | private String fileStyle; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "所处阶段") |
| | | @Excel(name = "所处阶段", headerColor = IndexedColors.BLACK) |
| | | private String stage; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "公开属性") |
| | | @Excel(name = "公开属性", headerColor = IndexedColors.BLACK) |
| | | private String publicity; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "是否为附件附图") |
| | | @Excel(name = "是否为附件附图", headerColor = IndexedColors.BLACK) |
| | | private String isAttachment; |
| | | |
| | | /** $column.columnComment */ |
| | |
| | | private String isDiagram; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "保管期限") |
| | | @Excel(name = "保管期限", headerColor = IndexedColors.BLACK) |
| | | private String retentionPeriod; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "密级", readConverterExp = "该页另存=普通,普通=普通,内部用图=内部用图,内部用途=内部用途,秘密=秘密") |
| | | @Excel(name = "密级", readConverterExp = "该页另存=普通,普通=普通,内部用图=内部用图,内部用途=内部用途,秘密=秘密", headerColor = IndexedColors.BLACK) |
| | | private String securityLevel; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "是否涉密及敏感信息") |
| | | @Excel(name = "是否涉密及敏感信息", headerColor = IndexedColors.BLACK) |
| | | private String isSensitive; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "是否注销") |
| | | @Excel(name = "是否注销", headerColor = IndexedColors.BLACK) |
| | | private String isCanceled; |
| | | |
| | | |