Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Entity
- @Table(name = "core_project_project_call_submission_ext_inst_participation")
- public class ProjectCallSubmissionExternalInstitutionParticipation {
- @Id
- private Long id;
- // The project call submission in which the institution participates
- @ManyToOne
- private ProjectCallSubmission projectCallSubmission;
- // The type of participation of the institution
- @ManyToOne
- private ProjectResearcherParticipationType participationType;
- // The participating external institution
- @DbJsonB
- @JsonProperty(value = "generic_institution")
- @Column(name = "generic_institution")
- private GenericInstitution genericInstitution;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement