package com.yeshi.fanli.vo.goods;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.fanli.entity.bus.user.ShamUser;
|
import com.yeshi.fanli.entity.taobao.ClientTBPid;
|
|
/**
|
* 商品详情额外显示信息
|
*
|
* @author Administrator
|
*
|
*/
|
public class GoodsDetailExtraVO implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
// 是否IOS上线
|
@Expose
|
private boolean iosOnling;
|
// 是否加入收藏
|
@Expose
|
private boolean collected;
|
// 是否加入分享库
|
@Expose
|
private boolean storage;
|
// 是否有返利
|
@Expose
|
private boolean fanliValid;
|
// 是否有分享
|
@Expose
|
private boolean shareValid;
|
// 是否跳转原生APP
|
@Expose
|
private Boolean isNative;
|
|
// 图文详情链接
|
@Expose
|
private String detailUrl;
|
// 复制链接(右上角)
|
@Expose
|
private String h5Url;
|
|
// 淘客参数
|
@Expose
|
private ClientTBPid tbPidInfo;
|
// 用户淘礼金
|
@Expose
|
private String userTLJ;
|
|
// 分享信息
|
@Expose
|
private ShareVO share;
|
// 分享人
|
@Expose
|
private List<ShamUser> listShareUser;
|
// 领取人
|
@Expose
|
private List<ShamUser> listCouponUser;
|
@Expose
|
private String couponJumpLink;// 券跳转链接,拼多多专用
|
@Expose
|
private String nativeCouponJumpLink;// 原生券跳转链接,拼多多专用
|
@Expose
|
private Boolean vip;// 是否为VIP
|
|
// 云发单文字
|
@Expose
|
private boolean cloudOpen;
|
@Expose
|
private String cloudPic;
|
// 云发单文字
|
@Expose
|
private String cloudText;
|
|
|
|
|
public Boolean getVip() {
|
return vip;
|
}
|
|
public void setVip(Boolean vip) {
|
this.vip = vip;
|
}
|
|
public String getCouponJumpLink() {
|
return couponJumpLink;
|
}
|
|
public void setCouponJumpLink(String couponJumpLink) {
|
this.couponJumpLink = couponJumpLink;
|
}
|
|
public String getNativeCouponJumpLink() {
|
return nativeCouponJumpLink;
|
}
|
|
public void setNativeCouponJumpLink(String nativeCouponJumpLink) {
|
this.nativeCouponJumpLink = nativeCouponJumpLink;
|
}
|
|
public ClientTBPid getTbPidInfo() {
|
return tbPidInfo;
|
}
|
|
public void setTbPidInfo(ClientTBPid tbPidInfo) {
|
this.tbPidInfo = tbPidInfo;
|
}
|
|
public boolean isIosOnling() {
|
return iosOnling;
|
}
|
|
public void setIosOnling(boolean iosOnling) {
|
this.iosOnling = iosOnling;
|
}
|
|
public boolean isCollected() {
|
return collected;
|
}
|
|
public void setCollected(boolean collected) {
|
this.collected = collected;
|
}
|
|
public boolean isStorage() {
|
return storage;
|
}
|
|
public void setStorage(boolean storage) {
|
this.storage = storage;
|
}
|
|
public boolean isFanliValid() {
|
return fanliValid;
|
}
|
|
public void setFanliValid(boolean fanliValid) {
|
this.fanliValid = fanliValid;
|
}
|
|
public boolean isShareValid() {
|
return shareValid;
|
}
|
|
public void setShareValid(boolean shareValid) {
|
this.shareValid = shareValid;
|
}
|
|
public Boolean getIsNative() {
|
return isNative;
|
}
|
|
public void setIsNative(Boolean isNative) {
|
this.isNative = isNative;
|
}
|
|
public String getDetailUrl() {
|
return detailUrl;
|
}
|
|
public void setDetailUrl(String detailUrl) {
|
this.detailUrl = detailUrl;
|
}
|
|
public String getH5Url() {
|
return h5Url;
|
}
|
|
public void setH5Url(String h5Url) {
|
this.h5Url = h5Url;
|
}
|
|
public String getUserTLJ() {
|
return userTLJ;
|
}
|
|
public void setUserTLJ(String userTLJ) {
|
this.userTLJ = userTLJ;
|
}
|
|
public ShareVO getShare() {
|
return share;
|
}
|
|
public void setShare(ShareVO share) {
|
this.share = share;
|
}
|
|
public List<ShamUser> getListShareUser() {
|
return listShareUser;
|
}
|
|
public void setListShareUser(List<ShamUser> listShareUser) {
|
this.listShareUser = listShareUser;
|
}
|
|
public List<ShamUser> getListCouponUser() {
|
return listCouponUser;
|
}
|
|
public void setListCouponUser(List<ShamUser> listCouponUser) {
|
this.listCouponUser = listCouponUser;
|
}
|
|
public String getCloudPic() {
|
return cloudPic;
|
}
|
|
public void setCloudPic(String cloudPic) {
|
this.cloudPic = cloudPic;
|
}
|
|
public String getCloudText() {
|
return cloudText;
|
}
|
|
public void setCloudText(String cloudText) {
|
this.cloudText = cloudText;
|
}
|
|
public boolean isCloudOpen() {
|
return cloudOpen;
|
}
|
|
public void setCloudOpen(boolean cloudOpen) {
|
this.cloudOpen = cloudOpen;
|
}
|
|
}
|