25 lines
754 B
C#
Raw Normal View History

2026-01-21 11:16:34 +08:00
using System;
using DOAN.Model;
using DOAN.Model.Dto;
using DOAN.Model.MES.product;
using DOAN.Model.MES.product.Dto;
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Http;
using DOAN.Model.MES.report;
using DOAN.Model.MES;
using DOAN.Model.MES.base_;
namespace DOAN.Service.MES.report.IService
{
public interface IReportService : IBaseService<BaseWorkRoute>
{
List<DevicePoweronRateModel> DevicePoweronRate(DateTime dateTime);
2026-01-22 14:30:44 +08:00
List<DeviceDowntimeRateModel> DeviceDowntimeRate(DateTime dateTime);
2026-01-23 13:31:28 +08:00
List<ProductionCompletionRate> ProductionCompletionRate(DateTime dateTime);
2026-01-24 09:19:42 +08:00
List<ProductionCompletionRate> MonthlyProductionCompletionRate(DateTime dateTime);
2026-01-21 11:16:34 +08:00
}
}