19 lines
407 B
C#
19 lines
407 B
C#
|
|
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();
|
|||
|
|
}
|
|||
|
|
}
|