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;
|
}
|
}
|