package com.vci.common.qt.object;
|
|
/**
|
* 叶子节点的详细数据
|
* @author Administrator
|
*
|
*/
|
public class LeafInfo {
|
|
private String clause;
|
private String operator;
|
private LeafValue value;
|
|
|
public String getClause() {
|
return clause;
|
}
|
|
|
public void setClause(String clause) {
|
this.clause = clause;
|
}
|
|
|
public String getOperator() {
|
return operator;
|
}
|
|
|
public void setOperator(String operator) {
|
this.operator = operator;
|
}
|
|
|
public LeafValue getValue() {
|
return value;
|
}
|
|
|
public void setValue(LeafValue value) {
|
this.value = value;
|
}
|
|
}
|