package com.tejia.lijin.app.entity;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
/**
|
* 动态图片
|
*/
|
public class TrendImg implements Serializable {
|
@Expose
|
private String url;//图片链接
|
@Expose
|
private int w;//图片宽度
|
@Expose
|
private int h;//图片高度
|
@Expose
|
private JumpDetail jumpDetail;//跳转路径
|
@Expose
|
private JSONObject params;//跳转参数
|
@Expose
|
private TaoBaoGoodsBrief goodsVO;//商品信息
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public int getW() {
|
return w;
|
}
|
|
public void setW(int w) {
|
this.w = w;
|
}
|
|
public int getH() {
|
return h;
|
}
|
|
public void setH(int h) {
|
this.h = h;
|
}
|
|
public JumpDetail getJumpDetail() {
|
return jumpDetail;
|
}
|
|
public void setJumpDetail(JumpDetail jumpDetail) {
|
this.jumpDetail = jumpDetail;
|
}
|
|
public JSONObject getParams() {
|
return params;
|
}
|
|
public void setParams(JSONObject params) {
|
this.params = params;
|
}
|
|
public TaoBaoGoodsBrief getGoodsVO() {
|
return goodsVO;
|
}
|
|
public void setGoodsVO(TaoBaoGoodsBrief goodsVO) {
|
this.goodsVO = goodsVO;
|
}
|
}
|