?? bbs.java
字號:
package bean;
/**
* 數據庫中的bbs表
* */
import java.sql.*;
public class Bbs {
private int bid;
private String btitle;
private String author;
private Timestamp bdate;
public Bbs() {}
public Bbs(int bid, String btitle, String author, Timestamp bdate) {
this.bid = bid;
this.btitle = btitle;
this.author = author;
this.bdate = bdate;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public Timestamp getBdate() {
return bdate;
}
public void setBdate(Timestamp bdate) {
this.bdate = bdate;
}
public int getBid() {
return bid;
}
public void setBid(int bid) {
this.bid = bid;
}
public String getBtitle() {
return btitle;
}
public void setBtitle(String btitle) {
this.btitle = btitle;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -