20230806修改账号的密码安全策略
This commit is contained in:
+26
-2
@@ -11435,7 +11435,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveIdea", DbType="NVarChar(2000)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveIdea", DbType="NVarChar(200)")]
|
||||
public string ApproveIdea
|
||||
{
|
||||
get
|
||||
@@ -149652,7 +149652,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AttentPerson", DbType="NVarChar(3000)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AttentPerson", DbType="NVarChar(500)")]
|
||||
public string AttentPerson
|
||||
{
|
||||
get
|
||||
@@ -154555,6 +154555,8 @@ namespace Model
|
||||
|
||||
private string _HomePageType;
|
||||
|
||||
private string _RawPassword;
|
||||
|
||||
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
|
||||
|
||||
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
|
||||
@@ -155163,6 +155165,8 @@ namespace Model
|
||||
partial void OnMultiProjectChanged();
|
||||
partial void OnHomePageTypeChanging(string value);
|
||||
partial void OnHomePageTypeChanged();
|
||||
partial void OnRawPasswordChanging(string value);
|
||||
partial void OnRawPasswordChanged();
|
||||
#endregion
|
||||
|
||||
public Person_Persons()
|
||||
@@ -156666,6 +156670,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RawPassword", DbType="NVarChar(100)")]
|
||||
public string RawPassword
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._RawPassword;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._RawPassword != value))
|
||||
{
|
||||
this.OnRawPasswordChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._RawPassword = value;
|
||||
this.SendPropertyChanged("RawPassword");
|
||||
this.OnRawPasswordChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentHandle_Person_Persons", Storage="_Accident_AccidentHandle", ThisKey="PersonId", OtherKey="CompileMan", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user