Commit 4711f542 by Joel Florentin

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

parents 393b172f b5b09531
package com.roshka.modelo;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name="tecnologia")
public class Tecnologia {
@GeneratedValue(strategy = GenerationType.AUTO)
@Id
@Column(name="id")
private long id;
@Column(name="nombre")
private String nombre;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getNombre() {
return nombre;
}
public void setNombre(String nombre) {
this.nombre = nombre;
}
}
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