admin
2021-01-04 aa6ef62aef83e277d4171df1d9f0803f91738216
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
package com.newvideo.domain.shop;
 
import java.util.List;
 
import com.google.gson.annotations.Expose;
 
/**
 * 淘宝商品简要信息
 * 
 * @author Administrator
 *
 */
public class TaoBaoItem {
    @Expose
    private long id;
    @Expose
    private long num_iid;// 商品ID
    @Expose
    private String title;// 商品标题
    @Expose
    private String pict_url;// 商品主图
    @Expose
    private List<String> smallImages;// 商品小图列表
    @Expose
    private String reserve_price;// 商品一口价格
    @Expose
    private String zk_final_price;// 商品折扣价格
    @Expose
    private int user_type;// 卖家类型
    @Expose
    private String provcity;// 宝贝所在地
    @Expose
    private String item_url;// 商品地址
 
    private String nick;// 卖家昵称
 
    private long seller_id;// 卖家ID
    @Expose
    private int volume;// 30天销量
 
    private String shop_title;
 
    @Expose
    private String click_url;
 
    public String getClick_url() {
        return click_url;
    }
 
    public void setClick_url(String click_url) {
        this.click_url = click_url;
    }
 
    public long getId() {
        return id;
    }
 
    public void setId(long id) {
        this.id = id;
    }
 
    public String getShop_title() {
        return shop_title;
    }
 
    public void setShop_title(String shop_title) {
        this.shop_title = shop_title;
    }
 
    public List<String> getSmallImages() {
        return smallImages;
    }
 
    public void setSmallImages(List<String> smallImages) {
        this.smallImages = smallImages;
    }
 
    public long getNum_iid() {
        return num_iid;
    }
 
    public void setNum_iid(long num_iid) {
        this.num_iid = num_iid;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getPict_url() {
        return pict_url;
    }
 
    public void setPict_url(String pict_url) {
        this.pict_url = pict_url;
    }
 
    public String getReserve_price() {
        return reserve_price;
    }
 
    public void setReserve_price(String reserve_price) {
        this.reserve_price = reserve_price;
    }
 
    public String getZk_final_price() {
        return zk_final_price;
    }
 
    public void setZk_final_price(String zk_final_price) {
        this.zk_final_price = zk_final_price;
    }
 
    public int getUser_type() {
        return user_type;
    }
 
    public void setUser_type(int user_type) {
        this.user_type = user_type;
    }
 
    public String getProvcity() {
        return provcity;
    }
 
    public void setProvcity(String provcity) {
        this.provcity = provcity;
    }
 
    public String getItem_url() {
        return item_url;
    }
 
    public void setItem_url(String item_url) {
        this.item_url = item_url;
    }
 
    public String getNick() {
        return nick;
    }
 
    public void setNick(String nick) {
        this.nick = nick;
    }
 
    public long getSeller_id() {
        return seller_id;
    }
 
    public void setSeller_id(long seller_id) {
        this.seller_id = seller_id;
    }
 
    public int getVolume() {
        return volume;
    }
 
    public void setVolume(int volume) {
        this.volume = volume;
    }
}