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