zhanghua
2023-07-10 cf995221ffcdee0cde9641545b7a1123002018da
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
package com.ycl.common.constant;
 
/**
 * <p>
 *   案件状态类
 * </p>
 *
 * @author mg
 * @since 2022-10-02
 */
public class BaseCaseStatus {
    /**
     * 待处理
     */
    public static final Integer PENDING = 0;
    /**
     * 误报
     */
    public static final Integer  ERROR_REPORT = 1;
    /**
     * 上报
     */
    public static final Integer REPORT = 2;
    /**
     * 再学习/再训练
     */
    public static final Integer RELEARN = 3;
    /**
     * 暂不处理
     */
    public static final Integer NO_PROCESSING = 4;
    /**
     * 立案
     */
    public static final Integer REGISTER = 5;
    /**
     * 调度
     */
    public static final Integer DISPATCH = 6;
    /**
     * 处置
     */
    public static final Integer DISPOSE = 7;
    /**
     * 核查
     */
    public static final Integer CHECK = 8;
    /**
     *  结案
     */
    public static final Integer CLOSING_REGISTER  = 9;
 
 
    /**
     *  待上报
     */
    public static final Integer WAIT_REPORT  = 10;
 
}