?? 002f89b7a2a9001d1342b12c096eb64f
字號:
package demo;
public class NoticeBean {
String id;
String title;
String content;
boolean sale;
public boolean isSale() {
return sale;
}
public void setSale(boolean sale) {
this.sale = sale;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public void setId(int id) {
this.id = id;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -