yujian
2020-05-23 dd6a31aae79b35ccf0e006704a4d9e1d950c57d6
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
package com.yeshi.fanli.dto.taobao.haodanku;
 
import java.util.List;
 
/**
 * 好单库微信发圈内容
 * @author Administrator
 *
 */
public class HDKWXCircleContentDTO {
 
    private String edit_id;
    private String itemid;
    private List<String> itempic; // 多张宝贝图片,
    private String title;// itemtitle
    private String couponurl;// 优惠券链接
    private String copy_content;
    private String comment;// 朋友圈评论内容(表情未处理),多条评论用“|”做区分
    private String add_time;
    private String show_time;// 展示时间戳
    private String itemendprice;// 宝贝券后价
    private String couponmoney;// 优惠券金额
    private String sola_image;//
    private String dummy_click_statistics;// 该商品被分享次数
    private String tkrates;// 佣金比例
    private String itemprice;// 在售价
    private String content;// 单品导购内容(表情未处理)
    private String show_content;// 导购文案展示内容,含表情
    private String copy_comment;// 导购文案复制内容,含表情
    private String show_comment;// 朋友圈评论展示内容,含表情,多条评论用“|”做区分
    private String itemtitle;// 宝贝标题
    private String advise_time;//
 
    public String getEdit_id() {
        return edit_id;
    }
 
    public void setEdit_id(String edit_id) {
        this.edit_id = edit_id;
    }
 
    public String getItemid() {
        return itemid;
    }
 
    public void setItemid(String itemid) {
        this.itemid = itemid;
    }
 
    public List<String> getItempic() {
        return itempic;
    }
 
    public void setItempic(List<String> itempic) {
        this.itempic = itempic;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getCouponurl() {
        return couponurl;
    }
 
    public void setCouponurl(String couponurl) {
        this.couponurl = couponurl;
    }
 
    public String getCopy_content() {
        return copy_content;
    }
 
    public void setCopy_content(String copy_content) {
        this.copy_content = copy_content;
    }
 
    public String getComment() {
        return comment;
    }
 
    public void setComment(String comment) {
        this.comment = comment;
    }
 
    public String getAdd_time() {
        return add_time;
    }
 
    public void setAdd_time(String add_time) {
        this.add_time = add_time;
    }
 
    public String getShow_time() {
        return show_time;
    }
 
    public void setShow_time(String show_time) {
        this.show_time = show_time;
    }
 
    public String getItemendprice() {
        return itemendprice;
    }
 
    public void setItemendprice(String itemendprice) {
        this.itemendprice = itemendprice;
    }
 
    public String getCouponmoney() {
        return couponmoney;
    }
 
    public void setCouponmoney(String couponmoney) {
        this.couponmoney = couponmoney;
    }
 
    public String getSola_image() {
        return sola_image;
    }
 
    public void setSola_image(String sola_image) {
        this.sola_image = sola_image;
    }
 
    public String getDummy_click_statistics() {
        return dummy_click_statistics;
    }
 
    public void setDummy_click_statistics(String dummy_click_statistics) {
        this.dummy_click_statistics = dummy_click_statistics;
    }
 
    public String getTkrates() {
        return tkrates;
    }
 
    public void setTkrates(String tkrates) {
        this.tkrates = tkrates;
    }
 
    public String getItemprice() {
        return itemprice;
    }
 
    public void setItemprice(String itemprice) {
        this.itemprice = itemprice;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getShow_content() {
        return show_content;
    }
 
    public void setShow_content(String show_content) {
        this.show_content = show_content;
    }
 
    public String getCopy_comment() {
        return copy_comment;
    }
 
    public void setCopy_comment(String copy_comment) {
        this.copy_comment = copy_comment;
    }
 
    public String getShow_comment() {
        return show_comment;
    }
 
    public void setShow_comment(String show_comment) {
        this.show_comment = show_comment;
    }
 
    public String getItemtitle() {
        return itemtitle;
    }
 
    public void setItemtitle(String itemtitle) {
        this.itemtitle = itemtitle;
    }
 
    public String getAdvise_time() {
        return advise_time;
    }
 
    public void setAdvise_time(String advise_time) {
        this.advise_time = advise_time;
    }
}