IZhongTianFjDataService.cs 1.1 KB

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using wms.sqlsugar.model.fj;
  5. using Wms.Screen.Dto.ZhongTian.Request;
  6. using Wms.Screen.Dto.ZhongTian.Response;
  7. using Wms.Screen.SqlSugar.ZhongTian;
  8. using WCS_TaskOld = wms.sqlsugar.model.fj.WCS_TaskOld;
  9. namespace Wms.Screen.DataService.Interface
  10. {
  11. /// <summary>
  12. /// 分拣data接口
  13. /// </summary>
  14. public interface IZhongTianFjDataService
  15. {
  16. List<WCS_TaskOld> GetFjEquips(GetEquipsRequest reqEntity);
  17. List<TaskInfoDto> GetFjRunWcsTaskInfo(GetWcsTaskInfoRequest request);
  18. List<StackDto> GetFjStackInfo(GetWorkPlanBillListRequest reqEntity);
  19. List<ZtLocationUsageReportViewDto> GetFjLocationUsageReportList(string warehouse);
  20. List<BomSetGrpCurrentMaterialRateDto> GetBomSetGrpCurrentMaterialRateList(string warehouse);
  21. List<MantuoBarCodeRateDto> GetMantuoBarCodeRate(string warehouse);
  22. List<BaseWarecell> GetLocationList(string warehouse);
  23. List<TaskInOutDto> GeHistoryTaskInfo(GeFJHistoryTaskInfoRequest request);
  24. List<InvSetGrpDto> GetInvSetGrpList();
  25. }
  26. }