多单位版国产化地质资料管理系统
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
129
130
131
132
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 com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * @Description:实物利用单
 * @Author: zhai
 * @Date: 2024/8/2
 **/
@TableName("UTL_PHYSICAL_UTILIZATION_FORM")
@Data
public class PhysicalUtilizationForm {
 
    /**
     * 利用单id
     */
    @TableId(type = IdType.ID_WORKER)
    private Long formId;
    /**
     * 申请编码
     */
    private String applyCode;
    /**
     * 利用类型
     */
    private Integer utilizationType;
 
    /**
     * 单位名称
     */
    private String deptName;
 
    /**
     * 单位地址
     */
    private String deptAddress;
 
    /**
     * 申请人
     */
    private String applyUser;
 
    /**
     * 身份证号码
     */
    private String cardId;
 
    /**
     * 联系电话
     */
    private String telNumber;
    /**
     * 邮箱
     */
    private String email;
 
    /**
     * 项目名称(工作内容)
     */
    private String projectName;
    /**
     * 题名
     */
    private String title;
 
    /**
     * 档号
     */
    private String archivalCode;
 
    /**
     * 观察/取样范围
     */
    private String observationScope;
    /**
     * 观察取样时间
     */
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date observationTime;
 
    /**
     * 取样数量
     */
    private Integer sampleNum;
 
    /**
     * 取样方式
     */
    private String sampleMethod;
    /**
     * 测试项目及样品量需求
     */
    private String testProject;
    /**
     * 送检机构
     */
    private String sendInstitution;
 
    /**
     * 研究目的
     */
    private String researchPurpose;
    /**
     * 研究内容
     */
    private String researchContent;
    /**
     * 预期成果
     */
    private String expectedResult;
    /**
     * 申请单位意见
     */
    private String applyDeptOpinion;
 
    /**
     * 是否同意
     */
    private Integer agree;
    /**
     * 流程步骤
     */
    private String flowStep;
}