jyy
2021-04-09 1443f8eb9f3b001e84f101852aa5f6ec7f49f4c9
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
124
125
126
127
package com.matrix.system.shopXcx.api.vo;
 
import org.springframework.web.bind.annotation.PathVariable;
 
/**
 * 小程序二维码生成请求对象
 */
public class QrcodeVo {
 
    /**
     * 门店id
     */
    private  Long shopId;
 
    /**
     * 产品id
     */
    private  Integer productId;
 
    /**
     * 活动id
     */
    private  Long actId;
 
 
    /**
     * 团队id
     */
    private Long gjId;
 
    /**
     * 分享场景值
     */
    private  String scene;
 
    /**
     * 二维码路径
     */
    private  String path;
 
    /**
     * 几人团id
     */
    private  Long gpId;
 
    /**
     * 活动类型 1-普通 2-拼团 3-秒杀
     */
    private Integer activityType;
 
    /**
     * 秒杀id
     */
    private  Long skillId;
 
    public Long getSkillId() {
        return skillId;
    }
 
    public void setSkillId(Long skillId) {
        this.skillId = skillId;
    }
 
    public Integer getActivityType() {
        return activityType;
    }
 
    public void setActivityType(Integer activityType) {
        this.activityType = activityType;
    }
 
    public Long getGpId() {
        return gpId;
    }
 
    public void setGpId(Long gpId) {
        this.gpId = gpId;
    }
 
    public String getScene() {
        return scene;
    }
 
    public void setScene(String scene) {
        this.scene = scene;
    }
 
    public String getPath() {
        return path;
    }
 
    public void setPath(String path) {
        this.path = path;
    }
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public Integer getProductId() {
        return productId;
    }
 
    public void setProductId(Integer productId) {
        this.productId = productId;
    }
 
    public Long getActId() {
        return actId;
    }
 
    public void setActId(Long actId) {
        this.actId = actId;
    }
 
    public Long getGjId() {
        return gjId;
    }
 
    public void setGjId(Long gjId) {
        this.gjId = gjId;
    }
}