admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
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
package com.yeshi.buwan.dto.tb;
 
import com.google.gson.annotations.Expose;
 
import java.math.BigDecimal;
 
//密朵红包信息
public class TaoBaoHongBaoInfo {
    @Expose
    private BigDecimal hongbao;
 
    @Expose
    private String rate;
    
    /**
     * 0:红包 1:比率
     */
    @Expose
    private int type;
    
    public BigDecimal getHongbao() {
        return hongbao;
    }
 
    public void setHongbao(BigDecimal hongbao) {
        this.hongbao = hongbao;
    }
 
    public String getRate() {
        return rate;
    }
 
    public void setRate(String rate) {
        this.rate = rate;
    }
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
    
}