using System; using System.Collections.Generic; using System.Text; namespace FreeSql.Site.Entity.Common { /// /// 列表数据返回对象 /// /// public class DataPage where T : class { /// /// 返回成功与否 /// public string code { get; set; } /// /// 如果返回报错,具体报错内容 /// public string msg { get; set; } /// /// 总计记录行数 /// public long count { get; set; } /// /// 返回具体的数据 /// public List data { get; set; } } }