admin
2019-02-21 7e57a20c0ccde504c2f2b2b9fd4a9fd7c89d5e92
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
package org.fanli.facade.user.vo;
 
import java.math.BigDecimal;
 
public class UserMoneyStatisticVO {
    private BigDecimal balanceMoney;// 账户余额
    private BigDecimal monthRecievedMoney;// 本月到账
    private BigDecimal monthExtractMoney;// 本月提现
    private BigDecimal lastMonthRecievedMoney;// 上月到账
    private BigDecimal lastMonthExtractMoney;// 上月提现
    private BigDecimal latestThreeMonthRecievedMoney;// 近三月到账
    private BigDecimal totalRecievedMoney;// 累计到账
    private BigDecimal totalShareMoney;// 累计分享奖金
    private BigDecimal totalInviteMoney;// 累计邀请奖金
    private BigDecimal monthUnRecievedMoney;// 本月未到账
    private BigDecimal totalUnRecievedMoney; // 全部未到账
 
    public BigDecimal getMonthUnRecievedMoney() {
        return monthUnRecievedMoney;
    }
 
    public void setMonthUnRecievedMoney(BigDecimal monthUnRecievedMoney) {
        this.monthUnRecievedMoney = monthUnRecievedMoney;
    }
 
    public BigDecimal getTotalUnRecievedMoney() {
        return totalUnRecievedMoney;
    }
 
    public void setTotalUnRecievedMoney(BigDecimal totalUnRecievedMoney) {
        this.totalUnRecievedMoney = totalUnRecievedMoney;
    }
 
    public BigDecimal getBalanceMoney() {
        return balanceMoney;
    }
 
    public void setBalanceMoney(BigDecimal balanceMoney) {
        this.balanceMoney = balanceMoney;
    }
 
    public BigDecimal getMonthRecievedMoney() {
        return monthRecievedMoney;
    }
 
    public void setMonthRecievedMoney(BigDecimal monthRecievedMoney) {
        this.monthRecievedMoney = monthRecievedMoney;
    }
 
    public BigDecimal getMonthExtractMoney() {
        return monthExtractMoney;
    }
 
    public void setMonthExtractMoney(BigDecimal monthExtractMoney) {
        this.monthExtractMoney = monthExtractMoney;
    }
 
    public BigDecimal getLastMonthRecievedMoney() {
        return lastMonthRecievedMoney;
    }
 
    public void setLastMonthRecievedMoney(BigDecimal lastMonthRecievedMoney) {
        this.lastMonthRecievedMoney = lastMonthRecievedMoney;
    }
 
    public BigDecimal getLastMonthExtractMoney() {
        return lastMonthExtractMoney;
    }
 
    public void setLastMonthExtractMoney(BigDecimal lastMonthExtractMoney) {
        this.lastMonthExtractMoney = lastMonthExtractMoney;
    }
 
    public BigDecimal getLatestThreeMonthRecievedMoney() {
        return latestThreeMonthRecievedMoney;
    }
 
    public void setLatestThreeMonthRecievedMoney(BigDecimal latestThreeMonthRecievedMoney) {
        this.latestThreeMonthRecievedMoney = latestThreeMonthRecievedMoney;
    }
 
    public BigDecimal getTotalRecievedMoney() {
        return totalRecievedMoney;
    }
 
    public void setTotalRecievedMoney(BigDecimal totalRecievedMoney) {
        this.totalRecievedMoney = totalRecievedMoney;
    }
 
    public BigDecimal getTotalShareMoney() {
        return totalShareMoney;
    }
 
    public void setTotalShareMoney(BigDecimal totalShareMoney) {
        this.totalShareMoney = totalShareMoney;
    }
 
    public BigDecimal getTotalInviteMoney() {
        return totalInviteMoney;
    }
 
    public void setTotalInviteMoney(BigDecimal totalInviteMoney) {
        this.totalInviteMoney = totalInviteMoney;
    }
}