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 查询打印任务 /// /// 查询打印任务 /// /// 机器MAC地址 /// 是否查询已打印记录(Y/N) /// 模糊搜索的打印任务 /// 开始时间 /// 结束时间 /// /// [Hanhe(DBS)] created 2018/12/12 public List GetList(string mac, string isHistory, string key, string startDate, string endDate) { return CreateDAL().GetList(mac, isHistory, key,startDate, endDate); } #endregion } }