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
| package cn.huge.module.analysis.domain.dto;
|
| import lombok.Data;
|
| @Data
| public class StatisticsGroupDTO {
| /**
| * 总数
| */
| private int zs;
|
| /**
| * 分派超时数量
| */
| private int fpcs;
|
| /**
| * 受理超时数量
| */
| private int slcs;
|
| /**
| * 督办超时数量
| */
| private int dbcs;
|
| /**
| * 算总和
| */
| public int getTotal() {
| int total = 0;
| total += fpcs;
| total += slcs;
| total += dbcs;
| return total;
| }
| }
|
|