📄 cartbean.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 + -