using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.Model;
using CY.Infrastructure.Query;
namespace CY.IDAL.Sys
{
///
/// 日志接口
///
public interface ILogDAL
{
///
/// 分页查询日志列表
///
///
///
///
///
IEnumerable SelectModelPage(string startTime,string endTime,Pagination pagination);
///
/// 批量删除记录
///
///
///
bool DeleteModeList(IList idList);
///
/// 根据ID获取日志实体
///
///
///
Log GetModel(int id);
}
}