log.go 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package model
  2. const (
  3. //LogClientVideo 视频business id
  4. LogClientVideo = int(2)
  5. //LogClientTypeVideo 视频 type id
  6. LogClientTypeVideo = int(1)
  7. //LogClientConsumer 一审任务 business id
  8. LogClientConsumer = int(131)
  9. //LogClientTypeConsumer 一审任务type id
  10. LogClientTypeConsumer = int(1)
  11. )
  12. // SearchLogResult is.
  13. type SearchLogResult struct {
  14. Code int `json:"code"`
  15. Data struct {
  16. Order string `json:"order"`
  17. Sort string `json:"sort"`
  18. Result []struct {
  19. UID int64 `json:"uid"`
  20. Uname string `json:"uname"`
  21. OID int64 `json:"oid"`
  22. Type int8 `json:"type"`
  23. Action string `json:"action"`
  24. Str0 string `json:"str_0"`
  25. Str1 string `json:"str_1"`
  26. Str2 string `json:"str_2"`
  27. Int0 int `json:"int_0"`
  28. Int1 int `json:"int_1"`
  29. Int2 int `json:"int_2"`
  30. Ctime string `json:"ctime"`
  31. Extra string `json:"extra_data"`
  32. } `json:"result"`
  33. Page struct {
  34. Num int `json:"num"`
  35. Size int `json:"size"`
  36. Total int `json:"total"`
  37. } `json:"page"`
  38. } `json:"data"`
  39. }