webapp
2019-10-03 d0b13a8df3c5b66b772a11f379d2443e4976c73a
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
package com.java110.utils.constant;
 
/**
 * 过程数据状态常量
 * Created by wuxw on 2017/5/20.
 */
public class StateConstant {
 
    private StateConstant() {
 
    }
 
    //未审核
    public static final String NO_AUDIT = "1000";
 
 
    //审核同意
    public static final String AGREE_AUDIT = "1100";
 
    //审核拒绝
    public static final String REJECT_AUDIT = "1200";
 
 
    /**
     * 未派单
     */
    public static final String REPAIR_NO_DISPATCH = "1000";
 
    /**
     * 拍单处理中
     */
    public static final String REPAIR_DISPATCHING = "1100";
 
    /**
     * 拍单处理完成
     */
    public static final String REPAIR_DISPATCH_FINISH = "1200";
 
 
}