yujian
2020-05-12 374b2786507c2d5242dd0ff0676e8d529b6940b9
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
package com.yeshi.fanli.entity.bus.homemodule;
 
import java.io.Serializable;
import java.util.Date;
import java.util.List;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
import com.google.gson.annotations.Expose;
import com.yeshi.fanli.entity.common.JumpDetailV2;
import com.yeshi.fanli.vo.msg.ClientTextStyleVO;
 
/**
 * 专题管理
 * 
 */
@Table("yeshi_ec_special")
public class Special implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    public final static int SEX_DEFAULT = 0; // 通用
    public final static int SEX_WOMAN = 1; // 女
    public final static int SEX_MAN = 2; // 男
    public final static int SEX_DEFAULT_WOMAN = 10; // 女+ 通用
    public final static int SEX_DEFAULT_MAN = 20; // 男+ 通用
    public final static int SEX_MAN_WOMAN = 12; // 男+ 女
 
    public final static int SEX_ALL = 120; // 男+女+通用
 
    @Expose
    @Column(name = "b_id")
    private Long id;
 
    // 名称
    @Expose
    @Column(name = "b_name")
    private String name;
 
    // 唯一标识
    @Column(name = "b_card")
    private String card;
 
    // 标识管理id
    @Expose
    @Column(name = "b_card_id")
    private Long cardId;
 
    // 主图
    @Expose
    @Column(name = "b_main_picture")
    private String picture;
 
    // 装饰图
    @Expose
    @Column(name = "b_icon")
    private String icon;
 
    // 附图
    @Expose
    @Column(name = "b_sub_picture")
    private String subPicture;
 
    // 跳转详情
    @Expose
    @Column(name = "b_jumpid")
    private JumpDetailV2 jumpDetail;
 
    // 跳转参数
    @Expose
    @Column(name = "b_params")
    private String params;
 
    // 跳转是否需要登录
    @Column(name = "b_jump_login")
    private boolean jumpLogin;
 
    // 排序
    @Column(name = "b_orderby")
    private Integer orderby;
 
    // 排序
    @Column(name = "b_order_man")
    private Integer orderMan;
 
    // 排序
    @Column(name = "b_order_woman")
    private Integer orderWoman;
 
    // 状态
    @Column(name = "b_state")
    private Long state;
 
    // 性别区分
    @Column(name = "b_sex")
    private Integer sex;
 
    // 显示类型:圆形图 、大图
    @Expose
    @Column(name = "b_show_type")
    private String showType;
 
    @Expose
    // 备注
    @Column(name = "b_remark")
    private String remark;
 
    // android最小版本
    @Column(name = "b_min_android_version_code")
    private Integer minAndroidVersionCode;
 
    // ios最小版本
    @Column(name = "b_min_ios_version_code")
    private Integer minIOSVersionCode;
 
    //起始时间
    @Column(name = "b_start_time")
    private Date startTime;
    
    //结束时间
    @Column(name = "b_end_time")
    private Date endTime;
    
    // 创建时间
    @Column(name = "b_createtime")
    private Date createtime;
 
    // 更新时间
    @Column(name = "b_updatetime")
    private Date updatetime;
 
    // 是否弹框
    @Expose
    private boolean elastic;
    @Expose // 是否倒计时
    private boolean timeTask;
    
 
    // 背景图片
    private String bottomPicture;
    // 是否删除图片
    private Boolean delIcon;
    private Boolean delPicture;
    private Boolean delSubPicture;
 
    // 限制最低版本
    private String version;
    
    // 起始时间
    private String startTime_str;
    // 结束时间
    private String endTime_str;
    
    
    
    @Expose
    private long countDownTime;//倒计时
 
    private List<SpecialLabel> listLabels; //标签
    
    @Expose
    private List<ClientTextStyleVO> labels; //标签
 
    
    public long getCountDownTime() {
        return countDownTime;
    }
 
    public void setCountDownTime(long countDownTime) {
        this.countDownTime = countDownTime;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getCard() {
        return card;
    }
 
    public void setCard(String card) {
        this.card = card;
    }
 
    public String getPicture() {
        return picture;
    }
 
    public void setPicture(String picture) {
        this.picture = picture;
    }
 
    public String getSubPicture() {
        return subPicture;
    }
 
    public void setSubPicture(String subPicture) {
        this.subPicture = subPicture;
    }
 
    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;
    }
 
    public Integer getOrderby() {
        return orderby;
    }
 
    public void setOrderby(Integer orderby) {
        this.orderby = orderby;
    }
 
    public Date getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(Date createtime) {
        this.createtime = createtime;
    }
 
    public Date getUpdatetime() {
        return updatetime;
    }
 
    public void setUpdatetime(Date updatetime) {
        this.updatetime = updatetime;
    }
 
    public Long getCardId() {
        return cardId;
    }
 
    public void setCardId(Long cardId) {
        this.cardId = cardId;
    }
 
    public Long getState() {
 
        return state;
    }
 
    public void setState(Long state) {
        this.state = state;
    }
 
    public String getShowType() {
        return showType;
    }
 
    public void setShowType(String showType) {
        this.showType = showType;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public boolean isJumpLogin() {
        return jumpLogin;
    }
 
    public void setJumpLogin(boolean jumpLogin) {
        this.jumpLogin = jumpLogin;
    }
 
    public String getBottomPicture() {
        return bottomPicture;
    }
 
    public void setBottomPicture(String bottomPicture) {
        this.bottomPicture = bottomPicture;
    }
 
    public String getIcon() {
        return icon;
    }
 
    public void setIcon(String icon) {
        this.icon = icon;
    }
 
    public Boolean getDelIcon() {
        return delIcon;
    }
 
    public void setDelIcon(Boolean delIcon) {
        this.delIcon = delIcon;
    }
 
    public Boolean getDelPicture() {
        return delPicture;
    }
 
    public void setDelPicture(Boolean delPicture) {
        this.delPicture = delPicture;
    }
 
    public Boolean getDelSubPicture() {
        return delSubPicture;
    }
 
    public void setDelSubPicture(Boolean delSubPicture) {
        this.delSubPicture = delSubPicture;
    }
 
    public boolean isElastic() {
        return elastic;
    }
 
    public void setElastic(boolean elastic) {
        this.elastic = elastic;
    }
 
    public Integer getSex() {
        return sex;
    }
 
    public void setSex(Integer sex) {
        this.sex = sex;
    }
 
    public Integer getOrderMan() {
        return orderMan;
    }
 
    public void setOrderMan(Integer orderMan) {
        this.orderMan = orderMan;
    }
 
    public Integer getOrderWoman() {
        return orderWoman;
    }
 
    public void setOrderWoman(Integer orderWoman) {
        this.orderWoman = orderWoman;
    }
 
    public String getVersion() {
        return version;
    }
 
    public void setVersion(String version) {
        this.version = version;
    }
 
    public Integer getMinAndroidVersionCode() {
        return minAndroidVersionCode;
    }
 
    public void setMinAndroidVersionCode(Integer minAndroidVersionCode) {
        this.minAndroidVersionCode = minAndroidVersionCode;
    }
 
    public Integer getMinIOSVersionCode() {
        return minIOSVersionCode;
    }
 
    public void setMinIOSVersionCode(Integer minIOSVersionCode) {
        this.minIOSVersionCode = minIOSVersionCode;
    }
 
    public Date getStartTime() {
        return startTime;
    }
 
    public void setStartTime(Date startTime) {
        this.startTime = startTime;
    }
 
    public Date getEndTime() {
        return endTime;
    }
 
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
 
    public String getStartTime_str() {
        return startTime_str;
    }
 
    public void setStartTime_str(String startTime_str) {
        this.startTime_str = startTime_str;
    }
 
    public String getEndTime_str() {
        return endTime_str;
    }
 
    public void setEndTime_str(String endTime_str) {
        this.endTime_str = endTime_str;
    }
 
    public List<ClientTextStyleVO> getLabels() {
        return labels;
    }
 
    public void setLabels(List<ClientTextStyleVO> labels) {
        this.labels = labels;
    }
 
    public List<SpecialLabel> getListLabels() {
        return listLabels;
    }
 
    public void setListLabels(List<SpecialLabel> listLabels) {
        this.listLabels = listLabels;
    }
 
    public boolean isTimeTask() {
        return timeTask;
    }
 
    public void setTimeTask(boolean timeTask) {
        this.timeTask = timeTask;
    }
 
}