|
- using System.ComponentModel;
-
- namespace HealthMonitor.Util.QueryObjects
- {
-
-
-
- public enum QueryOperatorEnum
- {
-
-
-
- [Description("Like")]
- Contains = 0,
-
-
-
- [Description("等于")]
- Equal,
-
-
-
- [Description("不等于")]
- NotEqual,
-
-
-
- [Description("大于")]
- Greater,
-
-
-
- [Description("大于等于")]
- GreaterEqual,
-
-
-
- [Description("小于")]
- Less,
-
-
-
- [Description("小于等于")]
- LessEqual,
-
-
-
- [Description("In")]
- In,
-
-
-
- [Description("Between(只支持数字类型)")]
- Between
- }
- }
|