| | |
| | | @Excel(name = "日期", width = 10, dateFormat = "yyyy-MM-dd", height = 10,headerColor = IndexedColors.BLACK, headerBackgroundColor = IndexedColors.WHITE) |
| | | |
| | | private Date date; |
| | | @Excel(name = "页号", height = 10,width = 10,headerColor = IndexedColors.RED, headerBackgroundColor = IndexedColors.WHITE) |
| | | |
| | | // 页号(原始数值,用于计算) |
| | | private Long pageNumber; |
| | | |
| | | // 格式化后的页号,用于显示范围,如"38-38"或"23-38" |
| | | @Excel(name = "页号", height = 10,width = 10,headerColor = IndexedColors.RED, headerBackgroundColor = IndexedColors.WHITE) |
| | | private String pageNumberFormatted; |
| | | @Excel(name = "备注", height = 20,width=10,headerColor = IndexedColors.BLACK, headerBackgroundColor = IndexedColors.WHITE) |
| | | private String remarks; |
| | | |
| | |
| | | // @Excel(name = "图片", cellType = Excel.ColumnType.IMAGE) |
| | | // private String url; |
| | | } |
| | | |
| | | |
| | | |