gameshielduserip.go 308 B

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