feat():增删改查
parent
d12bba9d25
commit
02ad79db1f
|
@ -121,7 +121,7 @@ public class OrderPayCustomerController {
|
||||||
* @param orderCustomerId ID
|
* @param orderCustomerId ID
|
||||||
* @return 客户信息
|
* @return 客户信息
|
||||||
*/
|
*/
|
||||||
@DeleteMapping("/{orderCustomerId}")
|
@GetMapping("/{orderCustomerId}")
|
||||||
@Operation(summary = "通过ID获取客户信息", description = "通过ID获取客户信息")
|
@Operation(summary = "通过ID获取客户信息", description = "通过ID获取客户信息")
|
||||||
public Result<OrderPayCustomer> findById(@PathVariable("orderCustomerId") Long orderCustomerId) {
|
public Result<OrderPayCustomer> findById(@PathVariable("orderCustomerId") Long orderCustomerId) {
|
||||||
return Result.success(orderPayCustomerService.getById(orderCustomerId), "操作成功");
|
return Result.success(orderPayCustomerService.getById(orderCustomerId), "操作成功");
|
||||||
|
|
Loading…
Reference in New Issue