admin
2021-06-02 512f368d7d8e71ee72a8f71dd7d2146f4c64f774
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
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;
    }
}