using System.Collections.Generic; namespace WIDESEA_Entity.DomainModels { public class PageGridData { public int status { get; set; } public string msg { get; set; } public int total { get; set; } public List rows { get; set; } public object summary { get; set; } /// /// 可以在返回前,再返回一些额外的数据,比如返回其他表的信息,前台找到查询后的方法取出来 /// public object extra { get; set; } } }