Helius
2020-12-14 cc78ea9e77300dfcb9eb7a9dc397c81548d695fb
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package com.matrix.system.shopXcx.bean;
 
import com.matrix.system.common.bean.EntityDTOExt;
 
/**
 * 分享二维码
 */
public class  ShopShareQrcord extends EntityDTOExt {
 
 
    /**
     * 主键
     */
    private String  id;
 
 
    /**
     * 产品ID
     */
    private Integer  productId;
 
 
    /**
     * 用户ID
     */
    private String  userId;
 
 
    /**
     * 状态(1:已分享 2:完成 3:失效 4:删除)
     */
    private Integer  status;
 
 
    /**
     * 浏览数
     */
    private Integer  visitorCount;
 
 
    /**
     * 备注
     */
    private String  remark;
 
 
    /**
     * 二维码访问地址
     */
    private String  qrcodeUrl;
 
 
    /**
     * 门店id
     */
    private Long shopId;
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
 
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public Integer getProductId() {
        return productId;
    }
 
    public void setProductId(Integer productId) {
        this.productId = productId;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public Integer getVisitorCount() {
        return visitorCount;
    }
 
    public void setVisitorCount(Integer visitorCount) {
        this.visitorCount = visitorCount;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getQrcodeUrl() {
        return qrcodeUrl;
    }
 
    public void setQrcodeUrl(String qrcodeUrl) {
        this.qrcodeUrl = qrcodeUrl;
    }
}