1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| package com.ruoyi.domain.vo;
|
| import com.fasterxml.jackson.annotation.JsonFormat;
| import com.ruoyi.common.annotation.Excel;
| import lombok.Data;
|
| import java.util.Date;
|
| @Data
| public class DocumentMaterialsVo {
| @Excel(name = "编任者")
| private String creator;
| @Excel(name = "文件题名")
|
| private String title;
|
| @JsonFormat(pattern = "yyyy-MM-dd")
|
| @Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd")
|
| private Date date;
| @Excel(name = "页号")
|
| private Long pageNumber;
| @Excel(name = "备注")
|
| private String remarks;
| }
|
|