/*
|
*所有关于VV_ContainerInfo_EmptyPallet类的业务代码接口应在此处编写
|
*/
|
using WIDESEA.Core.BaseProvider;
|
using WIDESEA.Entity.DomainModels;
|
using WIDESEA.Core.Utilities;
|
using System.Linq.Expressions;
|
using WIDESEA.Core.EFDbContext;
|
|
namespace WIDESEA.Services.IServices
|
{
|
public partial interface IVV_ContainerInfo_EmptyPalletService
|
{
|
|
|
|
/// <summary>
|
/// 呼叫空托盘、给WCS下发任务
|
/// </summary>
|
/// <param name="saveModel">呼叫数量</param>
|
/// <returns></returns>
|
public WebResponseContent CallEmptyPallet(SaveModel saveModel);
|
|
}
|
}
|