提交代码

This commit is contained in:
2025-02-14 11:53:03 +08:00
parent f659c21387
commit 0eedd04ad8
11 changed files with 180 additions and 340 deletions
+16
View File
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BLL
{
public static class JDGLWBSService
{
public static List<Model.JDGL_WBS> GetWBSsByProjectId(string projectId,string parentId)
{
return (from x in Funs.DB.JDGL_WBS where x.ParentId == parentId && x.ProjectId == projectId orderby x.PathCode select x).ToList();
}
}
}