// Code generated by gorm.io/gen. DO NOT EDIT. // Code generated by gorm.io/gen. DO NOT EDIT. // Code generated by gorm.io/gen. DO NOT EDIT. package model const TableNameChatReportLog = "chat_report_log" // ChatReportLog mapped from table type ChatReportLog struct { ID int64 `gorm:"column:id;primaryKey;autoIncrement:true" json:"id"` PlayerID int64 `gorm:"column:player_id;not null;comment:举报者id" json:"player_id"` // 举报者id PlayerName string `gorm:"column:player_name;comment:举报者昵称" json:"player_name"` // 举报者昵称 ServerID int32 `gorm:"column:server_id;not null;comment:举报者服务器id" json:"server_id"` // 举报者服务器id ClanChatID string `gorm:"column:clan_chat_id;not null;comment:违规的消息id" json:"clan_chat_id"` // 违规的消息id ClanPlayerID int64 `gorm:"column:clan_player_id;not null;comment:违规者id" json:"clan_player_id"` // 违规者id ClanPlayerName string `gorm:"column:clan_player_name;comment:违规者昵称" json:"clan_player_name"` // 违规者昵称 ClanServerID int32 `gorm:"column:clan_server_id;not null;comment:违规者服务器id" json:"clan_server_id"` // 违规者服务器id ClanContent string `gorm:"column:clan_content;comment:违规消息内容" json:"clan_content"` // 违规消息内容 ClanChatChannel int32 `gorm:"column:clan_chat_channel;not null;comment:频道类型" json:"clan_chat_channel"` // 频道类型 LeagueCode string `gorm:"column:league_code;comment:联盟code" json:"league_code"` // 联盟code ClanTime int64 `gorm:"column:clan_time;not null;comment:违规时间(毫秒)" json:"clan_time"` // 违规时间(毫秒) CreateTime int64 `gorm:"column:create_time;not null;comment:上传时间(毫秒)" json:"create_time"` // 上传时间(毫秒) } // TableName ChatReportLog's table name func (*ChatReportLog) TableName() string { return TableNameChatReportLog }