You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
doctor_app_flutter/lib/models/SOAP/GetPhysicalExamListResModel...

65 lines
1.7 KiB
Dart

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;
}
}