广州市综治平台后端
xusd
2 days ago c490640493f04e2ed0fc5c4c8fbc92ebdd4d5380
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
package cn.huge.module.cases.domain.dto;
 
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class FrontPageListDTO {
    /**
     * 所属编号
     */
    private String windupId;
 
    /**
     * 所属编号
     */
    private String ownerId;
    /**
     * 所属最新任务id
     */
    private String caseTaskId;
 
 
    /**
     * 事项ID
     */
    private String caseId;
 
    /**
     * 流转时间
     */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone="GMT+8")
    private Date turnaroundTime;
 
    /**
     * 时限
     */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone="GMT+8")
    private Date timeLimit;
 
    /**
     * 事项等级
     */
    private Integer caseGrade;
 
    /**
     * 事项来源
     */
    private String caseSource;
 
    /**
     * 事项类型
     */
    private String caseType;
 
    /**
     * 申请方
     */
    private String plaintiffs;
 
    /**
     * 被申请方
     */
    private String defendants;
 
    /**
     * 已办天数
     */
    private Long processingDays;
 
    /**
     * 承办部门
     */
    private String organizingUnit;
 
    /**
     * 配合部门
     */
    private String cooperatingUnit;
 
    /**
     * 经办人
     */
    private String manager;
 
    /**
     * 办理结果
     */
    private String mediResult;
 
    /**
     * 回退部门
     */
    private String backUnit;
 
    /**
     * 理由
     */
    private String reason;
 
    /**
     * 意见
     */
    private String opinion;
 
    /**
     * 事项状态
     */
    private String process;
 
    /**
     * 申请类型
     */
    private String applyType;
 
    /**
     * 申请进度
     */
    private String applyStatus;
 
    /**
     * 审核部门
     */
    private String auditDept;
 
    /**
     * 办理结果
     */
    private String auditResult;
 
    /**
     * 内容
     */
    private String content;
 
    /**
     * 审核时间
     */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone="GMT+8")
    private Date auditTime;
 
    /**
     * 审核时间
     */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone="GMT+8")
    private Date replyTime;
 
    /**
     * 风险案件标签,0:非风险案件,1:风险案件
     */
    private String isRisk;
 
    /**
     * 事项状态,1:待分派,2:待签收,3:待受理,4:化解中,5:结案审核,6:待评价,7:已归档,8:不予受理
     */
    private String status;
 
    /**
     * 事项状态名称
     */
    private String statusName;
}