mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
package com.panzhihua.common.model.vos.sanshuo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
 
/**
 * Description 三说会堂事件表
 * ClassName   ComEventVO
 * @author     manailin
 * @date       2022-09-07 11:23:51
 */
@Data
@ApiModel(value = "三说会堂事件表")
public class ComEventVO{
    private static final long serialVersionUID = 1L;
    /**主键*/
    @ApiModelProperty(name = "id", value = "主键")
    private Long id;
    /**服务单号(流水号)按照日期时间+数字*/
    @ApiModelProperty(name = "orderSn", value = "服务单号(流水号)按照日期时间+数字")
    private String orderSn;
    /**调解发起人ID*/
    @ApiModelProperty(name = "requestUserId", value = "调解发起人ID")
    private Long requestUserId;
    /**调解发起人操作事件状态(1草稿箱2发布3逻辑删除4、撤销)*/
    @ApiModelProperty(name = "userEventStatus", value = "调解发起人操作事件状态(1草稿箱2发布3逻辑删除4、撤销)")
    private Integer userEventStatus;
    /**调解发起人诉求事件描述*/
    @ApiModelProperty(name = "requestUserEventDes", value = "调解发起人诉求事件描述")
    private String requestUserEventDes;
    /**调解发起人姓名*/
    @ApiModelProperty(name = "requestUserName", value = "调解发起人姓名")
    private String requestUserName;
    /**调解发起人电话*/
    @ApiModelProperty(name = "requestUserTel", value = "调解发起人电话")
    private String requestUserTel;
    /**调解事件类型*/
    @ApiModelProperty(name = "eventCategory", value = "调解事件类型")
    private Long eventCategory;
    /**调解类型(1、行业分中心调解2、村社区调解3、是街道调解4、区)*/
    @ApiModelProperty(name = "type", value = "调解类型(1、行业分中心调解2、村社区调解3、是街道调解4、区)")
    private String type;
    /**上报提交时间*/
    @ApiModelProperty(name = "submitDate", value = "上报提交时间")
    private Date submitDate;
    /**选择预约调解时间*/
    @ApiModelProperty(name = "appointmentTime", value = "选择预约调解时间")
    private Date appointmentTime;
    /**申请人选择的社区ID*/
    @ApiModelProperty(name = "requestUserCommunity", value = "申请人选择的社区ID")
    private Long requestUserCommunity;
    /**行业分中心ID*/
    @ApiModelProperty(name = "centerId", value = "行业分中心ID")
    private String centerId;
    /**行业分中心调解室电话*/
    @ApiModelProperty(name = "centerTel", value = "行业分中心调解室电话")
    private String centerTel;
    /**调解专家所属单位*/
    @ApiModelProperty(name = "specialistOrg", value = "调解专家所属单位")
    private String specialistOrg;
    /**调解专家级别*/
    @ApiModelProperty(name = "specialistLevel", value = "调解专家级别")
    private String specialistLevel;
    /**选择调解专家ID*/
    @ApiModelProperty(name = "specialistId", value = "选择调解专家ID")
    private Long specialistId;
    /**调解专家名字*/
    @ApiModelProperty(name = "specialistName", value = "调解专家名字")
    private String specialistName;
    /**调解专家联系方式*/
    @ApiModelProperty(name = "specialistTel", value = "调解专家联系方式")
    private String specialistTel;
    /**专家受理时间*/
    @ApiModelProperty(name = "specialistAcceptTime", value = "专家受理时间")
    private Date specialistAcceptTime;
    /**撤销类型 1 用户 2 社区3、街道4、行业分中心*/
    @ApiModelProperty(name = "revokeType", value = "撤销类型 1 用户 2 社区3、街道4、行业分中心")
    private Integer revokeType;
    /**工作人员的事件处理状态1待处理2待验证3专家已受理4专家未受理,拒绝5调解中6已结案归档7调解取消*/
    @ApiModelProperty(name = "eventProcessStatus", value = "工作人员的事件处理状态1待处理2待验证3专家已受理4专家未受理,拒绝5调解中6已结案7已归档8调解取消9已删除")
    private Integer eventProcessStatus;
    /**当前处理对象类型(1、行业分中心2、社区3、是街道4、区)*/
    @ApiModelProperty(name = "currentProcessType", value = "当前处理对象类型(1、行业分中心2、社区3、是街道4、区)")
    private Integer currentProcessType;
    /**当前处理机构ID*/
    @ApiModelProperty(name = "currentOrgId", value = "当前处理机构ID")
    private String currentOrgId;
    /**当前机构下处理人ID*/
    @ApiModelProperty(name = "currentProcessUserId", value = "当前机构下处理人ID")
    private Long currentProcessUserId;
    /**当前机构下处理人名称*/
    @ApiModelProperty(name = "currentProcessUserName", value = "当前机构下处理人名称")
    private String currentProcessUserName;
    /**当前调解处理结果*/
    @ApiModelProperty(name = "currentEventProcessResult", value = "当前调解处理结果")
    private String currentEventProcessResult;
    /**调解是否成果1未成果2已成果*/
    @ApiModelProperty(name = "eventSucceed", value = "调解是否成果1未成果2已成果")
    private Integer eventSucceed;
 
    /**撤销描述*/
    @ApiModelProperty(name = "revokeDes", value = "撤销描述")
    private String revokeDes;
    /**事件结果(1、调解失败2、调解成功)*/
    @ApiModelProperty(name = "eventResult", value = "事件结果(1、调解失败2、调解成功)")
    private Integer eventResult;
    /**当前处理人是否上报上级单位处理*/
    @ApiModelProperty(name = "reportSuperior", value = "当前处理人是否上报上级单位处理")
    private Boolean reportSuperior;
    /**归档结案报告*/
    @ApiModelProperty(name = "result", value = "归档结案报告")
    private String result;
    /**已归档处理完毕时间*/
    @ApiModelProperty(name = "resultDate", value = "已归档处理完毕时间")
    private Date resultDate;
    /**是否紧急*/
    @ApiModelProperty(name = "urgent", value = "是否紧急")
    private Boolean urgent;
    /**是否疑难事件*/
    @ApiModelProperty(name = "difficult", value = "是否疑难事件")
    private Boolean difficult;
    /**是否催办*/
    @ApiModelProperty(name = "urgentDell", value = "是否催办")
    private Boolean urgentDell;
    /**是否有效*/
    @ApiModelProperty(name = "invalid", value = "是否有效")
    private Boolean invalid;
    /**是否重大*/
    @ApiModelProperty(name = "major", value = "是否重大")
    private Boolean major;
    /**解决人针对解决事件的处理反馈描述*/
    @ApiModelProperty(name = "requestUserResponse", value = "解决人针对解决事件的处理反馈描述")
    private String requestUserResponse;
    /**创建人*/
    @ApiModelProperty(name = "createBy", value = "创建人")
    private Long createBy;
    /**创建时间*/
    @ApiModelProperty(name = "createAt", value = "创建时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createAt;
    /**修改人*/
    @ApiModelProperty(name = "updateBy", value = "修改人")
    private Long updateBy;
    /**修改时间*/
    @ApiModelProperty(name = "updateAt", value = "修改时间")
    private Date updateAt;
 
    private Long pageNo;
    private Long pageSize;
    private String keyword;
    @ApiModelProperty(value = "查看类型1用户查看自己的调解事件申请2专家查看自己受理的调解事件,3后台查看")
    private Integer userType;
    private Integer usertype;
    private String appId;
    @ApiModelProperty("开始时间")
    private String startTime;
    @ApiModelProperty("结束时间")
    private String endTime;
    private Integer level;
    private Long searchId;
 
    public String getStartTime() {
        return startTime;
    }
 
    public void setStartTime(String startTime) {
        this.startTime = startTime;
    }
 
    public String getEndTime() {
        return endTime;
    }
 
    public void setEndTime(String endTime) {
        this.endTime = endTime;
    }
 
    public Integer getLevel() {
        return level;
    }
 
    public void setLevel(Integer level) {
        this.level = level;
    }
 
    public Long getSearchId() {
        return searchId;
    }
 
    public void setSearchId(Long searchId) {
        this.searchId = searchId;
    }
 
    public String getAppId() {
        return appId;
    }
 
    public void setAppId(String appId) {
        this.appId = appId;
    }
 
    public static long getSerialVersionUID() {
        return serialVersionUID;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getOrderSn() {
        return orderSn;
    }
 
    public void setOrderSn(String orderSn) {
        this.orderSn = orderSn;
    }
 
    public Long getRequestUserId() {
        return requestUserId;
    }
 
    public void setRequestUserId(Long requestUserId) {
        this.requestUserId = requestUserId;
    }
 
    public Integer getUserEventStatus() {
        return userEventStatus;
    }
 
    public void setUserEventStatus(Integer userEventStatus) {
        this.userEventStatus = userEventStatus;
    }
 
    public String getRequestUserEventDes() {
        return requestUserEventDes;
    }
 
    public void setRequestUserEventDes(String requestUserEventDes) {
        this.requestUserEventDes = requestUserEventDes;
    }
 
    public String getRequestUserName() {
        return requestUserName;
    }
 
    public void setRequestUserName(String requestUserName) {
        this.requestUserName = requestUserName;
    }
 
    public String getRequestUserTel() {
        return requestUserTel;
    }
 
    public void setRequestUserTel(String requestUserTel) {
        this.requestUserTel = requestUserTel;
    }
 
    public Long getEventCategory() {
        return eventCategory;
    }
 
    public void setEventCategory(Long eventCategory) {
        this.eventCategory = eventCategory;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public Date getSubmitDate() {
        return submitDate;
    }
 
    public void setSubmitDate(Date submitDate) {
        this.submitDate = submitDate;
    }
 
    public Date getAppointmentTime() {
        return appointmentTime;
    }
 
    public void setAppointmentTime(Date appointmentTime) {
        this.appointmentTime = appointmentTime;
    }
 
    public Long getRequestUserCommunity() {
        return requestUserCommunity;
    }
 
    public void setRequestUserCommunity(Long requestUserCommunity) {
        this.requestUserCommunity = requestUserCommunity;
    }
 
    public String getCenterId() {
        return centerId;
    }
 
    public void setCenterId(String centerId) {
        this.centerId = centerId;
    }
 
    public String getCenterTel() {
        return centerTel;
    }
 
    public void setCenterTel(String centerTel) {
        this.centerTel = centerTel;
    }
 
    public String getSpecialistOrg() {
        return specialistOrg;
    }
 
    public void setSpecialistOrg(String specialistOrg) {
        this.specialistOrg = specialistOrg;
    }
 
    public String getSpecialistLevel() {
        return specialistLevel;
    }
 
    public void setSpecialistLevel(String specialistLevel) {
        this.specialistLevel = specialistLevel;
    }
 
    public Long getSpecialistId() {
        return specialistId;
    }
 
    public void setSpecialistId(Long specialistId) {
        this.specialistId = specialistId;
    }
 
    public String getSpecialistName() {
        return specialistName;
    }
 
    public void setSpecialistName(String specialistName) {
        this.specialistName = specialistName;
    }
 
    public String getSpecialistTel() {
        return specialistTel;
    }
 
    public void setSpecialistTel(String specialistTel) {
        this.specialistTel = specialistTel;
    }
 
    public Date getSpecialistAcceptTime() {
        return specialistAcceptTime;
    }
 
    public void setSpecialistAcceptTime(Date specialistAcceptTime) {
        this.specialistAcceptTime = specialistAcceptTime;
    }
 
    public Integer getRevokeType() {
        return revokeType;
    }
 
    public void setRevokeType(Integer revokeType) {
        this.revokeType = revokeType;
    }
 
    public Integer getEventProcessStatus() {
        return eventProcessStatus;
    }
 
    public void setEventProcessStatus(Integer eventProcessStatus) {
        this.eventProcessStatus = eventProcessStatus;
    }
 
    public Integer getCurrentProcessType() {
        return currentProcessType;
    }
 
    public void setCurrentProcessType(Integer currentProcessType) {
        this.currentProcessType = currentProcessType;
    }
 
    public String getCurrentOrgId() {
        return currentOrgId;
    }
 
    public void setCurrentOrgId(String currentOrgId) {
        this.currentOrgId = currentOrgId;
    }
 
    public Long getCurrentProcessUserId() {
        return currentProcessUserId;
    }
 
    public void setCurrentProcessUserId(Long currentProcessUserId) {
        this.currentProcessUserId = currentProcessUserId;
    }
 
    public String getCurrentProcessUserName() {
        return currentProcessUserName;
    }
 
    public void setCurrentProcessUserName(String currentProcessUserName) {
        this.currentProcessUserName = currentProcessUserName;
    }
 
    public String getCurrentEventProcessResult() {
        return currentEventProcessResult;
    }
 
    public void setCurrentEventProcessResult(String currentEventProcessResult) {
        this.currentEventProcessResult = currentEventProcessResult;
    }
 
    public Integer getEventSucceed() {
        return eventSucceed;
    }
 
    public void setEventSucceed(Integer eventSucceed) {
        this.eventSucceed = eventSucceed;
    }
 
    public String getRevokeDes() {
        return revokeDes;
    }
 
    public void setRevokeDes(String revokeDes) {
        this.revokeDes = revokeDes;
    }
 
    public Integer getEventResult() {
        return eventResult;
    }
 
    public void setEventResult(Integer eventResult) {
        this.eventResult = eventResult;
    }
 
    public Boolean getReportSuperior() {
        return reportSuperior;
    }
 
    public void setReportSuperior(Boolean reportSuperior) {
        this.reportSuperior = reportSuperior;
    }
 
    public String getResult() {
        return result;
    }
 
    public void setResult(String result) {
        this.result = result;
    }
 
    public Date getResultDate() {
        return resultDate;
    }
 
    public void setResultDate(Date resultDate) {
        this.resultDate = resultDate;
    }
 
    public Boolean getUrgent() {
        return urgent;
    }
 
    public void setUrgent(Boolean urgent) {
        this.urgent = urgent;
    }
 
    public Boolean getDifficult() {
        return difficult;
    }
 
    public void setDifficult(Boolean difficult) {
        this.difficult = difficult;
    }
 
    public Boolean getUrgentDell() {
        return urgentDell;
    }
 
    public void setUrgentDell(Boolean urgentDell) {
        this.urgentDell = urgentDell;
    }
 
    public Boolean getInvalid() {
        return invalid;
    }
 
    public void setInvalid(Boolean invalid) {
        this.invalid = invalid;
    }
 
    public Boolean getMajor() {
        return major;
    }
 
    public void setMajor(Boolean major) {
        this.major = major;
    }
 
    public String getRequestUserResponse() {
        return requestUserResponse;
    }
 
    public void setRequestUserResponse(String requestUserResponse) {
        this.requestUserResponse = requestUserResponse;
    }
 
    public Long getCreateBy() {
        return createBy;
    }
 
    public void setCreateBy(Long createBy) {
        this.createBy = createBy;
    }
 
    public Date getCreateAt() {
        return createAt;
    }
 
    public void setCreateAt(Date createAt) {
        this.createAt = createAt;
    }
 
    public Long getUpdateBy() {
        return updateBy;
    }
 
    public void setUpdateBy(Long updateBy) {
        this.updateBy = updateBy;
    }
 
    public Date getUpdateAt() {
        return updateAt;
    }
 
    public void setUpdateAt(Date updateAt) {
        this.updateAt = updateAt;
    }
 
    public Long getPageNo() {
        return pageNo;
    }
 
    public void setPageNo(Long pageNo) {
        this.pageNo = pageNo;
    }
 
    public Long getPageSize() {
        return pageSize;
    }
 
    public void setPageSize(Long pageSize) {
        this.pageSize = pageSize;
    }
 
    public String getKeyword() {
        return keyword;
    }
 
    public void setKeyword(String keyword) {
        this.keyword = keyword;
    }
 
    public Integer getUserType() {
        return userType;
    }
 
    public void setUserType(Integer userType) {
        this.userType = userType;
    }
 
    public Integer getUsertype() {
        return usertype;
    }
 
    public void setUsertype(Integer usertype) {
        this.usertype = usertype;
    }
}