ICO Hospital Project with collaborator @mmoralesl.
Documents Consultas
{
id_consulta: Integer,
id_doctor: Integer,
id_paciente: Integer,
id_direccion: Integer,
consultas: Array [
Object {
hora: String,
dia: String,
asistido: Boolean,
notas: String,
notas_doc: String,
num_consulta: Integer,
}
]
}
Documents Doctores
{
id_doctor: Integer,
nombre: String,
apellidos: String,
username: String,
password: md5(String),
id_hospital: Integer,
planta: Integer,
sala: Integer,
horarios: String(startHour-endHour),
dias: Array [
0: Integer(0-1),
1: Integer(0-1),
2: Integer(0-1),
3: Integer(0-1),
4: Integer(0-1),
5: Integer(0-1),
6: Integer(0-1),
]
}
Documents Hospitales
{
id_hospital: Integer,
nombre: String,
direccion: String
}
Documents Medicamentos
{
id: Integer,
nombre: String,
imagen: String(url)
}
Documents Pacientes
{
id_paciente: Integer,
nombre: String,
apellidos: String,
dni: String,
password: md5(String),
token: String(autogeneration),
expireToken: String(autogeneration),
foto: String(url),
primerInicioSesion: Boolean,
fecha_nacimiento: String,
genero: String(H-M),
leng: String(cas-cat),
medicamentos: Array [
Object {
id: Integer,
dias: Object {
lunes: Integer(0-1),
martes: Integer(0-1),
miercoles: Integer(0-1),
jueves: Integer(0-1),
viernes: Integer(0-1),
sabado: Integer(0-1),
domingo: Integer(0-1),
},
hora: Array [
String
],
pastillaTomada: Array [
Boolean
]
}
]
}