package com.kmall.admin.entity; import java.io.Serializable; import java.math.BigDecimal; import java.util.Date; /** * @author Scott * @email * @date 2017-08-13 10:41:06 */ public class CartEntity implements Serializable { private static final long serialVersionUID = 1L; //主键 private Integer id; //会员Id private Long userId; //storeId private String storeId; //商品Id private Integer goodsId; //商品序列号 private String goodsSn; //产品Id private Integer productId; //产品名称 private String goodsName; //市场价 private BigDecimal marketPrice; //零售价格 private BigDecimal retailPrice; //数量 private Integer number; //规格属性组成的字符串,用来显示用 private String goodsSpecificationNameValue; //product表对应的goods_specifition_ids private String goodsSpecificationIds; // private Integer checked; //商品图片 private String listPicUrl; private String userName; private String sku; private String goodsBizType; private String createrSn; private Date createTime; private String moderSn; private Date modTime; private Date tstm; private Integer stockNum; private String storeName; /** * 设置:主键 */ public void setId(Integer id) { this.id = id; } /** * 获取:主键 */ public Integer getId() { return id; } public String getStoreId() { return storeId; } public void setStoreId(String storeId) { this.storeId = storeId; } /** * 设置:商品Id */ public void setGoodsId(Integer goodsId) { this.goodsId = goodsId; } /** * 获取:商品Id */ public Integer getGoodsId() { return goodsId; } /** * 设置:商品序列号 */ public void setGoodsSn(String goodsSn) { this.goodsSn = goodsSn; } /** * 获取:商品序列号 */ public String getGoodsSn() { return goodsSn; } /** * 设置:产品Id */ public void setProductId(Integer productId) { this.productId = productId; } /** * 获取:产品Id */ public Integer getProductId() { return productId; } /** * 设置:产品名称 */ public void setGoodsName(String goodsName) { this.goodsName = goodsName; } /** * 获取:产品名称 */ public String getGoodsName() { return goodsName; } /** * 设置:市场价 */ public void setMarketPrice(BigDecimal marketPrice) { this.marketPrice = marketPrice; } /** * 获取:市场价 */ public BigDecimal getMarketPrice() { return marketPrice; } /** * 设置:零售价格 */ public void setRetailPrice(BigDecimal retailPrice) { this.retailPrice = retailPrice; } /** * 获取:零售价格 */ public BigDecimal getRetailPrice() { return retailPrice; } /** * 设置:数量 */ public void setNumber(Integer number) { this.number = number; } /** * 获取:数量 */ public Integer getNumber() { return number; } /** * 设置:规格属性组成的字符串,用来显示用 */ public void setGoodsSpecifitionNameValue(String goodsSpecificationNameValue) { this.goodsSpecificationNameValue = goodsSpecificationNameValue; } /** * 获取:规格属性组成的字符串,用来显示用 */ public String getGoodsSpecifitionNameValue() { return goodsSpecificationNameValue; } /** * 设置:product表对应的goods_specifition_ids */ public void setGoodsSpecifitionIds(String goodsSpecificationIds) { this.goodsSpecificationIds = goodsSpecificationIds; } /** * 获取:product表对应的goods_specifition_ids */ public String getGoodsSpecifitionIds() { return goodsSpecificationIds; } /** * 设置: */ public void setChecked(Integer checked) { this.checked = checked; } /** * 获取: */ public Integer getChecked() { return checked; } /** * 设置:商品图片 */ public void setListPicUrl(String listPicUrl) { this.listPicUrl = listPicUrl; } /** * 获取:商品图片 */ public String getListPicUrl() { return listPicUrl; } public Long getUserId() { return userId; } public void setUserId(Long userId) { this.userId = userId; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public String getGoodsSpecificationNameValue() { return goodsSpecificationNameValue; } public void setGoodsSpecificationNameValue(String goodsSpecificationNameValue) { this.goodsSpecificationNameValue = goodsSpecificationNameValue; } public String getGoodsSpecificationIds() { return goodsSpecificationIds; } public void setGoodsSpecificationIds(String goodsSpecificationIds) { this.goodsSpecificationIds = goodsSpecificationIds; } public String getSku() { return sku; } public void setSku(String sku) { this.sku = sku; } public String getGoodsBizType() { return goodsBizType; } public void setGoodsBizType(String goodsBizType) { this.goodsBizType = goodsBizType; } public String getCreaterSn() { return createrSn; } public void setCreaterSn(String createrSn) { this.createrSn = createrSn; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public String getModerSn() { return moderSn; } public void setModerSn(String moderSn) { this.moderSn = moderSn; } public Date getModTime() { return modTime; } public void setModTime(Date modTime) { this.modTime = modTime; } public Date getTstm() { return tstm; } public void setTstm(Date tstm) { this.tstm = tstm; } public Integer getStockNum() { return stockNum; } public void setStockNum(Integer stockNum) { this.stockNum = stockNum; } public String getStoreName() { return storeName; } public void setStoreName(String storeName) { this.storeName = storeName; } }