多单位版国产化地质资料管理系统
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package com.zbooksoft.gdmis.data.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @Description:加工明细
 * @Author: zhai
 * @Date: 2024/8/2
 **/
@TableName("UTL_PROCESSING_DETAIL")
@Data
public class ProcessingDetail {
 
    /**
     * 明细id
     */
    @TableId(type = IdType.ID_WORKER)
    private Long detailId;
    /**
     * 加工单id
     */
    private Long formId;
 
    /**
     * 案卷级或文件级id
     */
    private Long keyId;
    /**
     * 件号
     */
    private String itemNumber;
 
    /**
     * 文件名
     */
    private String archivalTitle;
 
    /**
     * 密级
     */
    private String securityClassification;
 
    /**
     * 涉密页码
     */
    private Integer securityPageNum;
    /**
     * 加工类型
     */
    private String processingType;
    /**
     * 起止页面
     */
    private String pageRange;
 
    /**
     * 单位
     */
    private String deptName;
 
    /**
     * 加工说明
     */
    private String processingExplain;
 
    /**
     * 文档类型
     */
    private String documentType;
 
    /**
     * 服务方式
     */
    private String serviceType;
    /**
     * 电子数量
     */
    private Integer electronicNum;
 
    /**
     * 文件大小
     */
    private String fileSize;
 
    /**
     * 完成时间
     */
    private Date completeTime;
    /**
     * 加工状态
     */
    private Integer processingState;
 
    /**
     * 加工涉密页码
     */
    private Integer processingSecurityPageNum;
 
    /**
     * 模块id
     */
    private Long moduleId;
    /**
     * 模块名称
     */
    private String moduleName;
    /**
     * 父模块id
     */
    private Long parentModuleId;
    /**
     * 案卷id(案卷时和key_id一致)
     */
    private Long parentKeyId;
    /**
     * 案卷档号(案卷时和archives_code一致)
     */
    private String parentArchivalCode;
    /**
     * 案卷题名(案卷时和title一致)
     */
    private String parentArchivalTitle;
}