13 lines
278 B
Go
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"`
|
|
}
|