jyy
2021-04-09 1443f8eb9f3b001e84f101852aa5f6ec7f49f4c9
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
package com.matrix.system.shopXcx.api.vo;
 
import com.matrix.system.common.bean.EntityDTOExt;
import com.matrix.system.shopXcx.bean.ShopActivitiesGroupPrice;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List;
 
public class WxActivitiesGroupBuyVO extends EntityDTOExt implements Serializable {
 
    private static final long serialVersionUID = -5747051492539456507L;
 
    private Long id;
 
    private Long time;
 
    private Long goodsId;
 
    private String goodsName;
 
    private String goodsIntro;
 
    private String goodsPic;
 
    private Integer actStatus;
 
    private BigDecimal prePrice;
 
    private BigDecimal nowPrice;
 
    private Integer status;
 
    private Long shopId;
 
    private Long companyId;
 
    List<ShopActivitiesGroupPrice> groupPriceList;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getGoodsIntro() {
        return goodsIntro;
    }
 
    public void setGoodsIntro(String goodsIntro) {
        this.goodsIntro = goodsIntro;
    }
 
    public Long getTime() {
        return time;
    }
 
    public void setTime(Long time) {
        this.time = time;
    }
 
    public Long getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(Long goodsId) {
        this.goodsId = goodsId;
    }
 
    public String getGoodsName() {
        return goodsName;
    }
 
    public void setGoodsName(String goodsName) {
        this.goodsName = goodsName;
    }
 
    public Integer getActStatus() {
        return actStatus;
    }
 
    public void setActStatus(Integer actStatus) {
        this.actStatus = actStatus;
    }
 
    public BigDecimal getPrePrice() {
        return prePrice;
    }
 
    public void setPrePrice(BigDecimal prePrice) {
        this.prePrice = prePrice;
    }
 
    public BigDecimal getNowPrice() {
        return nowPrice;
    }
 
    public void setNowPrice(BigDecimal nowPrice) {
        this.nowPrice = nowPrice;
    }
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public List<ShopActivitiesGroupPrice> getGroupPriceList() {
        return groupPriceList;
    }
 
    public void setGroupPriceList(List<ShopActivitiesGroupPrice> groupPriceList) {
        this.groupPriceList = groupPriceList;
    }
 
    public String getGoodsPic() {
        return goodsPic;
    }
 
    public void setGoodsPic(String goodsPic) {
        this.goodsPic = goodsPic;
    }
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
}