wxw
2025-04-27 33572be8da5fd6534b56e1e22d70e8cf56f5fe41
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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);
 
 
    }
}