2024-04-09 08:17:44 +00:00
|
|
|
|
using InSituLaboratory.Entities;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace InSituLaboratory.IService
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IDeviceSvice : IBaseService
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 获取设备清单
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
IEnumerable<SysDevice> GetDevices();
|
2024-04-10 09:50:54 +00:00
|
|
|
|
|
2024-04-11 09:49:43 +00:00
|
|
|
|
/// <summary>
|
2024-04-12 09:47:43 +00:00
|
|
|
|
/// 根据设备名称获取设备预设工作时长
|
2024-04-11 09:49:43 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="DeviceName"></param>
|
|
|
|
|
|
/// <returns></returns>
|
2024-04-10 09:50:54 +00:00
|
|
|
|
string GetDeviceByDeviceName(string DeviceName);
|
2024-04-11 09:49:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
2024-06-28 09:51:00 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 根据设备名称获取设备预设工作时长
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="DeviceName"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
string GetDeviceByDeviceNameMinTime(string DeviceName);
|
|
|
|
|
|
|
2024-04-09 08:17:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|