📄 config.java
字号:
/*
* Created on 2004-4-2
*
*/
package com.esimple.service.query.config;
/**
* @author steven
*
*/
public class Config {
protected String id;
protected String label;
public void setId(String id){
this.id =id;
}
public String getId(){
return this.id;
}
public void setLabel(String label){
this.label =label;
}
public String getLabel(){
return this.label;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -