using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.DataInterfaceLog;
///
/// 数据接口日记列表输出.
///
[SuppressSniffer]
public class DataInterfaceLogListOutput
{
///
/// id.
///
public string id { get; set; }
///
/// 接口名.
///
public string fullName { get; set; }
///
/// 接口编码.
///
public string enCode { get; set; }
///
/// 调用时间.
///
public DateTime? invokTime { get; set; }
///
/// 调用者.
///
public string userId { get; set; }
///
/// ip.
///
public string invokIp { get; set; }
///
/// 设备.
///
public string invokDevice { get; set; }
///
/// 类型.
///
public string invokType { get; set; }
///
/// 耗时.
///
public int? invokWasteTime { get; set; }
}