Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/EjercitarJPA/src/model/Concepto.java
blob: ade496b350ec5c355649c819495bf5f1d4b9a672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package model;

import java.io.Serializable;
import javax.persistence.*;


/**
 * The persistent class for the concepto database table.
 * 
 */
@Entity
public class Concepto implements Serializable {
	private static final long serialVersionUID = 1L;

	@Id
	private Integer idconcepto;

	private String descripcion;

	private String nombre;

	public Concepto() {
	}

	public Integer getIdconcepto() {
		return this.idconcepto;
	}

	public void setIdconcepto(Integer idconcepto) {
		this.idconcepto = idconcepto;
	}

	public String getDescripcion() {
		return this.descripcion;
	}

	public void setDescripcion(String descripcion) {
		this.descripcion = descripcion;
	}

	public String getNombre() {
		return this.nombre;
	}

	public void setNombre(String nombre) {
		this.nombre = nombre;
	}

}