郑永安
2023-06-19 59e91a4e9ddaf23cebb12993c774aa899ab22d16
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
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 AssessApply implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /** 主键id  id **/
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 类型(1销售评定,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;
 
    /** 处罚原因  punishmentreason **/
    private String punishmentreason;
 
    /** 处罚措施(吊销或者停用一段时间)  punishmentmeasure **/
    private AssessPunishment punishmentmeasure;
 
    /** 创建时间  createtime **/
    private Date createtime;
 
    /** 修改时间  modifytime **/
    private Date modifytime;
 
    /** 最后一次驳回的时间  lastrejecttime **/
    private Date lastrejecttime;
 
    private String lastrejectreason;
 
 
    @TableField(exist = false)
    private MultipartFile file;
 
    private boolean validflag;
 
    /**   主键id  id   **/
    public Long getId() {
        return id;
    }
 
    /**   主键id  id   **/
    public void setId(Long id) {
        this.id = id;
    }
 
    public AssessType getType() {
        return type;
    }
 
    public void setType(AssessType type) {
        this.type = type;
    }
 
    /**   单子编号  code   **/
    public String getCode() {
        return code;
    }
 
    /**   单子编号  code   **/
    public void setCode(String code) {
        this.code = code == null ? null : code.trim();
    }
 
    public AssessApplyStatus getStatus() {
        return status;
    }
 
    public void setStatus(AssessApplyStatus status) {
        this.status = status;
    }
 
    /**   提出人名称  requestor   **/
    public String getRequestor() {
        return requestor;
    }
 
    /**   提出人名称  requestor   **/
    public void setRequestor(String requestor) {
        this.requestor = requestor == null ? null : requestor.trim();
    }
 
    /**   单子提交时间  submittime   **/
    public Date getSubmittime() {
        return submittime;
    }
 
    /**   单子提交时间  submittime   **/
    public void setSubmittime(Date submittime) {
        this.submittime = submittime;
    }
 
    /**   审批人名称  approver   **/
    public String getApprover() {
        return approver;
    }
 
    /**   审批人名称  approver   **/
    public void setApprover(String approver) {
        this.approver = approver == null ? null : approver.trim();
    }
 
    /**   审批时间  approvetime   **/
    public Date getApprovetime() {
        return approvetime;
    }
 
    /**   审批时间  approvetime   **/
    public void setApprovetime(Date approvetime) {
        this.approvetime = approvetime;
    }
 
    /**   审批备注  approvenote   **/
    public String getApprovenote() {
        return approvenote;
    }
 
    /**   审批备注  approvenote   **/
    public void setApprovenote(String approvenote) {
        this.approvenote = approvenote == null ? null : approvenote.trim();
    }
 
    /**   企业名  enterprisename   **/
    public String getEnterprisename() {
        return enterprisename;
    }
 
    /**   企业名  enterprisename   **/
    public void setEnterprisename(String enterprisename) {
        this.enterprisename = enterprisename == null ? null : enterprisename.trim();
    }
 
    /**   企业单位编号  enterprisenumber   **/
    public String getEnterprisenumber() {
        return enterprisenumber;
    }
 
    /**   企业单位编号  enterprisenumber   **/
    public void setEnterprisenumber(String enterprisenumber) {
        this.enterprisenumber = enterprisenumber == null ? null : enterprisenumber.trim();
    }
 
 
    public PunishStatus getPunishstatus() {
        return punishstatus;
    }
 
    public void setPunishstatus(PunishStatus punishstatus) {
        this.punishstatus = punishstatus;
    }
 
    /**   上传材料  path1   **/
    public String getPath1() {
        return path1;
    }
 
    /**   上传材料  path1   **/
    public void setPath1(String path1) {
        this.path1 = path1 == null ? null : path1.trim();
    }
 
    /**   处罚原因  punishmentreason   **/
    public String getPunishmentreason() {
        return punishmentreason;
    }
 
    /**   处罚原因  punishmentreason   **/
    public void setPunishmentreason(String punishmentreason) {
        this.punishmentreason = punishmentreason == null ? null : punishmentreason.trim();
    }
 
    public AssessPunishment getPunishmentmeasure() {
        return punishmentmeasure;
    }
 
    public void setPunishmentmeasure(AssessPunishment punishmentmeasure) {
        this.punishmentmeasure = punishmentmeasure;
    }
 
    /**   创建时间  createtime   **/
    public Date getCreatetime() {
        return createtime;
    }
 
    /**   创建时间  createtime   **/
    public void setCreatetime(Date createtime) {
        this.createtime = createtime;
    }
 
    /**   修改时间  modifytime   **/
    public Date getModifytime() {
        return modifytime;
    }
 
    /**   修改时间  modifytime   **/
    public void setModifytime(Date modifytime) {
        this.modifytime = modifytime;
    }
 
    /**   最后一次驳回的时间  lastrejecttime   **/
    public Date getLastrejecttime() {
        return lastrejecttime;
    }
 
    /**   最后一次驳回的时间  lastrejecttime   **/
    public void setLastrejecttime(Date lastrejecttime) {
        this.lastrejecttime = lastrejecttime;
    }
 
    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 Long getRequestorid() {
        return requestorid;
    }
 
    public void setRequestorid(Long requestorid) {
        this.requestorid = requestorid;
    }
 
    public String getLastrejectreason() {
        return lastrejectreason;
    }
 
    public void setLastrejectreason(String lastrejectreason) {
        this.lastrejectreason = lastrejectreason;
    }
 
}