代码无效引用清理,试压包资料界面看板修改

This commit is contained in:
2025-10-10 14:33:21 +08:00
parent 87fb529521
commit 55b798135c
933 changed files with 5897 additions and 7541 deletions
+3 -3
View File
@@ -5,7 +5,7 @@ namespace BLL
{
public static class DepartService
{
/// <summary>
/// 根据主键获取信息
@@ -95,7 +95,7 @@ namespace BLL
public static string getDepartNameById(object departId)
{
string name = string.Empty;
if (departId!=null&& !string.IsNullOrEmpty(departId.ToString()))
if (departId != null && !string.IsNullOrEmpty(departId.ToString()))
{
var dep = Funs.DB.Base_Depart.FirstOrDefault(e => e.DepartId == departId.ToString());
if (dep != null)
@@ -103,7 +103,7 @@ namespace BLL
name = dep.DepartName;
}
}
return name;
}
#region