feat():补齐订单客户相关API接口
parent
0850c180bb
commit
1c7125eb3f
|
@ -99,7 +99,7 @@ public class OrderPayCustomerController {
|
||||||
* @param orderCustomerId 删除客户请求信息
|
* @param orderCustomerId 删除客户请求信息
|
||||||
* @return 删除结果
|
* @return 删除结果
|
||||||
*/
|
*/
|
||||||
@PutMapping("/{orderCustomerId}")
|
@DeleteMapping("/{orderCustomerId}")
|
||||||
@Operation(summary = "客户信息删除",description = "通过ID删除客户信息")
|
@Operation(summary = "客户信息删除",description = "通过ID删除客户信息")
|
||||||
public Result<String> delete(@PathVariable("orderCustomerId") Long orderCustomerId){
|
public Result<String> delete(@PathVariable("orderCustomerId") Long orderCustomerId){
|
||||||
orderPayCustomerService.removeById(orderCustomerId);
|
orderPayCustomerService.removeById(orderCustomerId);
|
||||||
|
|
Loading…
Reference in New Issue