manager/general/src/main/java/org/apache/doris/stack/entity/ActivityEntity.java [130:141]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Long getClusterId() {
        if (clusterId == null) {
            return 0L;
        }
        return clusterId;
    }

    public void setClusterId(Long clusterId) {
        if (clusterId == null) {
            this.clusterId = 0L;
        } else {
            this.clusterId = clusterId;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



manager/general/src/main/java/org/apache/doris/stack/entity/CoreUserEntity.java [251:262]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Long getClusterId() {
        if (clusterId == null) {
            return 0L;
        }
        return clusterId;
    }

    public void setClusterId(Long clusterId) {
        if (clusterId == null) {
            this.clusterId = 0L;
        } else {
            this.clusterId = clusterId;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



