|
|
|
|
@ -6,15 +6,17 @@ class GetPatientArrivalListRequestModel {
|
|
|
|
|
int pageIndex;
|
|
|
|
|
int pageSize;
|
|
|
|
|
int clinicID;
|
|
|
|
|
int patientMRN;
|
|
|
|
|
|
|
|
|
|
GetPatientArrivalListRequestModel(
|
|
|
|
|
{this.vidaAuthTokenID,
|
|
|
|
|
this.from,
|
|
|
|
|
this.to,
|
|
|
|
|
this.doctorID,
|
|
|
|
|
this.pageIndex,
|
|
|
|
|
this.pageSize,
|
|
|
|
|
this.clinicID});
|
|
|
|
|
this.from,
|
|
|
|
|
this.to,
|
|
|
|
|
this.doctorID,
|
|
|
|
|
this.pageIndex,
|
|
|
|
|
this.pageSize,
|
|
|
|
|
this.clinicID,
|
|
|
|
|
this.patientMRN});
|
|
|
|
|
|
|
|
|
|
GetPatientArrivalListRequestModel.fromJson(Map<String, dynamic> json) {
|
|
|
|
|
vidaAuthTokenID = json['VidaAuthTokenID'];
|
|
|
|
|
@ -24,6 +26,7 @@ class GetPatientArrivalListRequestModel {
|
|
|
|
|
pageIndex = json['PageIndex'];
|
|
|
|
|
pageSize = json['PageSize'];
|
|
|
|
|
clinicID = json['ClinicID'];
|
|
|
|
|
patientMRN = json['PatientMRN'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Map<String, dynamic> toJson() {
|
|
|
|
|
@ -35,6 +38,8 @@ class GetPatientArrivalListRequestModel {
|
|
|
|
|
data['PageSize'] = this.pageSize;
|
|
|
|
|
data['ClinicID'] = this.clinicID;
|
|
|
|
|
data['VidaAuthTokenID'] = this.vidaAuthTokenID;
|
|
|
|
|
data['PatientMRN'] = this.patientMRN;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|