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