Commit f14e47ae by Javier Ferreira

actualizacion

parent e7c22479
...@@ -5,6 +5,8 @@ import javax.persistence.Entity; ...@@ -5,6 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.GeneratedValue; import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType; import javax.persistence.GenerationType;
import javax.persistence.Id; import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table; import javax.persistence.Table;
@Entity @Entity
@Table(name="postulante_tecnologia") @Table(name="postulante_tecnologia")
...@@ -15,10 +17,14 @@ public class PostulanteTecnologia { ...@@ -15,10 +17,14 @@ public class PostulanteTecnologia {
private long id ; private long id ;
@Column(name="nivel") @Column(name="nivel")
private Long nivel; private Long nivel;
@Column(name="tecnologias") @Column(name="tecnologia")
private long tecnologias; @ManyToOne()
@JoinColumn
private Tecnologia tecnologia;
@Column(name="postulante") @Column(name="postulante")
private long postulante; @ManyToOne()
@JoinColumn
private Postulante postulante;
public long getId() { public long getId() {
return id; return id;
} }
...@@ -31,16 +37,16 @@ public Long getNivel() { ...@@ -31,16 +37,16 @@ public Long getNivel() {
public void setNivel(Long nivel) { public void setNivel(Long nivel) {
this.nivel = nivel; this.nivel = nivel;
} }
public long getTecnologias() { public Tecnologia getTecnologia() {
return tecnologias; return tecnologia;
} }
public void setTecnologias(long tecnologias) { public void setTecnologia(Tecnologia tecnologia) {
this.tecnologias = tecnologias; this.tecnologia = tecnologia;
} }
public long getPostulante() { public Postulante getPostulante() {
return postulante; return postulante;
} }
public void setPostulante(long postulante) { public void setPostulante(Postulante postulante) {
this.postulante = postulante; this.postulante = postulante;
} }
...@@ -49,4 +55,6 @@ public void setPostulante(long postulante) { ...@@ -49,4 +55,6 @@ public void setPostulante(long postulante) {
} }
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 to comment