seal_ip.go 528 B

1234567891011121314151617181920
  1. package log
  2. /*
  3. 封号ip日志
  4. */
  5. type SealIpLog struct {
  6. Id uint `json:"id"`
  7. Ip string `json:"ip"` //模拟器ip
  8. LogUuid string `json:"log_uuid"` //日志UUID
  9. GameId int `json:"game_id"` //游戏id
  10. Account string `json:"account"` //账号
  11. PcCode string `json:"pc_code"` //电脑编号
  12. CreateDate string `json:"create_date"` // 创建日期
  13. CreateTime string `json:"create_time"` // 创建时间
  14. }
  15. func (SealIpLog) TableName() string {
  16. return "seal_ip_log"
  17. }