package model import "time" type GameShieldBackend struct { Id int `gorm:"primary"` HostId int `gorm:"not null"` Key int SourceMachineIP string `` Protocol string `gorm:"not null"` ProxyAddr string `gorm:"null"` ConnectPort string `gorm:"not null"` SdkPort string PublicIp string `gorm:"null"` Type string CreatedAt time.Time UpdatedAt time.Time } func (m *GameShieldBackend) TableName() string { return "shd_game_shield_backend" }