src/main/java/com/mzl/flower/web/customer/OrderCustomerController.java
@@ -148,4 +148,19 @@ orderService.deleteOrder(id); return returnData(R.SUCCESS.getCode(), null); } @GetMapping(value = "/copyOrder") @ApiImplicitParams({ @ApiImplicitParam(name = "id", value = "订单id", required = true, dataType = "String", paramType = "query"), }) @ApiOperation(value = "再来一单") public ResponseEntity<ReturnDataDTO> copyOrder(String id) { String message=orderService.copyOrder(id); return returnData(R.SUCCESS.getCode(),null, message); } }