| | |
| | | public class DocumentMaterialsVo { |
| | | |
| | | |
| | | @Excel(name="序号") |
| | | @Excel(name="序号", height = 10,width=10) |
| | | private Long num; |
| | | @Excel(name = "文件编号") |
| | | @Excel(name = "文件编号", height = 10, width=15) |
| | | private String documentNumber; |
| | | @Excel(name = "编任者") |
| | | @Excel(name = "责任者", height = 10, width=10) |
| | | private String creator; |
| | | @Excel(name = "文件题名") |
| | | @Excel(name = "文件题名", height = 20) |
| | | |
| | | private String title; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | |
| | | @Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @Excel(name = "日期", width = 10, dateFormat = "yyyy-MM-dd", height = 10) |
| | | |
| | | private Date date; |
| | | @Excel(name = "页号") |
| | | @Excel(name = "页号", height = 10,width = 10) |
| | | |
| | | private Long pageNumber; |
| | | @Excel(name = "备注") |
| | | @Excel(name = "备注", height = 20) |
| | | private String remarks; |
| | | |
| | | @Excel(name = "档号") |
| | | @Excel(name = "档号", height = 10) |
| | | private String recordId; |
| | | @Excel(name = "公开属性") |
| | | @Excel(name = "公开属性", height = 10) |
| | | private String publicity; |
| | | |
| | | |