using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.CollectBus.IoTDBProvider { /// /// 查询结果 /// /// public class PagedResult { /// /// 总条数 /// public int TotalCount { get; set; } /// /// 数据集合 /// public IEnumerable Items { get; set; } } }