fasten-onprem/backend/pkg/models/related_resource.go

17 lines
849 B
Go
Raw Normal View History

package models
import "github.com/google/uuid"
//this model is used by the DB (see ResourceAssociation for web model)
type RelatedResource struct {
ResourceFhirUserID uuid.UUID `gorm:"resource_fhir_user_id"`
ResourceFhirSourceID uuid.UUID `gorm:"resource_fhir_source_id"`
ResourceFhirSourceResourceType string `gorm:"resource_fhir_source_resource_type"`
ResourceFhirSourceResourceID string `gorm:"resource_fhir_source_resource_id"`
RelatedResourceFhirUserID uuid.UUID `gorm:"related_resource_fhir_user_id"`
RelatedResourceFhirSourceID uuid.UUID `gorm:"related_resource_fhir_source_id"`
RelatedResourceFhirSourceResourceType string `gorm:"related_resource_fhir_source_resource_type"`
RelatedResourceFhirSourceResourceID string `gorm:"related_resource_fhir_source_resource_id"`
}