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
using HH.WMS.DAL.Basic;
/********************************************************************************
 
** auth: DBS
 
** date: 2018/12/12 19:46:04
 
** desc: 尚未编写描述
 
** Ver.:  V1.0.0
 
*********************************************************************************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.BLL.Basic
{
    public class TN_WM_PRINT_TASKBLL:DapperBaseBLL
    {
        #region 查询打印任务
        /// <summary>
        /// 查询打印任务
        /// </summary>
        /// <param name="mac">机器MAC地址</param>
        /// <param name="isHistory">是否查询已打印记录(Y/N)</param>
        /// <param name="key">模糊搜索的打印任务</param>
        /// <param name="startDate">开始时间</param>
        /// <param name="endDate">结束时间</param>
        /// <returns></returns>
        /// <History>[Hanhe(DBS)] created  2018/12/12</History>
        public List<Entitys.Basic.TN_WM_PRINT_TASKEntity> GetList(string mac, string isHistory, string key, string startDate, string endDate)
        {
            return CreateDAL<TN_WM_PRINT_TASKDAL>().GetList(mac, isHistory, key,startDate, endDate);
        }
        #endregion
    }
}