using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("soft_resetpwd")] public partial class SoftResetpwd { public SoftResetpwd(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int ID {get;set;} /// /// Desc:软件用户名 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="soft_username")] public string? Soft_username {get;set;} /// /// Desc:资源ID /// Default: /// Nullable:True /// [SugarColumn(ColumnName="resid")] public string? Resid {get;set;} /// /// Desc:时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="ctime")] public DateTime? Ctime {get;set;} /// /// Desc:新密码 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="newpassword")] public string? Newpassword {get;set;} /// /// Desc:公司编码 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="companycode")] public string? Companycode {get;set;} /// /// Desc:员工ID /// Default: /// Nullable:True /// [SugarColumn(ColumnName="userid")] public int? Userid {get;set;} } }