广州市综治平台后端
文锦钊
8 days ago aaddd034c256dd37c9f5c0b9971b07b1630d46fa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cn.huge.module.cases.domain.bo;
 
import lombok.Data;
 
/**
 * @author zhouxiantao
 * @create 2024-10-09 19:55
 */
@Data
public class CasePersonCountBO {
    private Integer totalNum = 0;//来访总数
    private Integer zzzxNum = 0;//综治中心数
    private Integer xfNum = 0;//信访数
    private Integer wlNum = 0;//网络数据
    private Integer ottfNum = 0;//12345数量
    private Integer plaintiffNum = 0;//申请方当事人数
    private Integer defendantNum = 0;//被申请方当事人数
    private Integer pagentsNum = 0;//申请方代理人数
    private Integer dagentsNum = 0;//被申请方代理人数
}