yujian
2019-01-22 88b54772dbcf5ecab1e2316e4e4626ac901b8908
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package com.yeshi.fanli.entity.taobao;
 
import org.springframework.data.annotation.Id;
import org.springframework.data.annotation.PersistenceConstructor;
import org.springframework.data.mongodb.core.mapping.Document;
 
/**
 * 淘宝店铺信息
 * 
 * @author Administrator
 *
 */
@Document(collection = "tbShopInfo")
public class TaoBaoShopInfo {
    @Id
    private Long userId;// 店铺ID
    private String shopTitle;// 店铺标题
    private String shopType;// 店铺类型  B-天猫  C-淘宝
    private String sellerNick;// 卖家昵称
    private String pictureUrl;// 店铺图标
    private String shopUrl;// 店铺地址
    
    private String userType;// 店铺类型  1-天猫  0-淘宝()
    
 
    public TaoBaoShopInfo() {
 
    }
 
    @PersistenceConstructor
    public TaoBaoShopInfo(Long userId, String shopTitle, String shopType, String sellerNick, String pictureUrl,
            String shopUrl) {
        this.userId = userId;
        this.shopTitle = shopTitle;
        this.shopType = shopType;
        this.sellerNick = sellerNick;
        this.pictureUrl = pictureUrl;
        this.shopUrl = shopUrl;
    }
 
    public Long getUserId() {
        return userId;
    }
 
    public void setUserId(Long userId) {
        this.userId = userId;
    }
 
    public String getShopTitle() {
        return shopTitle;
    }
 
    public void setShopTitle(String shopTitle) {
        this.shopTitle = shopTitle;
    }
 
    public String getShopType() {
        return shopType;
    }
 
    public void setShopType(String shopType) {
        this.shopType = shopType;
    }
 
    public String getSellerNick() {
        return sellerNick;
    }
 
    public void setSellerNick(String sellerNick) {
        this.sellerNick = sellerNick;
    }
 
    public String getPictureUrl() {
        return pictureUrl;
    }
 
    public void setPictureUrl(String pictureUrl) {
        this.pictureUrl = pictureUrl;
    }
 
    public String getShopUrl() {
        return shopUrl;
    }
 
    public void setShopUrl(String shopUrl) {
        this.shopUrl = shopUrl;
    }
 
    public String getUserType() {
        return userType;
    }
 
    public void setUserType(String userType) {
        this.userType = userType;
    }
 
}