mg
2022-10-02 921dcb7f39220cff85304473edf22cd8302ae750
ycl-platform/src/main/java/com/ycl/constant/BaseCaseStatus.java
@@ -10,12 +10,44 @@
 */
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 = 3;
    public static final Integer DISPATCH = 6;
    /**
     *  审核
     * 处置
     */
    public static final Integer CHECK = 5;
    public static final Integer DISPOSE = 7;
    /**
     * 核查
     */
    public static final Integer CHECK = 8;
    /**
     *  结案
     */
    public static final Integer CLOSING_REGISTER  = 9;
}