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...

89 lines
2.5 KiB
Dart

class GetPhysicalExamResModel {
int? appointmentNo;
int? createdBy;
String? createdByName;
String? createdOn;
dynamic editedBy;
String? editedByName;
String? editedOn;
int? episodeId;
int? examId;
String? examName;
int? examType;
int? examinationType;
String? examinationTypeName;
bool? isAbnormal;
bool? isNew;
bool? isNormal;
bool? notExamined;
int? patientMRN;
String? remarks;
GetPhysicalExamResModel(
{this.appointmentNo,
this.createdBy,
this.createdByName,
this.createdOn,
this.editedBy,
this.editedByName,
this.editedOn,
this.episodeId,
this.examId,
this.examName,
this.examType,
this.examinationType,
this.examinationTypeName,
this.isAbnormal,
this.isNew,
this.isNormal,
this.notExamined,
this.patientMRN,
this.remarks});
GetPhysicalExamResModel.fromJson(Map<String, dynamic> json) {
appointmentNo = json['appointmentNo'];
createdBy = json['createdBy'];
5 years ago
createdByName = json['createdByName'];
createdOn = json['createdOn'];
editedBy = json['editedBy'];
5 years ago
editedByName = json['editedByName'];
editedOn = json['editedOn'];
episodeId = json['episodeId'];
examId = json['examId'];
5 years ago
examName = json['examName'];
examType = json['examType'];
5 years ago
examinationType = json['examinationType'];
examinationTypeName = json['examinationTypeName'];
isAbnormal = json['isAbnormal'];
5 years ago
isNew = json['isNew'];
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;
5 years ago
data['createdByName'] = this.createdByName;
data['createdOn'] = this.createdOn;
data['editedBy'] = this.editedBy;
5 years ago
data['editedByName'] = this.editedByName;
data['editedOn'] = this.editedOn;
data['episodeId'] = this.episodeId;
data['examId'] = this.examId;
5 years ago
data['examName'] = this.examName;
data['examType'] = this.examType;
5 years ago
data['examinationType'] = this.examinationType;
data['examinationTypeName'] = this.examinationTypeName;
data['isAbnormal'] = this.isAbnormal;
5 years ago
data['isNew'] = this.isNew;
data['isNormal'] = this.isNormal;
data['notExamined'] = this.notExamined;
data['patientMRN'] = this.patientMRN;
data['remarks'] = this.remarks;
return data;
}
}