提交定制会内容

This commit is contained in:
2025-06-19 18:59:39 +08:00
parent 6be8d160e0
commit e1eb091f3b
150 changed files with 24036 additions and 582 deletions
+19
View File
@@ -723,5 +723,24 @@ namespace BLL
}
return name;
}
public static string GetUnitWorkIdsByUnitWorkNames(string projectId, string unitWorks)
{
if (!string.IsNullOrEmpty(unitWorks))
{
string[] ins = unitWorks.Split(',');
string unitIds = string.Empty;
foreach (string s in ins)
{
var q = GetUnitWorkByUnitWorkName(projectId, s.Trim()).UnitWorkId;
unitIds += q + ",";
}
return unitIds.Substring(0, unitIds.LastIndexOf(','));
}
else
{
return string.Empty;
}
}
}
}