gameshieldpublicip.go 328 B

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