提交代码

This commit is contained in:
2023-10-07 16:58:43 +08:00
parent 2e1c911889
commit 98345cb94f
16 changed files with 829 additions and 497 deletions
+72
View File
@@ -25021,6 +25021,10 @@ namespace Model
private string _ProjectAttribute;
private string _ProjType;
private string _ProjPhase;
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
@@ -25675,6 +25679,10 @@ namespace Model
partial void OnCLProjectCodeChanged();
partial void OnProjectAttributeChanging(string value);
partial void OnProjectAttributeChanged();
partial void OnProjTypeChanging(string value);
partial void OnProjTypeChanged();
partial void OnProjPhaseChanging(string value);
partial void OnProjPhaseChanged();
#endregion
public Base_Project()
@@ -26699,6 +26707,46 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjType", DbType="NVarChar(50)")]
public string ProjType
{
get
{
return this._ProjType;
}
set
{
if ((this._ProjType != value))
{
this.OnProjTypeChanging(value);
this.SendPropertyChanging();
this._ProjType = value;
this.SendPropertyChanged("ProjType");
this.OnProjTypeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjPhase", DbType="NVarChar(50)")]
public string ProjPhase
{
get
{
return this._ProjPhase;
}
set
{
if ((this._ProjPhase != value))
{
this.OnProjPhaseChanging(value);
this.SendPropertyChanging();
this._ProjPhase = value;
this.SendPropertyChanged("ProjPhase");
this.OnProjPhaseChanged();
}
}
}
[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
{
@@ -59591,6 +59639,8 @@ namespace Model
private string _ResponsibleMan;
private string _ReceiveMan;
private EntityRef<Base_Project> _Base_Project;
private EntityRef<Technique_CheckItemSet> _Technique_CheckItemSet;
@@ -59639,6 +59689,8 @@ namespace Model
partial void OnQuestionTypeChanged();
partial void OnResponsibleManChanging(string value);
partial void OnResponsibleManChanged();
partial void OnReceiveManChanging(string value);
partial void OnReceiveManChanged();
#endregion
public Check_CheckSpecial()
@@ -60056,6 +60108,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReceiveMan", DbType="NVarChar(2000)")]
public string ReceiveMan
{
get
{
return this._ReceiveMan;
}
set
{
if ((this._ReceiveMan != value))
{
this.OnReceiveManChanging(value);
this.SendPropertyChanging();
this._ReceiveMan = value;
this.SendPropertyChanged("ReceiveMan");
this.OnReceiveManChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Check_CheckSpecial_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{