using System; using System.Collections.Generic; using System.Text; using wms.sqlsugar.model.pt; using Wms.Screen.Dto.ZhongTian.Request; using Wms.Screen.Dto.ZhongTian.Response; using Wms.Screen.SqlSugar.ZhongTian; using BillInvnow = wms.sqlsugar.model.pt.BillInvnow; using WCS_TaskOld = wms.sqlsugar.model.pt.WCS_TaskOld; namespace Wms.Screen.DataService.Interface { /// /// 盘条data接口 /// public interface IZhongTianPtDataService { List GetPtEquips(GetEquipsRequest reqEntity); List GetPtRunWcsTaskInfo(GetWcsTaskInfoRequest request); List GetPtBillList(GetWorkPlanBillListRequest reqEntity); List GetPtLocationUsageReportList(); List GetLocationList(); List GetBillInvnowList(); List GeHistoryTaskInfo(GeHistoryTaskInfoRequest request); List GetBoilerNoMatCodeQtyList(); } }