55 lines
1.5 KiB
Java
55 lines
1.5 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class BMd {
|
|
|
|
@SerializedName("sortSequence")
|
|
public final int a;
|
|
|
|
@SerializedName("salesSheetFlag")
|
|
public final int c;
|
|
|
|
@SerializedName("productSalesSheet")
|
|
public final String d;
|
|
|
|
@SerializedName("productName")
|
|
public final String e;
|
|
|
|
public final String toString() {
|
|
String str = this.e;
|
|
int i = this.a;
|
|
String str2 = this.d;
|
|
int i2 = this.c;
|
|
StringBuilder sb = new StringBuilder("SubSalesSheetEntity(productName=");
|
|
sb.append(str);
|
|
sb.append(", sortSequence=");
|
|
sb.append(i);
|
|
sb.append(", productSalesSheet=");
|
|
sb.append(str2);
|
|
sb.append(", salesSheetFlag=");
|
|
sb.append(i2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.e.hashCode();
|
|
int hashCode2 = Integer.hashCode(this.a);
|
|
String str = this.d;
|
|
return (((((hashCode * 31) + hashCode2) * 31) + (str == null ? 0 : str.hashCode())) * 31) + Integer.hashCode(this.c);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof BMd)) {
|
|
return false;
|
|
}
|
|
BMd bMd = (BMd) obj;
|
|
return C14957gcv.b((Object) this.e, (Object) bMd.e) && this.a == bMd.a && C14957gcv.b((Object) this.d, (Object) bMd.d) && this.c == bMd.c;
|
|
}
|
|
}
|