Ver pruebas médicas casi funcionando al completo: falta cargar imagen real

Crear prueba medica: formulario comenzado.
This commit is contained in:
Roberto Orden Erena
2019-12-28 22:59:55 +01:00
parent be08aaff6e
commit 2e0cc8bf36
8 changed files with 619 additions and 139 deletions

View File

@@ -1,6 +1,7 @@
package jpa;
import java.io.Serializable;
import java.time.LocalTime;
import java.util.Date;
import javax.persistence.Column;
@@ -36,7 +37,7 @@ public class MedicalTestJPA implements Serializable {
@GeneratedValue(strategy = GenerationType.IDENTITY)
private int id;
private Date date;
private long time;
private LocalTime time;
private String observations;
private String highresimage;
@Enumerated(EnumType.STRING)
@@ -56,7 +57,7 @@ public class MedicalTestJPA implements Serializable {
super();
}
public MedicalTestJPA(int id, Date date, long time, String observations, String highresimage, MedicalTestType type, PatientJPA patient, SpecialistDoctorJPA specialistDoctor) {
public MedicalTestJPA(int id, Date date, LocalTime time, String observations, String highresimage, MedicalTestType type, PatientJPA patient, SpecialistDoctorJPA specialistDoctor) {
this.id = id;
this.date = date;
this.time = time;
@@ -83,11 +84,11 @@ public class MedicalTestJPA implements Serializable {
this.date = date;
}
public long getTime() {
public LocalTime getTime() {
return time;
}
public void setTime(long time) {
public void setTime(LocalTime time) {
this.time = time;
}