修改集团展示页
This commit is contained in:
@@ -146612,6 +146612,8 @@ namespace Model
|
||||
|
||||
private string _Requirements;
|
||||
|
||||
private string _HazardValue;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
|
||||
private EntityRef<HSSE_Hazard_HazardRegisterTypes> _HSSE_Hazard_HazardRegisterTypes;
|
||||
@@ -146704,6 +146706,8 @@ namespace Model
|
||||
partial void OnResultIdChanged();
|
||||
partial void OnRequirementsChanging(string value);
|
||||
partial void OnRequirementsChanged();
|
||||
partial void OnHazardValueChanging(string value);
|
||||
partial void OnHazardValueChanged();
|
||||
#endregion
|
||||
|
||||
public HSSE_Hazard_HazardRegister()
|
||||
@@ -147561,6 +147565,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HazardValue", DbType="NVarChar(50)")]
|
||||
public string HazardValue
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._HazardValue;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._HazardValue != value))
|
||||
{
|
||||
this.OnHazardValueChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._HazardValue = value;
|
||||
this.SendPropertyChanged("HazardValue");
|
||||
this.OnHazardValueChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[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