📄 queryresultconfig.java
字号:
/*
* Created on 2004-4-2
*
*/
package com.esimple.service.query.config;
/**
* @author steven
*
*/
public class QueryResultConfig extends Config{
private String format;
private String type;
private String alias;
private String name;
private String width;
public void setWidth(String width){
this.width = width;
}
public String getWidth(){
return this.width;
}
public void setFormat(String format){
this.format = format;
}
public String getFormat(){
return this.format;
}
public void setType(String type){
this.type = type;
}
public String getType(){
return this.type;
}
public void setAlias(String alias){
this.alias = alias;
}
public String getAlias(){
return this.alias;
}
public void setName(String name){
this.name = name;
}
public String getName(){
return this.name;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -