- package response
- import "log-server/model/log/request"
- type GetReportPointsReply struct {
- Id uint `json:"id"`
- Account string `json:"account"`
- GameId int `json:"game_id"`
- ReportPointsNum int `json:"report_points_num"`
- ReportPointsData []request.ReportPointsData
- Status int `json:"status"`
- LogUuid string `json:"log_uuid"`
- CreateDate string `json:"create_date"`
- CreateTime string `json:"create_time"` // 创建时间
- }
|