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