| | |
| | | package com.stylefeng.guns.modular.system.service.impl; |
| | | |
| | | import com.stylefeng.guns.modular.crossCity.server.IOrderCrossCityService; |
| | | import com.stylefeng.guns.modular.smallLogistics.server.IOrderLogisticsService; |
| | | import com.stylefeng.guns.modular.specialTrain.server.IOrderPrivateCarService; |
| | | import com.stylefeng.guns.modular.system.service.INettyService; |
| | | import com.stylefeng.guns.modular.system.util.ResultUtil; |
| | |
| | | @Autowired |
| | | private IOrderCrossCityService orderCrossCityService; |
| | | |
| | | @Autowired |
| | | private IOrderLogisticsService orderLogisticsService; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * 获取下单推送完后没有司机接单的提醒 |
| | |
| | | break; |
| | | case 2: |
| | | endPushWarpper = orderTaxiService.queryEndPush(uid); |
| | | break; |
| | | case 4: |
| | | endPushWarpper = orderLogisticsService.queryEndPush(uid); |
| | | break; |
| | | } |
| | | return ResultUtil.success(endPushWarpper); |
| | |
| | | case 3: |
| | | orderServerWarpper = orderCrossCityService.queryOrderServer(orderId, uid);//出租车 |
| | | break; |
| | | case 4: |
| | | orderServerWarpper = orderLogisticsService.queryOrderServer(orderId, uid);//专车 |
| | | break; |
| | | } |
| | | return ResultUtil.success(orderServerWarpper); |
| | | } |