member.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. //CondIntNil cond int nil
  6. const CondIntNil = -10516
  7. // DmRecentResponse .
  8. type DmRecentResponse struct {
  9. Page *Page `json:"page"`
  10. Data []*DMMember `json:"result"`
  11. }
  12. // Recent recent dm
  13. type Recent struct {
  14. ID int64 `json:"id"`
  15. Type int32 `json:"type"`
  16. Aid int64 `json:"pid"`
  17. Oid int64 `json:"oid"`
  18. Mid int64 `json:"mid"`
  19. Pool int32 `json:"pool"`
  20. Attr int32 `json:"attr"`
  21. Progress int32 `json:"progress"`
  22. Mode int32 `json:"mode"`
  23. Msg string `json:"msg"`
  24. State int32 `json:"state"`
  25. FontSize int32 `json:"fontsize"`
  26. Color int32 `json:"color"`
  27. Ctime string `json:"ctime"`
  28. }
  29. // DMMember dm struct used in member
  30. type DMMember struct {
  31. ID int64 `json:"id"`
  32. IDStr string `json:"id_str"`
  33. Type int32 `json:"type"`
  34. Aid int64 `json:"aid"`
  35. Oid int64 `json:"oid"`
  36. Mid int64 `json:"mid"`
  37. MidHash string `json:"mid_hash"`
  38. Pool int32 `json:"pool"`
  39. Attrs string `json:"attrs"`
  40. Progress int32 `json:"progress"`
  41. Mode int32 `json:"mode"`
  42. Msg string `json:"msg"`
  43. State int32 `json:"state"`
  44. FontSize int32 `json:"fontsize"`
  45. Color string `json:"color"`
  46. Ctime time.Time `json:"ctime"`
  47. Uname string `json:"uname"`
  48. Title string `json:"title"`
  49. }
  50. // SearchDMParams dm search params
  51. type SearchDMParams struct {
  52. Type int32
  53. Oid int64
  54. Keyword string
  55. Mids string
  56. Mode string
  57. Pool string
  58. Attrs string
  59. ProgressFrom int64
  60. ProgressTo int64
  61. CtimeFrom string
  62. CtimeTo string
  63. Pn int64
  64. Ps int64
  65. Sort string
  66. Order string
  67. State string
  68. }
  69. // SearchRecentDMParam .
  70. type SearchRecentDMParam struct {
  71. Type int32
  72. UpMid int64
  73. States []int32
  74. Ps int
  75. Pn int
  76. Sort string
  77. Field string
  78. }
  79. // SearchRecentDMResult .
  80. type SearchRecentDMResult struct {
  81. Page *Page `json:"page"`
  82. Result []*Recent `json:"result"`
  83. }
  84. // SearchDMData dm meta data from search
  85. type SearchDMData struct {
  86. Result []*struct {
  87. ID int64 `json:"id"`
  88. } `json:"result"`
  89. Page *SearchPage
  90. }
  91. //SearchDMResult dm list
  92. type SearchDMResult struct {
  93. Page struct {
  94. Num int64 `json:"num"`
  95. Size int64 `json:"size"`
  96. Total int64 `json:"total"`
  97. } `json:"page"`
  98. Result []*DMMember `json:"result"`
  99. }
  100. // UptSearchDMState update search dm state
  101. type UptSearchDMState struct {
  102. ID int64 `json:"id"`
  103. Oid int64 `json:"oid"`
  104. Type int32 `json:"type"`
  105. State int32 `json:"state"`
  106. Mtime string `json:"mtime"`
  107. }
  108. // UptSearchDMPool update search dm pool
  109. type UptSearchDMPool struct {
  110. ID int64 `json:"id"`
  111. Oid int64 `json:"oid"`
  112. Type int32 `json:"type"`
  113. Pool int32 `json:"pool"`
  114. Mtime string `json:"mtime"`
  115. }
  116. // UptSearchDMAttr update search dm attr
  117. type UptSearchDMAttr struct {
  118. ID int64 `json:"id"`
  119. Oid int64 `json:"oid"`
  120. Type int32 `json:"type"`
  121. Attr int32 `json:"attr"`
  122. Mtime string `json:"mtime"`
  123. AttrFormat []int64 `json:"attr_format"`
  124. }