zhanghua
2023-04-21 cfe431f7938d40cbf2478119baa8a0eab9b746d6
ycl-platform/src/main/java/com/ycl/common/constant/BaseCaseStatus.java
New file
@@ -0,0 +1,53 @@
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;
}