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

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