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
|
}
|
}
|