49 lines
1.1 KiB
Java
49 lines
1.1 KiB
Java
package com.ubt.jimu.user.model;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class EmailCheckMsg implements Serializable {
|
|
private String email;
|
|
private boolean emailChecked;
|
|
private String msg;
|
|
private String openId;
|
|
private boolean thirdRegister;
|
|
|
|
public String getEmail() {
|
|
return this.email;
|
|
}
|
|
|
|
public String getOpenId() {
|
|
return this.openId;
|
|
}
|
|
|
|
public boolean isEmailChecked() {
|
|
return this.emailChecked;
|
|
}
|
|
|
|
public boolean isThirdRegister() {
|
|
return this.thirdRegister;
|
|
}
|
|
|
|
public void setEmail(String str) {
|
|
this.email = str;
|
|
}
|
|
|
|
public void setEmailChecked(boolean z) {
|
|
this.emailChecked = z;
|
|
}
|
|
|
|
public void setOpenId(String str) {
|
|
this.openId = str;
|
|
}
|
|
|
|
public void setThirdRegister(boolean z) {
|
|
this.thirdRegister = z;
|
|
}
|
|
|
|
public String toString() {
|
|
return "email:" + this.email + " emailChecked:" + this.emailChecked + " thirdRegister:" + this.thirdRegister + " openId:" + this.openId;
|
|
}
|
|
}
|