feiyu02
2022-06-28 5670e4a15fba292ef5f8fb90e96072de976bb621
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
package cn.flightfeather.supervision.domain.entity;
 
import java.util.Date;
import javax.persistence.*;
 
@Table(name = "ec_t_notice")
public class Notice {
    @Id
    @Column(name = "EC_GUID")
    private String ecGuid;
 
    @Column(name = "EC_NoticeType")
    private Integer ecNoticetype;
 
    @Column(name = "EC_NoticeTypeName")
    private String ecNoticetypename;
 
    @Column(name = "EC_NoticeSubType")
    private Integer ecNoticesubtype;
 
    @Column(name = "EC_NoticeSubTypeName")
    private String ecNoticesubtypename;
 
    @Column(name = "EC_NoticeTitle")
    private String ecNoticetitle;
 
    @Column(name = "EC_NoticeFreq")
    private Integer ecNoticefreq;
 
    @Column(name = "EC_IsInUse")
    private Boolean ecIsinuse;
 
    @Column(name = "EC_IsPE")
    private Boolean ecIspe;
 
    @Column(name = "EC_NoticeDtStart")
    private Date ecNoticedtstart;
 
    @Column(name = "EC_NoticeDtEnd")
    private Date ecNoticedtend;
 
    @Column(name = "EC_CreateDate")
    private Date ecCreatedate;
 
    @Column(name = "EC_CreatorId")
    private String ecCreatorid;
 
    @Column(name = "EC_Creator")
    private String ecCreator;
 
    @Column(name = "EC_UpdateDate")
    private Date ecUpdatedate;
 
    @Column(name = "EC_ModifierId")
    private String ecModifierid;
 
    @Column(name = "EC_Modifier")
    private String ecModifier;
 
    /**
     * 签收用户类型(1 飞羽;2 环保局; 3 企业等,用“;”分隔)
     */
    @Column(name = "EC_ReceiverType")
    private String ecReceivertype;
 
    @Column(name = "EC_NeedSign")
    private Boolean ecNeedsign;
 
    @Column(name = "EC_Extension1")
    private String ecExtension1;
 
    @Column(name = "EC_Extension2")
    private String ecExtension2;
 
    @Column(name = "EC_Extension3")
    private String ecExtension3;
 
    @Column(name = "EC_Remark")
    private String ecRemark;
 
    @Column(name = "EC_NoticeContent")
    private String ecNoticecontent;
 
    /**
     * 签收用户ID(以“;”分隔)
     */
    @Column(name = "EC_ReceiverId")
    private String ecReceiverid;
 
    @Column(name = "EC_PicUrl")
    private String ecPicurl;
 
    @Column(name = "EC_BodyUrl")
    private String ecBodyurl;
 
    /**
     * @return EC_GUID
     */
    public String getEcGuid() {
        return ecGuid;
    }
 
    /**
     * @param ecGuid
     */
    public void setEcGuid(String ecGuid) {
        this.ecGuid = ecGuid == null ? null : ecGuid.trim();
    }
 
    /**
     * @return EC_NoticeType
     */
    public Integer getEcNoticetype() {
        return ecNoticetype;
    }
 
    /**
     * @param ecNoticetype
     */
    public void setEcNoticetype(Integer ecNoticetype) {
        this.ecNoticetype = ecNoticetype;
    }
 
    /**
     * @return EC_NoticeTypeName
     */
    public String getEcNoticetypename() {
        return ecNoticetypename;
    }
 
    /**
     * @param ecNoticetypename
     */
    public void setEcNoticetypename(String ecNoticetypename) {
        this.ecNoticetypename = ecNoticetypename == null ? null : ecNoticetypename.trim();
    }
 
    /**
     * @return EC_NoticeSubType
     */
    public Integer getEcNoticesubtype() {
        return ecNoticesubtype;
    }
 
    /**
     * @param ecNoticesubtype
     */
    public void setEcNoticesubtype(Integer ecNoticesubtype) {
        this.ecNoticesubtype = ecNoticesubtype;
    }
 
    /**
     * @return EC_NoticeSubTypeName
     */
    public String getEcNoticesubtypename() {
        return ecNoticesubtypename;
    }
 
    /**
     * @param ecNoticesubtypename
     */
    public void setEcNoticesubtypename(String ecNoticesubtypename) {
        this.ecNoticesubtypename = ecNoticesubtypename == null ? null : ecNoticesubtypename.trim();
    }
 
    /**
     * @return EC_NoticeTitle
     */
    public String getEcNoticetitle() {
        return ecNoticetitle;
    }
 
    /**
     * @param ecNoticetitle
     */
    public void setEcNoticetitle(String ecNoticetitle) {
        this.ecNoticetitle = ecNoticetitle == null ? null : ecNoticetitle.trim();
    }
 
    /**
     * @return EC_NoticeFreq
     */
    public Integer getEcNoticefreq() {
        return ecNoticefreq;
    }
 
    /**
     * @param ecNoticefreq
     */
    public void setEcNoticefreq(Integer ecNoticefreq) {
        this.ecNoticefreq = ecNoticefreq;
    }
 
    /**
     * @return EC_IsInUse
     */
    public Boolean getEcIsinuse() {
        return ecIsinuse;
    }
 
    /**
     * @param ecIsinuse
     */
    public void setEcIsinuse(Boolean ecIsinuse) {
        this.ecIsinuse = ecIsinuse;
    }
 
    /**
     * @return EC_IsPE
     */
    public Boolean getEcIspe() {
        return ecIspe;
    }
 
    /**
     * @param ecIspe
     */
    public void setEcIspe(Boolean ecIspe) {
        this.ecIspe = ecIspe;
    }
 
    /**
     * @return EC_NoticeDtStart
     */
    public Date getEcNoticedtstart() {
        return ecNoticedtstart;
    }
 
    /**
     * @param ecNoticedtstart
     */
    public void setEcNoticedtstart(Date ecNoticedtstart) {
        this.ecNoticedtstart = ecNoticedtstart;
    }
 
    /**
     * @return EC_NoticeDtEnd
     */
    public Date getEcNoticedtend() {
        return ecNoticedtend;
    }
 
    /**
     * @param ecNoticedtend
     */
    public void setEcNoticedtend(Date ecNoticedtend) {
        this.ecNoticedtend = ecNoticedtend;
    }
 
    /**
     * @return EC_CreateDate
     */
    public Date getEcCreatedate() {
        return ecCreatedate;
    }
 
    /**
     * @param ecCreatedate
     */
    public void setEcCreatedate(Date ecCreatedate) {
        this.ecCreatedate = ecCreatedate;
    }
 
    /**
     * @return EC_CreatorId
     */
    public String getEcCreatorid() {
        return ecCreatorid;
    }
 
    /**
     * @param ecCreatorid
     */
    public void setEcCreatorid(String ecCreatorid) {
        this.ecCreatorid = ecCreatorid == null ? null : ecCreatorid.trim();
    }
 
    /**
     * @return EC_Creator
     */
    public String getEcCreator() {
        return ecCreator;
    }
 
    /**
     * @param ecCreator
     */
    public void setEcCreator(String ecCreator) {
        this.ecCreator = ecCreator == null ? null : ecCreator.trim();
    }
 
    /**
     * @return EC_UpdateDate
     */
    public Date getEcUpdatedate() {
        return ecUpdatedate;
    }
 
    /**
     * @param ecUpdatedate
     */
    public void setEcUpdatedate(Date ecUpdatedate) {
        this.ecUpdatedate = ecUpdatedate;
    }
 
    /**
     * @return EC_ModifierId
     */
    public String getEcModifierid() {
        return ecModifierid;
    }
 
    /**
     * @param ecModifierid
     */
    public void setEcModifierid(String ecModifierid) {
        this.ecModifierid = ecModifierid == null ? null : ecModifierid.trim();
    }
 
    /**
     * @return EC_Modifier
     */
    public String getEcModifier() {
        return ecModifier;
    }
 
    /**
     * @param ecModifier
     */
    public void setEcModifier(String ecModifier) {
        this.ecModifier = ecModifier == null ? null : ecModifier.trim();
    }
 
    /**
     * 获取签收用户类型(1 飞羽;2 环保局; 3 企业等,用“;”分隔)
     *
     * @return EC_ReceiverType - 签收用户类型(1 飞羽;2 环保局; 3 企业等,用“;”分隔)
     */
    public String getEcReceivertype() {
        return ecReceivertype;
    }
 
    /**
     * 设置签收用户类型(1 飞羽;2 环保局; 3 企业等,用“;”分隔)
     *
     * @param ecReceivertype 签收用户类型(1 飞羽;2 环保局; 3 企业等,用“;”分隔)
     */
    public void setEcReceivertype(String ecReceivertype) {
        this.ecReceivertype = ecReceivertype == null ? null : ecReceivertype.trim();
    }
 
    /**
     * @return EC_NeedSign
     */
    public Boolean getEcNeedsign() {
        return ecNeedsign;
    }
 
    /**
     * @param ecNeedsign
     */
    public void setEcNeedsign(Boolean ecNeedsign) {
        this.ecNeedsign = ecNeedsign;
    }
 
    /**
     * @return EC_Extension1
     */
    public String getEcExtension1() {
        return ecExtension1;
    }
 
    /**
     * @param ecExtension1
     */
    public void setEcExtension1(String ecExtension1) {
        this.ecExtension1 = ecExtension1 == null ? null : ecExtension1.trim();
    }
 
    /**
     * @return EC_Extension2
     */
    public String getEcExtension2() {
        return ecExtension2;
    }
 
    /**
     * @param ecExtension2
     */
    public void setEcExtension2(String ecExtension2) {
        this.ecExtension2 = ecExtension2 == null ? null : ecExtension2.trim();
    }
 
    /**
     * @return EC_Extension3
     */
    public String getEcExtension3() {
        return ecExtension3;
    }
 
    /**
     * @param ecExtension3
     */
    public void setEcExtension3(String ecExtension3) {
        this.ecExtension3 = ecExtension3 == null ? null : ecExtension3.trim();
    }
 
    /**
     * @return EC_Remark
     */
    public String getEcRemark() {
        return ecRemark;
    }
 
    /**
     * @param ecRemark
     */
    public void setEcRemark(String ecRemark) {
        this.ecRemark = ecRemark == null ? null : ecRemark.trim();
    }
 
    /**
     * @return EC_NoticeContent
     */
    public String getEcNoticecontent() {
        return ecNoticecontent;
    }
 
    /**
     * @param ecNoticecontent
     */
    public void setEcNoticecontent(String ecNoticecontent) {
        this.ecNoticecontent = ecNoticecontent == null ? null : ecNoticecontent.trim();
    }
 
    /**
     * 获取签收用户ID(以“;”分隔)
     *
     * @return EC_ReceiverId - 签收用户ID(以“;”分隔)
     */
    public String getEcReceiverid() {
        return ecReceiverid;
    }
 
    /**
     * 设置签收用户ID(以“;”分隔)
     *
     * @param ecReceiverid 签收用户ID(以“;”分隔)
     */
    public void setEcReceiverid(String ecReceiverid) {
        this.ecReceiverid = ecReceiverid == null ? null : ecReceiverid.trim();
    }
 
    /**
     * @return EC_PicUrl
     */
    public String getEcPicurl() {
        return ecPicurl;
    }
 
    /**
     * @param ecPicurl
     */
    public void setEcPicurl(String ecPicurl) {
        this.ecPicurl = ecPicurl == null ? null : ecPicurl.trim();
    }
 
    /**
     * @return EC_BodyUrl
     */
    public String getEcBodyurl() {
        return ecBodyurl;
    }
 
    /**
     * @param ecBodyurl
     */
    public void setEcBodyurl(String ecBodyurl) {
        this.ecBodyurl = ecBodyurl == null ? null : ecBodyurl.trim();
    }
}