|
|
@ -59,7 +59,8 @@ public class OutRechargePriceController { |
|
|
|
@ApiOperation(value = "查询充值金额列表") |
|
|
|
@ApiOperation(value = "查询充值金额列表") |
|
|
|
public ResponseData getListOutRechargePrice( |
|
|
|
public ResponseData getListOutRechargePrice( |
|
|
|
@RequestParam(value = "type", required = false) Integer type, |
|
|
|
@RequestParam(value = "type", required = false) Integer type, |
|
|
|
@RequestParam(name = "regionId", required = true) String regionId |
|
|
|
@RequestParam(name = "regionId", required = true) String regionId, |
|
|
|
|
|
|
|
@RequestParam(name = "showType", required = true) Integer showType |
|
|
|
) { |
|
|
|
) { |
|
|
|
try { |
|
|
|
try { |
|
|
|
Map<String, String> map = new HashMap<>(); |
|
|
|
Map<String, String> map = new HashMap<>(); |
|
|
@ -71,8 +72,11 @@ public class OutRechargePriceController { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (type != null ) { |
|
|
|
if (type != null ) { |
|
|
|
map.put("type", String.valueOf(type)); |
|
|
|
map.put("showType", String.valueOf(showType)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (type != null ) { |
|
|
|
|
|
|
|
map.put("type", String.valueOf(type)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return ResponseMsgUtil.success( outRechargePriceService.getListRechargePriceC(map)); |
|
|
|
return ResponseMsgUtil.success( outRechargePriceService.getListRechargePriceC(map)); |
|
|
|