package com.yeshi.fanli.entity.dynamic;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.fanli.entity.common.JumpDetailV2;
|
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBriefExtra;
|
|
public class GoodsPicture {
|
// 图片链接
|
@Expose
|
private String url;
|
// 宽度
|
@Expose
|
private Integer w;
|
// 高度
|
@Expose
|
private Integer h;
|
// 商品信息
|
@Expose
|
private TaoBaoGoodsBriefExtra goods;
|
// 跳转类型
|
@Expose
|
private JumpDetailV2 jumpDetail;
|
// 跳转参数
|
@Expose
|
private String params;
|
|
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public Integer getW() {
|
return w;
|
}
|
|
public void setW(Integer w) {
|
this.w = w;
|
}
|
|
public Integer getH() {
|
return h;
|
}
|
|
public void setH(Integer h) {
|
this.h = h;
|
}
|
|
public TaoBaoGoodsBriefExtra getGoods() {
|
return goods;
|
}
|
|
public void setGoods(TaoBaoGoodsBriefExtra goods) {
|
this.goods = goods;
|
}
|
|
public JumpDetailV2 getJumpDetail() {
|
return jumpDetail;
|
}
|
|
public void setJumpDetail(JumpDetailV2 jumpDetail) {
|
this.jumpDetail = jumpDetail;
|
}
|
|
public String getParams() {
|
return params;
|
}
|
|
public void setParams(String params) {
|
this.params = params;
|
}
|
}
|