using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.IoTDBProvider
{
///
/// 查询条件
///
public class QueryCondition
{
///
/// 字段
///
public string Field { get; set; }
///
/// 操作符
///
public string Operator { get; set; }
///
/// 值
///
public object Value { get; set; }
}
}