using Model.InterFaceModel;
|
using System;
|
using System.Collections.Generic;
|
using System.Text;
|
using WMS.Entity.SysEntity;
|
|
namespace WMS.IBLL.IBllTransServer
|
{
|
public interface IHopperTransportServer
|
{
|
List<SysStorageArea> GetAreaListByUser(int userId);
|
|
List<SysStorageLocat> GetLocatByArea(string area);
|
List<DicModel> GetPlnStatusByArea(string area);
|
List<string> GetSkuByStatus(string palletStatus);
|
List<string> GetLotNoBySku(string skuNo);
|
List<string> GetSku();
|
|
void jiaoLiaoHopper(string areaNo, string endLocate, string plnStatus, string standard, string skuNo, string lotNo, string url, int userId);
|
void jiaoCheHopper(string areaNo, string StartLocate, string plnNo, string plnStatus, decimal weight, string skuNo, string lotNo, string url, int userId);
|
|
|
}
|
}
|