public boolean equals()

in config/src/main/java/com/alibaba/nacos/config/server/model/ConfigHistoryInfo.java [210:224]


    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        ConfigHistoryInfo that = (ConfigHistoryInfo) o;
        return id == that.id && lastId == that.lastId && Objects.equals(dataId, that.dataId) && Objects.equals(group,
                that.group) && Objects.equals(tenant, that.tenant) && Objects.equals(appName, that.appName)
                && Objects.equals(md5, that.md5) && Objects.equals(content, that.content) && Objects.equals(srcIp,
                that.srcIp) && Objects.equals(srcUser, that.srcUser) && Objects.equals(opType, that.opType)
                && Objects.equals(createdTime, that.createdTime) && Objects.equals(lastModifiedTime,
                that.lastModifiedTime) && Objects.equals(encryptedDataKey, that.encryptedDataKey);
    }