?? booktypebean.java
字號:
package bean;
public class BookTypeBean {
// typeId屬性
private int typeId;
// display屬性
private String display;
public BookTypeBean() {
}
/**
* typeId屬性的setter方法
*
* @param typeId
*/
public void setTypeId(int typeId) {
this.typeId = typeId;
}
/**
* display屬性的setter方法
*
* @param display
*/
public void setDisplay(String display) {
this.display = display;
}
/**
* typeId屬性的getter方法
*
* @return
*/
public int getTypeId() {
return typeId;
}
/**
* display屬性的getter方法
*
* @return
*/
public String getDisplay() {
return display;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -