- Creado Question transferObject
-- Se le ha añadido la relación con FamilyDoctor inexistente en el diseño inicial -- Tiene integrado en formato String la response en lugar de un objeto (tabla en BBDD) - Modificado MedicalTest transferObject -- Se le ha creado el tipo de dato de prueba médica (en lugar de un entero sin más sentido en BL) - Actualizado el diseño de BBDD -- Con las restricciones/características anteriormente comentadas -- Todas las tablas tienen una PK como INT AI, excepto administrator - Se actualiza la interfaz para Remoto y el EJB
This commit is contained in:
@@ -14,17 +14,22 @@ import javax.xml.bind.annotation.XmlRootElement;
|
||||
public class MedicalTestTO implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
|
||||
private int id;
|
||||
private Date date;
|
||||
private long time;
|
||||
private String observations;
|
||||
private String highresimage;
|
||||
private int type;
|
||||
private MedicalTestType type;
|
||||
private PatientTO patient;
|
||||
private SpecialistDoctorTO specialistDoctor;
|
||||
|
||||
public static enum MedicalTestType {
|
||||
BLOD_TEST, MAGNETIC_RESONANCE, TAC
|
||||
}
|
||||
|
||||
public MedicalTestTO(int id, Date date, int time, String observations, String highresimage, int type, PatientTO patiend, SpecialistDoctorTO specialistDoctor) {
|
||||
public MedicalTestTO(int id, Date date, int time, String observations, String highresimage, MedicalTestType type,
|
||||
PatientTO patiend, SpecialistDoctorTO specialistDoctor) {
|
||||
this.setId(id);
|
||||
this.setDate(date);
|
||||
this.setTime(time);
|
||||
@@ -33,89 +38,70 @@ public class MedicalTestTO implements Serializable {
|
||||
this.setType(type);
|
||||
this.setPatient(patiend);
|
||||
this.setSpecialistDoctor(specialistDoctor);
|
||||
|
||||
}
|
||||
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
|
||||
public Date getDate() {
|
||||
return date;
|
||||
}
|
||||
|
||||
|
||||
public void setDate(Date date) {
|
||||
this.date = date;
|
||||
}
|
||||
|
||||
|
||||
public long getTime() {
|
||||
return time;
|
||||
}
|
||||
|
||||
|
||||
public void setTime(long time) {
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
|
||||
public String getObservations() {
|
||||
return observations;
|
||||
}
|
||||
|
||||
|
||||
public void setObservations(String observations) {
|
||||
this.observations = observations;
|
||||
}
|
||||
|
||||
|
||||
public String getHighresimage() {
|
||||
return highresimage;
|
||||
}
|
||||
|
||||
|
||||
public void setHighresimage(String highresimage) {
|
||||
this.highresimage = highresimage;
|
||||
}
|
||||
|
||||
|
||||
public int getType() {
|
||||
public MedicalTestType getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
|
||||
public void setType(int type) {
|
||||
public void setType(MedicalTestType type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
|
||||
public PatientTO getPatient() {
|
||||
return patient;
|
||||
}
|
||||
|
||||
|
||||
public void setPatient(PatientTO patient) {
|
||||
this.patient = patient;
|
||||
}
|
||||
|
||||
|
||||
public SpecialistDoctorTO getSpecialistDoctor() {
|
||||
return specialistDoctor;
|
||||
}
|
||||
|
||||
|
||||
public void setSpecialistDoctor(SpecialistDoctorTO specialistDoctor) {
|
||||
this.specialistDoctor = specialistDoctor;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user