📄 book.java
字号:
package com.zzu.dao.entity;
import java.util.Date;
/**
* Book entity.
*
* @author MyEclipse Persistence Tools
*/
public class Book implements java.io.Serializable {
// Fields
private Integer bid;
private String btitle;
private String bcontent;
private Date inputdate;
// Constructors
/** default constructor */
public Book() {
}
/** minimal constructor */
public Book(Integer bid, String btitle) {
this.bid = bid;
this.btitle = btitle;
}
/** full constructor */
public Book(Integer bid, String btitle, String bcontent, Date inputdate) {
this.bid = bid;
this.btitle = btitle;
this.bcontent = bcontent;
this.inputdate = inputdate;
}
// Property accessors
public Integer getBid() {
return this.bid;
}
public void setBid(Integer bid) {
this.bid = bid;
}
public String getBtitle() {
return this.btitle;
}
public void setBtitle(String btitle) {
this.btitle = btitle;
}
public String getBcontent() {
return this.bcontent;
}
public void setBcontent(String bcontent) {
this.bcontent = bcontent;
}
public Date getInputdate() {
return this.inputdate;
}
public void setInputdate(Date inputdate) {
this.inputdate = inputdate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -