step 10 : proses add data dokter

This commit is contained in:
sindhu
2024-06-05 09:35:14 +07:00
parent 7819a0f900
commit 61e62d4726
8 changed files with 2193 additions and 216 deletions

View File

@@ -9,6 +9,7 @@ import (
type DoctorV1 struct {
Nomor string `db:"nomor"`
M_DoctorID int `db:"M_DoctorID"`
M_DoctorM_TitleID int `db:"M_DoctorM_TitleID"`
M_DoctorCode string `db:"M_DoctorCode"`
M_DoctorPrefix string `db:"M_DoctorPrefix"`
M_DoctorPrefix2 string `db:"M_DoctorPrefix2"`
@@ -28,6 +29,8 @@ type DoctorV1 struct {
M_DoctorCitizenship string `db:"M_DoctorCitizenship"`
M_DoctorEtnicCode string `db:"M_DoctorEtnicCode"`
M_DoctorEtnicSystem string `db:"M_DoctorEtnicSystem"`
M_DoctorIdentifierCode string `db:"M_DoctorIdentifierCode"`
M_DoctorIdentifierSystem string `db:"M_DoctorIdentifierSystem"`
M_DoctorIdentifierValue string `db:"M_DoctorIdentifierValue"`
M_DoctorHp string `db:"M_DoctorHp"`
M_DoctorEmail string `db:"M_DoctorEmail"`
@@ -47,6 +50,7 @@ type DoctorV1 struct {
M_DoctorLastUpdatedUserID string `db:"M_DoctorLastUpdatedUserID"`
M_DoctorDeletedUserID string `db:"M_DoctorDeletedUserID"`
M_DoctorDeleted string `db:"M_DoctorDeleted"`
M_DoctorIsActive string `db:"M_DoctorIsActive"`
}
// title
@@ -77,7 +81,7 @@ type SpecialistV0 struct {
}
// hardcode dropdown(jenis kelamin)
type HardCodeDropdownV0 struct {
type HardCodeDropdownJKV0 struct {
ID int `json:"ID"`
Text string `json:"Text"`
}