This commit is contained in:
jl
2025-06-26 20:31:02 +08:00
parent de122526a2
commit 3042ef9370
5 changed files with 107 additions and 39 deletions

View File

@ -83,7 +83,11 @@ namespace Epost.BLL
return dal.DeleteQueue(matchid);
}
public bool DeleteQueuebyUser(string strwhere)
{
return dal.DeleteQueuebyUser(strwhere);
}
public bool DeleteOrderQueue(string matchid, string CancelTime)
{
return dal.DeleteOrderQueue(matchid, CancelTime);
@ -146,6 +150,14 @@ namespace Epost.BLL
return dal.GetOrderQueue(block,area, state,sku);
}
#endregion
#region sku是否正在作业
public DataTable GetOrderQueueByuser(string state, string usercode)
{
return dal.GetOrderQueueByuser( state, usercode);
}
#endregion
#region