| | |
| | | return apiClothesOrderService.findOrderList(dto); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "获取订单角标数量") |
| | | @GetMapping(value = "/findMarkCnt") |
| | | public FebsResponse findMarkCnt() { |
| | | |
| | | return apiClothesOrderService.findMarkCnt(); |
| | | } |
| | | |
| | | @ApiOperation(value = "订单详情", notes = "订单详情") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiClothesOrderListInfoVo.class) |
| | |
| | | @ApiOperation(value = "确认收货", notes = "确认收货") |
| | | @PostMapping(value = "/confirm/{id}") |
| | | public FebsResponse confirm(@PathVariable("id") Long id) { |
| | | |
| | | return apiClothesOrderService.confirmOrder(id); |
| | | } |
| | | |