jyy
2021-04-09 f96ad6ec73b3da7df5c08471f0d567d46fc767e8
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
package com.matrix.system.shopXcx.bean;
 
import com.matrix.core.pojo.EntityDTO;
import com.matrix.core.anotations.Extend;
 
import java.util.List;
 
/**
 * @description 拼团表
 * @author wzy
 * @date 2020-03-21 15:26
 */
public class ShopActivitiesGroupInfo  extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L;
 
    /**
     * 拼团类型 老带新
     */
    public static final int GROUP_TYPE_OLD_AND_NEW = 1;
 
    /**
     * 拼团类型 老用户
     */
    public static final int GROUP_TYPE_ALL_OLD = 2;
 
    /**
     * 拼团类型 新用户
     */
    public static final int GROUP_TYPE_ALL_NEW = 3;
 
    /**
     * 是否虚拟成团 是
     */
    public static final int GROUP_VIRTUAL_Y = 1;
 
    /**
     * 是否虚拟成团 否
     */
    public static final int GROUP_VIRTUAL_N = 2;
    
    /**
     * 主键
     */
    private Long  id;
            
    
    /**
     * 活动主表主键
     */
    private Long  actId;
            
    
    /**
     * 产品Id
     */
    private Long  goodsId;
            
    
    /**
     * 组团要求
     */
    private Integer  giType;
            
    
    /**
     * 团长优惠
     */
    private Integer  giHeadDiscount;
            
    
    /**
     * 限购
     */
    private Integer  giLimitBuy;
 
    private Integer giVirtualGroup;
 
    private String goodsName;
 
    private Long companyId;
 
    private List<ShopActivitiesGroupPrice> groupPriceList;
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
 
    public String getGoodsName() {
        return goodsName;
    }
 
    public void setGoodsName(String goodsName) {
        this.goodsName = goodsName;
    }
 
    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 Integer getGiType() {
        return giType;
    }
       
       public void setGiType(Integer giType) {
        this.giType=giType;
    }
       
 
    public Integer getGiHeadDiscount() {
        return giHeadDiscount;
    }
       
       public void setGiHeadDiscount(Integer giHeadDiscount) {
        this.giHeadDiscount=giHeadDiscount;
    }
       
 
    public Integer getGiLimitBuy() {
        return giLimitBuy;
    }
       
       public void setGiLimitBuy(Integer giLimitBuy) {
        this.giLimitBuy=giLimitBuy;
    }
 
    public Integer getGiVirtualGroup() {
        return giVirtualGroup;
    }
 
    public void setGiVirtualGroup(Integer giVirtualGroup) {
        this.giVirtualGroup = giVirtualGroup;
    }
 
    public List<ShopActivitiesGroupPrice> getGroupPriceList() {
        return groupPriceList;
    }
 
    public void setGroupPriceList(List<ShopActivitiesGroupPrice> groupPriceList) {
        this.groupPriceList = groupPriceList;
    }
}