27 lines
762 B
C#
27 lines
762 B
C#
|
|
using InSituLaboratory.Entities;
|
|||
|
|
using InSituLaboratory.Entities.Sensor;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace InSituLaboratory.IService
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 日志记录
|
|||
|
|
/// </summary>
|
|||
|
|
public interface ILogService : IBaseService
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取数据--分页 按时间倒序排序
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="key"></param>
|
|||
|
|
/// <param name="pageSize"></param>
|
|||
|
|
/// <param name="pageIndex"></param>
|
|||
|
|
/// <param name="totalCount"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
IEnumerable<LogModel> GetLogData(string key, int pageSize, int pageIndex, out int totalCount);
|
|||
|
|
}
|
|||
|
|
}
|