using System; using SqlSugar; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Admin.Core.Model.Sys { /// ///实体类 /// [Table("SysLoginInfo")] [SugarTable("SysLoginInfo", "admin_sqlite")] public class SysLoginInfo { /// /// InfoID /// [Key] [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] [Required] public int InfoID { get; set; } /// /// UserName /// public string UserName { get; set; } /// /// Ipaddr /// public string IPAddr { get; set; } /// /// LoginLocation /// public string LoginLocation { get; set; } /// /// Browser /// public string Browser { get; set; } /// /// OS /// public string OS { get; set; } /// /// Status /// public int? Status { get; set; } /// /// Msg /// public string Msg { get; set; } /// /// LoginTime /// public DateTime? LoginTime { get; set; } } }