
studio.wetrack.accountService.domain.ResetPass Maven / Gradle / Ivy
package studio.wetrack.accountService.domain;
/**
* Created by zhanghong on 16/7/18.
*/
public class ResetPass{
String phone;
String email;
String verification;
String newPass;
Type type;
public Type getType() {
return type;
}
public void setType(Type type) {
this.type = type;
}
public String getNewPass() {
return newPass;
}
public void setNewPass(String newPass) {
this.newPass = newPass;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getVerification() {
return verification;
}
public void setVerification(String verification) {
this.verification = verification;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy