public boolean equals()

in shenyu-admin/src/main/java/org/apache/shenyu/admin/model/vo/MetaDataVO.java [334:355]


    public boolean equals(final Object o) {
        if (this == o) {
            return true;
        }
        if (!(o instanceof MetaDataVO)) {
            return false;
        }
        MetaDataVO that = (MetaDataVO) o;
        return Objects.equals(appName, that.appName)
                && Objects.equals(path, that.path)
                && Objects.equals(pathDesc, that.pathDesc)
                && Objects.equals(rpcType, that.rpcType)
                && Objects.equals(serviceName, that.serviceName)
                && Objects.equals(methodName, that.methodName)
                && Objects.equals(parameterTypes, that.parameterTypes)
                && Objects.equals(rpcExt, that.rpcExt)
                && Objects.equals(id, that.id)
                && Objects.equals(dateCreated, that.dateCreated)
                && Objects.equals(dateUpdated, that.dateUpdated)
                && Objects.equals(enabled, that.enabled)
                && Objects.equals(namespaceId, that.namespaceId);
    }