feat():增加了删除 修改状态

master
Cui YongXing 2024-08-06 20:53:07 +08:00
parent 8b4661bd77
commit 9d798e1d46
1 changed files with 3 additions and 3 deletions

View File

@ -94,7 +94,7 @@ public class OrderPayCustomerController {
* @return
*/
@DeleteMapping("/{orderCustomerId}")
@Operation(summary = "客户信息删除",description = "通过客户id删除")
@Operation(summary = "客户信息删除",description = "通过客户id删除,七天内使用过接口不可删除")
public Result<String> delete(@PathVariable("orderCustomerId") Long orderCustomerId){
orderPayCustomerService.removeById(orderCustomerId);
return Result.success(null,"操作成功");
@ -110,7 +110,7 @@ public class OrderPayCustomerController {
return Result.success(orderPayCustomerService.getById(orderCustomerId),"操作成功");
}
/**
*
*
* @param orderCustomerId
* @return
*/
@ -121,7 +121,7 @@ public class OrderPayCustomerController {
return Result.success(null,"操作成功");
}
/**
*
*
* @param orderCustomerId
* @return
*/