Commit cb885239 by Rubén Ramírez

fix: [Recurso]: Corregidas unas etiquetas en un atributo

parent 7d3ab12b
...@@ -44,6 +44,7 @@ public class Recurso { ...@@ -44,6 +44,7 @@ public class Recurso {
@Column(name = "genero") @Column(name = "genero")
private Set<Genero> generos = new HashSet<>(); private Set<Genero> generos = new HashSet<>();
// Relación con Capitulo (Un recurso tiene varios capítulos) // Relación con Capitulo (Un recurso tiene varios capítulos)
@OneToMany(mappedBy = "recurso") @OneToMany(mappedBy = "recurso")
private List<Capitulo> capitulos = new ArrayList<>(); private List<Capitulo> capitulos = new ArrayList<>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment