first commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package questionnaireresponse
|
||||
|
||||
import (
|
||||
"database/sql"
|
||||
)
|
||||
|
||||
// QuestionnaireResponseDB merepresentasikan tabel data pengkajian / kuesioner pasien
|
||||
// TODO: Sesuaikan field dan tag `db` dengan tabel SIMRS Anda
|
||||
type QuestionnaireResponseDB struct {
|
||||
IdxKuesioner int64 `db:"idxkuesioner"`
|
||||
IdxDaftar int64 `db:"idxdaftar"`
|
||||
NoMR sql.NullString `db:"nomr"`
|
||||
TglIsi sql.NullTime `db:"tgl_isi"`
|
||||
}
|
||||
|
||||
type QuestionnaireResponseSyncLog struct {
|
||||
IdxKuesioner int64 `db:"idxkuesioner"`
|
||||
QuestionnaireResponseID string `db:"questionnaireresponse_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