namespace CloudGaming.Repository.Admin.Entities.Systems; /// /// 操作日志 /// [EntityDescription(NameRuleMode = NameRuleMode.TableName)] public class SysOperationLog : DefaultEntity { /// /// 接口地址 /// public string? Api { get; set; } /// /// ip地址 /// public string? Ip { get; set; } /// /// 表单信息 /// public string? Form { get; set; } /// /// json表单信息 /// public string? FormBody { get; set; } /// /// 地址栏信息 /// public string? QueryString { get; set; } /// /// 接口耗时(毫秒) /// public long TakeUpTime { get; set; } /// /// 浏览器名称 /// public string? Browser { get; set; } /// /// 系统名称 /// public string? OS { get; set; } /// /// 当前操作人id /// public Guid? UserId { get; set; } /// /// 控制器显示名称 /// public string? ControllerDisplayName { get; set; } /// /// 接口显示名称 /// public string? ActionDisplayName { get; set; } }