zhuangpei-mesbackend/DOAN.Service/MES/dev/IService/IDeviceMaintenancePerformanceService.cs

15 lines
391 B
C#
Raw Normal View History

2025-04-27 17:52:53 +08:00
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);
}
}