WechatOwnerService/constant/MappingConstant.js
2019-12-29 00:50:55 +08:00

16 lines
315 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"; // 地区信息
}
module.exports = MappingConstant;