admin
2020-05-19 744594ef1a2f530fc3e86ea9dc48b62247f79420
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
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;
    
 
    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;
    }
 
}