📄 command.java
字号:
package ActiveObject.vo;/** * @author Administrator */public class Command { private String commandSQL = null; private Object[] commandParams = null; public Command () { } public Command (String commandSQL, Object[] commandParams) { this.commandParams = commandParams; this.commandSQL = commandSQL; } public String getCommandSQL() { return commandSQL; } public void setCommandSQL(String commandSQL) { this.commandSQL = commandSQL; } public Object[] getCommandParams() { return commandParams; } public void setCommandParams(Object[] commandParams) { this.commandParams = commandParams; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -