Completed Kiosk Flow
parent
7442e2d36b
commit
fcec60e978
@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg width="100px" height="100px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M3 15H21M3 19H15M3 7H11M3 11H11M19.4 11H16.6C16.0399 11 15.7599 11 15.546 10.891C15.3578 10.7951 15.2049 10.6422 15.109 10.454C15 10.2401 15 9.96005 15 9.4V6.6C15 6.03995 15 5.75992 15.109 5.54601C15.2049 5.35785 15.3578 5.20487 15.546 5.10899C15.7599 5 16.0399 5 16.6 5H19.4C19.9601 5 20.2401 5 20.454 5.10899C20.6422 5.20487 20.7951 5.35785 20.891 5.54601C21 5.75992 21 6.03995 21 6.6V9.4C21 9.96005 21 10.2401 20.891 10.454C20.7951 10.6422 20.6422 10.7951 20.454 10.891C20.2401 11 19.9601 11 19.4 11Z" stroke="#000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 824 B |
@ -0,0 +1,56 @@
|
|||||||
|
class KioskQueueModel {
|
||||||
|
int? id;
|
||||||
|
int? projectID;
|
||||||
|
String? projectName;
|
||||||
|
String? projectNameN;
|
||||||
|
int? queueID;
|
||||||
|
String? queueName;
|
||||||
|
String? queueNameN;
|
||||||
|
int? kioskID;
|
||||||
|
String? kioskName;
|
||||||
|
String? kioskNameN;
|
||||||
|
String? ipAddress;
|
||||||
|
bool? isActive;
|
||||||
|
int? createdBy;
|
||||||
|
String? createdOn;
|
||||||
|
dynamic editedBy;
|
||||||
|
dynamic editedOn;
|
||||||
|
|
||||||
|
KioskQueueModel({
|
||||||
|
this.id,
|
||||||
|
this.projectID,
|
||||||
|
this.projectName,
|
||||||
|
this.projectNameN,
|
||||||
|
this.queueID,
|
||||||
|
this.queueName,
|
||||||
|
this.queueNameN,
|
||||||
|
this.kioskID,
|
||||||
|
this.kioskName,
|
||||||
|
this.kioskNameN,
|
||||||
|
this.ipAddress,
|
||||||
|
this.isActive,
|
||||||
|
this.createdBy,
|
||||||
|
this.createdOn,
|
||||||
|
this.editedBy,
|
||||||
|
this.editedOn,
|
||||||
|
});
|
||||||
|
|
||||||
|
KioskQueueModel.fromJson(Map<String, dynamic> json) {
|
||||||
|
id = json['id'];
|
||||||
|
projectID = json['projectID'];
|
||||||
|
projectName = json['projectName'];
|
||||||
|
projectNameN = json['projectNameN'];
|
||||||
|
queueID = json['queueID'];
|
||||||
|
queueName = json['queueName'];
|
||||||
|
queueNameN = json['queueNameN'];
|
||||||
|
kioskID = json['kioskID'];
|
||||||
|
kioskName = json['kioskName'];
|
||||||
|
kioskNameN = json['kioskNameN'];
|
||||||
|
ipAddress = json['ipAddress'];
|
||||||
|
isActive = json['isActive'];
|
||||||
|
createdBy = json['createdBy'];
|
||||||
|
createdOn = json['createdOn'];
|
||||||
|
editedBy = json['editedBy'];
|
||||||
|
editedOn = json['editedOn'];
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,22 @@
|
|||||||
|
class KioskPatientTicket {
|
||||||
|
String? patientCallNo;
|
||||||
|
int? projectID;
|
||||||
|
int? ticketQueueID;
|
||||||
|
int? result;
|
||||||
|
|
||||||
|
KioskPatientTicket({
|
||||||
|
this.patientCallNo,
|
||||||
|
this.projectID,
|
||||||
|
this.ticketQueueID,
|
||||||
|
this.result,
|
||||||
|
});
|
||||||
|
|
||||||
|
factory KioskPatientTicket.fromJson(Map<String, dynamic> json) {
|
||||||
|
return KioskPatientTicket(
|
||||||
|
patientCallNo: json['patientCallNo'],
|
||||||
|
projectID: json['projectID'],
|
||||||
|
ticketQueueID: json['ticketQueueID'],
|
||||||
|
result: json['result'],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue