27 lines
662 B
C#
27 lines
662 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 一般退库
|
|
/// </summary>
|
|
/// <param name="original"></param>
|
|
/// <returns></returns>
|
|
public bool ExitwarehouseCommmon(string original);
|
|
/// <summary>
|
|
/// 判断箱子是否存在陈平库中
|
|
/// </summary>
|
|
/// <param name="originalCode"></param>
|
|
/// <returns></returns>
|
|
|
|
public bool IsExistedWarehouse(string originalCode);
|
|
|
|
}
|
|
}
|