| | |
| | | case fullMinus = 2 //满减 |
| | | } |
| | | |
| | | enum UserType:Int,HandyJSONEnum { |
| | | case usual = 0 //通用 |
| | | case special = 1 //快车 |
| | | case taxi = 2 //出租车 |
| | | case intercity = 3 //城际 |
| | | case expressSamecity = 4 //小件物流-同城 |
| | | case expressOthercity = 5 // 小件物流-跨城 |
| | | case charter = 6 //包车 |
| | | //enum UserType:Int,HandyJSONEnum { |
| | | // case usual = 0 //通用 |
| | | // case special = 1 //快车 |
| | | // case taxi = 2 //出租车 |
| | | // case intercity = 3 //城际 |
| | | // case expressSamecity = 4 //小件物流-同城 |
| | | // case expressOthercity = 5 // 小件物流-跨城 |
| | | // case charter = 6 //包车 |
| | | // case custom = 7 //95128电召 |
| | | // case scenic = 8 //景区直通车 |
| | | // case plane = 9 //机场专线 |
| | | // case offical = 10 //公务用车 |
| | | //} |
| | | |
| | | |
| | | /// 出行方式 /// 业务类型(1=快车,2=出租车,3=城际,4=小件物流-同城,5=小件物流-跨城,6=包车) |
| | | enum OrderType: Int,HandyJSONEnum{ |
| | | // 出租车 |
| | | case taxi = 2 |
| | | /// 快车 |
| | | case special = 1 |
| | | /// 跨城 |
| | | case travel = 3 |
| | | /// 同城物流 |
| | | case cityLogistics = 4 |
| | | /// 跨城物流 |
| | | case acrossLogistics = 5 |
| | | /// 包车 |
| | | case charter = 6 |
| | | /// 95128电召 |
| | | case custom = 7 |
| | | /// 景区直通车 |
| | | case scenic = 8 |
| | | /// 机场专线 |
| | | case plane = 9 |
| | | ///公务用车 |
| | | case offical = 10 |
| | | } |
| | | |
| | | enum DiscountType:Int,HandyJSONEnum{ |