123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392 |
- 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:09
- */
- public class OrderGoodsEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- //主键
- private Integer id;
- //订单Id
- private Integer orderId;
- //商品id
- private Integer goodsId;
- //商品名称
- private String goodsName;
- //商品序列号
- private String goodsSn;
- //产品Id
- private Integer productId;
- //商品数量
- private Integer number;
- //市场价
- private BigDecimal marketPrice;
- //零售价格
- private BigDecimal retailPrice;
- //商品规格详情
- private String goodsSpecificationNameValue;
- //虚拟商品
- private Integer isReal;
- //商品规格Ids
- private String goodsSpecificationIds;
- //图片链接
- private String listPicUrl;
- //plu
- private String plu;
- private String sku;
- private String orderBizType;
- private String createrSn;
- private Date createTime;
- private String moderSn;
- private Date modTime;
- private Date tstm;
- private BigDecimal goodsRate;
- private Integer isPromGoods;
- private Integer promId;
- private String activity;
- // 优惠金额
- private BigDecimal discountedPrice;
- // 实际支付价
- private BigDecimal actualPaymentAmount;
- private BigDecimal tax;
- private BigDecimal taxPrice;
- /**
- * 抵扣的积分数量
- */
- private Integer deductionScore;
- public String getPlu() {
- return plu;
- }
- public void setPlu(String plu) {
- this.plu = plu;
- }
- public Integer getPromId() {
- return promId;
- }
- public void setPromId(Integer promId) {
- this.promId = promId;
- }
- public Integer getIsPromGoods() {
- return isPromGoods;
- }
- public void setIsPromGoods(Integer isPromGoods) {
- this.isPromGoods = isPromGoods;
- }
- 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 getOrderBizType() {
- return orderBizType;
- }
- public void setOrderBizType(String orderBizType) {
- this.orderBizType = orderBizType;
- }
- 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 BigDecimal getGoodsRate() {
- return goodsRate;
- }
- public void setGoodsRate(BigDecimal goodsRate) {
- this.goodsRate = goodsRate;
- }
- /**
- * 设置:主键
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * 获取:主键
- */
- public Integer getId() {
- return id;
- }
- /**
- * 设置:订单Id
- */
- public void setOrderId(Integer orderId) {
- this.orderId = orderId;
- }
- /**
- * 获取:订单Id
- */
- public Integer getOrderId() {
- return orderId;
- }
- /**
- * 设置:商品id
- */
- public void setGoodsId(Integer goodsId) {
- this.goodsId = goodsId;
- }
- /**
- * 获取:商品id
- */
- public Integer getGoodsId() {
- return goodsId;
- }
- /**
- * 设置:商品名称
- */
- public void setGoodsName(String goodsName) {
- this.goodsName = goodsName;
- }
- /**
- * 获取:商品名称
- */
- public String getGoodsName() {
- return goodsName;
- }
- /**
- * 设置:商品序列号
- */
- 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 setNumber(Integer number) {
- this.number = number;
- }
- /**
- * 获取:商品数量
- */
- public Integer getNumber() {
- return number;
- }
- /**
- * 设置:市场价
- */
- 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 setGoodsSpecifitionNameValue(String goodsSpecificationNameValue) {
- this.goodsSpecificationNameValue = goodsSpecificationNameValue;
- }
- /**
- * 获取:商品规格详情
- */
- public String getGoodsSpecifitionNameValue() {
- return goodsSpecificationNameValue;
- }
- /**
- * 设置:虚拟商品
- */
- public void setIsReal(Integer isReal) {
- this.isReal = isReal;
- }
- /**
- * 获取:虚拟商品
- */
- public Integer getIsReal() {
- return isReal;
- }
- /**
- * 设置:商品规格Ids
- */
- public void setGoodsSpecifitionIds(String goodsSpecificationIds) {
- this.goodsSpecificationIds = goodsSpecificationIds;
- }
- /**
- * 获取:商品规格Ids
- */
- public String getGoodsSpecifitionIds() {
- return goodsSpecificationIds;
- }
- /**
- * 设置:图片链接
- */
- public void setListPicUrl(String listPicUrl) {
- this.listPicUrl = listPicUrl;
- }
- /**
- * 获取:图片链接
- */
- public String getListPicUrl() {
- return listPicUrl;
- }
- public String getActivity() {
- return activity;
- }
- public void setActivity(String activity) {
- this.activity = activity;
- }
- public BigDecimal getDiscountedPrice() {
- return discountedPrice;
- }
- public void setDiscountedPrice(BigDecimal discountedPrice) {
- this.discountedPrice = discountedPrice;
- }
- public BigDecimal getActualPaymentAmount() {
- return actualPaymentAmount;
- }
- public void setActualPaymentAmount(BigDecimal actualPaymentAmount) {
- this.actualPaymentAmount = actualPaymentAmount;
- }
- public BigDecimal getTax() {
- return tax;
- }
- public void setTax(BigDecimal tax) {
- this.tax = tax;
- }
- public BigDecimal getTaxPrice() {
- return taxPrice;
- }
- public void setTaxPrice(BigDecimal taxPrice) {
- this.taxPrice = taxPrice;
- }
- public Integer getDeductionScore() {
- return deductionScore;
- }
- public void setDeductionScore(Integer deductionScore) {
- this.deductionScore = deductionScore;
- }
- }
|