37 lines
1017 B
C#
37 lines
1017 B
C#
using InSituLaboratory.Entities.ExperimentalStationEntities;
|
|
using InSituLaboratory.Entities.Sensor;
|
|
using InSituLaboratory.Entities.SysData;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace InSituLaboratory.IService.Sensor
|
|
{
|
|
/// <summary>
|
|
/// MEMS色谱数据通信接口
|
|
/// </summary>
|
|
public interface IMEMSSPService : IBaseService
|
|
{
|
|
/// <summary>
|
|
/// 获取MEMS色谱仪数据
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
IEnumerable<MEMSSpModel> GetMEMSSP();
|
|
|
|
|
|
/// <summary>
|
|
/// 获取MEMS色谱仪数据--分页
|
|
/// </summary>
|
|
/// <param name="key"></param>
|
|
/// <param name="pageSize"></param>
|
|
/// <param name="pageIndex"></param>
|
|
/// <param name="totalCount"></param>
|
|
/// <returns></returns>
|
|
IEnumerable<MEMSSpModel> GetMemsSPData(string key, int pageSize, int pageIndex, out int totalCount);
|
|
|
|
|
|
}
|
|
}
|