// *********************************************************************** // Assembly : FundationAdmin // Author : yubaolee // Created : 03-09-2016 // // Last Modified By : yubaolee // Last Modified On : 03-09-2016 // *********************************************************************** // // 版权所有(C) Microsoft 2015 // // layui datatable数据返回 // *********************************************************************** using System.Collections.Generic; using OpenAuth.Repository.Domain; namespace OpenAuth.App.Response { /// /// 返回动态数据类型的分页数据 /// 带有列定义 /// public class PagedDynamicDataResp : Infrastructure.Response { /// /// 总记录条数 /// public int Count { get; set; } /// /// 返回的表格列定义 /// 该属性基于代码生成使用的列定义 /// public List ColumnFields{ get; set; } /// /// 数据内容 /// public dynamic Data { get; set; } public PagedDynamicDataResp() { Code = 200; Message = "加载成功"; ColumnFields = new List(); } } }