| | |
| | | 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 |
| | | public class Dt_LoginHistory : BaseEntity |
| | | { |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")] |
| | | public int ID { get; set; } |
| | |
| | | |
| | | [SugarColumn(IsNullable = true, Length = 50)] |
| | | public string LogIP { get; set; } |
| | | [SugarColumn(IsNullable = true)] |
| | | public DateTime Createdate { get; set; } |
| | | //[SugarColumn(IsNullable = true)] |
| | | // public DateTime Createdate { get; set; } |
| | | } |
| | | |
| | | } |