| | |
| | | /** |
| | | * 订单列表-修改物流编号 |
| | | */ |
| | | @GetMapping("printOrder/{id}") |
| | | @ControllerEndpoint(operation = "订单列表-修改物流编号", exceptionMessage = "操作失败") |
| | | public FebsResponse printOrder(@NotNull(message = "{required}") @PathVariable Long id) { |
| | | AdminClothesPrintOrderDto dto = new AdminClothesPrintOrderDto(); |
| | | dto.setId(id); |
| | | return clothesTypeService.printOrder(dto); |
| | | } |
| | | |
| | | /** |
| | | * 订单列表-修改物流编号 |
| | | */ |
| | | @PostMapping("deliverGoodsUpdate") |
| | | @ControllerEndpoint(operation = "订单列表-修改物流编号", exceptionMessage = "操作失败") |
| | | public FebsResponse deliverGoodsUpdate(@Valid AdminClothesDeliverGoodsDto dto) { |