20240928 单位工程划分

This commit is contained in:
2024-09-28 16:02:26 +08:00
parent b72cfa7bdd
commit ffffb5a4eb
23 changed files with 1410 additions and 209 deletions
+9
View File
@@ -672,5 +672,14 @@ namespace BLL
return (from x in Funs.DB.WBS_UnitWork where x.SuperUnitWork == superUnitWork select x).Count() > 0;
}
/// <summary>
/// 根据单位工程获取子单位工程信息
/// </summary>
/// <param name="supUnitWork"></param>
/// <returns></returns>
public static List<Model.WBS_UnitWork> GetUnitWorksBySupUnitWork(string supUnitWork)
{
return (from x in Funs.DB.WBS_UnitWork where x.SuperUnitWork == supUnitWork select x).ToList();
}
}
}