jyy
2021-07-09 8287f743a1ac2fd5330f6dd7ca08255df193ae03
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
package com.matrix.system.shopXcx.bean;
 
import com.matrix.core.pojo.EntityDTO;
import com.matrix.core.anotations.Extend;
 
import java.math.BigDecimal;
 
/**
 * @description 杀
 * @author wzy
 * @date 2020-03-21 15:26
 */
public class ShopActivitiesSeckillInfo  extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L; 
 
    
    /**
     * 主键
     */
    private Long  id;
            
    
    /**
     * 活动主表主键
     */
    private Long  actId;
            
    
    /**
     * 产品ID
     */
    private Long  goodsId;
            
    
    /**
     * 秒杀价
     */
    private BigDecimal siPrice;
            
    
    /**
     * 最多秒杀数量
     */
    private Integer  siCount;
            
    
    /**
     * 每人限购
     */
    private Integer  siLimitCnt;
 
    private Integer siRemainCnt;
 
    private ShopProduct goods;
 
    private Long companyId;
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
 
    public Long getId() {
        return id;
    }
       
       public void setId(Long id) {
        this.id=id;
    }
       
 
    public Long getActId() {
        return actId;
    }
       
       public void setActId(Long actId) {
        this.actId=actId;
    }
       
 
    public Long getGoodsId() {
        return goodsId;
    }
       
       public void setGoodsId(Long goodsId) {
        this.goodsId=goodsId;
    }
       
 
    public BigDecimal getSiPrice() {
        return siPrice;
    }
       
       public void setSiPrice(BigDecimal siPrice) {
        this.siPrice=siPrice;
    }
       
 
    public Integer getSiCount() {
        return siCount;
    }
       
       public void setSiCount(Integer siCount) {
        this.siCount=siCount;
    }
       
 
    public Integer getSiLimitCnt() {
        return siLimitCnt;
    }
       
       public void setSiLimitCnt(Integer siLimitCnt) {
        this.siLimitCnt=siLimitCnt;
    }
 
 
    public ShopProduct getGoods() {
        return goods;
    }
 
    public void setGoods(ShopProduct goods) {
        this.goods = goods;
    }
 
    public Integer getSiRemainCnt() {
        return siRemainCnt;
    }
 
    public void setSiRemainCnt(Integer siRemainCnt) {
        this.siRemainCnt = siRemainCnt;
    }
}