module.exports = {
    // 普通用户状态
    userType:1,
    // 管理员账户
    adminType:2,
    // 用户表正常状态
    userNomalState: 1,
    // 用户表封禁状态
    userFreezeState:2,
    // 用户注销状态
    userStopState: 3,
    // 国内航班
    routeType_domestic:1,
    // 国际航班
    routeType_international:2,
    // 国内城市
    cityType_domestic:1,
    // 国际城市
    cityType_international:2,

}