package cc.mrbird.febs.user.contant; public class MemberConstant { //添加途径 1-正常注册 0-后台添加 public static final Integer ADD_TYPE_NORMAL = 1; public static final Integer ADD_TYPE_BACK = 0; //性别 0-女 1-男性 2-未填写 public static final Integer FEMALE = 0; public static final Integer MALE = 1; public static final Integer UNKNOWN = 2; /** * 账户状态;1-正常 0-禁用 */ public static final Integer ACCOUNT_STATUS_NORMAL = 1; public static final Integer ACCOUNT_STATUS_TEST = 0; /** * 账户类型;1-正常用户 0-测试账户 */ public static final Integer ACCOUNT_TYPE_NORMAL = 1; public static final Integer ACCOUNT_TYPE_TEST = 0; /** * 是否是主账号 1-是 0-否 */ public static final Integer DIRECTER_YES = 1; public static final Integer DIRECTER_NO = 0; }