|  |  |  | 
|---|
|  |  |  | 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 | 
|---|