update structure and bridging bpjs

This commit is contained in:
2024-09-19 13:38:24 +07:00
parent e497eaeefc
commit 377f45f5a9
15 changed files with 210 additions and 27 deletions

View File

@@ -0,0 +1,8 @@
package dokter
type DaftarSubspesialis struct {
ID int `json:"id"`
Kode string `json:"Kode"`
Subspesialis string `json:"Subspesialis"`
FKDaftarSpesialisID int `json:"FK_daftar_spesialis_ID" gorm:"column:FK_daftar_spesialis_ID"`
}