WechatOwnerService/constant/MappingConstant.js
2019-12-30 00:18:52 +08:00

19 lines
531 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"; //业主当前小区信息
}
module.exports = MappingConstant;