|
@@ -72,11 +72,11 @@ public class OperationCenterBaseController {
|
|
|
|
|
|
*平台支付方式
|
|
|
*/
|
|
|
- @PostMapping("/payMethod/{operatorsId}")
|
|
|
+ @PostMapping("/payMethod")
|
|
|
@ResponseBody
|
|
|
- public R<List<OperationCenterVo>> paymentMethod(@PathVariable("operatorsId") Long operatorsId) {
|
|
|
+ public R<List<OperationCenterVo>> paymentMethod() {
|
|
|
R<List<OperationCenterVo>> result = new R<>();
|
|
|
- List<OperationCenterVo> paymentMethod = operationCenterBaseDubboService.getPaymentByOperatorId(operatorsId);
|
|
|
+ List<OperationCenterVo> paymentMethod = operationCenterBaseDubboService.getPaymentByOperatorId();
|
|
|
result.setData(paymentMethod);
|
|
|
return result;
|
|
|
}
|