using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.CollectBus.IoTDBProvider { /// /// 查询条件 /// public class QueryOptions { /// /// 表名或标签名 /// public required string TableNameOrTagName { get; set; } /// /// 分页 /// public int Page { get; set; } /// /// 分页大小 /// public int PageSize { get; set; } /// /// 查询条件 /// public List Conditions { get; } = new(); } }