new branch

This commit is contained in:
2024-12-20 08:57:06 +07:00
parent e7f4001ac7
commit 81b7cb08e8
24 changed files with 1273 additions and 166 deletions

No files matched your search

+9 -1
View File
@@ -17,4 +17,12 @@ type DataLogAPI struct {
ResponTimeStart string `gorm:"column:Respontime_start" json:"Respontime_start"`
ResponTimeEnd string `gorm:"column:Respontime_end" json:"Respontime_end"`
Comment string `gorm:"column:Comment" json:"Comment"`
}
RequestString string `json:"Request_string"`
ResponString string `json:"Respon_string"`
}
type ReqGetDataLogAPI struct {
TanggalAwal string `json:"Tanggal_awal"`
TanggalAkhir string `json:"Tanggal_akhir"`
TipeRawat string `json:"Tipe_rawat"`
}
+10
View File
@@ -0,0 +1,10 @@
package logapi
type InsertLogICare struct {
ID string `gorm:"column:id" json:"id"`
DateCreated string `gorm:"column:date_created" json:"date_created"`
Ruangan int `gorm:"column:Ruangan" json:"Ruangan"`
Dokter string `gorm:"column:Dokter" json:"Dokter"`
Kunjungan_pasien string `gorm:"column:Kunjungan_pasien" json:"Kunjungan_pasien"`
WaktuTransaksi string `gorm:"column:Waktu_transaksi" json:"Waktu_transaksi"`
}