29 lines
591 B
C#
29 lines
591 B
C#
/*
|
|
* 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
|
|
{
|
|
/// <summary>
|
|
/// 数据总数
|
|
/// </summary>
|
|
public int total { get; set; }
|
|
/// <summary>
|
|
/// 当前集合总数
|
|
/// </summary>
|
|
public int current_total { get; set; }
|
|
/// <summary>
|
|
/// 跳过多少记录
|
|
/// </summary>
|
|
public int skip_total { get; set; }
|
|
}
|
|
}
|