using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
///Sys_LoginRecord-数据库操作接口
///
public interface ISys_LoginRecordDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 根据编号获得信息
///
/// 编号
///
Sys_LoginRecord GetModelByKeyid(int? Keyid);
///
/// 分页查询
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination,Guid _LoginMemberId,string _TrueMemberName,string _LoginIP,DateTime? _BeginLoginTime,DateTime? _EndLoginTime,string _LoginRemark);
}
}