using System;
using ZR.Model;
using ZR.Model.Dto;
using ZR.Model.MES.wms;
using System.Collections.Generic;
using ZR.Model.MES.wms.Dto;
namespace ZR.Service.mes.wms.IService
{
///
/// 仓库批量查询service接口
///
public interface IWmGoodsBatchSearchService : IBaseService
{
///
/// 树表最外层查询
///
///
///
PagedInfo GetBatchOutRecordByPackageCodeShort(WmGoodsBatchSearchDto parm);
///
/// 树表子节点懒加载查询
///
///
///
PagedInfo GetBatchOutRecordTreeLazyByPackageCodeShort(WmGoodsBatchSearchDto parm);
}
}