yujian
2020-06-01 824d003d330a25b1f5b1e9ed30e4ad868868c2ab
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
package com.yeshi.fanli.entity.dynamic;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
import com.google.gson.annotations.Expose;
 
public class SimpleGoods implements Serializable {
    private static final long serialVersionUID = 1L;
    // 商品ID
    @Expose
    private String goodsId;
    // 商品类型 1-淘宝 2-京东 3-拼多多
    @Expose
    private Integer goodsType;
    // 券后价
    @Expose
    private BigDecimal price;
    // 券面额
    @Expose
    private BigDecimal amount;
    
    // 状态
    @Expose
    private Integer state;
    
    // 备注
    private String remarks;
        
 
    public String getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(String goodsId) {
        this.goodsId = goodsId;
    }
 
    public Integer getGoodsType() {
        return goodsType;
    }
 
    public void setGoodsType(Integer goodsType) {
        this.goodsType = goodsType;
    }
 
    public BigDecimal getPrice() {
        return price;
    }
 
    public void setPrice(BigDecimal price) {
        this.price = price;
    }
 
    public BigDecimal getAmount() {
        return amount;
    }
 
    public void setAmount(BigDecimal amount) {
        this.amount = amount;
    }
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public String getRemarks() {
        return remarks;
    }
 
    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }
 
}