1
935090232@qq.com
2020-12-01 611146e69aaa62296cf84f2ccb5aca5ebba17677
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
package com.matrix.system.shopXcx.dto;
 
import java.math.BigDecimal;
 
public class CreateGroupBuyDTO {
 
    /**
     * 创建拼团
     */
    public static final Integer JOIN_TYPE_CREATE = 1;
 
    /**
     * 加入拼团
     */
    public static final Integer JOIN_TYPE_JOIN = 2;
 
    /**
     * 拼团价ID
     */
    private Long gpId;
 
    /**
     * 活动ID
     */
    private Long actId;
 
    /**
     * 地址ID
     */
    private Integer addressId;
 
    /**
     * 门店ID
     */
    private Long shopId;
 
    /**
     * 配送方式
     */
    private String shippingMethod;
 
    /**
     * 拼团ID
     */
    private Long gjId;
 
    private String remarks;
 
    private Integer skuId;
 
    private Integer count;
 
    private int joinType;
 
    private BigDecimal price;
 
    private String openId;
 
    private int goodsId;
 
    public String getOpenId() {
        return openId;
    }
 
    public void setOpenId(String openId) {
        this.openId = openId;
    }
 
    public int getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(int goodsId) {
        this.goodsId = goodsId;
    }
 
    public BigDecimal getPrice() {
        return price;
    }
 
    public void setPrice(BigDecimal price) {
        this.price = price;
    }
 
    public int getJoinType() {
        return joinType;
    }
 
    public void setJoinType(int joinType) {
        this.joinType = joinType;
    }
 
    public Long getGpId() {
        return gpId;
    }
 
    public void setGpId(Long gpId) {
        this.gpId = gpId;
    }
 
    public Long getActId() {
        return actId;
    }
 
    public void setActId(Long actId) {
        this.actId = actId;
    }
 
    public Integer getAddressId() {
        return addressId;
    }
 
    public void setAddressId(Integer addressId) {
        this.addressId = addressId;
    }
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public String getShippingMethod() {
        return shippingMethod;
    }
 
    public void setShippingMethod(String shippingMethod) {
        this.shippingMethod = shippingMethod;
    }
 
    public Long getGjId() {
        return gjId;
    }
 
    public void setGjId(Long gjId) {
        this.gjId = gjId;
    }
 
    public Integer getSkuId() {
        return skuId;
    }
 
    public void setSkuId(Integer skuId) {
        this.skuId = skuId;
    }
 
    public Integer getCount() {
        return count;
    }
 
    public void setCount(Integer count) {
        this.count = count;
    }
 
    public String getRemarks() {
        return remarks;
    }
 
    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }
}