update ignore

This commit is contained in:
meninjar
2026-08-05 06:47:59 +00:00
parent 0add33f888
commit d0f0ee168b
273 changed files with 1234069 additions and 0 deletions

No files matched your search

@@ -0,0 +1,21 @@
package allergyintolerance
import (
"database/sql"
)
// AllergyIntoleranceDB merepresentasikan tabel data alergi pasien
// TODO: Sesuaikan field dan tag `db` dengan tabel SIMRS Anda
type AllergyIntoleranceDB struct {
IdxAlergi int64 `db:"idxalergi"`
NoMR sql.NullString `db:"nomr"`
}
type AllergyIntoleranceSyncLog struct {
IdxAlergi int64 `db:"idxalergi"`
AllergyIntoleranceID string `db:"allergyintolerance_id"`
RequestPayload string `db:"request_payload"`
ResponsePayload string `db:"response_payload"`
Status string `db:"status"`
ErrorMessage string `db:"error_message"`
}