using Epost.DAL; using Epost.Model; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Epost.BLL { public class Print_BoxBLL { Print_BoxDAL dal = new Print_BoxDAL(); #region 获取打印列表 public DataTable GetPrintList(string block) { return dal.GetPrintList(block); } #endregion #region 修改打印状态 public bool UpPrintList(string id) { return dal.UpPrintList(id); } #endregion #region 添加箱号打印 public bool InsertPrint(JobModel model, int boxno, int totalcount) { return dal.InsertPrint(model, boxno,totalcount); } #endregion } }