This commit is contained in:
2022-12-03 09:55:20 +08:00
11 changed files with 160 additions and 85 deletions
+24
View File
@@ -116726,6 +116726,8 @@ namespace Model
private string _PersonType;
private System.Nullable<bool> _MultiProject;
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
@@ -117318,6 +117320,8 @@ namespace Model
partial void OnCertificateIdChanged();
partial void OnPersonTypeChanging(string value);
partial void OnPersonTypeChanged();
partial void OnMultiProjectChanging(System.Nullable<bool> value);
partial void OnMultiProjectChanged();
#endregion
public Person_Persons()
@@ -118775,6 +118779,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MultiProject", DbType="Bit")]
public System.Nullable<bool> MultiProject
{
get
{
return this._MultiProject;
}
set
{
if ((this._MultiProject != value))
{
this.OnMultiProjectChanging(value);
this.SendPropertyChanging();
this._MultiProject = value;
this.SendPropertyChanged("MultiProject");
this.OnMultiProjectChanged();
}
}
}
[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
{