booklendcountvo.java

来自「一个简单的图书馆的管理系统,该系统主要是针对学校的图书馆而做的」· Java 代码 · 共 77 行

JAVA
77
字号
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 + =
减小字号Ctrl + -
显示快捷键?