1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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";
 
 
}