68 lines
2.0 KiB
Java
68 lines
2.0 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
import java.util.List;
|
||
|
import org.simpleframework.xml.strategy.Name;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class wtp {
|
||
|
|
||
|
@SerializedName("sortSequence")
|
||
|
public final Integer a;
|
||
|
|
||
|
@SerializedName("descriptionTH")
|
||
|
public final String b;
|
||
|
|
||
|
@SerializedName(Name.MARK)
|
||
|
public final String c;
|
||
|
|
||
|
@SerializedName("code")
|
||
|
public final String d;
|
||
|
|
||
|
@SerializedName("descriptionEN")
|
||
|
public final String e;
|
||
|
|
||
|
@SerializedName("subCategory")
|
||
|
public final List<jYC> h;
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.c;
|
||
|
Integer num = this.a;
|
||
|
String str2 = this.d;
|
||
|
String str3 = this.b;
|
||
|
String str4 = this.e;
|
||
|
List<jYC> list = this.h;
|
||
|
StringBuilder sb = new StringBuilder("CategoryInfoEntity(id=");
|
||
|
sb.append(str);
|
||
|
sb.append(", sortSequence=");
|
||
|
sb.append(num);
|
||
|
sb.append(", code=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", descriptionTH=");
|
||
|
sb.append(str3);
|
||
|
sb.append(", descriptionEN=");
|
||
|
sb.append(str4);
|
||
|
sb.append(", subCategory=");
|
||
|
sb.append(list);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
int hashCode = this.c.hashCode();
|
||
|
Integer num = this.a;
|
||
|
return (((((((((hashCode * 31) + (num == null ? 0 : num.hashCode())) * 31) + this.d.hashCode()) * 31) + this.b.hashCode()) * 31) + this.e.hashCode()) * 31) + this.h.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof wtp)) {
|
||
|
return false;
|
||
|
}
|
||
|
wtp wtpVar = (wtp) obj;
|
||
|
return C14957gcv.b((Object) this.c, (Object) wtpVar.c) && C14957gcv.b(this.a, wtpVar.a) && C14957gcv.b((Object) this.d, (Object) wtpVar.d) && C14957gcv.b((Object) this.b, (Object) wtpVar.b) && C14957gcv.b((Object) this.e, (Object) wtpVar.e) && C14957gcv.b(this.h, wtpVar.h);
|
||
|
}
|
||
|
}
|