Files
shgx_tz_mes_backend_sync/ZR.Service/mes/wms/IService/IWMlocationInfoService.cs
2024-06-07 11:05:58 +08:00

16 lines
377 B
C#

using ZR.Model.MES.wms;
namespace ZR.Service.mes.wms.IService
{
public interface IWMlocationInfoService
{
// 获取成品库信息
public (List<WmInfo>, int) Getwminfo_product(string shelf, int layer, int pageNum, int pageSize);
// 获取库位信息
public WmInfo Getlocationinfo(int warehouse_num, string locationcode);
}
}