rpc.go 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. package model
  2. import "go-common/app/interface/main/dm2/model/oplog"
  3. // ArgOids arguments passed by rpc client
  4. type ArgOids struct {
  5. Type int32
  6. Plat int8
  7. Oids []int64
  8. RealIP string
  9. }
  10. // ArgEditDMState arguments passed by rpc client
  11. type ArgEditDMState struct {
  12. Type int32
  13. Oid int64
  14. Mid int64
  15. State int32
  16. Dmids []int64
  17. Source oplog.Source
  18. OperatorType oplog.OperatorType
  19. }
  20. // ArgEditDMPool arguments passed by rpc client
  21. type ArgEditDMPool struct {
  22. Type int32
  23. Oid int64
  24. Mid int64
  25. Pool int32
  26. Dmids []int64
  27. Source oplog.Source
  28. OperatorType oplog.OperatorType
  29. }
  30. // ArgEditDMAttr edit dm attr,bit: AttrXXX defined in model,value:AttrYes/AttrNo
  31. type ArgEditDMAttr struct {
  32. Type int32
  33. Oid int64
  34. Mid int64
  35. Bit uint
  36. Value int32
  37. Dmids []int64
  38. Source oplog.Source
  39. OperatorType oplog.OperatorType
  40. }
  41. // ArgAdvance arguments passed by rpc client
  42. type ArgAdvance struct {
  43. Mid int64
  44. Cid int64
  45. Mode string
  46. }
  47. // ArgMid arguments passed by rpc client
  48. type ArgMid struct {
  49. Mid int64
  50. }
  51. // ArgUpAdvance arguments passed by rpc client
  52. type ArgUpAdvance struct {
  53. Mid int64
  54. ID int64
  55. }
  56. // ArgAddUserFilters add user filters
  57. type ArgAddUserFilters struct {
  58. Type int8
  59. Mid int64
  60. Filters []string
  61. Comment string
  62. }
  63. // ArgDelUserFilters delete user filter
  64. type ArgDelUserFilters struct {
  65. Mid int64
  66. IDs []int64
  67. }
  68. // ArgAddUpFilters add up filters
  69. type ArgAddUpFilters struct {
  70. Type int8
  71. Mid int64
  72. Filters []string
  73. }
  74. // ArgUpFilters up filters
  75. type ArgUpFilters struct {
  76. Mid int64
  77. }
  78. // ArgEditUpFilters edit up filter
  79. type ArgEditUpFilters struct {
  80. Type int8
  81. Mid int64
  82. Active int8
  83. Filters []string
  84. }
  85. // ArgAddGlobalFilter add global filter
  86. type ArgAddGlobalFilter struct {
  87. Type int8
  88. Filter string
  89. }
  90. // ArgGlobalFilters get global filter
  91. type ArgGlobalFilters struct {
  92. }
  93. // ArgDelGlobalFilters delete global filters
  94. type ArgDelGlobalFilters struct {
  95. IDs []int64
  96. }
  97. // ArgBanUsers ban users
  98. type ArgBanUsers struct {
  99. Mid int64
  100. Oid int64
  101. DMIDs []int64
  102. }
  103. // ArgCancelBanUsers cancel banned users
  104. type ArgCancelBanUsers struct {
  105. Mid int64
  106. Aid int64
  107. Filters []string
  108. }
  109. // ArgCid arg cid
  110. type ArgCid struct {
  111. Cid int64
  112. }
  113. // ArgSubtitleGet .
  114. type ArgSubtitleGet struct {
  115. Aid int64
  116. Oid int64
  117. Type int32
  118. }
  119. // ArgSubtitleAllowSubmit .
  120. type ArgSubtitleAllowSubmit struct {
  121. Aid int64
  122. AllowSubmit bool
  123. Lan string
  124. }
  125. // SubtitleSubjectReply .
  126. type SubtitleSubjectReply struct {
  127. AllowSubmit bool
  128. Lan string
  129. LanDoc string
  130. }
  131. // ArgArchiveID .
  132. type ArgArchiveID struct {
  133. Aid int64
  134. }
  135. // ArgMask .
  136. type ArgMask struct {
  137. Cid int64
  138. Plat int8
  139. }