using MyCode.Project.Domain; using MyCode.Project.Domain.Message; 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.Domain.Model; using MyCode.Project.Infrastructure; using MyCode.Project.Infrastructure.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Domain.Repositories { public interface IMOOrdersRepository : IRepository { /// /// 获取生产数据 /// /// /// PageResult GetPrdMoPageList(PagedSearch search); /// /// 获取生产订单分录信息 /// /// /// PageResult GetPrdMoEntryPageList(PagedSearch search); PrdReportHead GetMoDataChartHeadByYearAndMonth(YearAndMonth yearAndMonth); List GetPrdInStockGroupByMaterial(YearAndMonth yearAndMonth); List GetPrdMoGroupByMaterial(YearAndMonth yearAndMonth); List GetInventoryGroupByMaterial(); } }