河北专项检查和移动端

This commit is contained in:
2025-04-06 23:26:22 +08:00
parent 64c7be5db4
commit 8aba5b01bc
204 changed files with 41904 additions and 3226 deletions
+18
View File
@@ -1,4 +1,5 @@
using EmitMapper;
using Model;
using System.Collections.Generic;
using System.Linq;
@@ -6,6 +7,23 @@ namespace BLL
{
public static class APIProjectService
{
#region
public static List<Model.ProjectItem> geProjects()
{
using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString))
{
return (from x in db.Base_Project
select new Model.ProjectItem()
{
ProjectId = x.ProjectId,
ProjectName = x.ProjectName
}).ToList(); ;
}
}
#endregion
/// <summary>
/// 根据userId获取用户信息
/// </summary>