fix:补充企业大检查等web

This commit is contained in:
geh
2025-06-20 22:32:18 +08:00
parent 9fe0dcc0fa
commit b98d3ad900
49 changed files with 9511 additions and 0 deletions
@@ -641,5 +641,24 @@ namespace BLL
return id;
}
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;
}
}
}
}