package proceduresrc import ( ecore "simrs-vx/internal/domain/base-entities/core" ) type ProcedureSrc struct { ecore.Main // adjust this according to the needs Code string `json:"code" gorm:"unique;size:10"` Name string `json:"name" gorm:"size:2048"` IndName string `json:"indName" gorm:"size:2048"` }