Files
simrsx-be/internal/domain/main-entities/general-consent/entity.go
T
2025-11-18 14:50:14 +07:00

13 lines
279 B
Go

package general_consent
import (
"simrs-vx/internal/domain/base-entities/core"
)
type GeneralConsent struct {
core.Main
Encounter_Id *uint `json:"encounter_id" gorm:"not null"`
Value *string `json:"value"`
FileUrl *string `json:"fileUrl" gorm:"size:1024"`
}