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