using Lottomat.Application.Entity.SystemManage;
using Lottomat.Util.WebControl;
using System.Collections.Generic;
namespace Lottomat.Application.IService.SystemManage
{
///
/// 版 本 1.0
/// Copyright (c) 2016-2017
/// 创建人:赵轶
/// 日 期:2016.1.8 9:56
/// 描 述:系统日志
///
public interface ILogService
{
#region 获取数据
///
/// 日志列表
///
/// 分页
/// 查询参数
///
IEnumerable GetPageList(Pagination pagination, string queryJson);
///
/// 日志实体
///
/// 主键值
///
LogEntity GetEntity(string keyValue);
#endregion
#region 提交数据
///
/// 清空日志
///
/// 日志分类Id
/// 保留时间段内
void RemoveLog(int categoryId, string keepTime);
///
/// 写日志
///
/// 对象
void WriteLog(LogEntity logEntity);
#endregion
}
}