PropertyApp/constant/MappingConstant.js
2020-02-22 18:51:21 +08:00

23 lines
536 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;