package com.zy.asrs.service; import com.zy.asrs.entity.ApiConfig; import com.baomidou.mybatisplus.service.IService; import java.util.List; public interface ApiConfigService extends IService { ApiConfig selectByUrl(String url); List selectApiConfigList(Integer curr, Integer limit); List selectApiConfigList(Long id,String url, Integer curr, Integer limit); Long selectApiConfigListTotal(Long id,String url); }