using HH.WMS.Entitys.Autobom;
|
using HW.DAL;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
|
namespace HW.BLL
|
{
|
/// <summary>
|
/// 字典表业务逻辑层
|
/// </summary>
|
/// <returns></returns>
|
/// <history>[HanHe(XDL)] CREATED 2018/06/14</history>
|
public class TN_AB_B_DICTBLL:BaseBLL
|
{
|
#region 获取字典表集合
|
/// <summary>
|
/// 根据表名获取字典表集合
|
/// </summary>
|
/// <param name="tableName">表名</param>
|
/// <returns>字典集合</returns>
|
/// <history>[HanHe(XDL)] CREATED 2018/06/14</history>
|
public List<TN_AB_B_DICTEntity> GetDicList(string tableName)
|
{
|
return CreateDAL<TN_AB_B_DICTDAL>().GetDicList(tableName);
|
}
|
#endregion
|
}
|
}
|