| | |
| | | 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; |
| | | |
| | |
| | | public class DocumentMaterialsVoSmall { |
| | | |
| | | |
| | | @Excel(name="序号") |
| | | @Excel(name="序号",width = 5, headerColor = IndexedColors.BLACK, headerFontBold = true) |
| | | private Long num; |
| | | @Excel(name = "文件编号") |
| | | @Excel(name = "文件编号",width = 10, headerColor = IndexedColors.BLACK, headerFontBold = true) |
| | | private String documentNumber; |
| | | @Excel(name = "编任者") |
| | | @Excel(name = "责任者",width = 10, headerColor = IndexedColors.BLACK, headerFontBold = true) |
| | | private String creator; |
| | | @Excel(name = "文件题名") |
| | | @Excel(name = "文件题名",width = 36, headerColor = IndexedColors.BLACK, headerFontBold = true) |
| | | |
| | | private String title; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | |
| | | @Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @Excel(name = "日期", width = 12, dateFormat = "yyyy-MM-dd", headerColor = IndexedColors.BLACK, headerFontBold = true) |
| | | |
| | | private Date date; |
| | | @Excel(name = "页号") |
| | | @Excel(name = "页号",width = 10, headerColor = IndexedColors.BLACK, headerFontBold = true) |
| | | |
| | | private Long pageNumber; |
| | | @Excel(name = "备注") |
| | | @Excel(name = "备注",width = 10, headerColor = IndexedColors.BLACK, headerFontBold = true) |
| | | private String remarks; |
| | | |
| | | public DocumentMaterialsVoSmall(Long num, String documentNumber, String creator, String title, Date date, Long pageNumber, String remarks) { |