Files
simrsx-be/internal/domain/main-entities/division/entity.go
T
2025-08-20 13:07:56 +07:00

13 lines
319 B
Go

package division
import (
ecore "simrs-vx/internal/domain/base-entities/core"
)
type Division struct {
ecore.SmallMain // adjust this according to the needs
Code string `json:"code" gorm:"size:10"`
Name string `json:"name" gorm:"size:50"`
Parent_Id *int16 `json:"parent_id"`
}