| | |
| | | tape.setOrderType(orderType); |
| | | tape.setInsertTime(new Date()); |
| | | tape.setAfterTime(newDate); |
| | | tape.setOrderId(orderId); |
| | | String[] split = fileLink.split(","); |
| | | for (String s : split) { |
| | | orderTapeService.insert(tape); |
| | |
| | | orderPrivateCar.setRouteRecord(orderPrivateCar.getRouteRecord()==null? fileLink: orderPrivateCar.getRouteRecord()+","+fileLink); |
| | | privateCarService.updateById(orderPrivateCar); |
| | | break; |
| | | case 5: |
| | | case 3: |
| | | OrderCrossCity orderCrossCity = crossCityService.selectById(orderId); |
| | | orderCrossCity.setRecordTime(new Date()); |
| | | orderCrossCity.setRouteRecord(orderCrossCity.getRouteRecord()==null? fileLink: orderCrossCity.getRouteRecord()+","+fileLink); |
| | |
| | | @ApiOperation(value = "获取改派支付金额", tags = {"司机端-服务中"}, notes = "返回金额为0不需要调用支付") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(value = "订单id(跨城多个订单使用逗号分隔)", name = "orderId", required = true, dataType = "string"), |
| | | @ApiImplicitParam(value = "订单类型(1=专车,2=出租车,3=城际,4=小件物流-同城,5=小件物流-跨城)", name = "orderType", required = true, dataType = "int"), |
| | | @ApiImplicitParam(value = "订单类型(1=专车,2=出租车,3=城际,4=小件物流-同城,5=小件物流-跨城 7=接送机)", name = "orderType", required = true, dataType = "int"), |
| | | @ApiImplicitParam(name = "Authorization", value = "Bearer +token", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....") |
| | | }) |
| | | public ResultUtil<BaseWarpper> queryReassignMoney(String orderId, Integer orderType){ |