All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.databand.schema.NodeRelationInfo Maven / Gradle / Ivy

There is a newer version: 1.0.26.1
Show newest version
package ai.databand.schema;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class NodeRelationInfo {

    private Integer id;
    private Integer downstreamTrId;
    private Integer upstreamTrId;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public Integer getDownstreamTrId() {
        return downstreamTrId;
    }

    public void setDownstreamTrId(Integer downstreamTrId) {
        this.downstreamTrId = downstreamTrId;
    }

    public Integer getUpstreamTrId() {
        return upstreamTrId;
    }

    public void setUpstreamTrId(Integer upstreamTrId) {
        this.upstreamTrId = upstreamTrId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy