package com.yeshi.fanli.vo.goods;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
import com.google.gson.annotations.Expose;
|
|
/**
|
* 分享信息
|
*
|
* @author Administrator
|
*
|
*/
|
public class ShareInfoVO implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
// 分享id
|
@Expose
|
private String shareId;
|
|
// 商品图片
|
@Expose
|
private String pictUrl;
|
|
// 二维码链接、分享链接
|
@Expose
|
private String clickUrl;
|
|
// 淘口令
|
@Expose
|
private String token;
|
|
// 分享文字
|
@Expose
|
private String shareText;
|
|
// 分享文字-无标题
|
@Expose
|
private String descText;
|
|
// 特别提醒
|
@Expose
|
private String notifyDesc;
|
|
// 提示图片
|
@Expose
|
private String notifyPicture;
|
|
// 分享规则链接(帮助中心)
|
@Expose
|
private String rule;
|
|
// 分享金额
|
@Expose
|
private String shareMoney;
|
|
// 淘礼金红包
|
@Expose
|
private String spreadMoney;
|
|
// 淘礼金ID
|
@Expose
|
private String tljId;
|
|
// 淘礼金余额
|
@Expose
|
private String surplusMoney;
|
|
// 评论区文案 2.0.2新增
|
@Expose
|
private List<String> commentTexts;
|
|
@Expose
|
private String wxErCode;// 微信二维码内容
|
|
@Expose
|
private GoodsDetailVO goodsInfo;
|
|
// 评论文本
|
@Expose
|
private String commentText;
|
// 评论文本选择项
|
@Expose
|
private List<ShareGoodsCommentChoiceInfo> commentTextChoiceList;
|
|
// 推荐语
|
@Expose
|
private String recommendText;
|
|
public List<ShareGoodsCommentChoiceInfo> getCommentTextChoiceList() {
|
return commentTextChoiceList;
|
}
|
|
public void setCommentTextChoiceList(List<ShareGoodsCommentChoiceInfo> commentTextChoiceList) {
|
this.commentTextChoiceList = commentTextChoiceList;
|
}
|
|
public String getCommentText() {
|
return commentText;
|
}
|
|
public void setCommentText(String commentText) {
|
this.commentText = commentText;
|
}
|
|
public String getRecommendText() {
|
return recommendText;
|
}
|
|
public void setRecommendText(String recommendText) {
|
this.recommendText = recommendText;
|
}
|
|
public GoodsDetailVO getGoodsInfo() {
|
return goodsInfo;
|
}
|
|
public void setGoodsInfo(GoodsDetailVO goodsInfo) {
|
this.goodsInfo = goodsInfo;
|
}
|
|
public List<String> getCommentTexts() {
|
return commentTexts;
|
}
|
|
public void setCommentTexts(List<String> commentTexts) {
|
this.commentTexts = commentTexts;
|
}
|
|
public String getWxErCode() {
|
return wxErCode;
|
}
|
|
public void setWxErCode(String wxErCode) {
|
this.wxErCode = wxErCode;
|
}
|
|
public String getShareId() {
|
return shareId;
|
}
|
|
public void setShareId(String shareId) {
|
this.shareId = shareId;
|
}
|
|
public String getPictUrl() {
|
return pictUrl;
|
}
|
|
public void setPictUrl(String pictUrl) {
|
this.pictUrl = pictUrl;
|
}
|
|
public String getClickUrl() {
|
return clickUrl;
|
}
|
|
public void setClickUrl(String clickUrl) {
|
this.clickUrl = clickUrl;
|
}
|
|
public String getToken() {
|
return token;
|
}
|
|
public void setToken(String token) {
|
this.token = token;
|
}
|
|
public String getShareText() {
|
return shareText;
|
}
|
|
public void setShareText(String shareText) {
|
this.shareText = shareText;
|
}
|
|
public String getNotifyDesc() {
|
return notifyDesc;
|
}
|
|
public void setNotifyDesc(String notifyDesc) {
|
this.notifyDesc = notifyDesc;
|
}
|
|
public String getNotifyPicture() {
|
return notifyPicture;
|
}
|
|
public void setNotifyPicture(String notifyPicture) {
|
this.notifyPicture = notifyPicture;
|
}
|
|
public String getRule() {
|
return rule;
|
}
|
|
public void setRule(String rule) {
|
this.rule = rule;
|
}
|
|
public String getShareMoney() {
|
return shareMoney;
|
}
|
|
public void setShareMoney(String shareMoney) {
|
this.shareMoney = shareMoney;
|
}
|
|
public String getTljId() {
|
return tljId;
|
}
|
|
public void setTljId(String tljId) {
|
this.tljId = tljId;
|
}
|
|
public String getSurplusMoney() {
|
return surplusMoney;
|
}
|
|
public void setSurplusMoney(String surplusMoney) {
|
this.surplusMoney = surplusMoney;
|
}
|
|
public String getDescText() {
|
return descText;
|
}
|
|
public void setDescText(String descText) {
|
this.descText = descText;
|
}
|
|
public String getSpreadMoney() {
|
return spreadMoney;
|
}
|
|
public void setSpreadMoney(String spreadMoney) {
|
this.spreadMoney = spreadMoney;
|
}
|
}
|