You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
502 B

3 years ago
  1. entity Formation {
  2. nomFormation String,
  3. description String,
  4. dateDebut LocalDate,
  5. dateFin LocalDate,
  6. idOrganismeFormation Long
  7. }
  8. entity Skill {
  9. idFormation Long,
  10. nom String
  11. }
  12. entity PersonnelFormation {
  13. idFormation Long,
  14. idPersonnel Long
  15. }
  16. relationship ManyToMany {
  17. Formation to Skill
  18. }
  19. relationship OneToMany {
  20. Formation{idPersonnel} to PersonnelFormation
  21. }
  22. service all with serviceClass
  23. microservice * with FormationContinue
  24. paginate * with pagination
  25. dto * with mapstruct