using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Core; using WIDESEAWCS_Core.BaseRepository; using WIDESEAWCS_Core.BaseServices; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_IBasicInfoService { public interface IApiInfoService : IService { public IRepository Repository { get; } /// /// Post接口请求 /// /// 接口编号 /// 请求内容 /// 备注 /// 是否添加日志 /// public WebResponseContent PostInterfaceRequest(string apiCode, string requestParameters, string remark, bool isAdd = true); } }