using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.SysLog; /// /// 操作日记输出. /// [SuppressSniffer] public class LogOperationOutput { /// /// 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 moduleName { get; set; } /// /// 操作类型. /// public string requestMethod { get; set; } /// /// 请求耗时. /// public int requestDuration { get; set; } /// /// 操作记录. /// public string json { get; set; } }