| 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; | 
|   | 
|   | 
| } |