| 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
 | | package com.matrix.system.shopXcx.dto; |  |   |  | import lombok.Data; |  |   |  | import java.math.BigDecimal; |  |   |  | /** |  |  * @author wzy |  |  * @date 2020-04-09 15:49 |  |  **/ |  | @Data |  | public class CreateSecKillDTO { |  |   |  |     /** |  |      * 秒杀信息id |  |      */ |  |     private Long id; |  |   |  |     /** |  |      * 地址id |  |      */ |  |     private Integer addressId; |  |   |  |     /** |  |      * 购买数量 |  |      */ |  |     private Integer count; |  |   |  |     /** |  |      * 店铺id |  |      */ |  |     private Long shopId; |  |   |  |     /** |  |      * 配送方式 |  |      */ |  |     private Integer shippingMethod; |  |   |  |     private BigDecimal price; |  |   |  |     private Integer goodsId; |  |   |  |     private String openId; |  |   |  | } | 
 |