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";
|
|
|
}
|