14 lines
452 B
Go
14 lines
452 B
Go
package mcusrccategory
|
|
|
|
import (
|
|
ecore "simrs-vx/internal/domain/base-entities/core"
|
|
erc "simrs-vx/internal/domain/references/clinical"
|
|
)
|
|
|
|
type McuSrcCategory struct {
|
|
ecore.SmallMain // adjust this according to the needs
|
|
Code string `json:"code" gorm:"unique;size:20"`
|
|
Name string `json:"name" gorm:"size:50"`
|
|
Scope_Code erc.McuScopeCode `json:"scope_code" gorm:"index;size:10"`
|
|
}
|