代码无效引用清理,试压包资料界面看板修改
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 表下拉框
|
||||
|
||||
@@ -1,13 +1,12 @@
|
||||
namespace BLL
|
||||
{
|
||||
using NPOI.SS.Formula.PTG;
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Net;
|
||||
|
||||
public static class LogService
|
||||
{
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 添加操作日志
|
||||
|
||||
@@ -5,7 +5,7 @@ namespace BLL
|
||||
{
|
||||
public static class RoleItemService
|
||||
{
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 获取角色明细信息
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
public static class RoleService
|
||||
{
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 获取角色信息
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -5,7 +5,7 @@ namespace BLL
|
||||
{
|
||||
public static class SysMenuService
|
||||
{
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 根据MenuId获取菜单名称项
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user