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