|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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
- }
- }
|