2024-06-07 11:04:26 +08:00
|
|
|
|
using ZR.Model.MES.wms;
|
2024-03-12 17:41:03 +08:00
|
|
|
|
|
|
|
|
|
|
namespace ZR.Service.mes.wms.IService
|
|
|
|
|
|
{
|
2024-06-07 11:04:26 +08:00
|
|
|
|
public interface IWMlocationInfoService
|
2024-03-12 17:41:03 +08:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 获取成品库信息
|
2024-06-07 11:04:26 +08:00
|
|
|
|
public (List<WmInfo>, int) Getwminfo_product(string shelf, int layer, int pageNum, int pageSize);
|
2024-03-12 17:41:03 +08:00
|
|
|
|
|
2024-03-13 17:30:57 +08:00
|
|
|
|
// 获取库位信息
|
|
|
|
|
|
public WmInfo Getlocationinfo(int warehouse_num, string locationcode);
|
2024-03-12 17:41:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|