HSE管理月报放开编辑

This commit is contained in:
2023-11-03 10:19:27 +08:00
parent 48a0808bfb
commit c3481e1314
5 changed files with 39 additions and 1 deletions
+24
View File
@@ -24856,6 +24856,8 @@ namespace Model
private System.Nullable<int> _ConstructionNum;
private System.Nullable<bool> _IsHSEReportEditable;
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
@@ -25512,6 +25514,8 @@ namespace Model
partial void OnProjectAttributeChanged();
partial void OnConstructionNumChanging(System.Nullable<int> value);
partial void OnConstructionNumChanged();
partial void OnIsHSEReportEditableChanging(System.Nullable<bool> value);
partial void OnIsHSEReportEditableChanged();
#endregion
public Base_Project()
@@ -26556,6 +26560,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsHSEReportEditable", DbType="Bit")]
public System.Nullable<bool> IsHSEReportEditable
{
get
{
return this._IsHSEReportEditable;
}
set
{
if ((this._IsHSEReportEditable != value))
{
this.OnIsHSEReportEditableChanging(value);
this.SendPropertyChanging();
this._IsHSEReportEditable = value;
this.SendPropertyChanged("IsHSEReportEditable");
this.OnIsHSEReportEditableChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentHandle_Base_Project", Storage="_Accident_AccidentHandle", ThisKey="ProjectId", OtherKey="ProjectId", DeleteRule="NO ACTION")]
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
{