initiate reference pasien

This commit is contained in:
renaldybrada
2026-02-03 12:24:30 +07:00
parent 11bcf44f6b
commit 6caee98c07
4 changed files with 195 additions and 0 deletions

No files matched your search

+12
View File
@@ -0,0 +1,12 @@
package pasien
type PasienModel struct {
Id int `db:"id"`
Alamat string `db:"alamat"`
AlamatKtp string `db:"alamat_ktp"`
JenisKelamin string `db:"jeniskelamin"`
Nama string `db:"nama"`
Nik string `db:"noktp"`
NoMr string `db:"nomr"`
TglLahir string `db:"tgllahir"`
}