IZhongTianPtDataService.cs 1.0 KB

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using wms.sqlsugar.model.pt;
  5. using Wms.Screen.Dto.ZhongTian.Request;
  6. using Wms.Screen.Dto.ZhongTian.Response;
  7. using Wms.Screen.SqlSugar.ZhongTian;
  8. using BillInvnow = wms.sqlsugar.model.pt.BillInvnow;
  9. using WCS_TaskOld = wms.sqlsugar.model.pt.WCS_TaskOld;
  10. namespace Wms.Screen.DataService.Interface
  11. {
  12. /// <summary>
  13. /// 盘条data接口
  14. /// </summary>
  15. public interface IZhongTianPtDataService
  16. {
  17. List<WCS_TaskOld> GetPtEquips(GetEquipsRequest reqEntity);
  18. List<TaskInfoDto> GetPtRunWcsTaskInfo(GetWcsTaskInfoRequest request);
  19. List<ZTBillDto> GetPtBillList(GetWorkPlanBillListRequest reqEntity);
  20. List<ZtLocationUsageReportViewDto> GetPtLocationUsageReportList();
  21. List<BaseWarecell> GetLocationList();
  22. List<BillInvnow> GetBillInvnowList();
  23. List<WCS_TaskOld> GeHistoryTaskInfo(GeHistoryTaskInfoRequest request);
  24. List<BoilerNoMatCodeModel> GetBoilerNoMatCodeQtyList();
  25. }
  26. }