package com.yeshi.fanli.entity.dynamic;
|
|
import java.io.Serializable;
|
import java.util.ArrayList;
|
import java.util.List;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.common.vo.ClientTextStyleVO;
|
|
public class CommentInfo implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
public enum CommentInfoEnum {
|
goodsCoupon(1,"商品优惠券"), currencyCoupon(2,"通用优惠券");
|
|
private final int vlaue;
|
private final String desc;
|
|
private CommentInfoEnum(int vlaue, String desc) {
|
this.vlaue = vlaue;
|
this.desc = desc;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public int getVlaue() {
|
return vlaue;
|
}
|
}
|
|
@Expose
|
private String id;
|
// 类型
|
@Expose
|
private CommentInfoEnum typeEnum;
|
// 类型
|
@Expose
|
private String type;
|
|
// 内容
|
@Expose
|
private String content;
|
// 标签
|
@Expose
|
private List<ClientTextStyleVO> tagList = new ArrayList<ClientTextStyleVO>() ;
|
// 标签说明
|
@Expose
|
private String tagDesc;
|
// h5
|
@Expose
|
private String tagUrl;
|
|
private Integer weight;
|
// 券信息
|
private String coupon;
|
// 券来源
|
private String couponSource;
|
|
// 通用券是否转链
|
private Boolean needSpin;
|
|
private String tags;
|
private String tagsColour;
|
private String endTime;
|
|
public CommentInfoEnum getTypeEnum() {
|
return typeEnum;
|
}
|
|
public void setTypeEnum(CommentInfoEnum typeEnum) {
|
this.typeEnum = typeEnum;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public List<ClientTextStyleVO> getTagList() {
|
return tagList;
|
}
|
|
public void setTagList(List<ClientTextStyleVO> tagList) {
|
this.tagList = tagList;
|
}
|
|
public String getTagDesc() {
|
return tagDesc;
|
}
|
|
public void setTagDesc(String tagDesc) {
|
this.tagDesc = tagDesc;
|
}
|
|
public String getTags() {
|
return tags;
|
}
|
|
public void setTags(String tags) {
|
this.tags = tags;
|
}
|
|
public String getTagsColour() {
|
return tagsColour;
|
}
|
|
public void setTagsColour(String tagsColour) {
|
this.tagsColour = tagsColour;
|
}
|
|
public Integer getWeight() {
|
return weight;
|
}
|
|
public void setWeight(Integer weight) {
|
this.weight = weight;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getTagUrl() {
|
return tagUrl;
|
}
|
|
public void setTagUrl(String tagUrl) {
|
this.tagUrl = tagUrl;
|
}
|
|
public String getCoupon() {
|
return coupon;
|
}
|
|
public void setCoupon(String coupon) {
|
this.coupon = coupon;
|
}
|
|
public String getCouponSource() {
|
return couponSource;
|
}
|
|
public void setCouponSource(String couponSource) {
|
this.couponSource = couponSource;
|
}
|
|
public String getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(String endTime) {
|
this.endTime = endTime;
|
}
|
|
public Boolean getNeedSpin() {
|
return needSpin;
|
}
|
|
public void setNeedSpin(Boolean needSpin) {
|
this.needSpin = needSpin;
|
}
|
|
}
|