dialog daftar pasien

This commit is contained in:
Hanan Askarim
2024-06-14 19:57:45 +07:00
parent e6b5435337
commit 382f91c6ca
13 changed files with 1870 additions and 127 deletions

View File

@@ -1,5 +1,7 @@
package models
import "github.com/a-h/templ"
type ModelMcuDaftarPeserta struct {
T_OrderHeaderID string `db:"T_OrderHeaderID"`
T_OrderHeaderDate string `db:"T_OrderHeaderDate"`
@@ -13,3 +15,27 @@ type ModelMcuDaftarPeserta struct {
M_PatientDOB string `db:"M_PatientDOB"`
Age string `db:"age"`
}
type ModelButtonPrintComponent struct {
IDComponent string
Link string
HxTarget string
HxSwap string
HxInclude string
ModalBtnPrintID string
ModalBtnPrintTitle string
DialogBody templ.Component
ButtonClose templ.Component
}
type ModelPrintComponent struct {
IDComponent string
Link string
HxTarget string
HxSwap string
HxInclude string
ModalPrintID string
ModalPrintTitle string
DialogBody templ.Component
ButtonClose templ.Component
}