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