| | |
| | | return adminMallOrderService.withAddressUpdate(withAddressUpdateDto); |
| | | } |
| | | |
| | | /** |
| | | * 商家支付方式-列表 |
| | | * @param payMethodDto |
| | | * @param request |
| | | * @return |
| | | */ |
| | | @GetMapping("payMethodList") |
| | | public FebsResponse getPayMethodList(PayMethodDto payMethodDto, QueryRequest request) { |
| | | Map<String, Object> data = getDataTable(adminMallOrderService.getPayMethodListInPage(payMethodDto, request)); |
| | | return new FebsResponse().success().data(data); |
| | | } |
| | | |
| | | /** |
| | | * 商家支付方式-更新 |
| | | */ |
| | | @PostMapping("payMethodEdit") |
| | | @ControllerEndpoint(operation = "商家支付方式-更新", exceptionMessage = "操作失败") |
| | | public FebsResponse payMethodEdit(@Valid PayMethodEditDto payMethodEditDto) { |
| | | return adminMallOrderService.payMethodEdit(payMethodEditDto); |
| | | } |
| | | |
| | | |
| | | |
| | | |