提交代码

This commit is contained in:
2023-10-25 16:58:47 +08:00
parent d1a4134e7b
commit 2e3ff9873c
23 changed files with 329 additions and 122 deletions
+24
View File
@@ -23808,6 +23808,8 @@ namespace Model
private string _EnglishRemark;
private string _ProjectRealCode;
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
@@ -24224,6 +24226,8 @@ namespace Model
partial void OnTelephoneChanged();
partial void OnEnglishRemarkChanging(string value);
partial void OnEnglishRemarkChanged();
partial void OnProjectRealCodeChanging(string value);
partial void OnProjectRealCodeChanged();
#endregion
public Base_Project()
@@ -24977,6 +24981,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectRealCode", DbType="NVarChar(50)")]
public string ProjectRealCode
{
get
{
return this._ProjectRealCode;
}
set
{
if ((this._ProjectRealCode != value))
{
this.OnProjectRealCodeChanging(value);
this.SendPropertyChanging();
this._ProjectRealCode = value;
this.SendPropertyChanged("ProjectRealCode");
this.OnProjectRealCodeChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentHandle_Base_Project", Storage="_Accident_AccidentHandle", ThisKey="ProjectId", OtherKey="ProjectId", DeleteRule="NO ACTION")]
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
{