riku
2020-10-10 5771916ffb24807dd57c1969baa6371611c334da
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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
package cn.flightfeather.thirdapp.bean.vo;
 
import java.util.Date;
import java.util.List;
 
import cn.flightfeather.thirdapp.bean.Inspection;
import cn.flightfeather.thirdapp.bean.Itemevaluation;
 
/**
 * Created by note_ff_1602 on 2017/12/26.
 */
public class InspectionVo {
 
    private String guid;
    
    private String stguid;
    
    private String sguid;
    
    private String scensename;
    
    private String scenseaddress;
    
    private Boolean istogether;
    
    private String entouraget;
    
    private String entouragewx;
    
    private String entourage;
    
    private Date executionstarttime;
    
    private Date executionendtime;
    
    private Integer problemcount;
    
    private Boolean isrechecked;
    
    private Integer recheckcount;
    
    private Integer promissednum;
    
    private Integer changednum;
    
    private Boolean ischanged;
    
    private Boolean isrvaluated;
    
    private Boolean ispromissed;
    
    private Date promissedtime;
    
    private String promisseduserguid;
    
    private String promissedusername;
    
    private String promisseduserrealname;
    
    private String promissedway;
    
    private Date promisseddeadline;
    
    private String promissbookpath;
    
    private String signpath;
    
    private String extension1;
    
    private String extension2;
    
    private String extension3;
    
    private String remark;
 
    private List<ProblemlistVo> problemList;
 
    private List<GitlistVo> gitList;
 
    private List<Itemevaluation> itemevaluationList;
 
    public String getGuid() {
        return guid;
    }
 
    public void setGuid(String guid) {
        this.guid = guid;
    }
 
    public String getStguid() {
        return stguid;
    }
 
    public void setStguid(String stguid) {
        this.stguid = stguid;
    }
 
    public String getSguid() {
        return sguid;
    }
 
    public void setSguid(String sguid) {
        this.sguid = sguid;
    }
 
    public String getScensename() {
        return scensename;
    }
 
    public void setScensename(String scensename) {
        this.scensename = scensename;
    }
 
    public String getScenseaddress() {
        return scenseaddress;
    }
 
    public void setScenseaddress(String scenseaddress) {
        this.scenseaddress = scenseaddress;
    }
 
    public Boolean getIstogether() {
        return istogether;
    }
 
    public void setIstogether(Boolean istogether) {
        this.istogether = istogether;
    }
 
    public String getEntouraget() {
        return entouraget;
    }
 
    public void setEntouraget(String entouraget) {
        this.entouraget = entouraget;
    }
 
    public String getEntouragewx() {
        return entouragewx;
    }
 
    public void setEntouragewx(String entouragewx) {
        this.entouragewx = entouragewx;
    }
 
    public String getEntourage() {
        return entourage;
    }
 
    public void setEntourage(String entourage) {
        this.entourage = entourage;
    }
 
    public Date getExecutionstarttime() {
        return executionstarttime;
    }
 
    public void setExecutionstarttime(Date executionstarttime) {
        this.executionstarttime = executionstarttime;
    }
 
    public Date getExecutionendtime() {
        return executionendtime;
    }
 
    public void setExecutionendtime(Date executionendtime) {
        this.executionendtime = executionendtime;
    }
 
    public Integer getProblemcount() {
        return problemcount;
    }
 
    public void setProblemcount(Integer problemcount) {
        this.problemcount = problemcount;
    }
 
    public Boolean getIsrechecked() {
        return isrechecked;
    }
 
    public void setIsrechecked(Boolean isrechecked) {
        this.isrechecked = isrechecked;
    }
 
    public Integer getRecheckcount() {
        return recheckcount;
    }
 
    public void setRecheckcount(Integer recheckcount) {
        this.recheckcount = recheckcount;
    }
 
    public Integer getPromissednum() {
        return promissednum;
    }
 
    public void setPromissednum(Integer promissednum) {
        this.promissednum = promissednum;
    }
 
    public Integer getChangednum() {
        return changednum;
    }
 
    public void setChangednum(Integer changednum) {
        this.changednum = changednum;
    }
 
    public Boolean getIschanged() {
        return ischanged;
    }
 
    public void setIschanged(Boolean ischanged) {
        this.ischanged = ischanged;
    }
 
    public Boolean getIsrvaluated() {
        return isrvaluated;
    }
 
    public void setIsrvaluated(Boolean isrvaluated) {
        this.isrvaluated = isrvaluated;
    }
 
    public Boolean getIspromissed() {
        return ispromissed;
    }
 
    public void setIspromissed(Boolean ispromissed) {
        this.ispromissed = ispromissed;
    }
 
    public Date getPromissedtime() {
        return promissedtime;
    }
 
    public void setPromissedtime(Date promissedtime) {
        this.promissedtime = promissedtime;
    }
 
    public String getPromisseduserguid() {
        return promisseduserguid;
    }
 
    public void setPromisseduserguid(String promisseduserguid) {
        this.promisseduserguid = promisseduserguid;
    }
 
    public String getPromissedusername() {
        return promissedusername;
    }
 
    public void setPromissedusername(String promissedusername) {
        this.promissedusername = promissedusername;
    }
 
    public String getPromisseduserrealname() {
        return promisseduserrealname;
    }
 
    public void setPromisseduserrealname(String promisseduserrealname) {
        this.promisseduserrealname = promisseduserrealname;
    }
 
    public String getPromissedway() {
        return promissedway;
    }
 
    public void setPromissedway(String promissedway) {
        this.promissedway = promissedway;
    }
 
    public Date getPromisseddeadline() {
        return promisseddeadline;
    }
 
    public void setPromisseddeadline(Date promisseddeadline) {
        this.promisseddeadline = promisseddeadline;
    }
 
    public String getPromissbookpath() {
        return promissbookpath;
    }
 
    public void setPromissbookpath(String promissbookpath) {
        this.promissbookpath = promissbookpath;
    }
 
    public String getSignpath() {
        return signpath;
    }
 
    public void setSignpath(String signpath) {
        this.signpath = signpath;
    }
 
    public String getExtension1() {
        return extension1;
    }
 
    public void setExtension1(String extension1) {
        this.extension1 = extension1;
    }
 
    public String getExtension2() {
        return extension2;
    }
 
    public void setExtension2(String extension2) {
        this.extension2 = extension2;
    }
 
    public String getExtension3() {
        return extension3;
    }
 
    public void setExtension3(String extension3) {
        this.extension3 = extension3;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public List<ProblemlistVo> getProblemList() {
        return problemList;
    }
 
    public void setProblemList(List<ProblemlistVo> problemList) {
        this.problemList = problemList;
    }
 
    public List<GitlistVo> getGitList() {
        return gitList;
    }
 
    public void setGitList(List<GitlistVo> gitList) {
        this.gitList = gitList;
    }
 
    public List<Itemevaluation> getItemevaluationList() {
        return itemevaluationList;
    }
 
    public void setItemevaluationList(List<Itemevaluation> itemevaluationList) {
        this.itemevaluationList = itemevaluationList;
    }
 
    public Inspection transToInspection() {
        Inspection inspection = new Inspection();
        inspection.setGuid(this.getGuid());
        inspection.setStguid(this.getStguid());
        inspection.setSguid(this.getSguid());
        inspection.setScensename(this.getScensename());
        inspection.setScenseaddress(this.getScenseaddress());
        inspection.setIstogether(this.getIstogether());
        inspection.setEntouraget(this.getEntouraget());
        inspection.setEntouragewx(this.getEntouragewx());
        inspection.setEntourage(this.getEntourage());
        inspection.setExecutionstarttime(this.getExecutionstarttime());
        inspection.setExecutionendtime(this.getExecutionendtime());
        inspection.setProblemcount(this.getProblemcount());
        inspection.setIsrechecked(this.getIsrechecked());
        inspection.setRecheckcount(this.getRecheckcount());
        inspection.setPromissednum(this.getPromissednum());
        inspection.setChangednum(this.getChangednum());
        inspection.setChangednum(this.getChangednum());
        inspection.setIschanged(this.getIschanged());
        inspection.setIsrvaluated(this.getIsrvaluated());
        inspection.setIspromissed(this.getIspromissed());
        inspection.setPromissedtime(this.getPromissedtime());
        inspection.setPromisseduserguid(this.getPromisseduserguid());
        inspection.setPromissedusername(this.getPromissedusername());
        inspection.setPromisseduserrealname(this.getPromisseduserrealname());
        inspection.setPromissedway(this.getPromissedway());
        inspection.setPromisseddeadline(this.getPromisseddeadline());
        inspection.setPromissbookpath(this.getPromissbookpath());
        inspection.setSignpath(this.getSignpath());
        inspection.setExtension1(this.getExtension1());
        inspection.setExtension2(this.getExtension2());
        inspection.setExtension3(this.getExtension3());
        inspection.setRemark(this.getRemark());
        return inspection;
    }
}