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