Merge branch 'migration' into feat/order-things

This commit is contained in:
2025-12-03 08:34:48 +07:00
@@ -6,9 +6,9 @@ import (
)
type CreateDto struct {
Encounter_Id uint64 `json:"encounter_id" validate:"required"`
Infra_Code string `json:"infra_code" validate:"required"`
MaterialPackage_Code string `json:"materialPackage_code" validate:"required"`
ProcedureRoomOrder_Id uint64 `json:"procedureRoomOrder_id"`
ProcedureRoom_Code string `json:"procedureRoom_code"`
Note string `json:"note"`
}
type ReadListDto struct {
@@ -22,7 +22,8 @@ type FilterDto struct {
}
type ReadDetailDto struct {
Id uint64 `json:"id"`
Id uint64 `json:"id"`
Includes string `json:"includes"`
}
type UpdateDto struct {