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

109 lines
3.3 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.math.BigDecimal;
/* loaded from: classes3.dex */
public class bTP {
@SerializedName("interestRate")
public BigDecimal a;
@SerializedName("endDate")
public String b;
@SerializedName("nextPaymentAmount")
public BigDecimal c;
@SerializedName("nextPaymentDate")
public String d;
@SerializedName("currency")
public String e;
@SerializedName("startDate")
public String f;
@SerializedName("sortSequence")
public int g;
@SerializedName("noteNo")
public String h;
@SerializedName("pnPrincipal")
public BigDecimal i;
@SerializedName("paidOffFlag")
public String j;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
bTP btp = (bTP) obj;
if (this.g != btp.g) {
return false;
}
String str = this.h;
if (str == null ? btp.h != null : !str.equals(btp.h)) {
return false;
}
String str2 = this.b;
if (str2 == null ? btp.b != null : !str2.equals(btp.b)) {
return false;
}
BigDecimal bigDecimal = this.i;
if (bigDecimal == null ? btp.i != null : !bigDecimal.equals(btp.i)) {
return false;
}
BigDecimal bigDecimal2 = this.c;
if (bigDecimal2 == null ? btp.c != null : !bigDecimal2.equals(btp.c)) {
return false;
}
String str3 = this.d;
if (str3 == null ? btp.d != null : !str3.equals(btp.d)) {
return false;
}
BigDecimal bigDecimal3 = this.a;
if (bigDecimal3 == null ? btp.a != null : !bigDecimal3.equals(btp.a)) {
return false;
}
String str4 = this.f;
if (str4 == null ? btp.f != null : !str4.equals(btp.f)) {
return false;
}
String str5 = this.e;
if (str5 == null ? btp.e != null : !str5.equals(btp.e)) {
return false;
}
String str6 = this.j;
String str7 = btp.j;
return str6 != null ? str6.equals(str7) : str7 == null;
}
public int hashCode() {
String str = this.h;
int hashCode = str != null ? str.hashCode() : 0;
int i = this.g;
String str2 = this.b;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
BigDecimal bigDecimal = this.i;
int hashCode3 = bigDecimal != null ? bigDecimal.hashCode() : 0;
BigDecimal bigDecimal2 = this.c;
int hashCode4 = bigDecimal2 != null ? bigDecimal2.hashCode() : 0;
String str3 = this.d;
int hashCode5 = str3 != null ? str3.hashCode() : 0;
BigDecimal bigDecimal3 = this.a;
int hashCode6 = bigDecimal3 != null ? bigDecimal3.hashCode() : 0;
String str4 = this.f;
int hashCode7 = str4 != null ? str4.hashCode() : 0;
String str5 = this.e;
int hashCode8 = str5 != null ? str5.hashCode() : 0;
String str6 = this.j;
return (((((((((((((((((hashCode * 31) + i) * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + (str6 != null ? str6.hashCode() : 0);
}
}