📄 book.java
字号:
package com.autumn.pojo;
import java.util.Set;
public class Book {
private String id ;
private String code ;
private String name ;
private String publish ;
private String author ;
private int pagecount ;
private String price ;
private int out ;
private Borrowed borrowed ;
private Set history ;
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getPagecount() {
return pagecount;
}
public void setPagecount(int pagecount) {
this.pagecount = pagecount;
}
public String getPublish() {
return publish;
}
public void setPublish(String publish) {
this.publish = publish;
}
public int getOut() {
return out;
}
public void setOut(int out) {
this.out = out;
}
public Borrowed getBorrowed() {
return borrowed;
}
public void setBorrowed(Borrowed borrowed) {
this.borrowed = borrowed;
}
public String getPrice() {
return price;
}
public void setPrice(String price) {
this.price = price;
}
public Set getHistory() {
return history;
}
public void setHistory(Set history) {
this.history = history;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -