100 lines
3.1 KiB
Java
100 lines
3.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import com.huawei.hms.support.feature.result.CommonConstant;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class SRK {
|
|
|
|
@SerializedName("interestRate")
|
|
public final Double a;
|
|
|
|
@SerializedName("interestAmount")
|
|
public final Double b;
|
|
|
|
@SerializedName("amount")
|
|
public final Double c;
|
|
|
|
@SerializedName("maturityDate")
|
|
public final String d;
|
|
|
|
@SerializedName("depositDate")
|
|
public final String e;
|
|
|
|
@SerializedName("number")
|
|
public final String f;
|
|
|
|
@SerializedName("netAmount")
|
|
public final Double h;
|
|
|
|
@SerializedName(CommonConstant.KEY_STATUS)
|
|
public final YTS i;
|
|
|
|
@SerializedName("tax")
|
|
public final Double j;
|
|
|
|
public final String toString() {
|
|
String str = this.f;
|
|
Double d = this.h;
|
|
Double d2 = this.c;
|
|
Double d3 = this.a;
|
|
Double d4 = this.b;
|
|
Double d5 = this.j;
|
|
String str2 = this.e;
|
|
String str3 = this.d;
|
|
YTS yts = this.i;
|
|
StringBuilder sb = new StringBuilder("SubDepositEntity(number=");
|
|
sb.append(str);
|
|
sb.append(", netAmount=");
|
|
sb.append(d);
|
|
sb.append(", amount=");
|
|
sb.append(d2);
|
|
sb.append(", interestRate=");
|
|
sb.append(d3);
|
|
sb.append(", interestAmount=");
|
|
sb.append(d4);
|
|
sb.append(", tax=");
|
|
sb.append(d5);
|
|
sb.append(", depositDate=");
|
|
sb.append(str2);
|
|
sb.append(", maturityDate=");
|
|
sb.append(str3);
|
|
sb.append(", status=");
|
|
sb.append(yts);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.f;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
Double d = this.h;
|
|
int hashCode2 = d == null ? 0 : d.hashCode();
|
|
Double d2 = this.c;
|
|
int hashCode3 = d2 == null ? 0 : d2.hashCode();
|
|
Double d3 = this.a;
|
|
int hashCode4 = d3 == null ? 0 : d3.hashCode();
|
|
Double d4 = this.b;
|
|
int hashCode5 = d4 == null ? 0 : d4.hashCode();
|
|
Double d5 = this.j;
|
|
int hashCode6 = d5 == null ? 0 : d5.hashCode();
|
|
String str2 = this.e;
|
|
int hashCode7 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.d;
|
|
int hashCode8 = str3 == null ? 0 : str3.hashCode();
|
|
YTS yts = this.i;
|
|
return (((((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + (yts != null ? yts.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof SRK)) {
|
|
return false;
|
|
}
|
|
SRK srk = (SRK) obj;
|
|
return C14957gcv.b((Object) this.f, (Object) srk.f) && C14957gcv.b(this.h, srk.h) && C14957gcv.b(this.c, srk.c) && C14957gcv.b(this.a, srk.a) && C14957gcv.b(this.b, srk.b) && C14957gcv.b(this.j, srk.j) && C14957gcv.b((Object) this.e, (Object) srk.e) && C14957gcv.b((Object) this.d, (Object) srk.d) && C14957gcv.b(this.i, srk.i);
|
|
}
|
|
}
|