?? reader.java
字號:
package com.autumn.pojo;
import java.util.Set;
public class Reader {
private String id ;
private String name ;
private String password ;
private String inyear ;
private String college ;
private String degree ;
private int borrownum ;//借出書的數目
private Set borrowed ;
private Set history ;
public int getBorrownum() {
return borrownum;
}
public void setBorrownum(int borrownum) {
this.borrownum = borrownum;
}
public String getCollege() {
return college;
}
public void setCollege(String college) {
this.college = college;
}
public String getDegree() {
return degree;
}
public void setDegree(String degree) {
this.degree = degree;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getInyear() {
return inyear;
}
public void setInyear(String inyear) {
this.inyear = inyear;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Set getBorrowed() {
return borrowed;
}
public void setBorrowed(Set borrowed) {
this.borrowed = borrowed;
}
public Set getHistory() {
return history;
}
public void setHistory(Set history) {
this.history = history;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -