|
|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
class AncillaryOrdersListModel {
|
|
|
|
|
List<AncillaryOrderList> ancillaryOrderList;
|
|
|
|
|
Null errCode;
|
|
|
|
|
dynamic errCode;
|
|
|
|
|
String message;
|
|
|
|
|
int patientID;
|
|
|
|
|
String patientName;
|
|
|
|
|
@ -32,7 +32,7 @@ class AncillaryOrdersListModel {
|
|
|
|
|
errCode = json['ErrCode'];
|
|
|
|
|
message = json['Message'];
|
|
|
|
|
patientID = json['PatientID'];
|
|
|
|
|
patientName = json['PatientName'];
|
|
|
|
|
patientName = json['PatientName'] != null ? json['PatientName'] : "";
|
|
|
|
|
patientType = json['PatientType'];
|
|
|
|
|
projectID = json['ProjectID'];
|
|
|
|
|
projectName = json['ProjectName'];
|
|
|
|
|
@ -83,7 +83,7 @@ class AncillaryOrderList {
|
|
|
|
|
appointmentDate = json['AppointmentDate'];
|
|
|
|
|
appointmentNo = json['AppointmentNo'];
|
|
|
|
|
clinicID = json['ClinicID'];
|
|
|
|
|
clinicName = json['ClinicName'];
|
|
|
|
|
clinicName = json['ClinicName'] != null ? json['ClinicName'] : "";
|
|
|
|
|
doctorID = json['DoctorID'];
|
|
|
|
|
doctorName = json['DoctorName'];
|
|
|
|
|
orderDate = json['OrderDate'];
|
|
|
|
|
|