Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/EjercitarJPA/src/model/Sesion.java
blob: 16145df4ebc9a1952e02c086394d624b5591c156 (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
50
51
52
package model;

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


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

	@Id
	@Column(name="\"idSesion\"")
	private Integer idSesion;

	@Column(name="\"idAlumno\"")
	private Integer idAlumno;

	@Column(name="\"idProfesor\"")
	private Integer idProfesor;

	public Sesion() {
	}

	public Integer getIdSesion() {
		return this.idSesion;
	}

	public void setIdSesion(Integer idSesion) {
		this.idSesion = idSesion;
	}

	public Integer getIdAlumno() {
		return this.idAlumno;
	}

	public void setIdAlumno(Integer idAlumno) {
		this.idAlumno = idAlumno;
	}

	public Integer getIdProfesor() {
		return this.idProfesor;
	}

	public void setIdProfesor(Integer idProfesor) {
		this.idProfesor = idProfesor;
	}

}