|  |  | 
 |  |  |         ordersService.update(orders); | 
 |  |  |         return  ApiResponse.success("操作成功"); | 
 |  |  |     } | 
 |  |  |     @LoginRequired | 
 |  |  |     @ApiOperation(value = "接单方确认订单费用 - 接单方", notes = "小程序端") | 
 |  |  |     @PostMapping("/confirmFee") | 
 |  |  |     @ApiImplicitParams({ | 
 |  |  |             @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true), | 
 |  |  |     }) | 
 |  |  |     public ApiResponse confirmFee(@RequestBody ConfirmFeeOrderDTO orders) { | 
 |  |  |         orders.setMember(this.getMemberResponse()); | 
 |  |  |         ordersService.confirmFee(orders); | 
 |  |  |         return  ApiResponse.success("操作成功"); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  | //    @LoginRequired | 
 |  |  | 
 |  |  |         return  ApiResponse.success("操作成功"); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @LoginRequired | 
 |  |  |     @ApiOperation(value = "取消前提示语 - 发单方", notes = "小程序端") | 
 |  |  |     @GetMapping("/cancelTips") | 
 |  |  |     @ApiImplicitParams({ | 
 |  |  |             @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true), | 
 |  |  |     }) | 
 |  |  |     public ApiResponse cancelTips(@RequestParam Integer orderId) { | 
 |  |  |         ordersService.cancelTips(orderId,this.getMemberResponse()); | 
 |  |  |         return  ApiResponse.success("操作成功"); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |  |