Files
YunTongJackYunTask/Reportapi/MyCode.Project.Domain/Repositories/IMOOrdersRepository.cs

41 lines
1.4 KiB
C#
Raw Normal View History

2025-08-23 18:22:55 +08:00
using MyCode.Project.Domain;
using MyCode.Project.Domain.Message;
2025-09-02 14:52:56 +08:00
using MyCode.Project.Domain.Message.Act.AdminReport.PrdReport;
2025-08-23 18:22:55 +08:00
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;
2025-08-23 17:38:02 +08:00
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);
2025-08-23 18:22:55 +08:00
/// <summary>
/// 获取生产订单分录信息
/// </summary>
/// <param name="search"></param>
/// <returns></returns>
PageResult<PrdMoOrderEntryResp> GetPrdMoEntryPageList(PagedSearch<IdAct> search);
2025-09-02 14:52:56 +08:00
PrdReportHead GetMoDataChartHeadByYearAndMonth(YearAndMonth yearAndMonth);
List<MaterialAndQty> GetPrdInStockGroupByMaterial(YearAndMonth yearAndMonth);
List<MaterialAndQty> GetPrdMoGroupByMaterial(YearAndMonth yearAndMonth);
List<MaterialAndQty> GetInventoryGroupByMaterial();
2025-08-23 17:38:02 +08:00
}
}