StatisticsUser.java 2.62 KB
package com.bjivt.entity.vo;

import java.util.Date;

import com.bjivt.util.Base64Utils;

public class StatisticsUser {
    private Integer id;

    private String name;
    private int fansCount;
    private int followerCount;
    private int chineseCoin;
    private int meCoinBalance;
    private int level;
    private int money;
    private int recharge;
    private String msisdn;
    private String email;
    private String signature;
    private String hometown;
    private String sex;
    private int age;
    
	public Integer getId() {
		return id;
	}
	public void setId(Integer id) {
		this.id = id;
	}
	public String getName() {
		try {
    		if(name != null)
    			name = new String(Base64Utils.decode(name),"UTF-8");
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public int getFansCount() {
		return fansCount;
	}
	public void setFansCount(int fansCount) {
		this.fansCount = fansCount;
	}
	public int getFollowerCount() {
		return followerCount;
	}
	public void setFollowerCount(int followerCount) {
		this.followerCount = followerCount;
	}
	public int getChineseCoin() {
		return chineseCoin;
	}
	public void setChineseCoin(int chineseCoin) {
		this.chineseCoin = chineseCoin;
	}
	public int getMeCoinBalance() {
		return meCoinBalance;
	}
	public void setMeCoinBalance(int meCoinBalance) {
		this.meCoinBalance = meCoinBalance;
	}
	public int getLevel() {
		return level;
	}
	public void setLevel(int level) {
		this.level = level;
	}
	public int getMoney() {
		return money;
	}
	public void setMoney(int money) {
		this.money = money;
	}
	public int getRecharge() {
		return recharge;
	}
	public void setRecharge(int recharge) {
		this.recharge = recharge;
	}
	public String getMsisdn() {
		return msisdn;
	}
	public void setMsisdn(String msisdn) {
		this.msisdn = msisdn;
	}
	public String getEmail() {
		return email;
	}
	public void setEmail(String email) {
		this.email = email;
	}
	public String getSignature() {
		try {
    		if(signature != null)
    			signature = new String(Base64Utils.decode(signature),"UTF-8");
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return signature;
	}
	public void setSignature(String signature) {
		this.signature = signature;
	}
	public String getHometown() {
		return hometown;
	}
	public void setHometown(String hometown) {
		this.hometown = hometown;
	}
	public String getSex() {
		return sex;
	}
	public void setSex(String sex) {
		this.sex = sex;
	}
	public int getAge() {
		return age;
	}
	public void setAge(int age) {
		this.age = age;
	}
    
}