修改话费

new-dev
袁野 1 year ago
parent 07abe061cc
commit 6630061cfe
  1. 6
      hai-cweb/src/main/java/com/cweb/controller/OutRechargePriceController.java

@ -54,10 +54,14 @@ public class OutRechargePriceController {
@ApiOperation(value = "查询充值金额列表")
public ResponseData getRechargePriceByList(
@RequestParam(name = "platformId", required = true) Integer platformId,
@RequestParam(name = "companyId", required = true) Long companyId
@RequestParam(name = "companyId", required = false) Long companyId
) {
try {
if (companyId == null) {
companyId = 23L;
}
Map<String, Object> map;
List<SecDictionary> secDictionaryList = commonService.mappingSysNameOl("OPERATOR_TYPE");

Loading…
Cancel
Save