add autologon, + generate password btn peserta dashboard pic
This commit is contained in:
@@ -12,6 +12,8 @@ type ModelMcuDaftarPeserta struct {
|
||||
JenisKelamin string `db:"jenisKelamin"`
|
||||
M_PatientDOB string `db:"M_PatientDOB"`
|
||||
Age string `db:"age"`
|
||||
AuthPatientEmail string `db:"authPatientEmail"`
|
||||
AuthPatientIsActive string `db:"authPatientIsActive"`
|
||||
}
|
||||
|
||||
type ModelMcuPesertaReport struct {
|
||||
@@ -37,3 +39,16 @@ type OrderReport struct {
|
||||
M_OrderReportIsActive string `db:"M_OrderReportIsActive"`
|
||||
Datetime string `db:"Datetime"`
|
||||
}
|
||||
|
||||
type GeneratePasswordResponse struct {
|
||||
Status string `json:"status"`
|
||||
Message string `json:"message"`
|
||||
}
|
||||
|
||||
type AuthPatient struct {
|
||||
AuthPatientID int `db:"authPatientID"`
|
||||
AuthPatientM_PatientID int `db:"authPatientM_PatientID"`
|
||||
AuthPatientEmail string `db:"authPatientEmail"`
|
||||
AuthPatientPassword string `db:"authPatientPassword"`
|
||||
AuthPatientIsActive string `db:"authPatientIsActive"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user