- 在 GameShieldBackend 模型中增加 RealIp 字段,用于存储真实 IP 地址 - 该字段将用于提高游戏盾后台的安全性和准确性
@@ -14,6 +14,7 @@ type GameShieldBackend struct {
SdkIp string `gorm:"null"`
Type string
MaxBandwidth int `gorm:"not null;type:tinyint"`
+ RealIp string
Host string
Remark string
CreatedAt time.Time