jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
using HH.WMS.DAL.MoveStock;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.BLL.MoveStock
{
    public class TN_WM_B_MOVE_RESULTBLL : DapperBaseBLL
    {
        #region 获取分页列表
        /// <summary>
        /// 获取分页列表
        /// </summary>
        /// <param name="obj"></param>
        /// <returns></returns>
        /// <history>[HanHe(lt)] CREATED 2018/9/11</history>
        public DataTable GetDataTable(dynamic obj)
        {
            return CreateDAL<TN_WM_B_MOVE_RESULTDAL>().GetDataTable(obj);
        }
 
        /// <summary>
        /// 获取分页列表
        /// </summary>
        /// <param name="obj"></param>
        /// <returns></returns>
        /// <history>[HanHe(lt)] CREATED 2018/11/5</history>
        public DataTable GetDataTableGroup(dynamic obj)
        {
            return CreateDAL<TN_WM_B_MOVE_RESULTDAL>().GetDataTableGroup(obj);
        }
 
 
        /// <summary>
        /// 获取移库明细分页列表
        /// </summary>
        /// <param name="obj"></param>
        /// <returns></returns>
        /// <history>[HanHe(lt)] CREATED 2018/11/5</history>
        public DataTable GetMoveResultList(string sqlwhere)
        {
            return CreateDAL<TN_WM_B_MOVE_RESULTDAL>().GetMoveResultList(sqlwhere);
        }
 
        /// <summary>
        /// 获取分页列表
        /// </summary>
        /// <param name="obj"></param>
        /// <returns></returns>
        /// <history>[HanHe(lt)] CREATED 2018/9/11</history>
        public DataTable GetDataTableGroup(string sqlWhere, string OrdeBy, int pageSize, int pageIndex)
        {
            return CreateDAL<TN_WM_B_MOVE_RESULTDAL>().GetDataTableGroup(sqlWhere, OrdeBy, pageSize, pageIndex);
        }
        #endregion
 
        #region 获取移库明细查询
        /// <summary>
        /// 获取盘点结果查询
        /// </summary>
        /// <param name="sqlwhere">查询条件</param>
        /// <returns></returns>
        ///  <history>[HanHe(lt)] CREATED 2018/9/11</history>
        public DataTable GetDataTable(string sqlwhere)
        {
            return CreateDAL<TN_WM_B_MOVE_RESULTDAL>().GetDataTable(sqlwhere);
        }
        #endregion
    }
}