using Volo.Abp.Application.Dtos; namespace Yi.Framework.Rbac.Application.Contracts.Dtos.LoginLog { public class LoginLogGetListOutputDto : EntityDto { public DateTime CreationTime { get; set; } public string? LoginUser { get; set; } public string? LoginLocation { get; set; } /// /// 登录Ip /// public string? LoginIp { get; set; } /// /// 浏览器 /// public string? Browser { get; set; } /// /// 操作系统 /// public string? Os { get; set; } /// /// 登录信息 /// public string? LogMsg { get; set; } public Guid? CreatorId { get; set; } } }