params.go 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package model
  2. import "go-common/library/time"
  3. // LogParams .
  4. type LogParams struct {
  5. Source string `form:"source"`
  6. Log string `form:"log"`
  7. IsAPP int `form:"is_app"`
  8. }
  9. // CollectParams .
  10. type CollectParams struct {
  11. SubEvent string `form:"sub_event" json:"sub_event"`
  12. Event string `form:"event" json:"event"`
  13. Product string `form:"product" json:"product"`
  14. Source string `form:"source" json:"source"`
  15. Code int `form:"code" json:"code"`
  16. ExtJSON string `form:"ext_json"`
  17. Mid int64
  18. IP string
  19. Buvid string
  20. UserAgent string
  21. }
  22. // Group .
  23. type Group struct {
  24. ID int64 `form:"id" json:"id"`
  25. Name string `form:"name" json:"name"`
  26. Receivers string `form:"receivers" json:"receivers"`
  27. Interval int `form:"interval" json:"interval"`
  28. Ctime time.Time `json:"ctime"`
  29. Mtime time.Time `json:"mtime"`
  30. }
  31. // Target .
  32. type Target struct {
  33. ID int64 `form:"id" json:"id"`
  34. SubEvent string `form:"sub_event" json:"sub_event"`
  35. Event string `form:"event" json:"event"`
  36. Product string `form:"product" json:"product"`
  37. Source string `form:"source" json:"source"`
  38. GroupIDs string `form:"gid" json:"-"`
  39. Groups []*Group `json:"groups"`
  40. States string `form:"states" json:"-"`
  41. State int `form:"state" json:"state"`
  42. Threshold int `form:"threshold" json:"threshold"`
  43. Duration int `form:"duration" json:"duration"`
  44. DeleteTime time.Time `json:"deleted_time"`
  45. Ctime time.Time `json:"ctime"`
  46. Mtime time.Time `json:"mtime"`
  47. }
  48. // Targets .
  49. type Targets struct {
  50. Total int `json:"total"`
  51. Page int `json:"page"`
  52. PageSize int `json:"pagesize"`
  53. Draw int `form:"draw" json:"draw"`
  54. Targets []*Target `json:"targets"`
  55. }
  56. // GroupListParams .
  57. type GroupListParams struct {
  58. Pn int `form:"pn" json:"pn"`
  59. Ps int `form:"ps" json:"ps"`
  60. Name string `form:"name" json:"name"`
  61. }
  62. // Groups .
  63. type Groups struct {
  64. Total int `json:"total"`
  65. Page int `json:"page"`
  66. PageSize int `json:"pagesize"`
  67. Groups []*Group `json:"groups"`
  68. }
  69. // Product .
  70. type Product struct {
  71. ID int64 `form:"id" json:"id"`
  72. Name string `form:"name" json:"name"`
  73. GroupIDs string `form:"gid" json:"-"`
  74. Groups []*Group `json:"groups"`
  75. State int `form:"state" json:"state"`
  76. Ctime time.Time `json:"ctime"`
  77. Mtime time.Time `json:"mtime"`
  78. }
  79. // Products .
  80. type Products struct {
  81. Total int `json:"total"`
  82. Page int `json:"page"`
  83. PageSize int `json:"pagesize"`
  84. Products []*Product `json:"products"`
  85. }