using Bootstrap.DataAccess;
using Longbow.Web.Mvc;
namespace Bootstrap.Admin.Query
{
///
/// 登录日志查询条件
///
public class QueryLoginOption : PaginationOption
{
///
/// 登录IP地址
///
public string LoginIP { get; set; }
///
///
///
///
public QueryData RetrieveData()
{
var data = LoginHelper.Retrieves(this, LoginIP);
return new QueryData
{
total = data.TotalItems,
rows = data.Items
};
}
}
}