PostulanteTecnologia.java 1.15 KB
Newer Older
1 2
package com.roshka.modelo;

3 4 5 6 7
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
Javier Ferreira committed
8 9
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
10 11 12 13
import javax.persistence.Table;
@Entity 
@Table(name="postulante_tecnologia")

14
public class PostulanteTecnologia {
15 16
   @Id 
   @GeneratedValue(strategy = GenerationType.AUTO)
17
   @Column(name="id")
18 19 20
   private long id ;
   @Column(name="nivel")
   private Long nivel;
Javier Ferreira committed
21 22 23 24 25 26
    @ManyToOne()
    @JoinColumn
   private Tecnologia tecnologia;
   @ManyToOne()
   @JoinColumn
   private Postulante postulante;
27 28 29 30 31 32 33 34 35 36 37 38
public long getId() {
    return id;
}
public void setId(long id) {
    this.id = id;
}
public Long getNivel() {
    return nivel;
}
public void setNivel(Long nivel) {
    this.nivel = nivel;
}
Javier Ferreira committed
39 40
public Tecnologia getTecnologia() {
    return tecnologia;
41
}
Javier Ferreira committed
42 43
public void setTecnologia(Tecnologia tecnologia) {
    this.tecnologia = tecnologia;
44
}
Javier Ferreira committed
45
public Postulante getPostulante() {
46 47
    return postulante;
}
Javier Ferreira committed
48
public void setPostulante(Postulante postulante) {
49 50 51 52 53 54 55 56
    this.postulante = postulante;
}






Javier Ferreira committed
57 58


59
}