using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EMIS.ViewModel
{
public class ConfiguretView
{
///
/// 属性(查询的列名)
///
public string Attribute { get; set; }
///
/// 条件 (查询的条件 如 > <= > )
///
public string Condition { get; set; }
///
/// 值 (文本输入的值)
///
public string ConditionValue { get; set; }
}
}