Files
shgx_tz_mes_backend_sync/ZR.Service/mes/wms/IService/IWMlocationInfoService.cs

16 lines
377 B
C#
Raw Normal View History

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
}
}