using System; using System.Collections.Generic; namespace Easy4net.Common { /// /// 分页查询结果 /// /// 数据库表实体类 public class PageResult { /// /// 分页查询中总记录数 /// public int Total {get; set;} /// /// 分页查询中结果集合 /// public List DataList {get; set;} } }