⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 booklendcountvo.java

📁 一个简单的图书馆的管理系统,该系统主要是针对学校的图书馆而做的
💻 JAVA
字号:
package librarymanagement.vo;

/**
 * 统计图书借阅情况的Vo
 * @author 虎兴龙
 *
 */
public class BookLendCountVo {
 
	private String book_name,reader_name,borrow_date,shouldReturnDate;

	private int book_id ,reader_id;
	
	public BookLendCountVo(int book_id, String book_name, int reader_id, String reader_name,
			               String borrow_date, String shouldReturnDate) {
		super();
		this.book_id = book_id;
		this.book_name = book_name;
		this.reader_id = reader_id;
		this.reader_name = reader_name;
		this.borrow_date = borrow_date;
		this.shouldReturnDate = shouldReturnDate;
	}

	public int getBook_id() {
		return book_id;
	}

	public void setBook_id(int book_id) {
		this.book_id = book_id;
	}

	public String getBook_name() {
		return book_name;
	}

	public void setBook_name(String book_name) {
		this.book_name = book_name;
	}

	public String getBorrow_date() {
		return borrow_date;
	}

	public void setBorrow_date(String borrow_date) {
		this.borrow_date = borrow_date;
	}

	public int getReader_id() {
		return reader_id;
	}

	public void setReader_id(int reader_id) {
		this.reader_id = reader_id;
	}

	public String getReader_name() {
		return reader_name;
	}

	public void setReader_name(String reader_name) {
		this.reader_name = reader_name;
	}

	public String getShouldReturnDate() {
		return shouldReturnDate;
	}

	public void setShouldReturnDate(String shouldReturnDate) {
		this.shouldReturnDate = shouldReturnDate;
	}

	

	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -