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

📄 bookinfovo.java

📁 网上书店 源代码和数据库网上书店 源代码和数据库
💻 JAVA
字号:
package com.shop.vo.addbook;

import java.util.Date;

public class BookInfoVo {

	private String isbn;

	private String bookName;

	private String author;

	private String printAddr;

	private float price;

	private float sellPrice;

	private String printNumber;

	private Date printDate;

	private String inBookNumber;

	private String remainNumber;

	private Date inBookDate;

	private byte[] bookImage;

	private String bookDescrption;

	private String bookType;

	private int buyCount;

	private float CountPrice;

	public String getBookDescrption() {
		return bookDescrption;
	}

	public void setBookDescrption(String bookDescrption) {
		this.bookDescrption = bookDescrption;
	}

	public byte[] getBookImage() {
		return bookImage;
	}

	public void setBookImage(byte[] bookImage) {
		this.bookImage = bookImage;
	}

	public String getBookType() {
		return bookType;
	}

	public void setBookType(String bookType) {
		this.bookType = bookType;
	}

	public Date getInBookDate() {
		return inBookDate;
	}

	public void setInBookDate(Date inBookDate) {
		this.inBookDate = inBookDate;
	}

	public String getInBookNumber() {
		return inBookNumber;
	}

	public void setInBookNumber(String inBookNumber) {
		this.inBookNumber = inBookNumber;
	}

	public float getPrice() {
		return price;
	}

	public void setPrice(float price) {
		this.price = price;
	}

	public Date getPrintDate() {
		return printDate;
	}

	public void setPrintDate(Date printDate) {
		this.printDate = printDate;
	}

	public String getPrintNumber() {
		return printNumber;
	}

	public void setPrintNumber(String printNumber) {
		this.printNumber = printNumber;
	}

	public String getRemainNumber() {
		return remainNumber;
	}

	public void setRemainNumber(String remainNumber) {
		this.remainNumber = remainNumber;
	}

	public float getSellPrice() {
		return sellPrice;
	}

	public void setSellPrice(float sellPrice) {
		this.sellPrice = sellPrice;
	}

	public String getAuthor() {
		return author;
	}

	public void setAuthor(String author) {
		this.author = author;
	}

	public String getBookName() {
		return bookName;
	}

	public void setBookName(String bookName) {
		this.bookName = bookName;
	}

	public String getIsbn() {
		return isbn;
	}

	public void setIsbn(String isbn) {
		this.isbn = isbn;
	}

	public String getPrintAddr() {
		return printAddr;
	}

	public void setPrintAddr(String printAddr) {
		this.printAddr = printAddr;
	}

	public int getBuyCount() {
		return buyCount;
	}

	public void setBuyCount(Integer buyCount) {
		this.buyCount = buyCount;
	}

	public float getCountPrice() {
		return CountPrice;
	}

	public void setCountPrice(float countPrice) {
		CountPrice = countPrice;
	}

}

⌨️ 快捷键说明

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