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