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

Loading…
Cancel
Save