WechatOwnerService/constant/MappingConstant.js
2020-02-11 00:04:33 +08:00

20 lines
559 B
JavaScript

/**
* 编码映射常量类
*
* add by wuxw 2019-12-28
*/
class MappingConstant{
static LOGIN_FLAG = 'loginFlag'; //登录标识
static TOKEN = "token"; // token 标识
static USER_INFO = "userInfo"; // 用户信息
static AREA_INFO = "areaInfo"; // 地区信息
static CURRENT_COMMUNITY_INFO = "currentCommunityInfo"; // 小区信息
static OWNER_INFO = "ownerInfo"; // 当前业主信息
static CURRENT_COMMUNITY_INFO = "currentCommunityInfo"; //业主当前小区信息
static HC_ENV = "_HC_ENV"
}
module.exports = MappingConstant;