1
huanghongfeng
2 天以前 279077bf41bc726b474ca5d76cd2b8393d41d867
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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<Dt_ApiInfo>
    {
        /// <summary>
        /// 根据类别,api键获取到对应的接口数据
        /// </summary>
        /// <param name="category">类别</param>
        /// <returns></returns>
        Dt_ApiInfo GetConfigsByAPIInfo(string ApiCode, string ApiInterfaceAddress);
    }
}