admin
2021-05-08 f93ff67ed4681f416a653370aa1e7995a56940ef
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
package com.tejia.lijin.app.entity;
 
import com.google.gson.annotations.Expose;
 
import java.util.List;
 
/**
 * 推荐活动
 *
 * @author Administrator
 */
public class TrendsInfo extends EntityFather {
    @Expose
    private String id;
    @Expose
    private UserInfo user;// 发布动态的用户
    @Expose
    private String createTime;// 创建时间
    @Expose
    private List<TextColor> title;//标题
    @Expose
    private String shareCount;// 分享数
    @Expose
    private int shareType;// 分享类型 1、单图分享  2、多图分享
    @Expose
    private TextColor desc;//预计收入
    @Expose
    private ShopInfo shop;//店铺信息
    @Expose
    private Integer showType;// 图片格式: 一排显示: 0无图 1一张 2两张  3张
    @Expose
    private List<TrendImg> imgs;// 商品列表-商品分享有此属性
    //----
    @Expose
    private String name;
    @Expose
    private int cardId;
    @Expose
    private String picture;
    @Expose
    private String remark;
    @Expose
    private boolean elastic;
    @Expose
    private boolean timeTask;
    @Expose
    private long countDownTime;
    @Expose
    private List<Label> labels;// 标签
    @Expose
    private String days;//天
    @Expose
    private String hours;// 时
    @Expose
    private String min;//分
 
    private String comment;//评论语
 
    public String getComment() {
        return comment;
    }
 
    public void setComment(String comment) {
        this.comment = comment;
    }
 
 
 
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public UserInfo getUser() {
        return user;
    }
 
    public void setUser(UserInfo user) {
        this.user = user;
    }
 
    public String getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
 
    public List<TextColor> getTitle() {
        return title;
    }
 
    public void setTitle(List<TextColor> title) {
        this.title = title;
    }
 
    public String getShareCount() {
        return shareCount;
    }
 
    public void setShareCount(String shareCount) {
        this.shareCount = shareCount;
    }
 
    public TextColor getDesc() {
        return desc;
    }
 
    public void setDesc(TextColor desc) {
        this.desc = desc;
    }
 
    public ShopInfo getShop() {
        return shop;
    }
 
    public void setShop(ShopInfo shop) {
        this.shop = shop;
    }
 
    public Integer getShowType() {
        return showType;
    }
 
    public void setShowType(Integer showType) {
        this.showType = showType;
    }
 
    public List<TrendImg> getImgs() {
        return imgs;
    }
 
    public void setImgs(List<TrendImg> imgs) {
        this.imgs = imgs;
    }
 
    public int getShareType() {
        return shareType;
    }
 
    public void setShareType(int shareType) {
        this.shareType = shareType;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public int getCardId() {
        return cardId;
    }
 
    public void setCardId(int cardId) {
        this.cardId = cardId;
    }
 
    public String getPicture() {
        return picture;
    }
 
    public void setPicture(String picture) {
        this.picture = picture;
    }
 
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public boolean isElastic() {
        return elastic;
    }
 
    public void setElastic(boolean elastic) {
        this.elastic = elastic;
    }
 
    public boolean isTimeTask() {
        return timeTask;
    }
 
    public void setTimeTask(boolean timeTask) {
        this.timeTask = timeTask;
    }
 
    public long getCountDownTime() {
        return countDownTime;
    }
 
    public void setCountDownTime(long countDownTime) {
        this.countDownTime = countDownTime;
    }
 
    public List<Label> getLabels() {
        return labels;
    }
 
    public void setLabels(List<Label> labels) {
        this.labels = labels;
    }
 
    public String getDays() {
        return days;
    }
 
    public void setDays(String days) {
        this.days = days;
    }
 
    public String getHours() {
        return hours;
    }
 
    public void setHours(String hours) {
        this.hours = hours;
    }
 
    public String getMin() {
        return min;
    }
 
    public void setMin(String min) {
        this.min = min;
    }
}