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

📄 cartbean.java

📁 该项目是我近期上传的网上商城项目的核心代码
💻 JAVA
字号:
package javaBean;

public class CartBean {
	
	private String id;
	private String sp_Name;
	private String sp_Price;
	private int num;
	private double total;
	public CartBean(String id, String sp_Name, String sp_Price, int num, double total) {
		this.id = id;
		this.sp_Name = sp_Name;
		this.sp_Price = sp_Price;
		this.num = num;
		this.total = total;
	}
	public CartBean() {
	}
	public String getId() {
		return id;
	}
	public void setId(String id) {
		this.id = id;
	}
	public int getNum() {
		return num;
	}
	public void setNum(int num) {
		this.num = num;
	}
	public String getSp_Name() {
		return sp_Name;
	}
	public void setSp_Name(String sp_Name) {
		this.sp_Name = sp_Name;
	}
	public String getSp_Price() {
		return sp_Price;
	}
	public void setSp_Price(String sp_Price) {
		this.sp_Price = sp_Price;
	}
	public double getTotal() {
		return total;
	}
	public void setTotal(double total) {
		this.total = total;
	}
}

⌨️ 快捷键说明

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