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