代码无效引用清理,试压包资料界面看板修改
This commit is contained in:
@@ -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 表下拉框
|
||||
|
||||
Reference in New Issue
Block a user