You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
2.0 KiB
106 lines
2.0 KiB
package com.example.entity;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* 购物车信息表
|
|
*/
|
|
public class Cart implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private Integer id;
|
|
private Integer userId;
|
|
private Integer businessId;
|
|
private Integer goodsId;
|
|
private Integer num;
|
|
|
|
private String businessName;
|
|
private String goodsName;
|
|
private String goodsImg;
|
|
private String goodUnit;
|
|
private Double goodsPrice;
|
|
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Integer getUserId() {
|
|
return userId;
|
|
}
|
|
|
|
public void setUserId(Integer userId) {
|
|
this.userId = userId;
|
|
}
|
|
|
|
public Integer getBusinessId() {
|
|
return businessId;
|
|
}
|
|
|
|
public void setBusinessId(Integer businessId) {
|
|
this.businessId = businessId;
|
|
}
|
|
|
|
public Integer getGoodsId() {
|
|
return goodsId;
|
|
}
|
|
|
|
public void setGoodsId(Integer goodsId) {
|
|
this.goodsId = goodsId;
|
|
}
|
|
|
|
public String getBusinessName() {
|
|
return businessName;
|
|
}
|
|
|
|
public void setBusinessName(String businessName) {
|
|
this.businessName = businessName;
|
|
}
|
|
|
|
public String getGoodsName() {
|
|
return goodsName;
|
|
}
|
|
|
|
public void setGoodsName(String goodsName) {
|
|
this.goodsName = goodsName;
|
|
}
|
|
|
|
public String getGoodsImg() {
|
|
return goodsImg;
|
|
}
|
|
|
|
public void setGoodsImg(String goodsImg) {
|
|
this.goodsImg = goodsImg;
|
|
}
|
|
|
|
public String getGoodUnit() {
|
|
return goodUnit;
|
|
}
|
|
|
|
public void setGoodUnit(String goodUnit) {
|
|
this.goodUnit = goodUnit;
|
|
}
|
|
|
|
public Double getGoodsPrice() {
|
|
return goodsPrice;
|
|
}
|
|
|
|
public void setGoodsPrice(Double goodsPrice) {
|
|
this.goodsPrice = goodsPrice;
|
|
}
|
|
|
|
public Integer getNum() {
|
|
return num;
|
|
}
|
|
|
|
public void setNum(Integer num) {
|
|
this.num = num;
|
|
}
|
|
}
|
|
|
|
|