in src/main/java/com/alibaba/yjopenapi/client/model/InteractiveJoinPartyForms.java [120:133]
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
InteractiveJoinPartyForms interactiveJoinPartyForms = (InteractiveJoinPartyForms) o;
return Objects.equals(this.partyId, interactiveJoinPartyForms.partyId) &&
Objects.equals(this.userId, interactiveJoinPartyForms.userId) &&
Objects.equals(this.seatId, interactiveJoinPartyForms.seatId) &&
Objects.equals(this.controlId, interactiveJoinPartyForms.controlId) &&
Objects.equals(this.reConnect, interactiveJoinPartyForms.reConnect);
}