fix insert daftar jadwal dokter

This commit is contained in:
2024-09-24 11:45:22 +07:00
parent d39d254be8
commit 41a622fda4
11 changed files with 172 additions and 30 deletions

11
models/dokter/dokter.go Normal file
View File

@@ -0,0 +1,11 @@
package dokter
type DaftarDokter struct {
ID string `gorm:"column:id" json:"id"`
HfisCode string `gorm:"column:HFIS_code" json:"HFIS_code"`
}
type DaftarDokterRes struct {
ID string `gorm:"column:id" json:"id"`
HfisCode int `gorm:"column:HFIS_code" json:"HFIS_code"`
}

View File

@@ -4,4 +4,4 @@ type DaftarSpesialis struct {
ID int `json:"id"`
Kode string `json:"Kode"`
Spesialis string `json:"Spesialis"`
}
}