cartbean.java
来自「该项目是我近期上传的网上商城项目的核心代码」· Java 代码 · 共 50 行
JAVA
50 行
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 + =
减小字号Ctrl + -
显示快捷键?