22 lines
415 B
C#
22 lines
415 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ZR.Model.MES.qc.DTO;
|
|
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);
|
|
|
|
|
|
|
|
}
|
|
}
|