Commit b1fff48d by Joel Florentin

Merge branch 'nelson' of https://phoebe.roshka.com/gitlab/hshah/TalentoHumano into joel-001

parents 4711f542 4e3dac4e
package com.roshka.modelo;
import java.sql.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.*;
@Entity
@Table(name = "experiencia")
public class Experiencia {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private long id;
@Column(name = "institucion")
private String institucion;
@Column(name = "fecha_desde")
private Date fechaDesde;
@Column(name = "fecha_hasta")
private Date fechaHasta;
@Column(name = "referencias")
private String referencias;
@Column(name = "cargo")
private String cargo;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getInstitucion() {
return institucion;
}
public void setInstitucion(String institucion) {
this.institucion = institucion;
}
public Date getFechaDesde() {
return fechaDesde;
}
public void setFechaDesde(Date fechaDesde) {
this.fechaDesde = fechaDesde;
}
public Date getFechaHasta() {
return fechaHasta;
}
public void setFechaHasta(Date fechaHasta) {
this.fechaHasta = fechaHasta;
}
public String getReferencias() {
return referencias;
}
public void setReferencias(String referencias) {
this.referencias = referencias;
}
public String getCargo() {
return cargo;
}
public void setCargo(String cargo) {
this.cargo = cargo;
}
}
package com.roshka.modelo;
import javax.persistence.*;
@Entity
@Table(name = "experiencia_reconocimiento")
public class ExperienciaReconocimiento {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private long id;
@Column(name ="experiencia_id")
private long experienciaId;
@Column(name = "tecnologia_id")
private long tecnologiaId;
@Column(name = "nivel")
private long nivel;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public long getExperienciaId() {
return experienciaId;
}
public void setExperienciaId(long experienciaId) {
this.experienciaId = experienciaId;
}
public long getTecnologiaId() {
return tecnologiaId;
}
public void setTecnologiaId(long tecnologiaId) {
this.tecnologiaId = tecnologiaId;
}
public long getNivel() {
return nivel;
}
public void setNivel(long nivel) {
this.nivel = nivel;
}
}
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