增强HSE检查的功能
This commit is contained in:
@@ -54773,6 +54773,10 @@ namespace Model
|
||||
|
||||
private string _PersonId;
|
||||
|
||||
private string _HiddenHazardType;
|
||||
|
||||
private string _HiddenType;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
|
||||
private EntityRef<WBS_UnitWork> _WBS_UnitWork;
|
||||
@@ -54817,6 +54821,10 @@ namespace Model
|
||||
partial void OnHiddenDangerLevelChanged();
|
||||
partial void OnPersonIdChanging(string value);
|
||||
partial void OnPersonIdChanged();
|
||||
partial void OnHiddenHazardTypeChanging(string value);
|
||||
partial void OnHiddenHazardTypeChanged();
|
||||
partial void OnHiddenTypeChanging(string value);
|
||||
partial void OnHiddenTypeChanged();
|
||||
#endregion
|
||||
|
||||
public Check_CheckColligationDetail()
|
||||
@@ -55194,6 +55202,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HiddenHazardType", DbType="NVarChar(50)")]
|
||||
public string HiddenHazardType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._HiddenHazardType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._HiddenHazardType != value))
|
||||
{
|
||||
this.OnHiddenHazardTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._HiddenHazardType = value;
|
||||
this.SendPropertyChanged("HiddenHazardType");
|
||||
this.OnHiddenHazardTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HiddenType", DbType="NVarChar(50)")]
|
||||
public string HiddenType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._HiddenType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._HiddenType != value))
|
||||
{
|
||||
this.OnHiddenTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._HiddenType = value;
|
||||
this.SendPropertyChanged("HiddenType");
|
||||
this.OnHiddenTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Check_CheckColligationDetail_Base_Unit", Storage="_Base_Unit", ThisKey="UnitId", OtherKey="UnitId", IsForeignKey=true)]
|
||||
public Base_Unit Base_Unit
|
||||
{
|
||||
@@ -62553,6 +62601,8 @@ namespace Model
|
||||
|
||||
private string _CheckOpinions;
|
||||
|
||||
private string _HiddenType;
|
||||
|
||||
private EntityRef<WBS_UnitWork> _WBS_UnitWork;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
@@ -62605,6 +62655,8 @@ namespace Model
|
||||
partial void OnRectification_DateChanged();
|
||||
partial void OnCheckOpinionsChanging(string value);
|
||||
partial void OnCheckOpinionsChanged();
|
||||
partial void OnHiddenTypeChanging(string value);
|
||||
partial void OnHiddenTypeChanged();
|
||||
#endregion
|
||||
|
||||
public Check_CheckSpecialDetail()
|
||||
@@ -63077,6 +63129,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HiddenType", DbType="NVarChar(50)")]
|
||||
public string HiddenType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._HiddenType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._HiddenType != value))
|
||||
{
|
||||
this.OnHiddenTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._HiddenType = value;
|
||||
this.SendPropertyChanged("HiddenType");
|
||||
this.OnHiddenTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Check_CheckSpecialDetail_ProjectData_WorkArea", Storage="_WBS_UnitWork", ThisKey="CheckArea", OtherKey="UnitWorkId", IsForeignKey=true)]
|
||||
public WBS_UnitWork WBS_UnitWork
|
||||
{
|
||||
@@ -75483,6 +75555,10 @@ namespace Model
|
||||
|
||||
private string _RectifyId;
|
||||
|
||||
private string _HiddenType;
|
||||
|
||||
private string _HiddenHazardType;
|
||||
|
||||
private EntityRef<Check_RectifyNotices> _Check_RectifyNotices;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
@@ -75505,6 +75581,10 @@ namespace Model
|
||||
partial void OnIsRectifyChanged();
|
||||
partial void OnRectifyIdChanging(string value);
|
||||
partial void OnRectifyIdChanged();
|
||||
partial void OnHiddenTypeChanging(string value);
|
||||
partial void OnHiddenTypeChanged();
|
||||
partial void OnHiddenHazardTypeChanging(string value);
|
||||
partial void OnHiddenHazardTypeChanged();
|
||||
#endregion
|
||||
|
||||
public Check_RectifyNoticesItem()
|
||||
@@ -75677,6 +75757,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HiddenType", DbType="NVarChar(50)")]
|
||||
public string HiddenType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._HiddenType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._HiddenType != value))
|
||||
{
|
||||
this.OnHiddenTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._HiddenType = value;
|
||||
this.SendPropertyChanged("HiddenType");
|
||||
this.OnHiddenTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HiddenHazardType", DbType="NVarChar(50)")]
|
||||
public string HiddenHazardType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._HiddenHazardType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._HiddenHazardType != value))
|
||||
{
|
||||
this.OnHiddenHazardTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._HiddenHazardType = value;
|
||||
this.SendPropertyChanged("HiddenHazardType");
|
||||
this.OnHiddenHazardTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Check_RectifyNoticesItem_Check_RectifyNotices", Storage="_Check_RectifyNotices", ThisKey="RectifyNoticesId", OtherKey="RectifyNoticesId", IsForeignKey=true)]
|
||||
public Check_RectifyNotices Check_RectifyNotices
|
||||
{
|
||||
@@ -103492,6 +103612,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _States;
|
||||
|
||||
private System.Nullable<int> _MaxLevel;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -103540,6 +103662,8 @@ namespace Model
|
||||
partial void OnSortChanged();
|
||||
partial void OnStatesChanging(System.Nullable<int> value);
|
||||
partial void OnStatesChanged();
|
||||
partial void OnMaxLevelChanging(System.Nullable<int> value);
|
||||
partial void OnMaxLevelChanged();
|
||||
#endregion
|
||||
|
||||
public Control_PointCropping()
|
||||
@@ -103987,6 +104111,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaxLevel", DbType="Int")]
|
||||
public System.Nullable<int> MaxLevel
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MaxLevel;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MaxLevel != value))
|
||||
{
|
||||
this.OnMaxLevelChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MaxLevel = value;
|
||||
this.SendPropertyChanged("MaxLevel");
|
||||
this.OnMaxLevelChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -176039,6 +176183,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _Type;
|
||||
|
||||
private string _HiddenType;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
|
||||
private EntityRef<HSSE_Hazard_HazardRegisterTypes> _HSSE_Hazard_HazardRegisterTypes;
|
||||
@@ -176137,6 +176283,8 @@ namespace Model
|
||||
partial void OnRisk_LevelChanged();
|
||||
partial void OnTypeChanging(System.Nullable<int> value);
|
||||
partial void OnTypeChanged();
|
||||
partial void OnHiddenTypeChanging(string value);
|
||||
partial void OnHiddenTypeChanged();
|
||||
#endregion
|
||||
|
||||
public HSSE_Hazard_HazardRegister()
|
||||
@@ -177054,6 +177202,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HiddenType", DbType="NVarChar(50)")]
|
||||
public string HiddenType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._HiddenType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._HiddenType != value))
|
||||
{
|
||||
this.OnHiddenTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._HiddenType = value;
|
||||
this.SendPropertyChanged("HiddenType");
|
||||
this.OnHiddenTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[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
|
||||
{
|
||||
@@ -399036,6 +399204,10 @@ namespace Model
|
||||
|
||||
private string _PersonName;
|
||||
|
||||
private string _HiddenType;
|
||||
|
||||
private string _HiddenHazardType;
|
||||
|
||||
public View_Check_CheckColligationDetail()
|
||||
{
|
||||
}
|
||||
@@ -399375,6 +399547,38 @@ namespace Model
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HiddenType", DbType="NVarChar(50)")]
|
||||
public string HiddenType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._HiddenType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._HiddenType != value))
|
||||
{
|
||||
this._HiddenType = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HiddenHazardType", DbType="NVarChar(50)")]
|
||||
public string HiddenHazardType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._HiddenHazardType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._HiddenHazardType != value))
|
||||
{
|
||||
this._HiddenHazardType = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_Check_CheckDayDetail")]
|
||||
@@ -409245,6 +409449,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _Type;
|
||||
|
||||
private string _HiddenType;
|
||||
|
||||
public View_Hazard_HazardRegister()
|
||||
{
|
||||
}
|
||||
@@ -410112,6 +410318,22 @@ namespace Model
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HiddenType", DbType="NVarChar(50)")]
|
||||
public string HiddenType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._HiddenType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._HiddenType != value))
|
||||
{
|
||||
this._HiddenType = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_HJGL_Batch_PointBatch")]
|
||||
|
||||
Reference in New Issue
Block a user