entity Formation { nomFormation String, description String, dateDebut LocalDate, dateFin LocalDate, idOrganismeFormation Long } entity Skill { idFormation Long, nom String } entity PersonnelFormation { idFormation Long, idPersonnel Long } relationship ManyToMany { Formation to Skill } relationship OneToMany { Formation{idPersonnel} to PersonnelFormation } service all with serviceClass microservice * with FormationContinue paginate * with pagination dto * with mapstruct