update progress get dokter

This commit is contained in:
2024-09-25 15:11:33 +07:00
parent 8f606982fa
commit d5b06ff328
5 changed files with 56 additions and 14 deletions

View File

@@ -11,5 +11,14 @@ type DaftarDokterRes struct {
}
type NamaLengkap struct {
}
ID string `gorm:"column:id" json:"id"`
GelarDepan []string `gorm:"column:gelardepan" json:"gelardepan"`
NamaLengkap string `gorm:"column:Nama_lengkap" json:"Nama_lengkap"`
GelarBelakang []string `gorm:"column:gelarbelakang" json:"gelarbelakang"`
}
type ResponseDokter struct {
ID string `json:"id"`
NamaLengkap string `json:"nama_lengkap"`
Spesialis int `json:"spesialis"`
}