journal.go 221 B

12345678910111213141516
  1. package model
  2. import (
  3. "encoding/json"
  4. )
  5. // LogRes .
  6. type LogRes struct {
  7. Code int `json:"code"`
  8. Data *LogChild `json:"data"`
  9. }
  10. // LogChild .
  11. type LogChild struct {
  12. Result []json.RawMessage `json:"result"`
  13. }