| | |
| | | package com.yeshi.fanli.vo.brand;
|
| | |
|
| | | import java.io.Serializable;
|
| | | import java.util.List;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | | import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
|
| | | import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBriefExtra;
|
| | | import com.yeshi.fanli.entity.taobao.TaoBaoShop;
|
| | | import com.yeshi.fanli.vo.goods.GoodsDetailVO;
|
| | |
|
| | | public class TaoBaoShopVO extends TaoBaoShop{
|
| | | public class TaoBaoShopVO extends TaoBaoShop implements Serializable{
|
| | | /**
|
| | | * |
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | private List<TaoBaoGoodsBrief> listGoodsBrief;
|
| | |
|
| | | @Expose
|
| | | private String shopLink;
|
| | | @Expose
|
| | | private List<TaoBaoGoodsBriefExtra> listGoods;
|
| | |
|
| | | public String getShopLink() {
|
| | | return shopLink;
|
| | | }
|
| | | public void setShopLink(String shopLink) {
|
| | | this.shopLink = shopLink;
|
| | | }
|
| | | @Expose
|
| | | private List<GoodsDetailVO> listGoodsVO;
|
| | | |
| | | public List<TaoBaoGoodsBriefExtra> getListGoods() {
|
| | | return listGoods;
|
| | | }
|
| | | public void setListGoods(List<TaoBaoGoodsBriefExtra> listGoods) {
|
| | | this.listGoods = listGoods;
|
| | | }
|
| | | public List<TaoBaoGoodsBrief> getListGoodsBrief() {
|
| | | return listGoodsBrief;
|
| | | }
|
| | | public void setListGoodsBrief(List<TaoBaoGoodsBrief> listGoodsBrief) {
|
| | | this.listGoodsBrief = listGoodsBrief;
|
| | | }
|
| | | public List<GoodsDetailVO> getListGoodsVO() {
|
| | | return listGoodsVO;
|
| | | }
|
| | | public void setListGoodsVO(List<GoodsDetailVO> listGoodsVO) {
|
| | | this.listGoodsVO = listGoodsVO;
|
| | | }
|
| | | |
| | | }
|