郑永安
2023-08-23 0a9ed7b7488de66a50799f79369d7806910ae00a
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
package com.gk.hotwork.Domain;
 
import java.io.Serializable;
import java.util.Date;
 
import org.springframework.data.annotation.Transient;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
 
@TableName("safety_facility_inspection")
public class SafetyFacilityInspection  implements Serializable {
    /**
     * 
     */
    private static final long serialVersionUID = 4028406973653972996L;
 
     /** 主键id  id **/
    private Long id;
 
    /** 有效标识  valid_flag **/
    private Byte validFlag;
 
    /** 创建时间  create_time **/
    private Date createTime;
 
    /** 创建人  create_by **/
    private String createBy;
 
    /** 最新更新时间  update_time **/
    private Date updateTime;
 
    /** 提交日期  submit_date **/
    private Date submitDate;
 
    /** 类别(1:安全设施设计审查,2:安全条件审查)  type **/
    private Integer type;
 
    /** 项目名称  project_name **/
    private String projectName;
 
    /** 进度(0:待受理,1:已受理,10:待评审,11:评审中,12:评审否决,19:待企业反馈,20:待审查,21:审查中,29:待企业补正,22:审查否决,30:完成)  progress **/
    private Integer progress;
 
    /** 审查专家  expert **/
    private String expert;
 
    /** 联系人  contact **/
    private String contact;
 
    /** 联系电话  telephone **/
    private String telephone;
    
    /** 企业名称  company **/
    private String company;
    
    
    /** 受理时间  accept_ time **/
    private Date acceptTime;
    
    /** 自定义评审开始时间  review_time **/
    private Date reviewTime;
    
    /** 自定义审查开始时间  examine_time **/
    private Date examineTime;
    
    /** 补正告知书  correctpdf **/
    private String correctpdf;
    
    /** 审查意见书编号  examine_pageno **/
    private String examinePageno;
    
    /** 审查耗时(-天-时-分)  examine_taketime **/
    private String examineTaketime;
    
    /**   主键id  id   **/
    public Long getId() {
        return id;
    }
 
    /**   主键id  id   **/
    public void setId(Long id) {
        this.id = id;
    }
 
    /**   有效标识  valid_flag   **/
    public Byte getValidFlag() {
        return validFlag;
    }
 
    /**   有效标识  valid_flag   **/
    public void setValidFlag(Byte validFlag) {
        this.validFlag = validFlag;
    }
 
    /**   创建时间  create_time   **/
    public Date getCreateTime() {
        return createTime;
    }
 
    /**   创建时间  create_time   **/
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    /**   创建人  create_by   **/
    public String getCreateBy() {
        return createBy;
    }
 
    /**   创建人  create_by   **/
    public void setCreateBy(String createBy) {
        this.createBy = createBy == null ? null : createBy.trim();
    }
 
    /**   最新更新时间  update_time   **/
    public Date getUpdateTime() {
        return updateTime;
    }
 
    /**   最新更新时间  update_time   **/
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    /**   提交日期  submit_date   **/
    public Date getSubmitDate() {
        return submitDate;
    }
 
    /**   提交日期  submit_date   **/
    public void setSubmitDate(Date submitDate) {
        this.submitDate = submitDate;
    }
 
    /**   类别(1:安全设施设计审查,2:安全条件审查)  type   **/
    public Integer getType() {
        return type;
    }
 
    /**   类别(1:安全设施设计审查,2:安全条件审查)  type   **/
    public void setType(Integer type) {
        this.type = type;
    }
 
    /**   项目名称  project_name   **/
    public String getProjectName() {
        return projectName;
    }
 
    /**   项目名称  project_name   **/
    public void setProjectName(String projectName) {
        this.projectName = projectName == null ? null : projectName.trim();
    }
 
    /**   进度(0:待受理,1:已受理,10:待评审,11:评审中,12:评审否决,19:待企业反馈,20:待审查,21:审查中,29:待企业补正,22:审查否决,30:完成)  progress   **/
    public Integer getProgress() {
        return progress;
    }
 
    /**   进度(0:待受理,1:已受理,10:待评审,11:评审中,12:评审否决,19:待企业反馈,20:待审查,21:审查中,29:待企业补正,22:审查否决,30:完成)  progress   **/
    public void setProgress(Integer progress) {
        this.progress = progress;
    }
 
    /**   审查专家  expert   **/
    public String getExpert() {
        return expert;
    }
 
    /**   审查专家  expert   **/
    public void setExpert(String expert) {
        this.expert = expert == null ? null : expert.trim();
    }
 
    /**   联系人  contact   **/
    public String getContact() {
        return contact;
    }
 
    /**   联系人  contact   **/
    public void setContact(String contact) {
        this.contact = contact == null ? null : contact.trim();
    }
 
    /**   联系电话  telephone   **/
    public String getTelephone() {
        return telephone;
    }
 
    /**   联系电话  telephone   **/
    public void setTelephone(String telephone) {
        this.telephone = telephone == null ? null : telephone.trim();
    }
    
    /**   企业名称  company   **/
    public String getCompany() {
        return company;
    }
 
    /**   企业名称  company   **/
    public void setCompany(String company) {
        this.company = company == null ? null : company.trim();
    }
    
    /**   受理时间  accept_ time   **/
    public Date getAcceptTime() {
        return acceptTime;
    }
 
    /**   受理时间  accept_ time   **/
    public void setAcceptTime(Date acceptTime) {
        this.acceptTime = acceptTime;
    }
    
    /**   自定义评审开始时间  review_time   **/
    public Date getReviewTime() {
        return reviewTime;
    }
 
    /**   自定义评审开始时间  review_time   **/
    public void setReviewTime(Date reviewTime) {
        this.reviewTime = reviewTime;
    }
    
    /**   自定义审查开始时间  examine_time   **/
    public Date getExamineTime() {
        return examineTime;
    }
 
    /**   自定义审查开始时间  examine_time   **/
    public void setExamineTime(Date examineTime) {
        this.examineTime = examineTime;
    }
    
    /**   补正告知书  correctpdf   **/
    public String getCorrectpdf() {
        return correctpdf;
    }
 
    /**   补正告知书  correctpdf   **/
    public void setCorrectpdf(String correctpdf) {
        this.correctpdf = correctpdf == null ? null : correctpdf.trim();
    }
    
    /**   审查意见书编号  examine_pageno   **/
    public String getExaminePageno() {
        return examinePageno;
    }
 
    /**   审查意见书编号  examine_pageno   **/
    public void setExaminePageno(String examinePageno) {
        this.examinePageno = examinePageno == null ? null : examinePageno.trim();
    }
    
    /**   专家姓名  expertName **/
    @Transient
    private String expertName;
 
    @Transient
    public String getExpertName() {
        return expertName;
    }
    
    public void setExpertName(String expertName) {
        this.expertName = expertName;
    }
    
    /**   审查耗时(-天-时-分)  examine_taketime   **/
    public String getExamineTaketime() {
        return examineTaketime;
    }
 
    /**   审查耗时(-天-时-分)  examine_taketime   **/
    public void setExamineTaketime(String examineTaketime) {
        this.examineTaketime = examineTaketime == null ? null : examineTaketime.trim();
    }
}