first commit
This commit is contained in:
No files matched your search
@@ -0,0 +1,22 @@
|
||||
package composition
|
||||
|
||||
import (
|
||||
"database/sql"
|
||||
)
|
||||
|
||||
// CompositionDB merepresentasikan dokumen klinis
|
||||
// TODO: Sesuaikan dengan tabel dokumen Anda
|
||||
type CompositionDB struct {
|
||||
IdxDokumen int64 `db:"idxdokumen"`
|
||||
IdxDaftar int64 `db:"idxdaftar"`
|
||||
NoMR sql.NullString `db:"nomr"`
|
||||
}
|
||||
|
||||
type CompositionSyncLog struct {
|
||||
IdxDokumen int64 `db:"idxdokumen"`
|
||||
CompositionID string `db:"composition_id"`
|
||||
RequestPayload string `db:"request_payload"`
|
||||
ResponsePayload string `db:"response_payload"`
|
||||
Status string `db:"status"`
|
||||
ErrorMessage string `db:"error_message"`
|
||||
}
|
||||
Reference in New Issue
Block a user