28 lines
588 B
C#
28 lines
588 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.IoTDBProvider
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 查询条件
|
|||
|
|
/// </summary>
|
|||
|
|
public class QueryCondition
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 字段
|
|||
|
|
/// </summary>
|
|||
|
|
public string Field { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 操作符
|
|||
|
|
/// </summary>
|
|||
|
|
public string Operator { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 值
|
|||
|
|
/// </summary>
|
|||
|
|
public object Value { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|