提交代码
This commit is contained in:
@@ -162805,6 +162805,8 @@ namespace Model
|
||||
|
||||
private string _Risk_Level;
|
||||
|
||||
private System.Nullable<int> _Type;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
|
||||
private EntityRef<HSSE_Hazard_HazardRegisterTypes> _HSSE_Hazard_HazardRegisterTypes;
|
||||
@@ -162901,6 +162903,8 @@ namespace Model
|
||||
partial void OnHazardValueChanged();
|
||||
partial void OnRisk_LevelChanging(string value);
|
||||
partial void OnRisk_LevelChanged();
|
||||
partial void OnTypeChanging(System.Nullable<int> value);
|
||||
partial void OnTypeChanged();
|
||||
#endregion
|
||||
|
||||
public HSSE_Hazard_HazardRegister()
|
||||
@@ -163798,6 +163802,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Type", DbType="Int")]
|
||||
public System.Nullable<int> Type
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Type;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Type != value))
|
||||
{
|
||||
this.OnTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Type = value;
|
||||
this.SendPropertyChanged("Type");
|
||||
this.OnTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[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