remove docOffice ID and add app_id

This commit is contained in:
2024-07-26 12:42:00 +02:00
parent b07e6ba0e1
commit 5f425dae22

View File

@@ -12,7 +12,7 @@ class Patient {
final String medical_aid_code; final String medical_aid_code;
final String medical_aid_scheme; final String medical_aid_scheme;
final String address; final String address;
final int doc_office_id; final String app_id;
const Patient({ const Patient({
required this.idpatients, required this.idpatients,
@@ -28,7 +28,7 @@ class Patient {
required this.medical_aid_code, required this.medical_aid_code,
required this.medical_aid_scheme, required this.medical_aid_scheme,
required this.address, required this.address,
required this.doc_office_id, required this.app_id,
}); });
factory Patient.fromJson(Map<String, dynamic> json) { factory Patient.fromJson(Map<String, dynamic> json) {
@@ -47,7 +47,7 @@ class Patient {
'medical_aid_code': String medical_aid_code, 'medical_aid_code': String medical_aid_code,
'medical_aid_scheme': String medical_aid_scheme, 'medical_aid_scheme': String medical_aid_scheme,
'address': String address, 'address': String address,
'doc_office_id': int doc_office_id, 'app_id': String app_id,
} => } =>
Patient( Patient(
idpatients: idpatients, idpatients: idpatients,
@@ -63,7 +63,7 @@ class Patient {
medical_aid_code: medical_aid_code, medical_aid_code: medical_aid_code,
medical_aid_scheme: medical_aid_scheme, medical_aid_scheme: medical_aid_scheme,
address: address, address: address,
doc_office_id: doc_office_id, app_id: app_id,
), ),
_ => throw const FormatException('Failed to load album.'), _ => throw const FormatException('Failed to load album.'),
}; };