报表修改

This commit is contained in:
2025-07-11 18:07:04 +08:00
parent cf027d4abe
commit fd3b00ed44
21 changed files with 456 additions and 29 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ namespace BLL
public static ReturnData PushEnvironmentalCheckData()
{
var db = Funs.DB;
var items = (from x in db.EnvironmentalCheck where x.IsPushed == false select x).ToList();
var items = (from x in db.EnvironmentalCheck where x.IsPushed == null || x.IsPushed == false orderby x.CreateTime descending select x).ToList();
Model.ReturnData responeData = new Model.ReturnData();
if (items.Count() > 0)
{