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;
|
}
|
}
|