Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
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;
}
}

View File

@@ -0,0 +1,35 @@
package com.ubt.jimu.user.model;
import android.text.TextUtils;
import java.util.Map;
/* loaded from: classes2.dex */
public class RefHolder {
private static Map<String, String> a;
private static String b;
public static void a(Map<String, String> map) {
a = map;
}
public static Map<String, String> b() {
return a;
}
public static String c() {
return b;
}
public static boolean d() {
return !TextUtils.isEmpty(b);
}
public static void a(String str) {
b = str;
}
public static void a() {
a = null;
b = null;
}
}

View File

@@ -0,0 +1,25 @@
package com.ubt.jimu.user.model;
/* loaded from: classes2.dex */
public class SpUserHolder {
private static long a = -1;
private static String b;
public static void a(long j, String str) {
a = j;
b = str;
}
public static long b() {
return a;
}
public static String c() {
return b;
}
public static void a() {
a = -1L;
b = null;
}
}

View File

@@ -0,0 +1,41 @@
package com.ubt.jimu.user.model;
/* loaded from: classes2.dex */
public class TeachModel {
private String a;
private String b;
private int c;
private String d;
public String a() {
return this.a;
}
public void b(String str) {
this.b = str;
}
public void c(String str) {
this.d = str;
}
public String d() {
return this.d;
}
public void a(String str) {
this.a = str;
}
public int b() {
return this.c;
}
public String c() {
return this.b;
}
public void a(int i) {
this.c = i;
}
}