修改安全月报

This commit is contained in:
2024-09-03 17:22:58 +08:00
parent d21533d599
commit 89657b13df
9 changed files with 1257 additions and 195 deletions
+48
View File
@@ -241516,6 +241516,10 @@ namespace Model
private System.Nullable<decimal> _DeathEconomy;
private System.Nullable<int> _LossCount;
private System.Nullable<int> _DeathCount;
private EntityRef<Manager_MonthReportC> _Manager_MonthReportC;
#region
@@ -241548,6 +241552,10 @@ namespace Model
partial void OnDeathWorkTimeChanged();
partial void OnDeathEconomyChanging(System.Nullable<decimal> value);
partial void OnDeathEconomyChanged();
partial void OnLossCountChanging(System.Nullable<int> value);
partial void OnLossCountChanged();
partial void OnDeathCountChanging(System.Nullable<int> value);
partial void OnDeathCountChanged();
#endregion
public Manager_Month_InjuryAccidentC()
@@ -241820,6 +241828,46 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_LossCount", DbType="Int")]
public System.Nullable<int> LossCount
{
get
{
return this._LossCount;
}
set
{
if ((this._LossCount != value))
{
this.OnLossCountChanging(value);
this.SendPropertyChanging();
this._LossCount = value;
this.SendPropertyChanged("LossCount");
this.OnLossCountChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DeathCount", DbType="Int")]
public System.Nullable<int> DeathCount
{
get
{
return this._DeathCount;
}
set
{
if ((this._DeathCount != value))
{
this.OnDeathCountChanging(value);
this.SendPropertyChanging();
this._DeathCount = value;
this.SendPropertyChanged("DeathCount");
this.OnDeathCountChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Manager_Month_InjuryAccidentC_Manager_MonthReportC", Storage="_Manager_MonthReportC", ThisKey="MonthReportId", OtherKey="MonthReportId", IsForeignKey=true)]
public Manager_MonthReportC Manager_MonthReportC
{