添加会审代办
This commit is contained in:
@@ -202375,6 +202375,8 @@ namespace Model
|
||||
|
||||
private string _Risk_Level;
|
||||
|
||||
private string _ReviewedManId;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
@@ -202467,6 +202469,8 @@ namespace Model
|
||||
partial void OnRequirementsChanged();
|
||||
partial void OnRisk_LevelChanging(string value);
|
||||
partial void OnRisk_LevelChanged();
|
||||
partial void OnReviewedManIdChanging(string value);
|
||||
partial void OnReviewedManIdChanged();
|
||||
#endregion
|
||||
|
||||
public HSSE_Hazard_HazardRegister_Unit()
|
||||
@@ -203339,6 +203343,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReviewedManId", DbType="NVarChar(2000)")]
|
||||
public string ReviewedManId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ReviewedManId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ReviewedManId != value))
|
||||
{
|
||||
this.OnReviewedManIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ReviewedManId = value;
|
||||
this.SendPropertyChanged("ReviewedManId");
|
||||
this.OnReviewedManIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HSSE_Hazard_HazardRegister_Unit_Base_Unit", Storage="_Base_Unit", ThisKey="ResponsibleUnit", OtherKey="UnitId", IsForeignKey=true)]
|
||||
public Base_Unit Base_Unit
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user