using System; using SqlSugar; using System.Linq; using System.ComponentModel; using System.Collections.Generic; using Tiger.Model; namespace Tiger.Model.Minsun { /// /// 实体:Sys_Users /// [Description("Primary:Id")] [Serializable] [SugarTable("Sys_Users")] public class Sys_Users : iDBEntity { #region 构造函数 /// /// 实体:Sys_Users /// public Sys_Users() {} #endregion #region 公共属性 /// /// 主键 /// [SugarColumn(IsPrimaryKey = true)] public long Id { get; set; } /// /// /// public string ProfilePictureId { get; set; } /// /// /// public bool ShouldChangePasswordOnNextLogin { get; set; } /// /// /// public long UserLinkId { get; set; } /// /// /// public string AuthenticationSource { get; set; } /// /// /// public string Name { get; set; } /// /// /// public string Surname { get; set; } /// /// /// public string Password { get; set; } /// /// /// public string EmailAddress { get; set; } /// /// /// public bool IsEmailConfirmed { get; set; } /// /// /// public string EmailConfirmationCode { get; set; } /// /// /// public string PasswordResetCode { get; set; } /// /// /// public DateTime LastLoginTime { get; set; } = DateTime.MinValue; /// /// /// public bool IsActive { get; set; } /// /// /// public string UserName { get; set; } /// /// /// public bool IsDeleted { get; set; } /// /// /// public long DeleterUserId { get; set; } /// /// /// public DateTime DeletionTime { get; set; } = DateTime.MinValue; /// /// /// public DateTime LastModificationTime { get; set; } = DateTime.MinValue; /// /// /// public long LastModifierUserId { get; set; } /// /// /// public DateTime CreationTime { get; set; } = DateTime.MinValue; /// /// /// public long CreatorUserId { get; set; } #endregion #region 虚拟属性 /*例子 [SugarColumn(IsIgnore = true)] public string FieldName { get; set; } */ #endregion #region 枚举变量 /*例子 public enum FieldNames { [Description("枚举描述0")] Enum0, [Description("枚举描述1")] Enum1, } */ #endregion #region 公共方法 #endregion }//endClass }