30 lines
884 B
C#
30 lines
884 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 仓库批量查询service接口
|
|
/// </summary>
|
|
public interface IWmGoodsBatchSearchService : IBaseService<WmGoodsBatchSearchDto>
|
|
{
|
|
/// <summary>
|
|
/// 树表最外层查询
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
PagedInfo<WmGoodsBatchTableDto> GetBatchOutRecordByPackageCodeShort(WmGoodsBatchSearchDto parm);
|
|
/// <summary>
|
|
/// 树表子节点懒加载查询
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
PagedInfo<WmGoodsBatchTableDto> GetBatchOutRecordTreeLazyByPackageCodeShort(WmGoodsBatchSearchDto parm);
|
|
|
|
}
|
|
}
|