using System; using SqlSugar; namespace EasyBL.WebApi.Models { /// /// /// [SugarTable("TicketAuth")] public partial class TicketAuth { public TicketAuth() { } [SugarColumn(IsIgnore = true)] public int RowIndex { get; set; } /// /// Desc: Default: Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int NO { get; set; } public const string CN_NO = "NO"; /// /// Desc: Default: Nullable:True /// public string OrgID { get; set; } public const string CN_ORGID = "OrgID"; /// /// Desc: Default: Nullable:False /// public string UserID { get; set; } public const string CN_USERID = "UserID"; /// /// Desc: Default: Nullable:True /// public string UserName { get; set; } public const string CN_USERNAME = "UserName"; /// /// Desc: Default: Nullable:False /// public string Token { get; set; } public const string CN_TOKEN = "Token"; /// /// Desc: Default: Nullable:True /// public string LoginIp { get; set; } public const string CN_LOGINIP = "LoginIp"; /// /// Desc: Default: Nullable:True /// public string IsVerify { get; set; } public const string CN_ISVERIFY = "IsVerify"; /// /// Desc: Default: Nullable:True /// public DateTime? LoginTime { get; set; } public const string CN_LOGINTIME = "LoginTime"; /// /// Desc: Default: Nullable:False /// public DateTime ExpireTime { get; set; } public const string CN_EXPIRETIME = "ExpireTime"; /// /// Desc: Default: Nullable:True /// public DateTime? CreateTime { get; set; } public const string CN_CREATETIME = "CreateTime"; /// /// Desc: Default: Nullable:True /// public string OutlookId { get; set; } public const string CN_OUTLOOKID = "OutlookId"; } }