package org.xmx0632.deliciousfruit.api.v1.bo; public class RegisterRequest { private String email; private String phone; private String pwd; private String verifycode; public RegisterRequest() { } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public String getPwd() { return pwd; } public void setPwd(String pwd) { this.pwd = pwd; } public String getVerifycode() { return verifycode; } public void setVerifycode(String verifycode) { this.verifycode = verifycode; } @Override public String toString() { return "RegisterRequest [email=" + email + ", phone=" + phone + ", pwd=" + pwd + ", verifycode=" + verifycode + "]"; } public RegisterRequest(String email, String phone, String pwd, String verifycode) { super(); this.email = email; this.phone = phone; this.pwd = pwd; this.verifycode = verifycode; } }