admin
2020-05-19 744594ef1a2f530fc3e86ea9dc48b62247f79420
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
package com.yeshi.fanli.vo.redpack;
 
import java.math.BigDecimal;
 
import com.yeshi.fanli.entity.redpack.RedPackBalance;
 
public class RedPackBalanceVO extends RedPackBalance {
 
    private BigDecimal giveMoney; // 赠送金额
    private BigDecimal useMoney; // 使用金额
    private BigDecimal exchangeMoney; // 体现金额
 
    private BigDecimal todayWin;
    private BigDecimal theMonthWin;
    private BigDecimal totalWin;
 
    private BigDecimal todayreduce;
    private BigDecimal theMonthreduce;
    private BigDecimal totalreduce;
    
    public BigDecimal getGiveMoney() {
        return giveMoney;
    }
 
    public void setGiveMoney(BigDecimal giveMoney) {
        this.giveMoney = giveMoney;
    }
 
    public BigDecimal getUseMoney() {
        return useMoney;
    }
 
    public void setUseMoney(BigDecimal useMoney) {
        this.useMoney = useMoney;
    }
 
    public BigDecimal getExchangeMoney() {
        return exchangeMoney;
    }
 
    public void setExchangeMoney(BigDecimal exchangeMoney) {
        this.exchangeMoney = exchangeMoney;
    }
 
    public BigDecimal getTodayWin() {
        return todayWin;
    }
 
    public void setTodayWin(BigDecimal todayWin) {
        this.todayWin = todayWin;
    }
 
    public BigDecimal getTheMonthWin() {
        return theMonthWin;
    }
 
    public void setTheMonthWin(BigDecimal theMonthWin) {
        this.theMonthWin = theMonthWin;
    }
 
    public BigDecimal getTotalWin() {
        return totalWin;
    }
 
    public void setTotalWin(BigDecimal totalWin) {
        this.totalWin = totalWin;
    }
 
    public BigDecimal getTodayreduce() {
        return todayreduce;
    }
 
    public void setTodayreduce(BigDecimal todayreduce) {
        this.todayreduce = todayreduce;
    }
 
    public BigDecimal getTheMonthreduce() {
        return theMonthreduce;
    }
 
    public void setTheMonthreduce(BigDecimal theMonthreduce) {
        this.theMonthreduce = theMonthreduce;
    }
 
    public BigDecimal getTotalreduce() {
        return totalreduce;
    }
 
    public void setTotalreduce(BigDecimal totalreduce) {
        this.totalreduce = totalreduce;
    }
 
}