|
|
|
|
@ -62,6 +62,8 @@ class PatiantInformtion {
|
|
|
|
|
String startTimes;
|
|
|
|
|
String dischargeDate;
|
|
|
|
|
int status;
|
|
|
|
|
int vcId;
|
|
|
|
|
|
|
|
|
|
PatiantInformtion(
|
|
|
|
|
{this.patientDetails,
|
|
|
|
|
this.projectId,
|
|
|
|
|
@ -121,7 +123,7 @@ class PatiantInformtion {
|
|
|
|
|
this.nationalityFlagURL,
|
|
|
|
|
this.patientStatusType,
|
|
|
|
|
this.visitTypeId,
|
|
|
|
|
this.startTimes,this.dischargeDate,this.status});
|
|
|
|
|
this.startTimes,this.dischargeDate,this.status, this.vcId});
|
|
|
|
|
|
|
|
|
|
factory PatiantInformtion.fromJson(Map<String, dynamic> json) =>
|
|
|
|
|
PatiantInformtion(
|
|
|
|
|
@ -199,5 +201,6 @@ class PatiantInformtion {
|
|
|
|
|
startTimes: json['StartTime'] ?? json['StartTime'],
|
|
|
|
|
dischargeDate: json['DischargeDate'] ,
|
|
|
|
|
status: json['Status'] ,
|
|
|
|
|
vcId: json['VC_ID'] ,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|