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