📄 querycondition.java
字号:
package com.intohotel.util;
public class QueryCondition {
private String col;
private String colType;
private String operateType;
private String condition;
private String checked;
public String getChecked() {
return checked;
}
public void setChecked(String checked) {
this.checked = checked;
}
public String getCol() {
return col;
}
public void setCol(String col) {
this.col = col;
}
public String getCondition() {
return condition;
}
public void setCondition(String condition) {
this.condition = condition;
}
public String getOperateType() {
return operateType;
}
public void setOperateType(String operateType) {
this.operateType = operateType;
}
public String getColType() {
return colType;
}
public void setColType(String colType) {
this.colType = colType;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -