fei
2025-09-16 fcc5194c1b671e76cb9054c9a14360139fe3be72
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.ruoyi.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.annotation.NumberFormatHandler;
import lombok.Data;
 
import java.util.Date;
@Data
public class DocumentMaterialFileSmallVo {
 
 
 
 
    /** $column.columnComment */
    @Excel(name = "编任者")
    private String creator;
 
    /** $column.columnComment */
    @Excel(name = "文件题名")
    private String title;
 
    /** $column.columnComment */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date date;
 
    /** $column.columnComment */
    @Excel(name = "页号", handler = NumberFormatHandler.class)
    private Long pageNumber;
 
 
    /** $column.columnComment */
    @Excel(name = "所处阶段")
    private String stage;
 
    /** $column.columnComment */
    @Excel(name = "公开属性")
    private String publicity;
 
    /** $column.columnComment */
    @Excel(name = "是否为附件附图")
    private String isAttachment;
 
    /** $column.columnComment */
//    @Excel(name = "是否为附图")
    private String isDiagram;
 
    /** $column.columnComment */
    @Excel(name = "保管期限")
    private String retentionPeriod;
 
    /** $column.columnComment */
    @Excel(name = "密级")
    private String securityLevel;
 
    /** $column.columnComment */
    @Excel(name = "是否涉密及敏感信息")
    private String isSensitive;
 
    /** $column.columnComment */
    @Excel(name = "是否注销")
    private String isCanceled;
 
 
 
 
 
 
}