
studio.wetrack.accountService.domain.ChangePass Maven / Gradle / Ivy
package studio.wetrack.accountService.domain;
/**
* Created by zhanghong on 16/7/18.
*/
public class ChangePass{
String id;
String oldPass;
String newPass;
Type type;
public Type getType() {
return type;
}
public void setType(Type type) {
this.type = type;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getOldPass() {
return oldPass;
}
public void setOldPass(String oldPass) {
this.oldPass = oldPass;
}
public String getNewPass() {
return newPass;
}
public void setNewPass(String newPass) {
this.newPass = newPass;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy