47 lines
1.1 KiB
Java
47 lines
1.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class Pnu {
|
|
|
|
@SerializedName("sortSequence")
|
|
public int b;
|
|
|
|
@SerializedName("loanTypeEN")
|
|
public String c;
|
|
|
|
@SerializedName("loanTypeTH")
|
|
public String e;
|
|
|
|
public boolean equals(Object obj) {
|
|
String str;
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof Pnu)) {
|
|
return false;
|
|
}
|
|
Pnu pnu = (Pnu) obj;
|
|
if (this.b == pnu.b && ((str = this.e) == null ? pnu.e == null : str.equals(pnu.e))) {
|
|
String str2 = this.c;
|
|
if (str2 != null) {
|
|
if (str2.equals(pnu.c)) {
|
|
return true;
|
|
}
|
|
} else if (pnu.c == null) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public int hashCode() {
|
|
int i = this.b;
|
|
String str = this.e;
|
|
int hashCode = str != null ? str.hashCode() : 0;
|
|
String str2 = this.c;
|
|
return (((i * 31) + hashCode) * 31) + (str2 != null ? str2.hashCode() : 0);
|
|
}
|
|
}
|