using System.ComponentModel.DataAnnotations;
using SqlSugar;
using static EasyTemplate.Tool.Entity.PublicEnum;
namespace EasyTemplate.Tool.Entity;
///
/// 系统日志,记录登录信息
///
[SugarTable(null, "系统日志,记录登录信息")]
public class SystemLogLogin : EntityBaseLite
{
///
/// 日志信息
///
[SugarColumn(ColumnDescription = "日志信息", IsNullable = true)]
public string Info { get; set; }
///
/// 用户id
///
[SugarColumn(ColumnDescription = "用户id", DefaultValue ="1", IsNullable = true)]
public long UserId { get; set; }
///
/// 登录IP地址
///
[SugarColumn(ColumnDescription = "登录IP地址", IsNullable = true)]
public string IpAddress { get; set; }
}