using HH.WMS.Entitys.Algorithm;
|
using HW.DAL;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
|
namespace HW.BLL
|
{
|
/// <summary>
|
/// 仓库库区/逻辑分区与货位关联业务逻辑层
|
/// </summary>
|
public class TN_AB_B_AREA_LOCATION_RBLL : BaseBLL
|
{
|
#region 获取仓库库区/逻辑分区与货位关联集合
|
/// <summary>
|
/// 根据表名获取仓库库区/逻辑分区与货位关联集合
|
/// </summary>
|
/// <param name="tableName">表名</param>
|
/// <returns>仓库库区/逻辑分区与货位关联集合</returns>
|
/// <history>[HanHe(XDL)] CREATED 2018/06/14</history>
|
public List<AutoBomAreaLocation_REntity> GetAreaLocationRList(string tableName)
|
{
|
return CreateDAL<TN_AB_B_AREA_LOCATION_RDAL>().GetAreaLocationRList(tableName);
|
}
|
#endregion
|
}
|
}
|