in shenyu-admin/src/main/java/org/apache/shenyu/admin/model/vo/DiscoveryVO.java [267:282]
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (Objects.isNull(o) || getClass() != o.getClass()) {
return false;
}
DiscoveryVO that = (DiscoveryVO) o;
return Objects.equals(id, that.id) && Objects.equals(name, that.name) && Objects.equals(type, that.type)
&& Objects.equals(level, that.level) && Objects.equals(serverList, that.serverList)
&& Objects.equals(pluginName, that.pluginName) && Objects.equals(props, that.props)
&& Objects.equals(discoveryHandler, that.discoveryHandler)
&& Objects.equals(discoveryRel, that.discoveryRel)
&& Objects.equals(namespaceId, that.namespaceId);
}