using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_Core.BaseRepository; using WIDESEA_Core.BaseServices; using WIDESEA_DTO.Basic; using WIDESEA_Model.Models; namespace WIDESEA_IBasicService { public interface IDt_ApiInfoService : IService { /// /// 根据类别,api键获取到对应的接口数据 /// /// 类别 /// Dt_ApiInfo GetConfigsByAPIInfo(string ApiCode, string ApiInterfaceAddress); } }