feat (vclaim/bpjs/jkn): add several endpoint

This commit is contained in:
dpurbosakti
2025-12-01 12:43:23 +07:00
parent 2a39301563
commit 2a979f60a6
24 changed files with 561 additions and 27 deletions

No files matched your search

@@ -0,0 +1,7 @@
package controlplan
type ReadListDto struct {
PathValue1 string `json:"-"` // jenis kontrol
PathValue2 string `json:"-"` // kode poli
PathValue3 string `json:"-"` // tanggal
}
@@ -0,0 +1,22 @@
package controlplan
type Response struct {
MetaData MetaData `json:"metaData"`
Response *ResponseItems `json:"response"` // nullable
}
type MetaData struct {
Code string `json:"code"`
Message string `json:"message"`
}
type ResponseItems struct {
List []DoctorSchedule `json:"list"`
}
type DoctorSchedule struct {
JadwalPraktek string `json:"jadwalPraktek"`
Kapasitas string `json:"kapasitas"`
KodeDokter string `json:"kodeDokter"`
NamaDokter string `json:"namaDokter"`
}