广州市综治平台后端
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
package cn.huge.module.cases.domain.dto;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
/**
 * @author zhouxiantao
 * @create 2024-11-11 18:54
 */
@Data
public class CaseOverviewAreaExcelDTO {
    @ExcelProperty(value="序号")
    private Integer sort;//序号
    @ExcelProperty(value="区域")
    private String areaName;//区域名称
    @ExcelProperty(value={"账号情况","登录账号(综治中心)"})
    private Integer accLoginZzNum;//登陆综治账号数
    @ExcelProperty(value={"账号情况","登录账号(部门)"})
    private Integer accLoginBmNum;//登陆部门账号数
    @ExcelProperty(value={"账号情况","新增账号"})
    private Integer accAddNum;//新增账号数
    @ExcelProperty(value={"纠纷登记情况","总登记"})
    private Integer caseAllNum;//总登记数
    @ExcelProperty(value={"纠纷登记情况","线上来访"})
    private Integer caseXsNum;//线上来访数
    @ExcelProperty(value={"纠纷登记情况","大厅来访"})
    private Integer caseDtNum;//大厅来访数
    @ExcelProperty(value={"纠纷登记情况","自行排查"})
    private Integer caseZxpcNum;//自行排查数
    @ExcelProperty(value={"纠纷登记情况","案件导入"})
    private Integer caseAjdrNum;//案件导入数
 
    @ExcelProperty(value={"化解结果","化解成功"})
    private Integer sourceHjcgNum=0;//化解成功
    @ExcelProperty(value={"化解结果","化解不成功"})
    private Integer sourceHjbcgNum=0;//化解不成功
    @ExcelProperty(value={"化解结果","化解中"})
    private Integer sourceHjzNum=0;//化解中
    @ExcelProperty(value={"化解结果","不予受理"})
    private Integer sourceByslNum=0;//不予受理
 
    @ExcelProperty(value={"流转情况","自行受理"})
    private Integer flowZxslNum=0;//自行受理
    @ExcelProperty(value={"流转情况","流转受理"})
    private Integer flowLzslNum=0;//流转受理
    @ExcelProperty(value={"流转情况","流转中"})
    private Integer flowLzzNum=0;//流转中
    @ExcelProperty(value={"流转情况","不予受理"})
    private Integer flowByslNum=0;//不予受理
 
//    @ExcelProperty(value={"化解情况","总办转"})
//    private Integer flowAllNum;//总流转数
//    @ExcelProperty(value={"化解情况","受理"})
//    private Integer flowSlNum;//受理数
//    @ExcelProperty(value={"化解情况","交办"})
//    private Integer flowJbNum;//交办数
//    @ExcelProperty(value={"化解情况","上报"})
//    private Integer flowSbNum;//上报数
//    @ExcelProperty(value={"化解情况","回退"})
//    private Integer flowHtNum;//回退数
//    @ExcelProperty(value={"化解情况","办结"})
//    private Integer flowBjNum;//办结数
}