25 lines
754 B
C#
25 lines
754 B
C#
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);
|
|
List<DeviceDowntimeRateModel> DeviceDowntimeRate(DateTime dateTime);
|
|
|
|
List<ProductionCompletionRate> ProductionCompletionRate(DateTime dateTime);
|
|
|
|
List<ProductionCompletionRate> MonthlyProductionCompletionRate(DateTime dateTime);
|
|
}
|
|
}
|