condition.java
来自「一个专门用来快速开发网站的框架」· Java 代码 · 共 47 行
JAVA
47 行
package com.core.web;
public class Condition {
private String condition = "";
private String orderby = "";
private String actionType = "";
private String errorInfo = "";
public Condition() {
}
public String getCondition() {
return condition;
}
public String getActionType() {
return actionType;
}
public String getErrorInfo() {
return errorInfo;
}
public String getOrderby() {
return orderby;
}
public void setCondition(String condition) {
this.condition = condition;
}
public void setActionType(String actionType) {
this.actionType = actionType;
}
public void setErrorInfo(String errorInfo) {
this.errorInfo = errorInfo;
}
public void setOrderby(String orderby) {
this.orderby = orderby;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?