66 lines
2.0 KiB
Java
66 lines
2.0 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class Hou {
|
||
|
|
||
|
@SerializedName("productTypeCode")
|
||
|
public final String a;
|
||
|
|
||
|
@SerializedName("branchCode")
|
||
|
public final String b;
|
||
|
|
||
|
@SerializedName("accountNickname")
|
||
|
public final String c;
|
||
|
|
||
|
@SerializedName("accountBranch")
|
||
|
public final String d;
|
||
|
|
||
|
@SerializedName("accountNo")
|
||
|
public final String e;
|
||
|
|
||
|
@SerializedName("sortSequence")
|
||
|
public final String f;
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.f;
|
||
|
String str2 = this.c;
|
||
|
String str3 = this.e;
|
||
|
String str4 = this.d;
|
||
|
String str5 = this.b;
|
||
|
String str6 = this.a;
|
||
|
StringBuilder sb = new StringBuilder("AccountEntity(sortSequence=");
|
||
|
sb.append(str);
|
||
|
sb.append(", accountNickname=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", accountNo=");
|
||
|
sb.append(str3);
|
||
|
sb.append(", accountBranch=");
|
||
|
sb.append(str4);
|
||
|
sb.append(", branchCode=");
|
||
|
sb.append(str5);
|
||
|
sb.append(", productTypeCode=");
|
||
|
sb.append(str6);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
int hashCode = this.f.hashCode();
|
||
|
String str = this.c;
|
||
|
return (((((((((hashCode * 31) + (str == null ? 0 : str.hashCode())) * 31) + this.e.hashCode()) * 31) + this.d.hashCode()) * 31) + this.b.hashCode()) * 31) + this.a.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof Hou)) {
|
||
|
return false;
|
||
|
}
|
||
|
Hou hou = (Hou) obj;
|
||
|
return C14957gcv.b((Object) this.f, (Object) hou.f) && C14957gcv.b((Object) this.c, (Object) hou.c) && C14957gcv.b((Object) this.e, (Object) hou.e) && C14957gcv.b((Object) this.d, (Object) hou.d) && C14957gcv.b((Object) this.b, (Object) hou.b) && C14957gcv.b((Object) this.a, (Object) hou.a);
|
||
|
}
|
||
|
}
|