?? board.java
字號:
package edu.liusong.mo;
import java.util.List;
import java.util.Random;
public class Board {
private long bid;
private String name;
private List articles;
public Board(){
bid=Math.abs(new Random(System.currentTimeMillis()).nextLong());
}
public long getBid() {
return bid;
}
public void setBid(long bid) {
this.bid = bid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List getArticles() {
return articles;
}
public void setArticles(List articles) {
this.articles = articles;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -