package com.fanliunion.android.app.entity.goods;
|
|
import com.fanliunion.android.app.entity.CouponInfo;
|
import com.fanliunion.android.app.entity.RedPacket;
|
|
/**
|
* 分享商品所需要的信息
|
*/
|
public class ShareCommonGoods {
|
private String goodsId;// 商品id
|
private int goodsType;// 商品类型 1-淘宝 2-京东 3-拼多多
|
private int shopType; // 店铺类型: 10-淘宝 11-天猫 20-京东 21-京东自营 30-拼多多
|
private String picUrl; // 图片
|
private String title; // 商品名称
|
private String zkPrice;// 商品价格(原价)
|
private String priceName;// 价格名称 天猫价、京东价、拼团价
|
private String salesCount; // 月销量
|
private boolean baoyou;// 是否包邮
|
private boolean hasCoupon;// 是否有券
|
private String couponPrice;// 券后价
|
private CouponInfo couponInfo;//券信息
|
|
public ShareCommonGoods(String goodsId, int goodsType) {
|
this.goodsId = goodsId;
|
this.goodsType = goodsType;
|
}
|
public ShareCommonGoods() {
|
}
|
private int salesType;//销量类型:1-月销 2-2小时销量 3-今日销量 4、总销量
|
|
public int getSalesType() {
|
return salesType;
|
}
|
|
public void setSalesType(int salesType) {
|
this.salesType = salesType;
|
}
|
|
|
public String getGoodsId() {
|
return goodsId;
|
}
|
|
public void setGoodsId(String goodsId) {
|
this.goodsId = goodsId;
|
}
|
|
public int getGoodsType() {
|
return goodsType;
|
}
|
|
public void setGoodsType(int goodsType) {
|
this.goodsType = goodsType;
|
}
|
|
public int getShopType() {
|
return shopType;
|
}
|
|
public void setShopType(int shopType) {
|
this.shopType = shopType;
|
}
|
|
public String getPicUrl() {
|
return picUrl;
|
}
|
|
public void setPicUrl(String picUrl) {
|
this.picUrl = picUrl;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getZkPrice() {
|
return zkPrice;
|
}
|
|
public void setZkPrice(String zkPrice) {
|
this.zkPrice = zkPrice;
|
}
|
|
public String getPriceName() {
|
return priceName;
|
}
|
|
public void setPriceName(String priceName) {
|
this.priceName = priceName;
|
}
|
|
public String getSalesCount() {
|
return salesCount;
|
}
|
|
public void setSalesCount(String salesCount) {
|
this.salesCount = salesCount;
|
}
|
|
public boolean isBaoyou() {
|
return baoyou;
|
}
|
|
public void setBaoyou(boolean baoyou) {
|
this.baoyou = baoyou;
|
}
|
|
public boolean isHasCoupon() {
|
return hasCoupon;
|
}
|
|
public void setHasCoupon(boolean hasCoupon) {
|
this.hasCoupon = hasCoupon;
|
}
|
|
public String getCouponPrice() {
|
return couponPrice;
|
}
|
|
public void setCouponPrice(String couponPrice) {
|
this.couponPrice = couponPrice;
|
}
|
|
public CouponInfo getCouponInfo() {
|
return couponInfo;
|
}
|
|
public void setCouponInfo(CouponInfo couponInfo) {
|
this.couponInfo = couponInfo;
|
}
|
|
public RedPacket getMoneyInfo() {
|
return moneyInfo;
|
}
|
|
public void setMoneyInfo(RedPacket moneyInfo) {
|
this.moneyInfo = moneyInfo;
|
}
|
|
private RedPacket moneyInfo;
|
}
|