using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tnb.WarehouseMgr.Entities.Dto.Inputs;
namespace Tnb.WarehouseMgr.Interfaces
{
///
/// WMS空载具出库接口
///
public interface IWmsEmptyOutstockService
{
///
/// MES空载具出库接口
///
///
///
Task MESEmptyCarryOutStk(MESEmptyCarryOutStkInput input);
}
}