增加hse安全月报,功能尚未完善

This commit is contained in:
2024-08-21 16:47:57 +08:00
parent cb544cb297
commit 2c7ad19fb1
16 changed files with 2829 additions and 168 deletions
+73 -1
View File
@@ -245071,6 +245071,12 @@ namespace Model
private string _AccidentDef;
private System.Nullable<System.DateTime> _StartDate;
private System.Nullable<System.DateTime> _EndDate;
private System.Nullable<int> _TotalHseManhoursYear;
private EntitySet<Manager_AccidentSortC> _Manager_AccidentSortC;
private EntitySet<Manager_CheckDetailSortC> _Manager_CheckDetailSortC;
@@ -245353,6 +245359,12 @@ namespace Model
partial void OnPhotoContentsChanged();
partial void OnAccidentDefChanging(string value);
partial void OnAccidentDefChanged();
partial void OnStartDateChanging(System.Nullable<System.DateTime> value);
partial void OnStartDateChanged();
partial void OnEndDateChanging(System.Nullable<System.DateTime> value);
partial void OnEndDateChanged();
partial void OnTotalHseManhoursYearChanging(System.Nullable<int> value);
partial void OnTotalHseManhoursYearChanged();
#endregion
public Manager_MonthReportC()
@@ -247369,6 +247381,66 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_StartDate", DbType="DateTime")]
public System.Nullable<System.DateTime> StartDate
{
get
{
return this._StartDate;
}
set
{
if ((this._StartDate != value))
{
this.OnStartDateChanging(value);
this.SendPropertyChanging();
this._StartDate = value;
this.SendPropertyChanged("StartDate");
this.OnStartDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EndDate", DbType="DateTime")]
public System.Nullable<System.DateTime> EndDate
{
get
{
return this._EndDate;
}
set
{
if ((this._EndDate != value))
{
this.OnEndDateChanging(value);
this.SendPropertyChanging();
this._EndDate = value;
this.SendPropertyChanged("EndDate");
this.OnEndDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TotalHseManhoursYear", DbType="Int")]
public System.Nullable<int> TotalHseManhoursYear
{
get
{
return this._TotalHseManhoursYear;
}
set
{
if ((this._TotalHseManhoursYear != value))
{
this.OnTotalHseManhoursYearChanging(value);
this.SendPropertyChanging();
this._TotalHseManhoursYear = value;
this.SendPropertyChanged("TotalHseManhoursYear");
this.OnTotalHseManhoursYearChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Manager_AccidentCSort_Manager_MonthReport", Storage="_Manager_AccidentSortC", ThisKey="MonthReportId", OtherKey="MonthReportId", DeleteRule="NO ACTION")]
public EntitySet<Manager_AccidentSortC> Manager_AccidentSortC
{
@@ -404018,7 +404090,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitWorkName", DbType="NVarChar(506)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitWorkName", DbType="NVarChar(500)")]
public string UnitWorkName
{
get