admin
2021-06-05 ddff7888bf7e754d12fb5fc85a58f3012f456490
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
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;
    }
}