34 lines
1.7 KiB
Go
34 lines
1.7 KiB
Go
package simrs
|
|
|
|
type Practitionerdoktersimrs struct {
|
|
IDDokter string `gorm:"column:id_kddokter" json:"kd_dokter"`
|
|
KDPoly string `gorm:"column:id_kdpoly" json:"kdpoly"`
|
|
KodeDpjp string `gorm:"column:id_kodedpjp" json:"kodedpjp"`
|
|
NIP string `gorm:"column:id_nip" json:"nip"`
|
|
Aktif string `gorm:"column:st_aktif" json:"aktif"`
|
|
NamaDokter string `gorm:"column:nm_namadokter" json:"nama_dokter"`
|
|
NomorHP string `gorm:"column:te_nomorhp" json:"nomor_hp"`
|
|
Email string `gorm:"column:te_email" json:"email"`
|
|
QuSIP string `gorm:"column:qu_sip" json:"qu_sip"`
|
|
QuSPK string `gorm:"column:qu_spk" json:"qu_spk"`
|
|
SMF string `gorm:"column:ex_smf" json:"smf"`
|
|
Kategori string `gorm:"column:ex_kategori" json:"kategori"`
|
|
}
|
|
|
|
type Practitionerperawatsimrs struct {
|
|
IDPerawat string `gorm:"column:id_perawat" json:"id_perawat"`
|
|
NIPPer string `gorm:"column:id_nip" json:"ni["`
|
|
Noktp string `gorm:"column:id_noktp" json:"id_noktp"`
|
|
Status string `gorm:"column:st_status" json:"status"`
|
|
NamaPerawat string `gorm:"column:nm_nama" json:"nama_perawat"`
|
|
Telepon string `gorm:"column:te_telpon" json:"telepon"`
|
|
JenisKelamain string `gorm:"column:ge_jeniskelamain" json:"jenis_kelamain"`
|
|
Tgllahir string `gorm:"column:bir_tgllahir" json:"tgllahir"`
|
|
Alamat string `gorm:"column:ad_alamat" json:"alamat"`
|
|
Kelurahan string `gorm:"column:ad_kelurahan" json:"kelurahan"`
|
|
Kecamatan string `gorm:"column:ad_kecamatan" json:"kecamatan"`
|
|
Kota string `gorm:"column:ad_kota" json:"kota"`
|
|
Provinsi string `gorm:"column:provinsi" json:"provinsi"`
|
|
Tempatlahir string `gorm:"column:ex_tempatlahir" json:"tempatlahir"`
|
|
}
|