23 lines
563 B
C#
23 lines
563 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// WMS空载具出库接口
|
|
/// </summary>
|
|
public interface IWmsEmptyOutstockService
|
|
{
|
|
/// <summary>
|
|
/// MES空载具出库接口
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
Task<dynamic> MESEmptyCarryOutStk(MESEmptyCarryOutStkInput input);
|
|
}
|
|
}
|