15 lines
391 B
C#
15 lines
391 B
C#
using DOAN.Model.MES.dev;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Service.MES.dev.IService
|
|
{
|
|
public interface IDeviceMaintenancePerformanceService
|
|
{
|
|
public Task<Dictionary<string, List<DeviceUptime>>> DeviceUptimesAsync(string startTime, string endTime, string workshop);
|
|
}
|
|
}
|