mg
2022-10-02 daef4a9154b67c2b6c4c684d1c36d1182b6da471
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;
 
}