| | |
| | | @Api(value = "动态接口管理", tags = {"动态接口管理"}) |
| | | @ApiResource({"blade-system/interface-config"}) |
| | | @RestController |
| | | /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/controller/InterfaceConfigController.class */ |
| | | public class InterfaceConfigController extends BladeController { |
| | | private IInterfaceConfigService interfaceConfigService; |
| | | |
| | |
| | | String urlName = (String) params.get("urlName"); |
| | | String url = (String) params.get("url"); |
| | | List<InterfaceConfig> list = this.interfaceConfigService.list( |
| | | Lambda.eq((owningChart != null), InterfaceConfig::getOwningChart, owningChart) |
| | | Lambda.eq(owningChart != null, InterfaceConfig::getOwningChart, owningChart) |
| | | .eq((urlType != null), InterfaceConfig::getUrlType, urlType) |
| | | .like(Func.isNotBlank(urlName), InterfaceConfig::getUrlName, urlName) |
| | | .like(Func.isNotBlank(url), InterfaceConfig::getUrl, url) |