Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Entity
- @Table(name = "core_project_project_call_submission_internal_user_participation")
- public class ProjectCallSubmissionInternalUserParticipation extends Model {
- @Id
- private Long id;
- // The participating user
- @ManyToOne
- private User user;
- // The project call submission in which the user participates
- @ManyToOne
- private ProjectCallSubmission projectCallSubmission;
- // The type of participation of the user
- @ManyToOne
- private ProjectResearcherParticipationType participationType;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement