namespace Web.Core.Entities.Response { public class PageListModel { public static PageListModel Default { get { return new PageListModel() { Total = 0, PageList = Enumerable.Empty() }; } } /// /// 总记录数 /// public int Total { get; set; } /// /// 数据实体 /// public IEnumerable PageList { get; set; } } }