提交代码

This commit is contained in:
2025-06-10 14:55:01 +08:00
parent eef442181b
commit 9730bb88a6
2 changed files with 3 additions and 3 deletions
@@ -1591,10 +1591,10 @@ namespace BLL
/// <returns></returns>
public static ReturnData PushProjectHSSEData()
{
var items = (from x in db.Project_HSSEData_HSSE
var items = (from x in Funs.DB.Project_HSSEData_HSSE
where x.ReportDate == DateTime.Now.Date
select x).ToList();
var detailItems = (from x in db.Project_HSSEData_HiddenDangerDetail
var detailItems = (from x in Funs.DB.Project_HSSEData_HiddenDangerDetail
where x.ReportDate == DateTime.Now.Date
select x).ToList();
Model.ReturnData responeData = new Model.ReturnData();