| | |
| | | package com.yeshi.fanli.vo.order;
|
| | |
|
| | | import java.io.Serializable;
|
| | | import java.util.Map;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | | import com.yeshi.fanli.entity.order.CommonOrderGoods;
|
| | |
|
| | | /**
|
| | | * 订单商品-简版
|
| | | * |
| | | * @author yj
|
| | | *
|
| | | * @date 2018年12月23日
|
| | | */
|
| | |
|
| | | public class CommonOrderGoodsVO extends CommonOrderGoods implements Serializable {
|
| | |
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | // 实际总数量
|
| | | @Expose
|
| | | private String actualCount;
|
| | | // 实际总付款
|
| | | @Expose
|
| | | private String actualPay;
|
| | | |
| | | // 商品标题、颜色、背景色
|
| | | @Expose
|
| | | private Map<String, String> goodsTitle;
|
| | | |
| | |
|
| | | public String getActualCount() {
|
| | | return actualCount;
|
| | | }
|
| | |
|
| | | public void setActualCount(String actualCount) {
|
| | | this.actualCount = actualCount;
|
| | | }
|
| | |
|
| | | public String getActualPay() {
|
| | | return actualPay;
|
| | | }
|
| | |
|
| | | public void setActualPay(String actualPay) {
|
| | | this.actualPay = actualPay;
|
| | | }
|
| | |
|
| | | public Map<String, String> getGoodsTitle() {
|
| | | return goodsTitle;
|
| | | }
|
| | |
|
| | | public void setGoodsTitle(Map<String, String> goodsTitle) {
|
| | | this.goodsTitle = goodsTitle;
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.vo.order; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Map; |
| | | |
| | | import com.google.gson.annotations.Expose; |
| | | import com.yeshi.fanli.entity.order.CommonOrderGoods; |
| | | |
| | | /** |
| | | * 订单商品-简版 |
| | | * |
| | | * @author yj |
| | | * |
| | | * @date 2018年12月23日 |
| | | */ |
| | | |
| | | public class CommonOrderGoodsVO extends CommonOrderGoods implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | // 实际总数量 |
| | | @Expose |
| | | private String actualCount; |
| | | // 实际总付款 |
| | | @Expose |
| | | private String actualPay; |
| | | |
| | | // 商品类型: 淘宝、京东、拼多多 |
| | | @Expose |
| | | private Integer goodsType; |
| | | |
| | | // 商品标题、颜色、背景色 |
| | | @Expose |
| | | private Map<String, String> goodsTitle; |
| | | |
| | | //下单时间 |
| | | @Expose |
| | | private String placeOrderTime; |
| | | |
| | | //订单状态 |
| | | @Expose |
| | | private String payState; |
| | | |
| | | public String getActualCount() { |
| | | return actualCount; |
| | | } |
| | | |
| | | public void setActualCount(String actualCount) { |
| | | this.actualCount = actualCount; |
| | | } |
| | | |
| | | public String getActualPay() { |
| | | return actualPay; |
| | | } |
| | | |
| | | public void setActualPay(String actualPay) { |
| | | this.actualPay = actualPay; |
| | | } |
| | | |
| | | public Map<String, String> getGoodsTitle() { |
| | | return goodsTitle; |
| | | } |
| | | |
| | | public void setGoodsTitle(Map<String, String> goodsTitle) { |
| | | this.goodsTitle = goodsTitle; |
| | | } |
| | | |
| | | public Integer getGoodsType() { |
| | | return goodsType; |
| | | } |
| | | |
| | | public void setGoodsType(Integer goodsType) { |
| | | this.goodsType = goodsType; |
| | | } |
| | | |
| | | public String getPlaceOrderTime() { |
| | | return placeOrderTime; |
| | | } |
| | | |
| | | public void setPlaceOrderTime(String placeOrderTime) { |
| | | this.placeOrderTime = placeOrderTime; |
| | | } |
| | | |
| | | public static long getSerialVersionUID() { |
| | | return serialVersionUID; |
| | | } |
| | | |
| | | public String getPayState() { |
| | | return payState; |
| | | } |
| | | |
| | | public void setPayState(String payState) { |
| | | this.payState = payState; |
| | | } |
| | | } |