revisi + request v 1.01 -> 1.02

This commit is contained in:
Sas Andy
2024-12-23 08:17:16 +07:00
parent e3073d9823
commit c0e21811c0
13 changed files with 387 additions and 10 deletions

View File

@@ -8,6 +8,7 @@ class RegistrationModel {
List<Tests>? tests;
List<Specimens>? specimens;
List<Bahan>? bahan;
String? userMouID;
String? total;
String? token;
@@ -17,6 +18,7 @@ class RegistrationModel {
this.specimens,
this.total,
this.bahan,
this.userMouID,
this.patientId,
this.paket,
this.orderID,
@@ -54,6 +56,7 @@ class RegistrationModel {
patientId = json['patient_id'];
token = json['token'];
userMouID = json['userMouID'];
orderID = json['orderID'];
}
@@ -77,7 +80,7 @@ class RegistrationModel {
data['total'] = total;
data['patient_id'] = patientId;
data['token'] = token;
data['userMouID'] = userMouID;
data['orderID'] = orderID;
return data;
}