Administrator
2023-06-19 49588f5a462ae7425e7eb030438a35fd80c246fa
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
package com.gk.firework.Domain.Vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.web.multipart.MultipartFile;
 
import java.io.Serializable;
import java.util.Date;
 
public class HiddenDangerTableRow implements Serializable {
 
 
    private String parentmenuid;
 
    private String checkcontent;
 
    private String checktypeid;
 
    private String checkcriteria;
 
    private String basis;
 
    private String checktype;
 
    private String checkresult1;
 
    private Long result1;
 
    private boolean qualified;
 
    private String checkresult0;
 
    private Long result0;
 
    private boolean unqualified;
 
    private Unqualified answer = new Unqualified();
 
 
    /**
     * @Description: 不合格|合格对象
     */
    public static class Unqualified {
 
        private Long id;
 
        /**
         * 自检结果id  resultid
         **/
        private Long resultid;
 
        /**
         * 发现日期  findtime
         **/
        private Date findtime;
 
        /**
         * 隐患级别(1一般,2重大)  level
         **/
        private Integer level;
 
        /**
         * 隐患描述(备用)  memo
         **/
        private String memo;
 
        /**
         * 整改情况(1正在整改,2整改到位)  rectifystatus
         **/
        private Integer rectifystatus;
 
        /**
         * 整改期限  rectifydeadline
         **/
        @JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd")
        private Date rectifydeadline;
 
        /**
         * 整改完成时间  rectifycompletedate
         **/
        @JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd")
        private Date rectifycompletedate;
 
        /**
         * 整改措施(1立即整改,2限期整改,3停产停业整顿 )  rectifymeasure
         **/
        private Integer rectifymeasure;
 
        /**
         * 整改负责人  rectifyprincipal
         **/
        private String rectifyprincipal;
 
 
        private String url;
 
        public Long getId() {
            return id;
        }
 
        public void setId(Long id) {
            this.id = id;
        }
 
        public String getUrl() {
            return url;
        }
 
        public void setUrl(String url) {
            this.url = url;
        }
 
        public Long getResultid() {
            return resultid;
        }
 
        public void setResultid(Long resultid) {
            this.resultid = resultid;
        }
 
        public Date getFindtime() {
            return findtime;
        }
 
        public void setFindtime(Date findtime) {
            this.findtime = findtime;
        }
 
        public Integer getLevel() {
            return level;
        }
 
        public void setLevel(Integer level) {
            this.level = level;
        }
 
        public String getMemo() {
            return memo;
        }
 
        public void setMemo(String memo) {
            this.memo = memo;
        }
 
        public Integer getRectifystatus() {
            return rectifystatus;
        }
 
        public void setRectifystatus(Integer rectifystatus) {
            this.rectifystatus = rectifystatus;
        }
 
        public Date getRectifydeadline() {
            return rectifydeadline;
        }
 
        public void setRectifydeadline(Date rectifydeadline) {
            this.rectifydeadline = rectifydeadline;
        }
 
        public Date getRectifycompletedate() {
            return rectifycompletedate;
        }
 
        public void setRectifycompletedate(Date rectifycompletedate) {
            this.rectifycompletedate = rectifycompletedate;
        }
 
        public Integer getRectifymeasure() {
            return rectifymeasure;
        }
 
        public void setRectifymeasure(Integer rectifymeasure) {
            this.rectifymeasure = rectifymeasure;
        }
 
        public String getRectifyprincipal() {
            return rectifyprincipal;
        }
 
        public void setRectifyprincipal(String rectifyprincipal) {
            this.rectifyprincipal = rectifyprincipal;
        }
 
 
    }
 
    public String getCheckcontent() {
        return checkcontent;
    }
 
    public void setCheckcontent(String checkcontent) {
        this.checkcontent = checkcontent;
    }
 
    public String getCheckcriteria() {
        return checkcriteria;
    }
 
    public void setCheckcriteria(String checkcriteria) {
        this.checkcriteria = checkcriteria;
    }
 
    public String getBasis() {
        return basis;
    }
 
    public void setBasis(String basis) {
        this.basis = basis;
    }
 
    public String getChecktype() {
        return checktype;
    }
 
    public void setChecktype(String checktype) {
        this.checktype = checktype;
    }
 
    public String getCheckresult1() {
        return checkresult1;
    }
 
    public void setCheckresult1(String checkresult1) {
        this.checkresult1 = checkresult1;
    }
 
    public String getCheckresult0() {
        return checkresult0;
    }
 
    public void setCheckresult0(String checkresult0) {
        this.checkresult0 = checkresult0;
    }
 
    public boolean isQualified() {
        return qualified;
    }
 
    public void setQualified(boolean qualified) {
        this.qualified = qualified;
    }
 
    public boolean isUnqualified() {
        return unqualified;
    }
 
    public void setUnqualified(boolean unqualified) {
        this.unqualified = unqualified;
    }
 
    public Long getResult1() {
        return result1;
    }
 
    public void setResult1(Long result1) {
        this.result1 = result1;
    }
 
    public Long getResult0() {
        return result0;
    }
 
    public void setResult0(Long result0) {
        this.result0 = result0;
    }
 
    public Unqualified getAnswer() {
        return answer;
    }
 
    public void setAnswer(Unqualified answer) {
        this.answer = answer;
    }
 
    public String getParentmenuid() {
        return parentmenuid;
    }
 
    public void setParentmenuid(String parentmenuid) {
        this.parentmenuid = parentmenuid;
    }
 
 
    public String getChecktypeid() {
        return checktypeid;
    }
 
    public void setChecktypeid(String checktypeid) {
        this.checktypeid = checktypeid;
    }
}