This commit is contained in:
jl
2025-06-05 15:11:19 +08:00
parent 285bae186b
commit 8c1493f76e
17 changed files with 351 additions and 273 deletions

37
Epost.BLL/Print_BoxBLL.cs Normal file
View File

@ -0,0 +1,37 @@
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
}
}