You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

106 lines
1.5 KiB

package com.epmet.constant;
/**
* @Description
* @IntefaceName UserConstant
* @Author wangc
* @date 2020.03.28 16:51
*/
public interface UserConstant {
/**
* 政府端
*/
String APP_GOV = "gov";
/**
* 居民端
*/
String APP_RESI = "resi";
/**
* 运营端
*/
String APP_OPER = "oper";
/**
* PC端
*/
String CLIENT_WEB = "web";
/**
* app
*/
String APP = "app";
/**
* 微信端
*/
String CLIENT_WX = "wxmp";
/**
* 居民角色
*/
String ROLE_RESI = "registered_resi";
/**
* 热心居民角色
*/
String ROLE_WARMHEARTED = "warmhearted";
/**
* 党员角色
*/
String ROLE_PARTYMEMBER = "partymember";
/**
* 未禁用enable,已禁用diabled
*/
String ENABLE="enable";
/**
* 未禁用enable,已禁用diabled
*/
String DISABLED="disabled";
/**
* inactive未激活,active已激活
*/
String INACTIVE="inactive";
/**
* inactive未激活,active已激活
*/
String ACTIVE="active";
/**
* user表新增数据失败
*/
String SAVE_USER = "新增用户信息失败";
/**
* user_wechat表新增数据失败
*/
String SAVE_USER_WECHAT = "新增用户微信信息失败";
/**
* user_wechat表更新数据失败
*/
String UPDATE_USER_WECHAT = "更新用户微信信息失败";
/**
* 先生
*/
String MAN = "先生";
/**
* 女士
*/
String WOMAN = "女士";
/**
* 先生/女士
*/
String MAN_WOMAN = "先生/女士";
String GRID_ID="GRID_ID";
String GENDER="GENDER";
String HOUSE_TYPE_KEY="HOUSE_TYPE";
String HOME_ID = "HOME_ID";
}