20230201_145_upperpc/InSituLaboratory.IService/IDeviceSvice.cs

28 lines
652 B
C#
Raw Normal View History

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-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-04-09 08:17:44 +00:00
}
}