You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
3.6 KiB
115 lines
3.6 KiB
using System.ComponentModel.DataAnnotations;
|
|
using Dm.Config;
|
|
using Entity.Base;
|
|
using SqlSugar;
|
|
|
|
namespace Entity.DbModel.System.SysBaseObject
|
|
{
|
|
/// <summary>
|
|
/// 系统访问日志表
|
|
/// </summary>
|
|
[SugarTable("sys_log_vis")]
|
|
public partial class SysLogVis : EntityBase
|
|
{
|
|
/// <summary>
|
|
/// 模块名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "模块名称", Length = 256, ColumnName = "controller_name")]
|
|
[MaxLength(256)]
|
|
public string? ControllerName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 方法名称
|
|
///</summary>
|
|
[SugarColumn(ColumnDescription = "方法名称", Length = 256, ColumnName = "action_name")]
|
|
[MaxLength(256)]
|
|
public string? ActionName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 显示名称
|
|
///</summary>
|
|
[SugarColumn(ColumnDescription = "显示名称", Length = 256, ColumnName = "display_title")]
|
|
[MaxLength(256)]
|
|
public string? DisplayTitle { get; set; }
|
|
|
|
/// <summary>
|
|
/// 执行状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "执行状态", Length = 32, ColumnName = "status")]
|
|
[MaxLength(32)]
|
|
public string? Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// IP地址
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "IP地址", Length = 256, ColumnName = "remote_ip")]
|
|
[MaxLength(256)]
|
|
public string? RemoteIp { get; set; }
|
|
|
|
/// <summary>
|
|
/// 登录地点
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "登录地点", Length = 128, ColumnName = "location")]
|
|
[MaxLength(128)]
|
|
public string? Location { get; set; }
|
|
|
|
/// <summary>
|
|
/// 经度
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "经度", ColumnName = "longitude")]
|
|
public double? Longitude { get; set; }
|
|
|
|
/// <summary>
|
|
/// 维度
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "维度", ColumnName = "latitude")]
|
|
public double? Latitude { get; set; }
|
|
|
|
/// <summary>
|
|
/// 浏览器
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "浏览器", Length = 1024, ColumnName = "browser")]
|
|
[MaxLength(1024)]
|
|
public string? Browser { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作系统
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "操作系统", Length = 256, ColumnName = "os")]
|
|
[MaxLength(256)]
|
|
public string? Os { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作用时
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "操作用时", ColumnName = "elapsed")]
|
|
public long? Elapsed { get; set; }
|
|
|
|
/// <summary>
|
|
/// 日志时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "日志时间", ColumnName = "log_date_time")]
|
|
public DateTime? LogDateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 日志级别
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "日志级别", ColumnName = "log_level")]
|
|
public LogLevel? LogLevel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 账号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "账号", Length = 32, ColumnName = "account")]
|
|
[MaxLength(32)]
|
|
public string? Account { get; set; }
|
|
|
|
/// <summary>
|
|
/// 真实姓名
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "真实姓名", Length = 32, ColumnName = "real_name")]
|
|
[MaxLength(32)]
|
|
public string? RealName { get; set; }
|
|
}
|
|
}
|