Merge branch 'live_care_patient' into 'development'

add VC_ID

See merge request Cloud_Solution/doctor_app_flutter!685
merge-requests/686/merge
Mohammad Aljammal 5 years ago
commit 15d826c8d1

@ -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'] ,
);
}

Loading…
Cancel
Save