using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; using WIDESEAWCS_Core.DB.Models; using WIDESEAWCS_Core.Tenants; namespace WIDESEAWCS_Model.Models { [SugarTable("Dt_LoginHistory", "登录记录"), MultiTenant] public class Dt_LoginHistory : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int ID { get; set; } /// /// 用户账户 /// /// [SugarColumn(IsNullable = true, Length = 50)] public string Account { get; set; } /// /// 用户真实姓名 /// [SugarColumn(IsNullable = true, Length = 50)] public string TrurName { get; set; } /// /// ip地址 /// [SugarColumn(IsNullable = true, Length = 50)] public string LogIP { get; set; } } }