| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import lombok.Data; |
| | | import org.apache.poi.ss.usermodel.IndexedColors; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | private String inquiryNumber; |
| | | |
| | | private String caseTitle; |
| | | @Excel(name="序号") |
| | | @Excel(name="序号", headerColor = IndexedColors.BLACK) |
| | | private Long num; |
| | | @Excel(name = "文件编号") |
| | | @Excel(name = "文件编号", headerColor = IndexedColors.BLACK) |
| | | private String documentNumber; |
| | | |
| | | @Excel(name = "文件题名") |
| | | @Excel(name = "文件题名", headerColor = IndexedColors.BLACK) |
| | | private String title; |
| | | |
| | | |
| | | @Excel(name = "页号") |
| | | @Excel(name = "页号", headerColor = IndexedColors.BLACK) |
| | | private Long pageNumber; |
| | | |
| | | @Excel(name = "是否有其他介质") |
| | | @Excel(name = "是否有其他介质", headerColor = IndexedColors.BLACK) |
| | | private String fileStyle1; |
| | | |
| | | @Excel(name = "文件类型") |
| | | @Excel(name = "文件类型", headerColor = IndexedColors.BLACK) |
| | | private String fileStyle; |
| | | @Excel(name = "保管期限") |
| | | @Excel(name = "保管期限", headerColor = IndexedColors.BLACK) |
| | | private String retentionPeriod; |
| | | @Excel(name = "公开属性") |
| | | @Excel(name = "公开属性", headerColor = IndexedColors.BLACK) |
| | | private String publicity; |
| | | @Excel(name = "备注") |
| | | @Excel(name = "备注", headerColor = IndexedColors.BLACK) |
| | | private String remarks; |
| | | } |