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

📄 mycartbean.java

📁 实现在线的增删改查和一些基本的功能!这是一个简单的网页!
💻 JAVA
字号:
package model;

public class MycartBean {
	private BookInformation book;
	private int quantity;
	public MycartBean(BookInformation book,int quantity){
		this.book=book;
		this.quantity=quantity;
		
	}
	public BookInformation getBook() {
		return book;
	}
	public void setBook(BookInformation book) {
		this.book = book;
	}
	public int getQuantity() {
		return quantity;
	}
	public void setQuantity(int quantity) {
		this.quantity = quantity;
	}
	

}

⌨️ 快捷键说明

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