namespace JiShe.CollectBus.IoTDB.Options { /// /// 查询条件 /// public class IoTDBQueryOptions { /// /// 表模型的表名称或者树模型的设备路径 /// public required string TableNameOrTreePath { get; set; } /// /// 分页 /// public int PageIndex { get; set; } /// /// 分页大小 /// public int PageSize { get; set; } /// /// 查询条件 /// public List Conditions { get; set; } = new(); } }