gameshieldpublicip.go 281 B

1234567891011121314
  1. package model
  2. import "time"
  3. type GameShieldPublicIp struct {
  4. Id int `gorm:"primarykey"`
  5. Uid int `gorm:"null"`
  6. Ip string `gorm:"null"`
  7. CreateTime time.Time
  8. }
  9. func (m *GameShieldPublicIp) TableName() string {
  10. return "shd_game_shield_public_ip"
  11. }