package model import "gorm.io/gorm" type GatewayGroup struct { gorm.Model } func (m *GatewayGroup) TableName() string { return "gateway_group" }