提交代码

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 JDGLWBSDetailService
{
public static List<Model.JDGL_WBSDetail> GetWBSDetailsByWorkPackageId(string workPackageId)
{
return (from x in Funs.DB.JDGL_WBSDetail where x.WorkPackageId == workPackageId select x).ToList();
}
}
}