增强HSE检查的功能

This commit is contained in:
2024-07-17 14:35:47 +08:00
parent e3286e45d8
commit b503c6f706
46 changed files with 1404 additions and 386 deletions
+13
View File
@@ -423,5 +423,18 @@ namespace BLL
}
}
public static List<Model.DropDownItem> getHiddenTypeList(string groupid)
{
var list = (from x in Funs.DB.Sys_Const
where x.GroupId== groupid
orderby x.SortIndex
select new Model.DropDownItem
{
Text = x.ConstText,
Values = x.ConstValue
}).ToList();
return list;
}
}
}