Merge branch 'vaccine' into 'master'
edit on vaccine service See merge request Cloud_Solution/diplomatic-quarter!42merge-update-with-lab-changes
commit
fcc3a67ffb
@ -1,91 +1,152 @@
|
|||||||
class VaccineModel {
|
class VaccineModel {
|
||||||
String to;
|
String setupID;
|
||||||
String from;
|
int projectID;
|
||||||
double versionID;
|
|
||||||
int channel;
|
|
||||||
int languageID;
|
|
||||||
String iPAdress;
|
|
||||||
String generalid;
|
|
||||||
int patientOutSA;
|
|
||||||
String sessionID;
|
|
||||||
bool isDentalAllowedBackend;
|
|
||||||
int deviceTypeID;
|
|
||||||
int patientID;
|
int patientID;
|
||||||
String tokenID;
|
int invoiceNo;
|
||||||
int patientTypeID;
|
String procedureID;
|
||||||
int patientType;
|
String vaccineName;
|
||||||
|
Null vaccineNameN;
|
||||||
String invoiceDate;
|
String invoiceDate;
|
||||||
|
int doctorID;
|
||||||
|
int clinicID;
|
||||||
|
String firstName;
|
||||||
|
String middleName;
|
||||||
|
String lastName;
|
||||||
|
Null firstNameN;
|
||||||
|
Null middleNameN;
|
||||||
|
Null lastNameN;
|
||||||
|
String dateofBirth;
|
||||||
|
int actualDoctorRate;
|
||||||
|
String age;
|
||||||
|
String clinicName;
|
||||||
String doctorImageURL;
|
String doctorImageURL;
|
||||||
String doctorName;
|
String doctorName;
|
||||||
|
int doctorRate;
|
||||||
String doctorTitle;
|
String doctorTitle;
|
||||||
|
int gender;
|
||||||
|
String genderDescription;
|
||||||
|
bool isActiveDoctorProfile;
|
||||||
|
bool isDoctorAllowVedioCall;
|
||||||
|
bool isExecludeDoctor;
|
||||||
|
int noOfPatientsRate;
|
||||||
|
String patientName;
|
||||||
String projectName;
|
String projectName;
|
||||||
String vaccineName;
|
String qR;
|
||||||
|
List<String> speciality;
|
||||||
|
String vaccinationDate;
|
||||||
|
|
||||||
VaccineModel({
|
VaccineModel(
|
||||||
this.to,
|
{this.setupID,
|
||||||
this.from,
|
this.projectID,
|
||||||
this.versionID,
|
this.patientID,
|
||||||
this.channel,
|
this.invoiceNo,
|
||||||
this.languageID,
|
this.procedureID,
|
||||||
this.iPAdress,
|
this.vaccineName,
|
||||||
this.generalid,
|
this.vaccineNameN,
|
||||||
this.patientOutSA,
|
this.invoiceDate,
|
||||||
this.sessionID,
|
this.doctorID,
|
||||||
this.isDentalAllowedBackend,
|
this.clinicID,
|
||||||
this.deviceTypeID,
|
this.firstName,
|
||||||
this.patientID,
|
this.middleName,
|
||||||
this.tokenID,
|
this.lastName,
|
||||||
this.patientTypeID,
|
this.firstNameN,
|
||||||
this.patientType,
|
this.middleNameN,
|
||||||
this.invoiceDate,
|
this.lastNameN,
|
||||||
this.doctorImageURL,
|
this.dateofBirth,
|
||||||
this.doctorName,
|
this.actualDoctorRate,
|
||||||
this.doctorTitle,
|
this.age,
|
||||||
this.projectName,
|
this.clinicName,
|
||||||
this.vaccineName,
|
this.doctorImageURL,
|
||||||
});
|
this.doctorName,
|
||||||
|
this.doctorRate,
|
||||||
|
this.doctorTitle,
|
||||||
|
this.gender,
|
||||||
|
this.genderDescription,
|
||||||
|
this.isActiveDoctorProfile,
|
||||||
|
this.isDoctorAllowVedioCall,
|
||||||
|
this.isExecludeDoctor,
|
||||||
|
this.noOfPatientsRate,
|
||||||
|
this.patientName,
|
||||||
|
this.projectName,
|
||||||
|
this.qR,
|
||||||
|
this.speciality,
|
||||||
|
this.vaccinationDate});
|
||||||
|
|
||||||
VaccineModel.fromJson(Map<String, dynamic> json) {
|
VaccineModel.fromJson(Map<String, dynamic> json) {
|
||||||
|
setupID = json['SetupID'];
|
||||||
|
projectID = json['ProjectID'];
|
||||||
|
patientID = json['PatientID'];
|
||||||
|
invoiceNo = json['InvoiceNo'];
|
||||||
|
procedureID = json['ProcedureID'];
|
||||||
vaccineName = json['VaccineName'];
|
vaccineName = json['VaccineName'];
|
||||||
projectName = json['ProjectName'];
|
vaccineNameN = json['VaccineNameN'];
|
||||||
doctorTitle = json['DoctorTitle'];
|
|
||||||
doctorName = json['DoctorName'];
|
|
||||||
doctorImageURL = json['DoctorImageURL'];
|
|
||||||
invoiceDate = json['InvoiceDate'];
|
invoiceDate = json['InvoiceDate'];
|
||||||
to = json['To'];
|
doctorID = json['DoctorID'];
|
||||||
from = json['From'];
|
clinicID = json['ClinicID'];
|
||||||
versionID = json['VersionID'];
|
firstName = json['FirstName'];
|
||||||
channel = json['Channel'];
|
middleName = json['MiddleName'];
|
||||||
languageID = json['LanguageID'];
|
lastName = json['LastName'];
|
||||||
iPAdress = json['IPAdress'];
|
firstNameN = json['FirstNameN'];
|
||||||
generalid = json['generalid'];
|
middleNameN = json['MiddleNameN'];
|
||||||
patientOutSA = json['PatientOutSA'];
|
lastNameN = json['LastNameN'];
|
||||||
sessionID = json['SessionID'];
|
dateofBirth = json['DateofBirth'];
|
||||||
isDentalAllowedBackend = json['isDentalAllowedBackend'];
|
actualDoctorRate = json['ActualDoctorRate'];
|
||||||
deviceTypeID = json['DeviceTypeID'];
|
age = json['Age'];
|
||||||
patientID = json['PatientID'];
|
clinicName = json['ClinicName'];
|
||||||
tokenID = json['TokenID'];
|
doctorImageURL = json['DoctorImageURL'];
|
||||||
patientTypeID = json['PatientTypeID'];
|
doctorName = json['DoctorName'];
|
||||||
patientType = json['PatientType'];
|
doctorRate = json['DoctorRate'];
|
||||||
|
doctorTitle = json['DoctorTitle'];
|
||||||
|
gender = json['Gender'];
|
||||||
|
genderDescription = json['GenderDescription'];
|
||||||
|
isActiveDoctorProfile = json['IsActiveDoctorProfile'];
|
||||||
|
isDoctorAllowVedioCall = json['IsDoctorAllowVedioCall'];
|
||||||
|
isExecludeDoctor = json['IsExecludeDoctor'];
|
||||||
|
noOfPatientsRate = json['NoOfPatientsRate'];
|
||||||
|
patientName = json['PatientName'];
|
||||||
|
projectName = json['ProjectName'];
|
||||||
|
qR = json['QR'];
|
||||||
|
speciality = json['Speciality'].cast<String>();
|
||||||
|
vaccinationDate = json['VaccinationDate'];
|
||||||
}
|
}
|
||||||
|
|
||||||
Map<String, dynamic> toJson() {
|
Map<String, dynamic> toJson() {
|
||||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
data['To'] = this.to;
|
data['SetupID'] = this.setupID;
|
||||||
data['From'] = this.from;
|
data['ProjectID'] = this.projectID;
|
||||||
data['VersionID'] = this.versionID;
|
|
||||||
data['Channel'] = this.channel;
|
|
||||||
data['LanguageID'] = this.languageID;
|
|
||||||
data['IPAdress'] = this.iPAdress;
|
|
||||||
data['generalid'] = this.generalid;
|
|
||||||
data['PatientOutSA'] = this.patientOutSA;
|
|
||||||
data['SessionID'] = this.sessionID;
|
|
||||||
data['isDentalAllowedBackend'] = this.isDentalAllowedBackend;
|
|
||||||
data['DeviceTypeID'] = this.deviceTypeID;
|
|
||||||
data['PatientID'] = this.patientID;
|
data['PatientID'] = this.patientID;
|
||||||
data['TokenID'] = this.tokenID;
|
data['InvoiceNo'] = this.invoiceNo;
|
||||||
data['PatientTypeID'] = this.patientTypeID;
|
data['ProcedureID'] = this.procedureID;
|
||||||
data['PatientType'] = this.patientType;
|
data['VaccineName'] = this.vaccineName;
|
||||||
|
data['VaccineNameN'] = this.vaccineNameN;
|
||||||
|
data['InvoiceDate'] = this.invoiceDate;
|
||||||
|
data['DoctorID'] = this.doctorID;
|
||||||
|
data['ClinicID'] = this.clinicID;
|
||||||
|
data['FirstName'] = this.firstName;
|
||||||
|
data['MiddleName'] = this.middleName;
|
||||||
|
data['LastName'] = this.lastName;
|
||||||
|
data['FirstNameN'] = this.firstNameN;
|
||||||
|
data['MiddleNameN'] = this.middleNameN;
|
||||||
|
data['LastNameN'] = this.lastNameN;
|
||||||
|
data['DateofBirth'] = this.dateofBirth;
|
||||||
|
data['ActualDoctorRate'] = this.actualDoctorRate;
|
||||||
|
data['Age'] = this.age;
|
||||||
|
data['ClinicName'] = this.clinicName;
|
||||||
|
data['DoctorImageURL'] = this.doctorImageURL;
|
||||||
|
data['DoctorName'] = this.doctorName;
|
||||||
|
data['DoctorRate'] = this.doctorRate;
|
||||||
|
data['DoctorTitle'] = this.doctorTitle;
|
||||||
|
data['Gender'] = this.gender;
|
||||||
|
data['GenderDescription'] = this.genderDescription;
|
||||||
|
data['IsActiveDoctorProfile'] = this.isActiveDoctorProfile;
|
||||||
|
data['IsDoctorAllowVedioCall'] = this.isDoctorAllowVedioCall;
|
||||||
|
data['IsExecludeDoctor'] = this.isExecludeDoctor;
|
||||||
|
data['NoOfPatientsRate'] = this.noOfPatientsRate;
|
||||||
|
data['PatientName'] = this.patientName;
|
||||||
|
data['ProjectName'] = this.projectName;
|
||||||
|
data['QR'] = this.qR;
|
||||||
|
data['Speciality'] = this.speciality;
|
||||||
|
data['VaccinationDate'] = this.vaccinationDate;
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue