using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.SysLog; /// /// 请求日记输出 /// [SuppressSniffer] public class LogRequestOutput { /// /// id. /// public string id { get; set; } /// /// 请求时间. /// public DateTime? creatorTime { get; set; } /// /// 请求用户名. /// public string userName { get; set; } /// /// 请求IP. /// public string ipaddress { get; set; } /// /// 请求设备. /// public string platForm { get; set; } /// /// 请求地址. /// public string requestURL { get; set; } /// /// 请求类型. /// public string requestMethod { get; set; } /// /// 请求耗时. /// public int requestDuration { get; set; } }