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
| package org.springblade.common.constant;
|
| public interface AuditStatusConstant {
| /**
| * 已提交
| */
| Integer COMMIT = 1;
|
| /**
| * 处理中
| */
| Integer PROCESSING = 2;
|
| /**
| * 自行撤销
| */
| Integer SELF_CANCEL = 3;
|
| /**
| * 已完成
| */
| Integer FINISH = 4;
|
| /**
| * 许可证已发放
| */
| Integer PASS_DISTRIBUTE = 10;
|
| /**
| * 拒绝受理
| */
| Integer REJECT_AUDIT = 99;
| }
|
|