package com.tejia.lijin.app.entity.share;
|
|
import com.tejia.lijin.app.entity.TaoBaoGoodsBrief;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* 单品分享传入的实体
|
*/
|
public class SingleGoodsShareInfo implements Serializable {
|
|
private TaoBaoGoodsBrief goodsInfo;
|
private String rule;
|
private String notifyDesc;
|
private String token;
|
private String clickUrl;
|
private String notifyPicture;
|
private String notifyPictureNew;
|
private String shareId;
|
private String spreadMoney;
|
private String tljId;
|
private String shareText;
|
private String descText;
|
private String wxErCode;
|
private List<String> commentTexts;
|
// 评论文本
|
private String commentText;
|
// 评论文本选择项
|
private List<ShareGoodsCommentChoiceInfo> commentTextChoiceList;
|
// 推荐语
|
private String recommendText;
|
|
public String getCommentText() {
|
return commentText;
|
}
|
|
public void setCommentText(String commentText) {
|
this.commentText = commentText;
|
}
|
|
public List<ShareGoodsCommentChoiceInfo> getCommentTextChoiceList() {
|
return commentTextChoiceList;
|
}
|
|
public void setCommentTextChoiceList(List<ShareGoodsCommentChoiceInfo> commentTextChoiceList) {
|
this.commentTextChoiceList = commentTextChoiceList;
|
}
|
|
public String getRecommendText() {
|
return recommendText;
|
}
|
|
public void setRecommendText(String recommendText) {
|
this.recommendText = recommendText;
|
}
|
|
|
public TaoBaoGoodsBrief getGoodsInfo() {
|
return goodsInfo;
|
}
|
|
public void setGoodsInfo(TaoBaoGoodsBrief goodsInfo) {
|
this.goodsInfo = goodsInfo;
|
}
|
|
public String getRule() {
|
return rule;
|
}
|
|
public void setRule(String rule) {
|
this.rule = rule;
|
}
|
|
public String getNotifyDesc() {
|
return notifyDesc;
|
}
|
|
public void setNotifyDesc(String notifyDesc) {
|
this.notifyDesc = notifyDesc;
|
}
|
|
public String getToken() {
|
return token;
|
}
|
|
public void setToken(String token) {
|
this.token = token;
|
}
|
|
public String getClickUrl() {
|
return clickUrl;
|
}
|
|
public void setClickUrl(String clickUrl) {
|
this.clickUrl = clickUrl;
|
}
|
|
public String getNotifyPicture() {
|
return notifyPicture;
|
}
|
|
public void setNotifyPicture(String notifyPicture) {
|
this.notifyPicture = notifyPicture;
|
}
|
|
public String getShareId() {
|
return shareId;
|
}
|
|
public void setShareId(String shareId) {
|
this.shareId = shareId;
|
}
|
|
public String getSpreadMoney() {
|
return spreadMoney;
|
}
|
|
public void setSpreadMoney(String spreadMoney) {
|
this.spreadMoney = spreadMoney;
|
}
|
|
public String getTljId() {
|
return tljId;
|
}
|
|
public void setTljId(String tljId) {
|
this.tljId = tljId;
|
}
|
|
public String getShareText() {
|
return shareText;
|
}
|
|
public void setShareText(String shareText) {
|
this.shareText = shareText;
|
}
|
|
public String getDescText() {
|
return descText;
|
}
|
|
public void setDescText(String descText) {
|
this.descText = descText;
|
}
|
|
public String getWxErCode() {
|
return wxErCode;
|
}
|
|
public void setWxErCode(String wxErCode) {
|
this.wxErCode = wxErCode;
|
}
|
|
public List<String> getCommentTexts() {
|
return commentTexts;
|
}
|
|
public void setCommentTexts(List<String> commentTexts) {
|
this.commentTexts = commentTexts;
|
}
|
|
public String getNotifyPictureNew() {
|
return notifyPictureNew;
|
}
|
|
public void setNotifyPictureNew(String notifyPictureNew) {
|
this.notifyPictureNew = notifyPictureNew;
|
}
|
|
}
|