IZhongTianFjService.cs 1.1 KB

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Wms.Screen.Dto.ZhongTian.Request;
  5. using Wms.Screen.Dto.ZhongTian.Response;
  6. using Wms.Screen.Dto;
  7. namespace Wms.Screen.Service.IService
  8. {
  9. /// <summary>
  10. /// 分拣service接口
  11. /// </summary>
  12. public interface IZhongTianFjService
  13. {
  14. List<FJEquipDto> GetFjEquips(GetEquipsRequest reqEntity);
  15. List<TaskInfoDto> GetFjTaskInfo(GetWcsTaskInfoRequest ReqEntity);
  16. /// <summary>
  17. /// 码垛信息
  18. /// </summary>
  19. /// <param name="reqEntity"></param>
  20. /// <returns></returns>
  21. List<StackDto> GetFjStackInfo(GetWorkPlanBillListRequest reqEntity);
  22. PageResult<ZtLocationUsageReportViewDto> GetFjLocationUsageViewList(string warehouse);
  23. List<MantuoBarCodeRateDto> GetMantuoBarCodeRate(string warehouse);
  24. List<BomSetGrpCurrentMaterialRateDto> GetBomSetGrpCurrentMaterialRateList(string warehouse);
  25. List<ItemVal> GetLocaitonList(string warehouse);
  26. GeFJHistoryTaskInfoRes GeHistoryTaskInfo(GeFJHistoryTaskInfoRequest request);
  27. GetFullWeightDistRes GetInvSetGrpList();
  28. }
  29. }