📄 bookbean.java
字号:
package mypack;
public class BookBean {
private int bookid;
private String bookname;
private String pub;
private String author;
private String picurl;
private float price;
private String intro;
private String sortname;
public BookBean(){
}
public BookBean(int id,String name,String pub,String author,String picurl,float price,String intro,String sortname){
this.bookid = id;
this.bookname = name;
this.pub = pub;
this.author = author;
this.picurl = picurl;
this.price = price;
this.intro = intro;
this.sortname=sortname;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public int getBookid() {
return bookid;
}
public void setBookid(int bookid) {
this.bookid = bookid;
}
public String getBookname() {
return bookname;
}
public void setBookname(String bookname) {
this.bookname = bookname;
}
public String getIntro() {
return intro;
}
public void setIntro(String intro) {
this.intro = intro;
}
public String getPicurl() {
return picurl;
}
public void setPicurl(String picurl) {
this.picurl = picurl;
}
public float getPrice() {
return price;
}
public void setPrice(float price) {
this.price = price;
}
public String getPub() {
return pub;
}
public void setPub(String pub) {
this.pub = pub;
}
public String getSortname() {
return sortname;
}
public void setSortname(String sortname) {
this.sortname = sortname;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -