?? 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 + -