public boolean equals()

in shenyu-admin/src/main/java/org/apache/shenyu/admin/model/dto/AppAuthDTO.java [286:305]


    public boolean equals(final Object o) {
        if (this == o) {
            return true;
        }
        if (!(o instanceof AppAuthDTO)) {
            return false;
        }
        AppAuthDTO that = (AppAuthDTO) o;
        return Objects.equals(id, that.id)
                && Objects.equals(appKey, that.appKey)
                && Objects.equals(appSecret, that.appSecret)
                && Objects.equals(userId, that.userId)
                && Objects.equals(phone, that.phone)
                && Objects.equals(extInfo, that.extInfo)
                && Objects.equals(open, that.open)
                && Objects.equals(enabled, that.enabled)
                && Objects.equals(authParamList, that.authParamList)
                && Objects.equals(authPathList, that.authPathList)
                && Objects.equals(namespaceId, that.namespaceId);
    }