book.java
来自「图书馆管理系统,用java编写,有原码,有检索,查询,修改,删除等功能」· Java 代码 · 共 77 行
JAVA
77 行
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 + =
减小字号Ctrl + -
显示快捷键?