2025-04-02 14:06:40 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace JiShe.CollectBus.IoTDBProvider
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 查询条件
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class QueryOptions
|
|
|
|
|
|
{
|
2025-04-03 15:38:31 +08:00
|
|
|
|
/// <summary>
|
2025-04-07 16:44:25 +08:00
|
|
|
|
/// 表模型的表名称或者树模型的设备路径
|
2025-04-03 15:38:31 +08:00
|
|
|
|
/// </summary>
|
2025-04-07 16:44:25 +08:00
|
|
|
|
public required string TableNameOrTreePath { get; set; }
|
2025-04-03 15:38:31 +08:00
|
|
|
|
|
2025-04-02 14:06:40 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 分页
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int Page { get; set; }
|
2025-04-07 16:44:25 +08:00
|
|
|
|
|
2025-04-02 14:06:40 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 分页大小
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int PageSize { get; set; }
|
2025-04-07 16:44:25 +08:00
|
|
|
|
|
2025-04-02 14:06:40 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 查询条件
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public List<QueryCondition> Conditions { get; } = new();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|