yujian
2020-05-09 7e7db2fa55a9a3af46d4fd8ede0dee147f101d64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.yeshi.fanli.dto.taobao;
 
import java.util.List;
 
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
 
public class TaoBaoShopDTO {
 
    private Long sellerId;// 卖家ID
    private Integer userType;// 用户类型 0-淘宝 1-天猫
    private String shopName;// 店铺名称
    private String shopIcon;// 店铺图标
    private String shopLink; // 店铺链接
    private String brandId; // 大淘客品牌Id
    private String brandDes; // 大淘客品牌描述
    
    private List<TaoBaoGoodsBrief> listGoods;
    
    
    
    public Long getSellerId() {
        return sellerId;
    }
    public void setSellerId(Long sellerId) {
        this.sellerId = sellerId;
    }
    public Integer getUserType() {
        return userType;
    }
    public void setUserType(Integer userType) {
        this.userType = userType;
    }
    public String getShopName() {
        return shopName;
    }
    public void setShopName(String shopName) {
        this.shopName = shopName;
    }
    public String getShopIcon() {
        return shopIcon;
    }
    public void setShopIcon(String shopIcon) {
        this.shopIcon = shopIcon;
    }
    public String getShopLink() {
        return shopLink;
    }
    public void setShopLink(String shopLink) {
        this.shopLink = shopLink;
    }
    public String getBrandId() {
        return brandId;
    }
    public void setBrandId(String brandId) {
        this.brandId = brandId;
    }
    public List<TaoBaoGoodsBrief> getListGoods() {
        return listGoods;
    }
    public void setListGoods(List<TaoBaoGoodsBrief> listGoods) {
        this.listGoods = listGoods;
    }
    public String getBrandDes() {
        return brandDes;
    }
    public void setBrandDes(String brandDes) {
        this.brandDes = brandDes;
    }
 
}