using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.DataInterFace;
///
/// 数据接口信息输出.
///
[SuppressSniffer]
public class DataInterfaceInfoOutput
{
///
/// id.
///
public string id { get; set; }
///
/// 接口名称.
///
public string fullName { get; set; }
///
/// 分类id.
///
public string categoryId { get; set; }
///
/// 数据源id.
///
public string dbLinkId { get; set; }
///
/// 请求方式.
///
public string requestMethod { get; set; }
///
/// 返回类型.
///
public string responseType { get; set; }
///
/// 排序.
///
public long? sortCode { get; set; }
///
/// 编码.
///
public string enCode { get; set; }
///
/// 状态.
///
public int? enabledMark { get; set; }
///
/// 描述.
///
public string description { get; set; }
///
/// 查询语句.
///
public string query { get; set; }
///
/// 数据类型(1-SQL数据,2-静态数据,3-Api数据).
///
public int? dataType { get; set; }
///
/// 请求参数JSON.
///
public string requestParameters { get; set; }
///
/// 接口路径.
///
public string path { get; set; }
///
/// 请求头.
///
public string requestHeaders { get; set; }
///
/// 规则.
///
public int? checkType { get; set; }
///
/// 数据处理.
///
public string dataProcessing { get; set; }
///
/// 跨域ip.
///
public string ipAddress { get; set; }
}