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.
181 lines
3.4 KiB
181 lines
3.4 KiB
package com.example.entity;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 购物车信息表
|
|
*/
|
|
public class Orders implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** ID */
|
|
private Integer id;
|
|
private Integer userId;
|
|
private Integer businessId;
|
|
private Integer goodsId;
|
|
private String orderId;
|
|
private Integer addressId;
|
|
private Integer num;
|
|
private Double price;
|
|
private String status;
|
|
|
|
private List<Cart> cartData;
|
|
|
|
|
|
private String businessName;
|
|
private String goodsName;
|
|
private String goodsImg;
|
|
private String goodsUnit;
|
|
private Double goodsPrice;
|
|
private String username;
|
|
private String useraddress;
|
|
private String phone;
|
|
|
|
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 getOrderId() {
|
|
return orderId;
|
|
}
|
|
|
|
public void setOrderId(String orderId) {
|
|
this.orderId = orderId;
|
|
}
|
|
|
|
public Integer getAddressId() {
|
|
return addressId;
|
|
}
|
|
|
|
public void setAddressId(Integer addressId) {
|
|
this.addressId = addressId;
|
|
}
|
|
|
|
public Integer getNum() {
|
|
return num;
|
|
}
|
|
|
|
public void setNum(Integer num) {
|
|
this.num = num;
|
|
}
|
|
|
|
public Double getPrice() {
|
|
return price;
|
|
}
|
|
|
|
public void setPrice(Double price) {
|
|
this.price = price;
|
|
}
|
|
|
|
public String getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(String status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public List<Cart> getCartData() {
|
|
return cartData;
|
|
}
|
|
|
|
public void setCartData(List<Cart> cartData) {
|
|
this.cartData = cartData;
|
|
}
|
|
|
|
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 getGoodsUnit() {
|
|
return goodsUnit;
|
|
}
|
|
|
|
public void setGoodsUnit(String goodsUnit) {
|
|
this.goodsUnit = goodsUnit;
|
|
}
|
|
|
|
public Double getGoodsPrice() {
|
|
return goodsPrice;
|
|
}
|
|
|
|
public void setGoodsPrice(Double goodsPrice) {
|
|
this.goodsPrice = goodsPrice;
|
|
}
|
|
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
|
|
public void setUsername(String username) {
|
|
this.username = username;
|
|
}
|
|
|
|
public String getUseraddress() {
|
|
return useraddress;
|
|
}
|
|
|
|
public void setUseraddress(String useraddress) {
|
|
this.useraddress = useraddress;
|
|
}
|
|
|
|
public String getPhone() {
|
|
return phone;
|
|
}
|
|
|
|
public void setPhone(String phone) {
|
|
this.phone = phone;
|
|
}
|
|
}
|
|
|
|
|