| 1234567891011121314151617181920 |
- package log
- /*
- 封号ip日志
- */
- type SealIpLog struct {
- Id uint `json:"id"`
- Ip string `json:"ip"` //模拟器ip
- LogUuid string `json:"log_uuid"` //日志UUID
- GameId int `json:"game_id"` //游戏id
- Account string `json:"account"` //账号
- PcCode string `json:"pc_code"` //电脑编号
- CreateDate string `json:"create_date"` // 创建日期
- CreateTime string `json:"create_time"` // 创建时间
- }
- func (SealIpLog) TableName() string {
- return "seal_ip_log"
- }
|