郑永安
2023-06-19 f65443d8abeaedc9d102324565e8368e7c9d90c8
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
package com.gk.firework.Domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.gk.firework.Domain.Enum.*;
import org.springframework.web.multipart.MultipartFile;
 
import java.io.Serializable;
import java.util.Date;
 
@TableName("assessapply")
public class AccessAssessApply implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /** 主键id  id **/
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 类型(2准入评定)  type **/
    private AssessType type;
 
    /** 单子编号  code **/
    private String code;
 
    /** 单子状态(待提交,待审批,审批通过,驳回)  status **/
    private AssessApplyStatus status;
 
    /** 提出人名称  requestor **/
    private String requestor;
 
    private Long requestorid;
 
    /** 单子提交时间  submittime **/
    private Date submittime;
 
    /** 审批人名称  approver **/
    private String approver;
 
    /** 审批时间  approvetime **/
    private Date approvetime;
 
    /** 审批备注  approvenote **/
    private String approvenote;
 
    /** 企业名  enterprisename **/
    private String enterprisename;
 
    /** 企业单位编号  enterprisenumber **/
    private String enterprisenumber;
 
    private PunishStatus punishstatus;
 
    /** 上传材料  path1 **/
    private String path1;
 
    /** 申诉材料  path2 **/
    private String path2;
 
    /** 处罚原因  punishmentreason **/
    private String punishmentreason;
 
    /** 处罚措施(吊销或者停用一段时间)  punishmentmeasure **/
    private AssessPunishment punishmentmeasure;
 
    /** 创建时间  createtime **/
    private Date createtime;
 
    /** 修改时间  modifytime **/
    private Date modifytime;
 
    /** 最后一次驳回的时间  lastrejecttime **/
    private Date lastrejecttime;
 
    private String lastrejectreason;
 
    private Date deadline;
 
    private String appealcontent;
 
    private Date appealtime;
 
    private AssessAppealStatus appealstatus;
 
    private String appealrejectreason;
 
    private String appealapprover;
 
    private Date appealapprovetime;
 
    @TableField(exist = false)
    private MultipartFile file;
 
    private boolean validflag;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public AssessType getType() {
        return type;
    }
 
    public void setType(AssessType type) {
        this.type = type;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public AssessApplyStatus getStatus() {
        return status;
    }
 
    public void setStatus(AssessApplyStatus status) {
        this.status = status;
    }
 
    public String getRequestor() {
        return requestor;
    }
 
    public void setRequestor(String requestor) {
        this.requestor = requestor;
    }
 
    public Long getRequestorid() {
        return requestorid;
    }
 
    public void setRequestorid(Long requestorid) {
        this.requestorid = requestorid;
    }
 
    public Date getSubmittime() {
        return submittime;
    }
 
    public void setSubmittime(Date submittime) {
        this.submittime = submittime;
    }
 
    public String getApprover() {
        return approver;
    }
 
    public void setApprover(String approver) {
        this.approver = approver;
    }
 
    public Date getApprovetime() {
        return approvetime;
    }
 
    public void setApprovetime(Date approvetime) {
        this.approvetime = approvetime;
    }
 
    public String getApprovenote() {
        return approvenote;
    }
 
    public void setApprovenote(String approvenote) {
        this.approvenote = approvenote;
    }
 
    public String getEnterprisename() {
        return enterprisename;
    }
 
    public void setEnterprisename(String enterprisename) {
        this.enterprisename = enterprisename;
    }
 
    public String getEnterprisenumber() {
        return enterprisenumber;
    }
 
    public void setEnterprisenumber(String enterprisenumber) {
        this.enterprisenumber = enterprisenumber;
    }
 
    public PunishStatus getPunishstatus() {
        return punishstatus;
    }
 
    public void setPunishstatus(PunishStatus punishstatus) {
        this.punishstatus = punishstatus;
    }
 
    public String getPath1() {
        return path1;
    }
 
    public void setPath1(String path1) {
        this.path1 = path1;
    }
 
    public String getPath2() {
        return path2;
    }
 
    public void setPath2(String path2) {
        this.path2 = path2;
    }
 
    public String getPunishmentreason() {
        return punishmentreason;
    }
 
    public void setPunishmentreason(String punishmentreason) {
        this.punishmentreason = punishmentreason;
    }
 
    public AssessPunishment getPunishmentmeasure() {
        return punishmentmeasure;
    }
 
    public void setPunishmentmeasure(AssessPunishment punishmentmeasure) {
        this.punishmentmeasure = punishmentmeasure;
    }
 
    public Date getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(Date createtime) {
        this.createtime = createtime;
    }
 
    public Date getModifytime() {
        return modifytime;
    }
 
    public void setModifytime(Date modifytime) {
        this.modifytime = modifytime;
    }
 
    public Date getLastrejecttime() {
        return lastrejecttime;
    }
 
    public void setLastrejecttime(Date lastrejecttime) {
        this.lastrejecttime = lastrejecttime;
    }
 
    public String getLastrejectreason() {
        return lastrejectreason;
    }
 
    public void setLastrejectreason(String lastrejectreason) {
        this.lastrejectreason = lastrejectreason;
    }
 
    public Date getDeadline() {
        return deadline;
    }
 
    public void setDeadline(Date deadline) {
        this.deadline = deadline;
    }
 
    public String getAppealcontent() {
        return appealcontent;
    }
 
    public void setAppealcontent(String appealcontent) {
        this.appealcontent = appealcontent;
    }
 
    public Date getAppealtime() {
        return appealtime;
    }
 
    public void setAppealtime(Date appealtime) {
        this.appealtime = appealtime;
    }
 
    public AssessAppealStatus getAppealstatus() {
        return appealstatus;
    }
 
    public void setAppealstatus(AssessAppealStatus appealstatus) {
        this.appealstatus = appealstatus;
    }
 
    public MultipartFile getFile() {
        return file;
    }
 
    public void setFile(MultipartFile file) {
        this.file = file;
    }
 
    public boolean isValidflag() {
        return validflag;
    }
 
    public void setValidflag(boolean validflag) {
        this.validflag = validflag;
    }
 
    public String getAppealrejectreason() {
        return appealrejectreason;
    }
 
    public void setAppealrejectreason(String appealrejectreason) {
        this.appealrejectreason = appealrejectreason;
    }
 
    public String getAppealapprover() {
        return appealapprover;
    }
 
    public void setAppealapprover(String appealapprover) {
        this.appealapprover = appealapprover;
    }
 
    public Date getAppealapprovetime() {
        return appealapprovetime;
    }
 
    public void setAppealapprovetime(Date appealapprovetime) {
        this.appealapprovetime = appealapprovetime;
    }
}