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

com.model.test.company.Contractor Maven / Gradle / Ivy

package com.model.test.company;

import com.github.restup.annotations.field.Relationship;

public class Contractor extends Person {

    @Relationship(resource = Company.class)
    private Long companyId;

    public Long getCompanyId() {
        return companyId;
    }

    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy