in alpha/alpha-spec-tcc-db/src/main/java/org/apache/servicecomb/pack/alpha/spec/tcc/db/jpa/GlobalTxEvent.java [101:116]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
GlobalTxEvent that = (GlobalTxEvent) o;
return Objects.equals(globalTxId, that.globalTxId) &&
Objects.equals(localTxId, that.localTxId) &&
Objects.equals(parentTxId, that.parentTxId) &&
Objects.equals(serviceName, that.serviceName) &&
Objects.equals(instanceId, that.instanceId) &&
Objects.equals(txType, that.txType) &&
Objects.equals(status, that.status);
}