finish plan page
parent
d8ac550357
commit
4caf40a2ab
@ -0,0 +1,40 @@
|
|||||||
|
class GetGetProgressNoteReqModel {
|
||||||
|
int patientMRN;
|
||||||
|
int appointmentNo;
|
||||||
|
String episodeID;
|
||||||
|
String from;
|
||||||
|
String to;
|
||||||
|
int clinicID;
|
||||||
|
int doctorID;
|
||||||
|
|
||||||
|
GetGetProgressNoteReqModel(
|
||||||
|
{this.patientMRN,
|
||||||
|
this.appointmentNo,
|
||||||
|
this.episodeID,
|
||||||
|
this.from,
|
||||||
|
this.to,
|
||||||
|
this.clinicID,
|
||||||
|
this.doctorID});
|
||||||
|
|
||||||
|
GetGetProgressNoteReqModel.fromJson(Map<String, dynamic> json) {
|
||||||
|
patientMRN = json['PatientMRN'];
|
||||||
|
appointmentNo = json['AppointmentNo'];
|
||||||
|
episodeID = json['EpisodeID'];
|
||||||
|
from = json['From'];
|
||||||
|
to = json['To'];
|
||||||
|
clinicID = json['ClinicID'];
|
||||||
|
doctorID = json['DoctorID'];
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
|
data['PatientMRN'] = this.patientMRN;
|
||||||
|
data['AppointmentNo'] = this.appointmentNo;
|
||||||
|
data['EpisodeID'] = this.episodeID;
|
||||||
|
data['From'] = this.from;
|
||||||
|
data['To'] = this.to;
|
||||||
|
data['ClinicID'] = this.clinicID;
|
||||||
|
data['DoctorID'] = this.doctorID;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,25 @@
|
|||||||
|
class GetGetProgressNoteResModel {
|
||||||
|
int appointmentNo;
|
||||||
|
int episodeId;
|
||||||
|
int patientMRN;
|
||||||
|
String planNote;
|
||||||
|
|
||||||
|
GetGetProgressNoteResModel(
|
||||||
|
{this.appointmentNo, this.episodeId, this.patientMRN, this.planNote});
|
||||||
|
|
||||||
|
GetGetProgressNoteResModel.fromJson(Map<String, dynamic> json) {
|
||||||
|
appointmentNo = json['appointmentNo'];
|
||||||
|
episodeId = json['episodeId'];
|
||||||
|
patientMRN = json['patientMRN'];
|
||||||
|
planNote = json['planNote'];
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
|
data['appointmentNo'] = this.appointmentNo;
|
||||||
|
data['episodeId'] = this.episodeId;
|
||||||
|
data['patientMRN'] = this.patientMRN;
|
||||||
|
data['planNote'] = this.planNote;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue