admin
2022-08-09 399ac289f80b7a40aa4210341db6b447cacdcf14
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
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;
    }
 
}