package model import "time" type GameShieldPublicIp struct { Id int `gorm:"primarykey"` Uid int `gorm:"null"` Ip string `gorm:"null"` CreateTime time.Time } func (m *GameShieldPublicIp) TableName() string { return "shd_game_shield_public_ip" }