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;
|
}
|
}
|