querycondition.java
来自「本公司开发项目中本人做的公共类文件。如文件的操作」· Java 代码 · 共 42 行
JAVA
42 行
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 + =
减小字号Ctrl + -
显示快捷键?