fei
4 小时以前 25d0b36cc39f51c7b03f28f30cfc6ed5a10769d3
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package com.ruoyi.domain.vo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
 
import java.util.Date;
@Data
public class ArchiveRecordModelOther {
 
 
 
    /** 档案号 */
    @Excel(name = "档案号")
    private String recordId;
 
 
 
 
    /** 案卷题名 */
    @Excel(name = "案卷题名")
    private String caseTitle;
 
    /** 公开属性 */
    @Excel(name = "公开属性")
    private String publicAttribute;
 
    /** 编制单位 */
    @Excel(name = "编制单位")
    private String preparationUnit;
 
    /** 编制日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "编制日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date preparationDate;
 
    /** 保管期限 */
    @Excel(name = "保管期限")
    private String retentionPeriod;
 
    /** 密级 */
    @Excel(name = "密级", readConverterExp = "该页另存=普通")
    private String securityClassification;
 
    @Excel(name = "案卷状态")
    private String recordStatus;
 
    /** 案卷页数 */
    @Excel(name = "案卷页数")
    private Long pageCount;
 
    /** 立案号 */
    @Excel(name = "立案号")
    private String filingNumber;
 
    /** 建设单位 */
    @Excel(name = "建设单位")
    private String constructionUnit;
 
    /** 建设地址 */
    @Excel(name = "建设地址")
    private String constructionAddress;
 
    /** 建设项目名称 */
    @Excel(name = "建设项目名称")
    private String projectName;
 
    /** 项目编号 */
    @Excel(name = "项目编号")
    private String projectNumber;
 
    /** 扫描加工公司 */
    @Excel(name = "扫描加工公司")
    private String scanningCompany;
 
    /** 档案管(室)号 */
    @Excel(name = "档案管(室)号")
    private String archiveRoomNumber;
 
    /** 缩微号 */
    @Excel(name = "缩微号")
    private String microfilmNumber;
 
    /** 备注 */
    @Excel(name = "备注")
    private String remarks;
 
 
 
 
    /** 历史相关发文号 */
    @Excel(name = "历史相关发文号")
    private String historicalReferenceNumber;
}