feat():增删改查

master
chentaisen 2024-08-09 20:00:04 +08:00
parent d12bba9d25
commit 02ad79db1f
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ public class OrderPayCustomerController {
* @param orderCustomerId ID
* @return
*/
@DeleteMapping("/{orderCustomerId}")
@GetMapping("/{orderCustomerId}")
@Operation(summary = "通过ID获取客户信息", description = "通过ID获取客户信息")
public Result<OrderPayCustomer> findById(@PathVariable("orderCustomerId") Long orderCustomerId) {
return Result.success(orderPayCustomerService.getById(orderCustomerId), "操作成功");