User.java 1.32 KB
package com.pipi.qa.bean;

public class User {
	
	private String env;
	
    private String mobile;
    
    private String userId;
    
    private String type;
    
    private String remark;
    
    private String ext;
    
    private long money;
    
    private long openStatus;
    
    private long guildBiz;

	public String getEnv() {
		return env;
	}

	public void setEnv(String env) {
		this.env = env;
	}

	public String getMobile() {
		return mobile;
	}

	public void setMobile(String mobile) {
		this.mobile = mobile;
	}

	public String getUserId() {
		return userId;
	}

	public void setUserId(String userId) {
		this.userId = userId;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

	public String getRemark() {
		return remark;
	}

	public void setRemark(String remark) {
		this.remark = remark;
	}

	public String getExt() {
		return ext;
	}

	public void setExt(String ext) {
		this.ext = ext;
	}

	public long getMoney() {
		return money;
	}

	public void setMoney(long money) {
		this.money = money;
	}

	public long getOpenStatus() {
		return openStatus;
	}

	public void setOpenStatus(long openStatus) {
		this.openStatus = openStatus;
	}

	public long getGuildBiz() {
		return guildBiz;
	}

	public void setGuildBiz(long guildBiz) {
		this.guildBiz = guildBiz;
	}
	

}