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