/*
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
*/
|
package com.megatim.dynamic.reports.pojo;
|
|
/**
|
*
|
* @author ASUS
|
*/
|
public class DisplayCondition {
|
|
private String operandType;
|
|
private String leftOperand;
|
|
private String rightOperand;
|
|
private String operator;
|
|
public String getOperandType() {
|
return operandType;
|
}
|
|
public void setOperandType(String operandType) {
|
this.operandType = operandType;
|
}
|
|
public String getLeftOperand() {
|
return leftOperand;
|
}
|
|
public void setLeftOperand(String leftOperand) {
|
this.leftOperand = leftOperand;
|
}
|
|
public String getRightOperand() {
|
return rightOperand;
|
}
|
|
public void setRightOperand(String rightOperand) {
|
this.rightOperand = rightOperand;
|
}
|
|
public String getOperator() {
|
return operator;
|
}
|
|
public void setOperator(String operator) {
|
this.operator = operator;
|
}
|
|
}
|