using System; using System.Collections.Generic; using System.Text; using Wms.Screen.Dto; using Wms.Screen.Dto.ZhongTian.Request; using Wms.Screen.Dto.ZhongTian.Response; using Wms.Screen.SqlSugar.ZhongTian; using BillInvnow = wms.sqlsugar.model.hj.BillInvnow; namespace Wms.Screen.DataService.Interface { public interface IZhongTianHjDataService { List GetHjEquips(GetEquipsRequest reqEntity); /// /// 查询执行中的任务信息 /// /// /// /// 车间 /// List GetHjRunWcsTaskInfo(GetWcsTaskInfoRequest ReqEntity); List GetHjBillList(GetWorkPlanBillListRequest reqEntity); //List GetLocationList(GetLocationListRequest reqEntity); /// /// 根据类型、编码查询配置信息 /// /// /// List GetSysConfig(string code,string configType); // int GetEmtpyLocationCountByTunnel(List tunnels, int size); int GetRuningInTaskCountByTunnel(int tunnel, string warehousecode, int size); bool IsHjHouse(); List GetLocationList(); List GetBillInvnowList(); List GeHistoryTaskInfo(GeHistoryTaskInfoRequest request); List GetHjLocationUsageReportList(); List GetTunelCountList(); } }