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

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
+1 -2
View File
@@ -1,13 +1,12 @@
namespace BLL
{
using NPOI.SS.Formula.PTG;
using System;
using System.Linq;
using System.Net;
public static class LogService
{
/// <summary>
/// 添加操作日志
+1 -1
View File
@@ -5,7 +5,7 @@ namespace BLL
{
public static class RoleItemService
{
/// <summary>
/// 获取角色明细信息
+1 -1
View File
@@ -5,7 +5,7 @@
public static class RoleService
{
/// <summary>
/// 获取角色信息
-3
View File
@@ -1,10 +1,7 @@
using FineUIPro;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Model;
namespace BLL
+1 -1
View File
@@ -5,7 +5,7 @@ namespace BLL
{
public static class SysMenuService
{
/// <summary>
/// 根据MenuId获取菜单名称项
+2 -2
View File
@@ -1,8 +1,8 @@
using System;
using Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.UI.WebControls;
using Model;
namespace BLL
{