using System.Text.Json.Serialization; using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.UsersCurrent; /// /// 当前用户系统日记输出. /// [SuppressSniffer] public class UsersCurrentSystemLogOutput { /// /// 登录时间. /// 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; } /// /// 模块名称. /// [JsonIgnore] public string moduleName { get; set; } /// /// 用户ID. /// [JsonIgnore] public string userId { get; set; } /// /// 类型. /// [JsonIgnore] public int? category { get; set; } }