using MyCode.Project.Domain.Message.Act.AdminReport.PrdReport; using MyCode.Project.Domain.Message.Act.Common; using MyCode.Project.Domain.Message.Response.LxmZHMDReport; using MyCode.Project.Infrastructure.Common; using MyCode.Project.Infrastructure.JackYun; using System.Collections.Generic; namespace MyCode.Project.Services { public interface IPrdOrderService { /// /// 获取生产订单列表数据 /// /// /// PageResult GetPrdMoPageList(PagedSearch search); /// /// 获取生产订单明细列表数据 /// /// /// PageResult GetPrdMoEntryPageList(PagedSearch search); /// /// 获取生产订单执行统计表数据 /// /// /// PageResult GetMoExecuteSumRespData(PagedSearch search); /// /// 获取报表头 /// /// /// PrdReportHead GetMoDataChartHeadByYearAndMonth(YearAndMonth yearAndMonth); /// /// 获取看板折现图 /// /// /// List GetMoDataChartByYearAndMonth(YearAndMonth yearAndMonth); List GetPrdInStockGroupByMaterial(YearAndMonth yearAndMonth); List GetPrdMoGroupByMaterial(YearAndMonth yearAndMonth); List GetInventoryGroupByMaterial(); } }