add encounter-checkin

This commit is contained in:
vanilia
2025-10-27 06:25:12 +07:00
parent a7ce13c76e
commit a2ce9d9357
9 changed files with 192 additions and 66 deletions
@@ -105,6 +105,17 @@ type DischargeDto struct {
InternalReferences *[]eir.CreateDto `json:"internalReferences,omitempty"`
}
type CheckinDto struct {
Id uint `json:"id"`
Responsible_Doctor_Id *uint `json:"responsible_doctor_id"`
Responsible_Doctor_StartedAt *time.Time `json:"responsible_doctor_startedAt"`
Responsible_Doctor_FinishedAt *time.Time `json:"responsible_doctor_finishedAt"`
Adm_Employee_Id *uint `json:"adm_employee_id"`
Adm_Employee_StartedAt *time.Time `json:"adm_employee_startedAt"`
Adm_Employee_FinishedAt *time.Time `json:"adm_employee_finishedAt"`
}
type ResponseDto struct {
ecore.Main
Patient_Id *uint `json:"patient_id"`