Helius
2022-05-27 4351e71d782741143a98f86f6648acd16689165f
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
package com.matrix.system.shopXcx.dto;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
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 Integer shippingMethod;
 
    /**
     * 拼团ID
     */
    private Long gjId;
 
    private String remarks;
 
    private Integer skuId;
 
    private Integer count;
 
    private int joinType;
 
    private BigDecimal price;
 
    private Long userId;
 
    private int goodsId;
 
 
}