20240928 单位工程划分
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user