Advertisement
IronJoo

Untitled

Feb 14th, 2025
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.67 KB | None | 0 0
  1. @Entity
  2. @Table(name = "core_project_project_call_submission_ext_inst_participation")
  3. public class ProjectCallSubmissionExternalInstitutionParticipation {
  4.  
  5.     @Id
  6.     private Long id;
  7.  
  8.     // The project call submission in which the institution participates
  9.     @ManyToOne
  10.     private ProjectCallSubmission projectCallSubmission;
  11.  
  12.     // The type of participation of the institution
  13.     @ManyToOne
  14.     private ProjectResearcherParticipationType participationType;
  15.  
  16.     // The participating external institution
  17.     @DbJsonB
  18.     @JsonProperty(value = "generic_institution")
  19.     @Column(name = "generic_institution")
  20.     private GenericInstitution genericInstitution;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement