/** * 编码映射常量类 * * 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;