stat.go 269 B

1234567891011121314
  1. package model
  2. // Stat stat
  3. type Stat struct {
  4. Total int64 `json:"total"`
  5. ErrorType int64 `json:"error_type"`
  6. }
  7. // ErrorFix error fix
  8. type ErrorFix struct {
  9. Action string `json:"action"`
  10. Mid int64 `json:"mid"`
  11. ErrorType int64 `json:"error_type"`
  12. }