xiaoyong931011
2021-08-12 a5ffab1fcc28ad45a56e376722c162d23742848e
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
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 ShopActivitiesGroupPrice  extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L; 
 
    
    /**
     * 主键
     */
    private Long  id;
            
    
    /**
     * 活动主表主键
     */
    private Long  actId;
            
    
    /**
     * 拼团信息主表
     */
    private Long  gpId;
            
    
    /**
     * 拼团人数
     */
    private Integer  gpCount;
            
    
    /**
     * 拼团价
     */
    private BigDecimal gpPrice;
            
    
    /**
     * 团长价
     */
    private BigDecimal  gpHeadPrice;
 
    private int seq;
 
    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 getGpId() {
        return gpId;
    }
       
       public void setGpId(Long gpId) {
        this.gpId=gpId;
    }
       
 
    public Integer getGpCount() {
        return gpCount;
    }
       
       public void setGpCount(Integer gpCount) {
        this.gpCount=gpCount;
    }
       
 
    public BigDecimal getGpPrice() {
        return gpPrice;
    }
       
       public void setGpPrice(BigDecimal gpPrice) {
        this.gpPrice=gpPrice;
    }
       
 
    public BigDecimal getGpHeadPrice() {
        return gpHeadPrice;
    }
       
       public void setGpHeadPrice(BigDecimal gpHeadPrice) {
        this.gpHeadPrice=gpHeadPrice;
    }
 
 
    public int getSeq() {
        return seq;
    }
 
    public void setSeq(int seq) {
        this.seq = seq;
    }
}