what-the-bank/sources/o/QiA.java

86 lines
2.8 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public final class QiA {
public final String a;
public final String b;
public final double c;
public final String d;
public final String e;
public final double f;
private final int h;
private final int i;
public final double j;
public QiA(int i, String str, String str2, String str3, double d, double d2, double d3, int i2, String str4) {
C14957gcv.e(str, "");
C14957gcv.e(str3, "");
this.h = i;
this.e = str;
this.d = str2;
this.a = str3;
this.f = d;
this.j = d2;
this.c = d3;
this.i = i2;
this.b = str4;
}
public final String toString() {
int i = this.h;
String str = this.e;
String str2 = this.d;
String str3 = this.a;
double d = this.f;
double d2 = this.j;
double d3 = this.c;
int i2 = this.i;
String str4 = this.b;
StringBuilder sb = new StringBuilder("Agent(id=");
sb.append(i);
sb.append(", agentCode=");
sb.append(str);
sb.append(", agentLogo=");
sb.append(str2);
sb.append(", agentName=");
sb.append(str3);
sb.append(", minAmount=");
sb.append(d);
sb.append(", maxAmount=");
sb.append(d2);
sb.append(", limitPerDay=");
sb.append(d3);
sb.append(", sortOrder=");
sb.append(i2);
sb.append(", divisor=");
sb.append(str4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = Integer.hashCode(this.h);
int hashCode2 = this.e.hashCode();
String str = this.d;
int hashCode3 = str == null ? 0 : str.hashCode();
int hashCode4 = this.a.hashCode();
int hashCode5 = Double.hashCode(this.f);
int hashCode6 = Double.hashCode(this.j);
int hashCode7 = Double.hashCode(this.c);
int hashCode8 = Integer.hashCode(this.i);
String str2 = this.b;
return (((((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + (str2 != null ? str2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof QiA)) {
return false;
}
QiA qiA = (QiA) obj;
return this.h == qiA.h && C14957gcv.b((Object) this.e, (Object) qiA.e) && C14957gcv.b((Object) this.d, (Object) qiA.d) && C14957gcv.b((Object) this.a, (Object) qiA.a) && Double.compare(this.f, qiA.f) == 0 && Double.compare(this.j, qiA.j) == 0 && Double.compare(this.c, qiA.c) == 0 && this.i == qiA.i && C14957gcv.b((Object) this.b, (Object) qiA.b);
}
}