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

📄 searchbooksvo.java

📁 一个简单的图书馆的管理系统,该系统主要是针对学校的图书馆而做的
💻 JAVA
字号:
package librarymanagement.vo;
/**
 * 图书馆书籍查询VO
 * @author 虎兴龙
 *
 */
public class SearchBooksVo {
	private int bookId,bookAmount,inAmount;
	private String bookName,kind,author,publisCom,bookLocation,edition;
	private float price;
	public SearchBooksVo(String author, int bookAmount, int bookId,
			String bookLocation, String bookName, String edition, int inAmount,
			String kind, float price, String publisCom) {
		super();
		this.author = author;
		this.bookAmount = bookAmount;
		this.bookId = bookId;
		this.bookLocation = bookLocation;
		this.bookName = bookName;
		this.edition = edition;
		this.inAmount = inAmount;
		this.kind = kind;
		this.price = price;
		this.publisCom = publisCom;
	}
	public int getBookId() {
		return bookId;
	}
	public void setBookId(int bookId) {
		this.bookId = bookId;
	}
	public int getBookAmount() {
		return bookAmount;
	}
	public void setBookAmount(int bookAmount) {
		this.bookAmount = bookAmount;
	}
	public int getInAmount() {
		return inAmount;
	}
	public void setInAmount(int inAmount) {
		this.inAmount = inAmount;
	}
	public String getBookName() {
		return bookName;
	}
	public void setBookName(String bookName) {
		this.bookName = bookName;
	}
	public String getKind() {
		return kind;
	}
	public void setKind(String kind) {
		this.kind = kind;
	}
	public String getAuthor() {
		return author;
	}
	public void setAuthor(String author) {
		this.author = author;
	}
	public String getPublisCom() {
		return publisCom;
	}
	public void setPublisCom(String publisCom) {
		this.publisCom = publisCom;
	}
	public String getBookLocation() {
		return bookLocation;
	}
	public void setBookLocation(String bookLocation) {
		this.bookLocation = bookLocation;
	}
	public String getEdition() {
		return edition;
	}
	public void setEdition(String edition) {
		this.edition = edition;
	}
	public float getPrice() {
		return price;
	}
	public void setPrice(float price) {
		this.price = price;
	}

}

⌨️ 快捷键说明

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