58 lines
1.8 KiB
Java
58 lines
1.8 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Gig {
|
|
|
|
@SerializedName("allBasicRemarkReplace")
|
|
public final String a;
|
|
|
|
@SerializedName("virtualBasicRemarkReplace")
|
|
public final String b;
|
|
|
|
@SerializedName("virtualBasicRemarkNew")
|
|
public final String c;
|
|
|
|
@SerializedName("allBasicRemarkNew")
|
|
public final String d;
|
|
|
|
@SerializedName("physicalBasicRemarkNew")
|
|
public final String e;
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
String str2 = this.c;
|
|
String str3 = this.e;
|
|
String str4 = this.a;
|
|
String str5 = this.b;
|
|
StringBuilder sb = new StringBuilder("BasicAccountRemarkEntity(allBasicRemarkNew=");
|
|
sb.append(str);
|
|
sb.append(", virtualBasicRemarkNew=");
|
|
sb.append(str2);
|
|
sb.append(", physicalBasicRemarkNew=");
|
|
sb.append(str3);
|
|
sb.append(", allBasicRemarkReplace=");
|
|
sb.append(str4);
|
|
sb.append(", virtualBasicRemarkReplace=");
|
|
sb.append(str5);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((((((this.d.hashCode() * 31) + this.c.hashCode()) * 31) + this.e.hashCode()) * 31) + this.a.hashCode()) * 31) + this.b.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof Gig)) {
|
|
return false;
|
|
}
|
|
Gig gig = (Gig) obj;
|
|
return C14957gcv.b((Object) this.d, (Object) gig.d) && C14957gcv.b((Object) this.c, (Object) gig.c) && C14957gcv.b((Object) this.e, (Object) gig.e) && C14957gcv.b((Object) this.a, (Object) gig.a) && C14957gcv.b((Object) this.b, (Object) gig.b);
|
|
}
|
|
}
|