12345678910111213141516171819 |
- module.exports = {
- superAdmin:1,
- userType:2,
- adminType:3,
- // 用户表正常状态
- userNomalState: 1,
- // 用户表封禁状态
- userFreezeState:2,
- // 用户注销状态
- userStopState: 3,
- // 国内航班
- routeType_domestic:1,
- // 国际航班
- routeType_international:2,
- // 国内城市
- cityType_domestic:1,
- // 国际城市
- cityType_international:2,
- }
|