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<Dt_ApiInfo>
|
{
|
public IRepository<Dt_ApiInfo> Repository { get; }
|
|
/// <summary>
|
/// Post接口请求
|
/// </summary>
|
/// <param name="apiCode">接口编号</param>
|
/// <param name="requestParameters">请求内容</param>
|
/// <param name="remark">备注</param>
|
/// <param name="isAdd">是否添加日志</param>
|
/// <returns></returns>
|
public WebResponseContent PostInterfaceRequest(string apiCode, string requestParameters, string remark, bool isAdd = true);
|
}
|
}
|