Files
simrsx-be/internal/domain/main-entities/infra-group/entity.go
T
2025-08-27 10:20:40 +07:00

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"`
}