package db import "gorm.io/gorm" // HostGroup 主机组 type HostGroup struct { gorm.Model Name string `json:"name" gorm:"not null;comment:主机组名称;index"` Description string `json:"description" gorm:"null;comment:主机组描述"` ParentID uint `json:"parent_id" gorm:"null;comment:父级ID;index"` }