📄 book.java
字号:
package mypackage;
import java.util.Date;
public class Book
{
String bookID = null;
String bookName = null;
String author = null;
String pubcom = null;
Date adddate = null;
String notes = null;
public Book(){}
public void setBookID(String id){
this.bookID = id;
}
public void setBookName(String name){
this.bookName = name;
}
public void setAuthor(String author){
this.author = author;
}
public void setPubcom(String pubcom){
this.pubcom = pubcom;
}
public void setAddDate(Date pubdate){
this.adddate = pubdate;
}
public void setNotes(String notes){
this.notes = notes;
}
public String getBookID(){
return this.bookID;
}
public String getBookName(){
return this.bookName;
}
public String getAuthor(){
return this.author;
}
public String getPubcom(){
return this.pubcom;
}
public Date getAdddate(){
return this.adddate;
}
public String getNotes(){
return this.notes;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -