StatisticsIncome.java
966 Bytes
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
/**
* @Title: StatisticsIncome.java
* @Package com.bjivt.entity.vo
* @Description: TODO(用一句话描述该文件做什么)
* @author Yh.T
* @date 2016年8月17日 上午10:36:26
* @version
*/
package com.bjivt.entity.vo;
/**
* 项目名称:admin
*
* 类描述:用于统计收益
* 类名称:com.bjivt.entity.vo.StatisticsIncome
* Yh.T
* 创建时间:2016年8月17日 上午10:36:26
* 修改备注:
* @version
*/
public class StatisticsIncome {
private String time;//时间
private float recharge; //充值总数
private float withdraw; //提现总数
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
public float getRecharge() {
return recharge;
}
public void setRecharge(float recharge) {
this.recharge = recharge;
}
public float getWithdraw() {
return withdraw;
}
public void setWithdraw(float withdraw) {
this.withdraw = withdraw;
}
}