finish operation details report
parent
6e61bd8c1d
commit
22b424515c
@ -0,0 +1,68 @@
|
|||||||
|
class GetOperationDetailsRequestModel {
|
||||||
|
bool isDentalAllowedBackend;
|
||||||
|
double versionID;
|
||||||
|
int channel;
|
||||||
|
int languageID;
|
||||||
|
String iPAdress;
|
||||||
|
String generalid;
|
||||||
|
int deviceTypeID;
|
||||||
|
String tokenID;
|
||||||
|
int patientID;
|
||||||
|
int reservationNo;
|
||||||
|
String sessionID;
|
||||||
|
int projectID;
|
||||||
|
String setupID;
|
||||||
|
bool patientOutSA;
|
||||||
|
|
||||||
|
GetOperationDetailsRequestModel(
|
||||||
|
{this.isDentalAllowedBackend = false,
|
||||||
|
this.versionID,
|
||||||
|
this.channel,
|
||||||
|
this.languageID,
|
||||||
|
this.iPAdress,
|
||||||
|
this.generalid,
|
||||||
|
this.deviceTypeID,
|
||||||
|
this.tokenID,
|
||||||
|
this.patientID,
|
||||||
|
this.reservationNo,
|
||||||
|
this.sessionID,
|
||||||
|
this.projectID,
|
||||||
|
this.setupID,
|
||||||
|
this.patientOutSA});
|
||||||
|
|
||||||
|
GetOperationDetailsRequestModel.fromJson(Map<String, dynamic> json) {
|
||||||
|
isDentalAllowedBackend = json['isDentalAllowedBackend'];
|
||||||
|
versionID = json['VersionID'];
|
||||||
|
channel = json['Channel'];
|
||||||
|
languageID = json['LanguageID'];
|
||||||
|
iPAdress = json['IPAdress'];
|
||||||
|
generalid = json['generalid'];
|
||||||
|
deviceTypeID = json['DeviceTypeID'];
|
||||||
|
tokenID = json['TokenID'];
|
||||||
|
patientID = json['PatientID'];
|
||||||
|
reservationNo = json['reservationNo'];
|
||||||
|
sessionID = json['SessionID'];
|
||||||
|
projectID = json['ProjectID'];
|
||||||
|
setupID = json['SetupID'];
|
||||||
|
patientOutSA = json['PatientOutSA'];
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
|
data['isDentalAllowedBackend'] = this.isDentalAllowedBackend;
|
||||||
|
data['VersionID'] = this.versionID;
|
||||||
|
data['Channel'] = this.channel;
|
||||||
|
data['LanguageID'] = this.languageID;
|
||||||
|
data['IPAdress'] = this.iPAdress;
|
||||||
|
data['generalid'] = this.generalid;
|
||||||
|
data['DeviceTypeID'] = this.deviceTypeID;
|
||||||
|
data['TokenID'] = this.tokenID;
|
||||||
|
data['PatientID'] = this.patientID;
|
||||||
|
data['reservationNo'] = this.reservationNo;
|
||||||
|
data['SessionID'] = this.sessionID;
|
||||||
|
data['ProjectID'] = this.projectID;
|
||||||
|
data['SetupID'] = this.setupID;
|
||||||
|
data['PatientOutSA'] = this.patientOutSA;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,148 @@
|
|||||||
|
class GetOperationDetailsResponseModel {
|
||||||
|
String setupID;
|
||||||
|
int projectID;
|
||||||
|
int reservationNo;
|
||||||
|
int patientID;
|
||||||
|
int admissionID;
|
||||||
|
Null surgeryDate;
|
||||||
|
String preOpDiagnosis;
|
||||||
|
String postOpDiagnosis;
|
||||||
|
String surgeon;
|
||||||
|
String assistant;
|
||||||
|
String anasthetist;
|
||||||
|
String operation;
|
||||||
|
String inasion;
|
||||||
|
String finding;
|
||||||
|
String surgeryProcedure;
|
||||||
|
String postOpInstruction;
|
||||||
|
bool isActive;
|
||||||
|
int createdBy;
|
||||||
|
String createdName;
|
||||||
|
Null createdNameN;
|
||||||
|
String createdOn;
|
||||||
|
Null editedBy;
|
||||||
|
Null editedByName;
|
||||||
|
Null editedByNameN;
|
||||||
|
Null editedOn;
|
||||||
|
Null oRBookStatus;
|
||||||
|
String complicationDetail;
|
||||||
|
String bloodLossDetail;
|
||||||
|
String histopathSpecimen;
|
||||||
|
String microbiologySpecimen;
|
||||||
|
String otherSpecimen;
|
||||||
|
Null scrubNurse;
|
||||||
|
Null circulatingNurse;
|
||||||
|
Null bloodTransfusedDetail;
|
||||||
|
|
||||||
|
GetOperationDetailsResponseModel(
|
||||||
|
{this.setupID,
|
||||||
|
this.projectID,
|
||||||
|
this.reservationNo,
|
||||||
|
this.patientID,
|
||||||
|
this.admissionID,
|
||||||
|
this.surgeryDate,
|
||||||
|
this.preOpDiagnosis,
|
||||||
|
this.postOpDiagnosis,
|
||||||
|
this.surgeon,
|
||||||
|
this.assistant,
|
||||||
|
this.anasthetist,
|
||||||
|
this.operation,
|
||||||
|
this.inasion,
|
||||||
|
this.finding,
|
||||||
|
this.surgeryProcedure,
|
||||||
|
this.postOpInstruction,
|
||||||
|
this.isActive,
|
||||||
|
this.createdBy,
|
||||||
|
this.createdName,
|
||||||
|
this.createdNameN,
|
||||||
|
this.createdOn,
|
||||||
|
this.editedBy,
|
||||||
|
this.editedByName,
|
||||||
|
this.editedByNameN,
|
||||||
|
this.editedOn,
|
||||||
|
this.oRBookStatus,
|
||||||
|
this.complicationDetail,
|
||||||
|
this.bloodLossDetail,
|
||||||
|
this.histopathSpecimen,
|
||||||
|
this.microbiologySpecimen,
|
||||||
|
this.otherSpecimen,
|
||||||
|
this.scrubNurse,
|
||||||
|
this.circulatingNurse,
|
||||||
|
this.bloodTransfusedDetail});
|
||||||
|
|
||||||
|
GetOperationDetailsResponseModel.fromJson(Map<String, dynamic> json) {
|
||||||
|
setupID = json['SetupID'];
|
||||||
|
projectID = json['ProjectID'];
|
||||||
|
reservationNo = json['ReservationNo'];
|
||||||
|
patientID = json['PatientID'];
|
||||||
|
admissionID = json['AdmissionID'];
|
||||||
|
surgeryDate = json['SurgeryDate'];
|
||||||
|
preOpDiagnosis = json['PreOpDiagnosis'];
|
||||||
|
postOpDiagnosis = json['PostOpDiagnosis'];
|
||||||
|
surgeon = json['Surgeon'];
|
||||||
|
assistant = json['Assistant'];
|
||||||
|
anasthetist = json['Anasthetist'];
|
||||||
|
operation = json['Operation'];
|
||||||
|
inasion = json['Inasion'];
|
||||||
|
finding = json['Finding'];
|
||||||
|
surgeryProcedure = json['SurgeryProcedure'];
|
||||||
|
postOpInstruction = json['PostOpInstruction'];
|
||||||
|
isActive = json['IsActive'];
|
||||||
|
createdBy = json['CreatedBy'];
|
||||||
|
createdName = json['CreatedName'];
|
||||||
|
createdNameN = json['CreatedNameN'];
|
||||||
|
createdOn = json['CreatedOn'];
|
||||||
|
editedBy = json['EditedBy'];
|
||||||
|
editedByName = json['EditedByName'];
|
||||||
|
editedByNameN = json['EditedByNameN'];
|
||||||
|
editedOn = json['EditedOn'];
|
||||||
|
oRBookStatus = json['ORBookStatus'];
|
||||||
|
complicationDetail = json['ComplicationDetail'];
|
||||||
|
bloodLossDetail = json['BloodLossDetail'];
|
||||||
|
histopathSpecimen = json['HistopathSpecimen'];
|
||||||
|
microbiologySpecimen = json['MicrobiologySpecimen'];
|
||||||
|
otherSpecimen = json['OtherSpecimen'];
|
||||||
|
scrubNurse = json['ScrubNurse'];
|
||||||
|
circulatingNurse = json['CirculatingNurse'];
|
||||||
|
bloodTransfusedDetail = json['BloodTransfusedDetail'];
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
|
data['SetupID'] = this.setupID;
|
||||||
|
data['ProjectID'] = this.projectID;
|
||||||
|
data['ReservationNo'] = this.reservationNo;
|
||||||
|
data['PatientID'] = this.patientID;
|
||||||
|
data['AdmissionID'] = this.admissionID;
|
||||||
|
data['SurgeryDate'] = this.surgeryDate;
|
||||||
|
data['PreOpDiagnosis'] = this.preOpDiagnosis;
|
||||||
|
data['PostOpDiagnosis'] = this.postOpDiagnosis;
|
||||||
|
data['Surgeon'] = this.surgeon;
|
||||||
|
data['Assistant'] = this.assistant;
|
||||||
|
data['Anasthetist'] = this.anasthetist;
|
||||||
|
data['Operation'] = this.operation;
|
||||||
|
data['Inasion'] = this.inasion;
|
||||||
|
data['Finding'] = this.finding;
|
||||||
|
data['SurgeryProcedure'] = this.surgeryProcedure;
|
||||||
|
data['PostOpInstruction'] = this.postOpInstruction;
|
||||||
|
data['IsActive'] = this.isActive;
|
||||||
|
data['CreatedBy'] = this.createdBy;
|
||||||
|
data['CreatedName'] = this.createdName;
|
||||||
|
data['CreatedNameN'] = this.createdNameN;
|
||||||
|
data['CreatedOn'] = this.createdOn;
|
||||||
|
data['EditedBy'] = this.editedBy;
|
||||||
|
data['EditedByName'] = this.editedByName;
|
||||||
|
data['EditedByNameN'] = this.editedByNameN;
|
||||||
|
data['EditedOn'] = this.editedOn;
|
||||||
|
data['ORBookStatus'] = this.oRBookStatus;
|
||||||
|
data['ComplicationDetail'] = this.complicationDetail;
|
||||||
|
data['BloodLossDetail'] = this.bloodLossDetail;
|
||||||
|
data['HistopathSpecimen'] = this.histopathSpecimen;
|
||||||
|
data['MicrobiologySpecimen'] = this.microbiologySpecimen;
|
||||||
|
data['OtherSpecimen'] = this.otherSpecimen;
|
||||||
|
data['ScrubNurse'] = this.scrubNurse;
|
||||||
|
data['CirculatingNurse'] = this.circulatingNurse;
|
||||||
|
data['BloodTransfusedDetail'] = this.bloodTransfusedDetail;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue