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
|
|
|
|
|
|
|
|
|
|
string GetDeviceByDeviceName(string DeviceName);
|
2024-04-09 08:17:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|