StatisticsIncome.java 966 Bytes
/**  
* @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;
	}

}