admin
2022-08-09 399ac289f80b7a40aa4210341db6b447cacdcf14
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
package com.tejia.lijin.app.entity.user.money.statistic;
 
/**
 * 资金页面统计信息
 */
public class MoneyStatisticVO {
 
 
    private String extractDesc;//提现金额就是已成功转账到提现支付宝的资金。,
    private String moneyArrivalDesc;//资金已到账后提现时间不受限制、金额受限制。,
    private String monthExtractMoney; // 本月提现
    private String lastMonthExtractMoney;// 上月提现
    private String totalExtractMoney;// 累计提现
    private String totalFanLiMoney; // 累计自购返利
    private String totalShareMoney; // 累计分享奖金
    private String totalInviteMoney; // 累计邀请奖金
    private String totalMoney; // 累计总收入
    private String monthSettleMoney;// 本月已收货
    private String lastMonthSettleMoney; // 上月已收货
    private String notSettleMoney;// 待确认收货
    private String monthUnRecievedMoney;//本月未到账
    private String totalUnRecievedMoney;//全部未到账
 
 
    public String getTotalMoney() {
        return totalMoney;
    }
 
    public void setTotalMoney(String totalMoney) {
        this.totalMoney = totalMoney;
    }
 
    public String getMonthUnRecievedMoney() {
        return monthUnRecievedMoney;
    }
 
    public void setMonthUnRecievedMoney(String monthUnRecievedMoney) {
        this.monthUnRecievedMoney = monthUnRecievedMoney;
    }
 
    public String getTotalUnRecievedMoney() {
        return totalUnRecievedMoney;
    }
 
    public void setTotalUnRecievedMoney(String totalUnRecievedMoney) {
        this.totalUnRecievedMoney = totalUnRecievedMoney;
    }
 
 
 
 
    OrderMoneyTimeStatisticVO todayPredict;//今日预估
    OrderMoneyTimeStatisticVO monthPredict;// 本月预估
 
    public String getExtractDesc() {
        return extractDesc;
    }
 
    public void setExtractDesc(String extractDesc) {
        this.extractDesc = extractDesc;
    }
 
    public String getMoneyArrivalDesc() {
        return moneyArrivalDesc;
    }
 
    public void setMoneyArrivalDesc(String moneyArrivalDesc) {
        this.moneyArrivalDesc = moneyArrivalDesc;
    }
 
    public String getMonthExtractMoney() {
        return monthExtractMoney;
    }
 
    public void setMonthExtractMoney(String monthExtractMoney) {
        this.monthExtractMoney = monthExtractMoney;
    }
 
    public String getLastMonthExtractMoney() {
        return lastMonthExtractMoney;
    }
 
    public void setLastMonthExtractMoney(String lastMonthExtractMoney) {
        this.lastMonthExtractMoney = lastMonthExtractMoney;
    }
 
    public String getTotalExtractMoney() {
        return totalExtractMoney;
    }
 
    public void setTotalExtractMoney(String totalExtractMoney) {
        this.totalExtractMoney = totalExtractMoney;
    }
 
    public String getTotalFanLiMoney() {
        return totalFanLiMoney;
    }
 
    public void setTotalFanLiMoney(String totalFanLiMoney) {
        this.totalFanLiMoney = totalFanLiMoney;
    }
 
    public String getTotalShareMoney() {
        return totalShareMoney;
    }
 
    public void setTotalShareMoney(String totalShareMoney) {
        this.totalShareMoney = totalShareMoney;
    }
 
    public String getTotalInviteMoney() {
        return totalInviteMoney;
    }
 
    public void setTotalInviteMoney(String totalInviteMoney) {
        this.totalInviteMoney = totalInviteMoney;
    }
 
    public String getMonthSettleMoney() {
        return monthSettleMoney;
    }
 
    public void setMonthSettleMoney(String monthSettleMoney) {
        this.monthSettleMoney = monthSettleMoney;
    }
 
    public String getLastMonthSettleMoney() {
        return lastMonthSettleMoney;
    }
 
    public void setLastMonthSettleMoney(String lastMonthSettleMoney) {
        this.lastMonthSettleMoney = lastMonthSettleMoney;
    }
 
    public String getNotSettleMoney() {
        return notSettleMoney;
    }
 
    public void setNotSettleMoney(String notSettleMoney) {
        this.notSettleMoney = notSettleMoney;
    }
 
    public OrderMoneyTimeStatisticVO getTodayPredict() {
        return todayPredict;
    }
 
    public void setTodayPredict(OrderMoneyTimeStatisticVO todayPredict) {
        this.todayPredict = todayPredict;
    }
 
    public OrderMoneyTimeStatisticVO getMonthPredict() {
        return monthPredict;
    }
 
    public void setMonthPredict(OrderMoneyTimeStatisticVO monthPredict) {
        this.monthPredict = monthPredict;
    }
 
}