admin
2022-08-09 399ac289f80b7a40aa4210341db6b447cacdcf14
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
package com.tejia.lijin.app.entity.trends;
 
public class SendCircleImage {
    private int type;//类型:(1, "图片"), (2, "商品"),(3, "视频"),(4, "活动");
    private String url;//图片链接
    private String urlHD;//图片高清链接
    private int w;//宽
    private int h;//高
    private boolean large;//是否是大图
    private String videoUrl;//视频链接
    private SendCircleImageGoods goods;//商品信息
    private String activityUrl;//活动链接
 
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    public String getUrlHD() {
        return urlHD;
    }
 
    public void setUrlHD(String urlHD) {
        this.urlHD = urlHD;
    }
 
    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 boolean isLarge() {
        return large;
    }
 
    public void setLarge(boolean large) {
        this.large = large;
    }
 
    public String getVideoUrl() {
        return videoUrl;
    }
 
    public void setVideoUrl(String videoUrl) {
        this.videoUrl = videoUrl;
    }
 
    public SendCircleImageGoods getGoods() {
        return goods;
    }
 
    public void setGoods(SendCircleImageGoods goods) {
        this.goods = goods;
    }
 
    public String getActivityUrl() {
        return activityUrl;
    }
 
    public void setActivityUrl(String activityUrl) {
        this.activityUrl = activityUrl;
    }
 
}