log_report_points.go 504 B

12345678910111213141516
  1. package response
  2. import "log-server/model/log/request"
  3. type GetReportPointsReply struct {
  4. Id uint `json:"id"`
  5. Account string `json:"account"`
  6. GameId int `json:"game_id"`
  7. ReportPointsNum int `json:"report_points_num"`
  8. ReportPointsData []request.ReportPointsData
  9. Status int `json:"status"`
  10. LogUuid string `json:"log_uuid"`
  11. CreateDate string `json:"create_date"`
  12. CreateTime string `json:"create_time"` // 创建时间
  13. }