using HH.WMS.Entitys.Algorithm;
|
using HH.WMS.Entitys.Basic;
|
using HH.WMS.Entitys.Common;
|
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/13</history>
|
public class TN_AB_STOCK_LOCATIONBLL:BaseBLL
|
{
|
/// <summary>
|
/// 根据表名获取货位表集合
|
/// </summary>
|
/// <param name="tableName">表名</param>
|
/// <returns>货位表集合</returns>
|
/// <history>[HanHe(XDL)] CREATED 2018/06/13</history>
|
public List<AutoBomLocationEntity> GetStockLocationList(string tableName)
|
{
|
return CreateDAL<TN_AB_STOCK_LOCATIONDAL>().GetStockLocationList(tableName);
|
}
|
|
/// <summary>
|
/// 获得货位集合
|
/// </summary>
|
/// <param name="strWhere"></param>
|
/// <param name="orderby"></param>
|
/// <returns></returns>
|
/// <history>[HanHe(XDL)] CREATED 2018/06/28</history>
|
public List<AutoBomLocationEntity> GetLocationList(string strWhere, string OrderBy)
|
{
|
return CreateDAL<TN_AB_STOCK_LOCATIONDAL>().GetLocationList(strWhere, OrderBy);
|
}
|
|
/// <summary>
|
/// 修改货位同步状态
|
/// </summary>
|
/// <param name="obj"></param>
|
/// <returns></returns>
|
/// <history>[HanHe(XDL)] CREATED 2018/06/28</history>
|
public SqlExecuteResult UpdateLocationSync(string Where, string Set)
|
{
|
return CreateDAL<TN_AB_STOCK_LOCATIONDAL>().UpdateLocationSync(Where, Set);
|
}
|
}
|
}
|