package com.geo.smallcredit.vo; public class RegisterBean { private int code; private String token; private String phone; private String info; public RegisterBean(int code, String token, String phone, String info) { super(); this.code = code; this.token = token; this.phone = phone; this.info = info; } public RegisterBean() { super(); } public int getCode() { return code; } public void setCode(int code) { this.code = code; } public String getToken() { return token; } public void setToken(String token) { this.token = token; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public String getInfo() { return info; } public void setInfo(String info) { this.info = info; } }