|
|
|
|
@ -9,6 +9,7 @@ class FinalRadiology {
|
|
|
|
|
dynamic doctorID;
|
|
|
|
|
dynamic clinicID;
|
|
|
|
|
DateTime orderDate;
|
|
|
|
|
DateTime reportDate;
|
|
|
|
|
dynamic reportData;
|
|
|
|
|
dynamic imageURL;
|
|
|
|
|
dynamic procedureID;
|
|
|
|
|
@ -52,6 +53,7 @@ class FinalRadiology {
|
|
|
|
|
this.doctorID,
|
|
|
|
|
this.clinicID,
|
|
|
|
|
this.orderDate,
|
|
|
|
|
this.reportDate,
|
|
|
|
|
this.reportData,
|
|
|
|
|
this.imageURL,
|
|
|
|
|
this.procedureID,
|
|
|
|
|
@ -95,6 +97,7 @@ class FinalRadiology {
|
|
|
|
|
doctorID = json['DoctorID'];
|
|
|
|
|
clinicID = json['ClinicID'];
|
|
|
|
|
orderDate = DateUtils.convertStringToDate(json['OrderDate']);
|
|
|
|
|
reportDate = DateUtils.convertStringToDate(json['ReportDate']);
|
|
|
|
|
reportData = json['ReportData'];
|
|
|
|
|
imageURL = json['ImageURL'];
|
|
|
|
|
procedureID = json['ProcedureID'];
|
|
|
|
|
|