提交代码
This commit is contained in:
@@ -53505,6 +53505,8 @@ namespace Model
|
||||
|
||||
private string _Isprintf;
|
||||
|
||||
private string _ControlId;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
@@ -53611,6 +53613,8 @@ namespace Model
|
||||
partial void OnIsprintChanged();
|
||||
partial void OnIsprintfChanging(string value);
|
||||
partial void OnIsprintfChanged();
|
||||
partial void OnControlIdChanging(string value);
|
||||
partial void OnControlIdChanged();
|
||||
#endregion
|
||||
|
||||
public Check_RectifyNotices()
|
||||
@@ -54450,6 +54454,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ControlId", DbType="NVarChar(50)")]
|
||||
public string ControlId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ControlId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ControlId != value))
|
||||
{
|
||||
this.OnControlIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ControlId = value;
|
||||
this.SendPropertyChanged("ControlId");
|
||||
this.OnControlIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Check_RectifyNotices_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
@@ -101575,6 +101599,8 @@ namespace Model
|
||||
|
||||
private string _WorkPackageName;
|
||||
|
||||
private string _ControlId;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
|
||||
private EntityRef<HSSE_Hazard_HazardRegisterTypes> _HSSE_Hazard_HazardRegisterTypes;
|
||||
@@ -101679,6 +101705,8 @@ namespace Model
|
||||
partial void OnWorkPackageIdChanged();
|
||||
partial void OnWorkPackageNameChanging(string value);
|
||||
partial void OnWorkPackageNameChanged();
|
||||
partial void OnControlIdChanging(string value);
|
||||
partial void OnControlIdChanged();
|
||||
#endregion
|
||||
|
||||
public HSSE_Hazard_HazardRegister()
|
||||
@@ -102656,6 +102684,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ControlId", DbType="NVarChar(50)")]
|
||||
public string ControlId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ControlId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ControlId != value))
|
||||
{
|
||||
this.OnControlIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ControlId = value;
|
||||
this.SendPropertyChanged("ControlId");
|
||||
this.OnControlIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HSSE_Hazard_HazardRegister_Base_Unit", Storage="_Base_Unit", ThisKey="ResponsibleUnit", OtherKey="UnitId", IsForeignKey=true)]
|
||||
public Base_Unit Base_Unit
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user