updates
parent
01ee9a2710
commit
078482c21d
@ -0,0 +1,60 @@
|
|||||||
|
class GetAdmissionInfoResponseModel {
|
||||||
|
int admissionNo;
|
||||||
|
String admissionDate;
|
||||||
|
String infotainmentIBMSLink;
|
||||||
|
String infotainmentIBMSLinkAr;
|
||||||
|
int projectID;
|
||||||
|
String roomID;
|
||||||
|
String bedID;
|
||||||
|
int clinicID;
|
||||||
|
int doctorID;
|
||||||
|
int patientID;
|
||||||
|
String bMIUrl;
|
||||||
|
String mOPUrl;
|
||||||
|
|
||||||
|
GetAdmissionInfoResponseModel(
|
||||||
|
{this.admissionNo,
|
||||||
|
this.admissionDate,
|
||||||
|
this.infotainmentIBMSLink,
|
||||||
|
this.infotainmentIBMSLinkAr,
|
||||||
|
this.projectID,
|
||||||
|
this.roomID,
|
||||||
|
this.bedID,
|
||||||
|
this.clinicID,
|
||||||
|
this.doctorID,
|
||||||
|
this.patientID,
|
||||||
|
this.bMIUrl,
|
||||||
|
this.mOPUrl});
|
||||||
|
|
||||||
|
GetAdmissionInfoResponseModel.fromJson(Map<String, dynamic> json) {
|
||||||
|
admissionNo = json['AdmissionNo'];
|
||||||
|
admissionDate = json['AdmissionDate'];
|
||||||
|
infotainmentIBMSLink = json['InfotainmentIBMSLink'];
|
||||||
|
infotainmentIBMSLinkAr = json['InfotainmentIBMSLinkAr'];
|
||||||
|
projectID = json['ProjectID'];
|
||||||
|
roomID = json['RoomID'];
|
||||||
|
bedID = json['BedID'];
|
||||||
|
clinicID = json['ClinicID'];
|
||||||
|
doctorID = json['DoctorID'];
|
||||||
|
patientID = json['PatientID'];
|
||||||
|
bMIUrl = json['BMIUrl'];
|
||||||
|
mOPUrl = json['MOPUrl'];
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
|
data['AdmissionNo'] = this.admissionNo;
|
||||||
|
data['AdmissionDate'] = this.admissionDate;
|
||||||
|
data['InfotainmentIBMSLink'] = this.infotainmentIBMSLink;
|
||||||
|
data['InfotainmentIBMSLinkAr'] = this.infotainmentIBMSLinkAr;
|
||||||
|
data['ProjectID'] = this.projectID;
|
||||||
|
data['RoomID'] = this.roomID;
|
||||||
|
data['BedID'] = this.bedID;
|
||||||
|
data['ClinicID'] = this.clinicID;
|
||||||
|
data['DoctorID'] = this.doctorID;
|
||||||
|
data['PatientID'] = this.patientID;
|
||||||
|
data['BMIUrl'] = this.bMIUrl;
|
||||||
|
data['MOPUrl'] = this.mOPUrl;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue