13 lines
306 B
Go
13 lines
306 B
Go
package infragroup
|
|
|
|
import (
|
|
ecore "simrs-vx/internal/domain/base-entities/core"
|
|
)
|
|
|
|
type InfraGroup struct {
|
|
ecore.Main // adjust this according to the needs
|
|
Code string `json:"code" gorm:"unique;size:10"`
|
|
Name string `json:"name" gorm:"size:50"`
|
|
Level uint8 `json:"level"`
|
|
}
|