| 12345678910111213141516171819 |
- package log
- type ReportPointsLog struct {
- Id uint `json:"id"`
- Account string `json:"account"`
- GameId int `json:"game_id"`
- ReportPointsNum int `json:"report_points_num"`
- ReportPointsData string `json:"report_points_data"`
- Status int `json:"status"`
- LogUuid string `json:"log_uuid"`
- Coding int `json:"coding"`
- CreateDate string `json:"create_date"`
- CreateTime string `json:"create_time"` // 创建时间
- }
- func (ReportPointsLog) TableName() string {
- return "log_report_points"
- }
|