This commit is contained in:
2026-04-08 14:03:39 +08:00
parent 7ecbc2ebc0
commit 4a1b636ce0
353 changed files with 1378 additions and 500 deletions
@@ -10,13 +10,14 @@ namespace BLL
{
public static class SubPackTeamListService
{
public static Model.CNPCDB db = Funs.DB;
/// <summary>
/// 项目名称 下拉框绑定
/// </summary>
public static void DropSelectProject(FineUIPro.DropDownList dropName, bool isShowPlease)
{
Model.CNPCDB db = Funs.DB;
var projectList = (from x in db.Base_Project
select new
{
@@ -37,6 +38,7 @@ namespace BLL
/// </summary>
public static void DropSelectUnitWork(FineUIPro.DropDownList dropName, string projectid, bool isShowPlease)
{
Model.CNPCDB db = Funs.DB;
var unitWorkList = (from x in db.Base_Unit
join y in db.Project_ProjectUnit on x.UnitId equals y.UnitId
where y.UnitType == "2" && y.ProjectId == projectid