// *********************************************************************** // Assembly : FundationAdmin // Author : yubaolee // Created : 03-09-2016 // // Last Modified By : yubaolee // Last Modified On : 03-09-2016 // *********************************************************************** // // 版权所有(C) Microsoft 2015 // // jqGrid的数据格式 // *********************************************************************** using System.Collections.Generic; namespace Entity { /// /// jqGrid的返回值 /// public class JqData { /// /// 页码 /// public int page; /// /// 总页数 /// public int total; /// /// 总记录条数 /// public int records; public IEnumerable rows; } }