📄 borrower.java
字号:
package com.lib.db;
public class Borrower {
private String borrower_id = null;
private String borrower = null;
private String login = null;
private String pwd = null;
private String email = null;
private String phone = null;
private String isStudent = null;
private int borrow_num = 0;
public Borrower(String borrower_id, int borrow_num) {
super();
this.borrower_id = borrower_id;
this.borrow_num = borrow_num;
}
public Borrower(String borrower_id, String borrower, String login, String pwd, String email, String phone, String isStudent) {
super();
this.borrower_id = borrower_id;
this.borrower = borrower;
this.login = login;
this.pwd = pwd;
this.email = email;
this.phone = phone;
this.isStudent = isStudent;
}
public int getBorrow_num() {
return borrow_num;
}
public void setBorrow_num(int borrow_num) {
this.borrow_num = borrow_num;
}
public String getBorrower() {
return borrower;
}
public void setBorrower(String borrower) {
this.borrower = borrower;
}
public String getBorrower_id() {
return borrower_id;
}
public void setBorrower_id(String borrower_id) {
this.borrower_id = borrower_id;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getIsStudent() {
return isStudent;
}
public void setIsStudent(String isStudent) {
this.isStudent = isStudent;
}
public String getLogin() {
return login;
}
public void setLogin(String login) {
this.login = login;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getPwd() {
return pwd;
}
public void setPwd(String pwd) {
this.pwd = pwd;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -