package model import "time" type GameShield struct { Id int `gorm:"primarykey"` AppName string GatewayGroupId int RuleId int Key string AddTime time.Time Uid int HostId int Checked int DunName string ExpireTime int64 `gorm:"type:bigint"` } func (m *GameShield) TableName() string { return "shd_game_shield" }