多单位版国产化地质资料管理系统
zhai
2025-09-17 7a8a84577894b766a95c6cbfa5ac7b51e54ac242
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
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_BORROW_DETAIL")
@Data
public class BorrowDetail {
 
    /**
     * 明细id
     */
    @TableId(type = IdType.ID_WORKER)
    private Long detailId;
    /**
     * 利用申请单id,默认0
     */
    private Long formId;
    /**
     * 案卷级id
     */
    private Long fileId;
    /**
     * 文件级id
     */
    private Long itemId;
    /**
     * 档号
     */
    private String archivalCode;
    /**
     * 档号 ITEM_CODE
     */
    private String itemCode;
    /**
     * 件号
     */
    private String itemNumber;
    /**
     * 案卷题名
     */
    private String fileTitle;
    /**
     * 文件题名
     */
    private String itemTitle;
 
    /**
     * 借阅类型 0:成果资料,1:原始资料
     */
    private Integer borrowType;
    /**
     * 电子
     */
    private Integer electronic;
    /**
     * 纸质
     */
    private Integer paper;
    /**
     * 原件借出
     */
    private Integer original;
 
 
    /**
     * 同意与否:0不同意,1同意
     */
    private Integer agree;
    /**
     * 创建人ID
     */
    private Long createUserId;
    /**
     * 创建人名称
     */
    private String createUserName;
    /**
     * 创建时间
     */
    private Date createTime;
 
    /**
     * 密级
     */
    private String securityClassification;
    /**
     * 涉密页码
     */
    private String securityPageNum;
 
    /**
     * 是否可以借阅纸质文件   BORROW_PURPOSE
     */
    private Integer paperBorrow;
 
}