42 lines
629 B
Java
42 lines
629 B
Java
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;
|
|
}
|
|
}
|