using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.Service.mes.wms.IService
{
public interface IWMExitwarehouseService
{
///
/// 一般退库
///
///
///
public bool ExitwarehouseCommmon(string original);
///
/// 判断箱子是否存在陈平库中
///
///
///
public bool IsExistedWarehouse(string originalCode);
}
}