New file |
| | |
| | | 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; |
| | | |
| | | } |