Finish Update objective code Page
parent
c92a848851
commit
46043efb42
@ -0,0 +1,25 @@
|
||||
class GetChiefComplaintReqModel {
|
||||
int patientMRN;
|
||||
int appointmentNo;
|
||||
int episodeId;
|
||||
int episodeID;
|
||||
|
||||
GetChiefComplaintReqModel(
|
||||
{this.patientMRN, this.appointmentNo, this.episodeId, this.episodeID});
|
||||
|
||||
GetChiefComplaintReqModel.fromJson(Map<String, dynamic> json) {
|
||||
patientMRN = json['PatientMRN'];
|
||||
appointmentNo = json['AppointmentNo'];
|
||||
episodeId = json['EpisodeId'];
|
||||
episodeID = json['EpisodeID'];
|
||||
}
|
||||
|
||||
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['EpisodeID'] = this.episodeID;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,64 @@
|
||||
class GetPhysicalExamResModel {
|
||||
int appointmentNo;
|
||||
int createdBy;
|
||||
String createdOn;
|
||||
int editedBy;
|
||||
String editedOn;
|
||||
int episodeId;
|
||||
int examId;
|
||||
int examType;
|
||||
bool isAbnormal;
|
||||
bool isNormal;
|
||||
bool notExamined;
|
||||
int patientMRN;
|
||||
String remarks;
|
||||
|
||||
GetPhysicalExamResModel(
|
||||
{this.appointmentNo,
|
||||
this.createdBy,
|
||||
this.createdOn,
|
||||
this.editedBy,
|
||||
this.editedOn,
|
||||
this.episodeId,
|
||||
this.examId,
|
||||
this.examType,
|
||||
this.isAbnormal,
|
||||
this.isNormal,
|
||||
this.notExamined,
|
||||
this.patientMRN,
|
||||
this.remarks});
|
||||
|
||||
GetPhysicalExamResModel.fromJson(Map<String, dynamic> json) {
|
||||
appointmentNo = json['appointmentNo'];
|
||||
createdBy = json['createdBy'];
|
||||
createdOn = json['createdOn'];
|
||||
editedBy = json['editedBy'];
|
||||
editedOn = json['editedOn'];
|
||||
episodeId = json['episodeId'];
|
||||
examId = json['examId'];
|
||||
examType = json['examType'];
|
||||
isAbnormal = json['isAbnormal'];
|
||||
isNormal = json['isNormal'];
|
||||
notExamined = json['notExamined'];
|
||||
patientMRN = json['patientMRN'];
|
||||
remarks = json['remarks'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['appointmentNo'] = this.appointmentNo;
|
||||
data['createdBy'] = this.createdBy;
|
||||
data['createdOn'] = this.createdOn;
|
||||
data['editedBy'] = this.editedBy;
|
||||
data['editedOn'] = this.editedOn;
|
||||
data['episodeId'] = this.episodeId;
|
||||
data['examId'] = this.examId;
|
||||
data['examType'] = this.examType;
|
||||
data['isAbnormal'] = this.isAbnormal;
|
||||
data['isNormal'] = this.isNormal;
|
||||
data['notExamined'] = this.notExamined;
|
||||
data['patientMRN'] = this.patientMRN;
|
||||
data['remarks'] = this.remarks;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,32 @@
|
||||
class GetPhysicalExamReqModel {
|
||||
int patientMRN;
|
||||
int appointmentNo;
|
||||
String episodeID;
|
||||
String from;
|
||||
String to;
|
||||
|
||||
GetPhysicalExamReqModel(
|
||||
{this.patientMRN,
|
||||
this.appointmentNo,
|
||||
this.episodeID,
|
||||
this.from,
|
||||
this.to});
|
||||
|
||||
GetPhysicalExamReqModel.fromJson(Map<String, dynamic> json) {
|
||||
patientMRN = json['PatientMRN'];
|
||||
appointmentNo = json['AppointmentNo'];
|
||||
episodeID = json['EpisodeID'];
|
||||
from = json['From'];
|
||||
to = json['To'];
|
||||
}
|
||||
|
||||
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;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue