admin
2020-07-16 b5e008514ffa376154fee55423779a4f21c9f1b7
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package com.fanliunion.android.app.entity.goods;
 
import com.fanliunion.android.app.entity.CouponInfo;
import com.fanliunion.android.app.entity.RedPacket;
 
/**
 * 分享商品所需要的信息
 */
public class ShareCommonGoods {
    private String goodsId;// 商品id
    private int goodsType;//  商品类型   1-淘宝 2-京东 3-拼多多
    private int shopType; // 店铺类型:  10-淘宝 11-天猫 20-京东 21-京东自营 30-拼多多
    private String picUrl; // 图片
    private String title; // 商品名称
    private String zkPrice;// 商品价格(原价)
    private String priceName;// 价格名称  天猫价、京东价、拼团价
    private String salesCount; // 月销量
    private boolean baoyou;// 是否包邮
    private boolean hasCoupon;// 是否有券
    private String couponPrice;// 券后价
    private CouponInfo couponInfo;//券信息
 
    public ShareCommonGoods(String goodsId, int goodsType) {
        this.goodsId = goodsId;
        this.goodsType = goodsType;
    }
    public ShareCommonGoods() {
    }
    private int salesType;//销量类型:1-月销 2-2小时销量 3-今日销量 4、总销量
 
    public int getSalesType() {
        return salesType;
    }
 
    public void setSalesType(int salesType) {
        this.salesType = salesType;
    }
 
 
    public String getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(String goodsId) {
        this.goodsId = goodsId;
    }
 
    public int getGoodsType() {
        return goodsType;
    }
 
    public void setGoodsType(int goodsType) {
        this.goodsType = goodsType;
    }
 
    public int getShopType() {
        return shopType;
    }
 
    public void setShopType(int shopType) {
        this.shopType = shopType;
    }
 
    public String getPicUrl() {
        return picUrl;
    }
 
    public void setPicUrl(String picUrl) {
        this.picUrl = picUrl;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getZkPrice() {
        return zkPrice;
    }
 
    public void setZkPrice(String zkPrice) {
        this.zkPrice = zkPrice;
    }
 
    public String getPriceName() {
        return priceName;
    }
 
    public void setPriceName(String priceName) {
        this.priceName = priceName;
    }
 
    public String getSalesCount() {
        return salesCount;
    }
 
    public void setSalesCount(String salesCount) {
        this.salesCount = salesCount;
    }
 
    public boolean isBaoyou() {
        return baoyou;
    }
 
    public void setBaoyou(boolean baoyou) {
        this.baoyou = baoyou;
    }
 
    public boolean isHasCoupon() {
        return hasCoupon;
    }
 
    public void setHasCoupon(boolean hasCoupon) {
        this.hasCoupon = hasCoupon;
    }
 
    public String getCouponPrice() {
        return couponPrice;
    }
 
    public void setCouponPrice(String couponPrice) {
        this.couponPrice = couponPrice;
    }
 
    public CouponInfo getCouponInfo() {
        return couponInfo;
    }
 
    public void setCouponInfo(CouponInfo couponInfo) {
        this.couponInfo = couponInfo;
    }
 
    public RedPacket getMoneyInfo() {
        return moneyInfo;
    }
 
    public void setMoneyInfo(RedPacket moneyInfo) {
        this.moneyInfo = moneyInfo;
    }
 
    private RedPacket moneyInfo;
}