/* * Date :2015-6-4 14:14 * Author:吴梦飞 * Desc : */ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Nirvana.Common.ApiBase { public class ListInfo { /// /// 数据总数 /// public int total { get; set; } /// /// 当前集合总数 /// public int current_total { get; set; } /// /// 跳过多少记录 /// public int skip_total { get; set; } } }