Advertisement
IronJoo

Untitled

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