123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package com.example.xiaoshiweixinback.business.utils.parseQueryToTree;
- public class operate extends Symbol {
-
- /// <summary>
- /// 优先级
- /// </summary>
- int priorityVale;
- public void setpriorityVale(int v){
- this.priorityVale = v;
- }
- public int getpriorityVale(){
- return this.priorityVale;
- }
- /// <summary>
- /// 操作符元数
- /// 1表示一元操作符 NOT
- /// 2表示二元操作符 AND、OR、>、<、= 、>=、<=、like等
- /// </summary>
- int operateValue;
- public void setoperateValue(int v){
- this.operateValue = v;
- }
- public int getoperateValue(){
- return this. operateValue;
- }
- enuType type;
- public void setenyType(enuType type){
- this.type = type;
- }
- public enuType gettype(){
- return this.type;
- }
- }
|