CommonConst.java
608 Bytes
package com.cnlive.shenhe.utils;
/**
* @Auther: 周伟鹏
* @Date: 2018/11/30 14:20
* @Description:
*/
public class CommonConst {
/**
* 审核状态:待审核
*/
public static Integer AUDIT_INTT = 0;
/**
* 审核状态:审核通过
*/
public static Integer AUDIT_SUCCESS = 1;
/**
* 审核状态:审核拒绝
*/
public static Integer AUDIT_REFUSE = 2;
/**
* 用户状态:可用
*/
public static Integer USER_STATUS_USE = 1;
/**
* 用户状态:禁用
*/
public static Integer USER_STATUS_FORBID = 2;
}