1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.ycl.constant;
|
| /**
| * <p>
| * 案件状态类
| * </p>
| *
| * @author mg
| * @since 2022-10-02
| */
| public class BaseCaseStatus {
| /**
| * 调度
| */
| public static final Integer DISPATCH = 3;
| /**
| * 审核
| */
| public static final Integer CHECK = 5;
|
| }
|
|