26 lines
540 B
C#
26 lines
540 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.IoTDBProvider
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 查询结果
|
|||
|
|
/// </summary>
|
|||
|
|
/// <typeparam name="T"></typeparam>
|
|||
|
|
public class PagedResult<T>
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 总条数
|
|||
|
|
/// </summary>
|
|||
|
|
public int TotalCount { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 数据集合
|
|||
|
|
/// </summary>
|
|||
|
|
public IEnumerable<T> Items { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|