You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
820 B
Java
44 lines
820 B
Java
|
1 month ago
|
package com.service.ingresantes.entity;
|
||
|
|
|
||
|
|
import jakarta.persistence.*;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@Entity
|
||
|
|
@Table(name = "resultado_examen")
|
||
|
|
public class ResultadoExamen {
|
||
|
|
|
||
|
|
@Id
|
||
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||
|
|
private Long id;
|
||
|
|
|
||
|
|
// RELACION CON INSCRIPCION
|
||
|
|
@OneToOne
|
||
|
|
@JoinColumn(name = "inscripcion_id", nullable = false)
|
||
|
|
private Inscripcion inscripcion;
|
||
|
|
|
||
|
|
private Double puntaje;
|
||
|
|
|
||
|
|
private Boolean apto;
|
||
|
|
|
||
|
|
private String obs;
|
||
|
|
|
||
|
|
@Column(name = "id_examen")
|
||
|
|
private String idExamen;
|
||
|
|
|
||
|
|
private String litho;
|
||
|
|
|
||
|
|
@Column(name = "num_lectura")
|
||
|
|
private String numLectura;
|
||
|
|
|
||
|
|
private String tipo;
|
||
|
|
|
||
|
|
private String calificar;
|
||
|
|
|
||
|
|
private String aula;
|
||
|
|
|
||
|
|
@Column(columnDefinition = "TEXT")
|
||
|
|
private String respuestas;
|
||
|
|
|
||
|
|
private Integer puesto;
|
||
|
|
}
|