using DataAynchronization.HW.DAL;
|
using HH.WMS.Entitys.Algorithm;
|
using HW.BLL;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace DataAynchronization.HW.BLL
|
{
|
/// <summary>
|
/// TN_AB_B_LOCATION_LINK业务逻辑层
|
/// </summary>
|
/// <returns></returns>
|
/// <history>[HanHe(XDL)] CREATED 2018/07/12</history>
|
public class TN_AB_B_LOCATION_LINKBLL:BaseBLL
|
{
|
#region 获取TN_AB_B_LOCATION_LINK表集合
|
/// <summary>
|
/// 根据表名获取TN_AB_B_LOCATION_LINK表集合
|
/// </summary>
|
/// <param name="tableName">表名</param>
|
/// <returns>TN_AB_B_LOCATION_LINK集合</returns>
|
/// <history>[HanHe(XDL)] CREATED 2018/07/12</history>
|
public List<TN_AB_B_LOCATION_LINKEntity> GetLocationLinkList(string tableName)
|
{
|
return CreateDAL<TN_AB_B_LOCATION_LINKDAL>().GetLocationLinkList(tableName);
|
}
|
#endregion
|
}
|
}
|