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
| package cn.huge.module.cases.domain.dto;
|
| import com.baomidou.mybatisplus.annotation.TableField;
| import lombok.Data;
|
| import java.util.Date;
|
| @Data
| public class FrontPageCountDTO {
| /**
| * 待分派
| */
| private Long waitDisp;
|
| /**
| * 待签收
| */
| private Long waitSign;
|
| /**
| * 待受理
| */
| private Long waitAccept;
|
| /**
| * 办理中
| */
| private Long Processing;
|
| /**
| * 待审核
| */
| private Long waitReview;
|
| /**
| * 待审核(回退审核)
| */
| private Long returnReview;
|
| /**
| * 待审核(上报审核)
| */
| private Long appearReview;
|
| /**
| * 待审核(结案申请审核)
| */
| private Long windupReview;
|
| /**
| * 待审核(联合处置审核)
| */
| private Long assistReview;
|
| /**
| * 督办
| */
| private Long supervise;
|
| /**
| * 已办
| */
| private Long alreadyDone;
|
| /**
| * 草稿
| */
| private Long caseDraft;
| }
|
|