Files
YunTongJackYunTask/Reportapi/MyCode.Project.Domain/Repositories/IMOOrdersRepository.cs
2025-09-02 14:52:56 +08:00

41 lines
1.4 KiB
C#

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<JackOrders>
{
/// <summary>
/// 获取生产数据
/// </summary>
/// <param name="search"></param>
/// <returns></returns>
PageResult<PrdMoOrderResp> GetPrdMoPageList(PagedSearch search);
/// <summary>
/// 获取生产订单分录信息
/// </summary>
/// <param name="search"></param>
/// <returns></returns>
PageResult<PrdMoOrderEntryResp> GetPrdMoEntryPageList(PagedSearch<IdAct> search);
PrdReportHead GetMoDataChartHeadByYearAndMonth(YearAndMonth yearAndMonth);
List<MaterialAndQty> GetPrdInStockGroupByMaterial(YearAndMonth yearAndMonth);
List<MaterialAndQty> GetPrdMoGroupByMaterial(YearAndMonth yearAndMonth);
List<MaterialAndQty> GetInventoryGroupByMaterial();
}
}