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
{
///
/// 货位表业务逻辑层
///
///
/// [HanHe(XDL)] CREATED 2018/06/13
public class TN_AB_STOCK_LOCATIONBLL:BaseBLL
{
///
/// 根据表名获取货位表集合
///
/// 表名
/// 货位表集合
/// [HanHe(XDL)] CREATED 2018/06/13
public List GetStockLocationList(string tableName)
{
return CreateDAL().GetStockLocationList(tableName);
}
///
/// 获得货位集合
///
///
///
///
/// [HanHe(XDL)] CREATED 2018/06/28
public List GetLocationList(string strWhere, string OrderBy)
{
return CreateDAL().GetLocationList(strWhere, OrderBy);
}
///
/// 修改货位同步状态
///
///
///
/// [HanHe(XDL)] CREATED 2018/06/28
public SqlExecuteResult UpdateLocationSync(string Where, string Set)
{
return CreateDAL().UpdateLocationSync(Where, Set);
}
}
}