package com.haicaojie.android.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Created by weikou2015 on 2018/5/15.
|
*/
|
|
public class GoodsDetailTransition implements Serializable {
|
|
@Expose
|
String auctionId;
|
@Expose
|
List<String> imgList;
|
@Expose
|
String title;
|
@Expose
|
String userType;
|
@Expose
|
String price;
|
@Expose
|
String zkPrice;
|
@Expose
|
String hongBao;
|
@Expose
|
String saleCount;
|
@Expose
|
List<String> detailImgs;
|
@Expose
|
String coupon;
|
@Expose
|
CouponInfo couponInfo;
|
@Expose
|
ShopInfo shopInfo;
|
|
public ShopInfo getShopInfo() {
|
return shopInfo;
|
}
|
|
public void setShopInfo(ShopInfo shopInfo) {
|
this.shopInfo = shopInfo;
|
}
|
|
public String getAuctionId() {
|
return auctionId;
|
}
|
|
public void setAuctionId(String auctionId) {
|
this.auctionId = auctionId;
|
}
|
|
public List<String> getImgList() {
|
return imgList;
|
}
|
|
public void setImgList(List<String> imgList) {
|
this.imgList = imgList;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getUserType() {
|
return userType;
|
}
|
|
public void setUserType(String userType) {
|
this.userType = userType;
|
}
|
|
public String getPrice() {
|
return price;
|
}
|
|
public void setPrice(String price) {
|
this.price = price;
|
}
|
|
public String getZkPrice() {
|
return zkPrice;
|
}
|
|
public void setZkPrice(String zkPrice) {
|
this.zkPrice = zkPrice;
|
}
|
|
public String getHongBao() {
|
return hongBao;
|
}
|
|
public void setHongBao(String hongBao) {
|
this.hongBao = hongBao;
|
}
|
|
public String getSaleCount() {
|
return saleCount;
|
}
|
|
public void setSaleCount(String saleCount) {
|
this.saleCount = saleCount;
|
}
|
|
public List<String> getDetailImgs() {
|
return detailImgs;
|
}
|
|
public void setDetailImgs(List<String> detailImgs) {
|
this.detailImgs = detailImgs;
|
}
|
|
public String getCoupon() {
|
return coupon;
|
}
|
|
public void setCoupon(String coupon) {
|
this.coupon = coupon;
|
}
|
|
public CouponInfo getCouponInfo() {
|
return couponInfo;
|
}
|
|
public void setCouponInfo(CouponInfo couponInfo) {
|
this.couponInfo = couponInfo;
|
}
|
}
|