// *********************************************************************** // Assembly : FundationAdmin // Author : yubaolee // Created : 03-09-2016 // // Last Modified By : yubaolee // Last Modified On : 03-09-2016 // *********************************************************************** // // 版权所有(C) Microsoft 2015 // // layui datatable数据返回 // *********************************************************************** namespace OpenAuth.App.Response { /// /// table的返回数据 /// public class TableData { /// /// 状态码 /// public int code; /// /// 操作消息 /// public string msg; /// /// 总记录条数 /// public int count; /// /// 数据内容 /// public dynamic data; } }