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