Files
simrsx-be/internal/domain/main-entities/general-consent/entity.go
T

13 lines
278 B
Go

package generalconsent
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"`
}