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

📄 bookbean.java

📁 该系统实现了网上购物及书店管理
💻 JAVA
字号:
package bean;

import java.util.*;

public class BookBean {
	// bookId属性
	private int bookId;

	// bookName属性
	private String bookName;

	// bookPenster属性
	private String bookPenster;

	// bookCompany属性
	private String bookCompany;

	// bookSynopsis属性
	private String bookSynopsis;

	// bookStorage属性
	private int bookStorage;

	// bookSell属性
	private int bookSell;

	// bookData属性
	private Date bookData;

	// bookPrice属性
	private int bookPrice;

	// bookType属性
	private String bookType;

	// bookImage属性
	private String bookImage;

	// bookStep属性
	private int bookStep;

	// bookCount属性
	private int bookCount;

	// bookAllPrice属性
	private int bookAllPrice;

	public int getBookId() {
		return bookId;
	}

	public String getBookName() {
		return bookName;
	}

	public String getBookPenster() {
		return bookPenster;
	}

	public String getBookCompany() {
		return bookCompany;
	}

	public String getBookSynopsis() {
		return bookSynopsis;
	}

	public int getBookStorage() {
		return bookStorage;
	}

	public int getBookSell() {
		return bookSell;
	}

	public Date getBookData() {
		return bookData;
	}

	public int getBookPrice() {
		return bookPrice;
	}

	public String getBookType() {
		return bookType;
	}

	public String getBookImage() {
		return bookImage;
	}

	public int getBookStep() {
		return bookStep;
	}

	public int getBookCount() {
		return bookCount;
	}

	public int getBookAllPrice() {
		return bookAllPrice;
	}

	public void setBookId(int bookId) {
		this.bookId = bookId;
	}

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

	public void setBookPenster(String bookPenster) {
		this.bookPenster = bookPenster;
	}

	public void setBookCompany(String bookCompany) {
		this.bookCompany = bookCompany;
	}

	public void setBookSynopsis(String bookSynopsis) {
		this.bookSynopsis = bookSynopsis;
	}

	public void setBookStorage(int bookStorage) {
		this.bookStorage = bookStorage;
	}

	public void setBookSell(int bookSell) {
		this.bookSell = bookSell;
	}

	public void setBookData(Date bookData) {
		this.bookData = bookData;
	}

	public void setBookPrice(int bookPrice) {
		this.bookPrice = bookPrice;
	}

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

	public void setBookImage(String bookImage) {
		this.bookImage = bookImage;
	}

	public void setBookStep(int bookStep) {
		this.bookStep = bookStep;
	}

	public void setBookCount(int bookCount) {
		this.bookCount = bookCount;
	}

	public void setBookAllPrice(int bookAllPrice) {
		this.bookAllPrice = bookAllPrice;
	}

}

⌨️ 快捷键说明

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