package medicinegroup import ( ecore "simrs-vx/internal/domain/base-entities/core" ) type MedicineGroup struct { ecore.SmallMain // adjust this according to the needs Code string `json:"code" gorm:"unique;size:50"` Name string `json:"name" gorm:"size:100"` }