zhao
2021-07-19 8347f2fbddbd25369359dcb2da1233ac48a19fdc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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);
        }
    }
}