wpc
2018-11-27 680fbc9e73da3e11988557cf88fd935efd3e0b1e
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
package com.haicaojie.android.entity;
 
import com.google.gson.annotations.Expose;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * Created by weikou2015 on 2018/5/15.
 */
 
public class GoodsDetailTransition implements Serializable {
 
    @Expose
    String auctionId;
    @Expose
    List<String> imgList;
    @Expose
    String title;
    @Expose
    String userType;
    @Expose
    String price;
    @Expose
    String zkPrice;
    @Expose
    String hongBao;
    @Expose
    String saleCount;
    @Expose
    List<String> detailImgs;
    @Expose
    String coupon;
    @Expose
    CouponInfo couponInfo;
    @Expose
    ShopInfo shopInfo;
 
    public ShopInfo getShopInfo() {
        return shopInfo;
    }
 
    public void setShopInfo(ShopInfo shopInfo) {
        this.shopInfo = shopInfo;
    }
 
    public String getAuctionId() {
        return auctionId;
    }
 
    public void setAuctionId(String auctionId) {
        this.auctionId = auctionId;
    }
 
    public List<String> getImgList() {
        return imgList;
    }
 
    public void setImgList(List<String> imgList) {
        this.imgList = imgList;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getUserType() {
        return userType;
    }
 
    public void setUserType(String userType) {
        this.userType = userType;
    }
 
    public String getPrice() {
        return price;
    }
 
    public void setPrice(String price) {
        this.price = price;
    }
 
    public String getZkPrice() {
        return zkPrice;
    }
 
    public void setZkPrice(String zkPrice) {
        this.zkPrice = zkPrice;
    }
 
    public String getHongBao() {
        return hongBao;
    }
 
    public void setHongBao(String hongBao) {
        this.hongBao = hongBao;
    }
 
    public String getSaleCount() {
        return saleCount;
    }
 
    public void setSaleCount(String saleCount) {
        this.saleCount = saleCount;
    }
 
    public List<String> getDetailImgs() {
        return detailImgs;
    }
 
    public void setDetailImgs(List<String> detailImgs) {
        this.detailImgs = detailImgs;
    }
 
    public String getCoupon() {
        return coupon;
    }
 
    public void setCoupon(String coupon) {
        this.coupon = coupon;
    }
 
    public CouponInfo getCouponInfo() {
        return couponInfo;
    }
 
    public void setCouponInfo(CouponInfo couponInfo) {
        this.couponInfo = couponInfo;
    }
}