using System; using System.Collections.Generic; namespace EasyNet.Common { public class PageResult { /// /// 分页查询中总记录数 /// public int Total { get; set; } /// /// 分页查询中结果集合 /// public Object DataList { get; set; } } public class PageResult { /// /// 分页查询中总记录数 /// public int Total { get; set; } /// /// 分页查询中结果集合 /// public List DataList { get; set; } } }