📄 tbookbu.java
字号:
package com.sun.pojo;
import java.util.Date;
/**
* TBookBu entity.
*
* @author MyEclipse Persistence Tools
*/
public class TBookBu implements java.io.Serializable {
// Fields
private Long bookId;
private String bookName;
private String bookType;
private String publisher;
private Date publishDate;
private String author;
// Constructors
/** default constructor */
public TBookBu() {
}
/** minimal constructor */
public TBookBu(Long bookId, String bookType) {
this.bookId = bookId;
this.bookType = bookType;
}
/** full constructor */
public TBookBu(Long bookId, String bookName, String bookType,
String publisher, Date publishDate, String author) {
this.bookId = bookId;
this.bookName = bookName;
this.bookType = bookType;
this.publisher = publisher;
this.publishDate = publishDate;
this.author = author;
}
// Property accessors
public Long getBookId() {
return this.bookId;
}
public void setBookId(Long bookId) {
this.bookId = bookId;
}
public String getBookName() {
return this.bookName;
}
public void setBookName(String bookName) {
this.bookName = bookName;
}
public String getBookType() {
return this.bookType;
}
public void setBookType(String bookType) {
this.bookType = bookType;
}
public String getPublisher() {
return this.publisher;
}
public void setPublisher(String publisher) {
this.publisher = publisher;
}
public Date getPublishDate() {
return this.publishDate;
}
public void setPublishDate(Date publishDate) {
this.publishDate = publishDate;
}
public String getAuthor() {
return this.author;
}
public void setAuthor(String author) {
this.author = author;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -