statistics.pb.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.26.0-devel
  4. // protoc v3.15.8
  5. // source: statistics.proto
  6. package statistics
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. emptypb "google.golang.org/protobuf/types/known/emptypb"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. type UserStatisticsMessageReply struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. LikeNum int64 `protobuf:"varint,1,opt,name=likeNum,proto3" json:"likeNum"`
  25. LikedNum int64 `protobuf:"varint,2,opt,name=likedNum,proto3" json:"likedNum"`
  26. LikedUnreadNum int64 `protobuf:"varint,3,opt,name=likedUnreadNum,proto3" json:"likedUnreadNum"`
  27. LookNum int64 `protobuf:"varint,4,opt,name=lookNum,proto3" json:"lookNum"`
  28. LookUnreadNum int64 `protobuf:"varint,5,opt,name=lookUnreadNum,proto3" json:"lookUnreadNum"`
  29. }
  30. func (x *UserStatisticsMessageReply) Reset() {
  31. *x = UserStatisticsMessageReply{}
  32. if protoimpl.UnsafeEnabled {
  33. mi := &file_statistics_proto_msgTypes[0]
  34. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  35. ms.StoreMessageInfo(mi)
  36. }
  37. }
  38. func (x *UserStatisticsMessageReply) String() string {
  39. return protoimpl.X.MessageStringOf(x)
  40. }
  41. func (*UserStatisticsMessageReply) ProtoMessage() {}
  42. func (x *UserStatisticsMessageReply) ProtoReflect() protoreflect.Message {
  43. mi := &file_statistics_proto_msgTypes[0]
  44. if protoimpl.UnsafeEnabled && x != nil {
  45. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  46. if ms.LoadMessageInfo() == nil {
  47. ms.StoreMessageInfo(mi)
  48. }
  49. return ms
  50. }
  51. return mi.MessageOf(x)
  52. }
  53. // Deprecated: Use UserStatisticsMessageReply.ProtoReflect.Descriptor instead.
  54. func (*UserStatisticsMessageReply) Descriptor() ([]byte, []int) {
  55. return file_statistics_proto_rawDescGZIP(), []int{0}
  56. }
  57. func (x *UserStatisticsMessageReply) GetLikeNum() int64 {
  58. if x != nil {
  59. return x.LikeNum
  60. }
  61. return 0
  62. }
  63. func (x *UserStatisticsMessageReply) GetLikedNum() int64 {
  64. if x != nil {
  65. return x.LikedNum
  66. }
  67. return 0
  68. }
  69. func (x *UserStatisticsMessageReply) GetLikedUnreadNum() int64 {
  70. if x != nil {
  71. return x.LikedUnreadNum
  72. }
  73. return 0
  74. }
  75. func (x *UserStatisticsMessageReply) GetLookNum() int64 {
  76. if x != nil {
  77. return x.LookNum
  78. }
  79. return 0
  80. }
  81. func (x *UserStatisticsMessageReply) GetLookUnreadNum() int64 {
  82. if x != nil {
  83. return x.LookUnreadNum
  84. }
  85. return 0
  86. }
  87. type PartnerStatisticsMessageReply struct {
  88. state protoimpl.MessageState
  89. sizeCache protoimpl.SizeCache
  90. unknownFields protoimpl.UnknownFields
  91. LookNum int64 `protobuf:"varint,1,opt,name=lookNum,proto3" json:"lookNum"`
  92. LookUnreadNum int64 `protobuf:"varint,2,opt,name=lookUnreadNum,proto3" json:"lookUnreadNum"`
  93. }
  94. func (x *PartnerStatisticsMessageReply) Reset() {
  95. *x = PartnerStatisticsMessageReply{}
  96. if protoimpl.UnsafeEnabled {
  97. mi := &file_statistics_proto_msgTypes[1]
  98. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  99. ms.StoreMessageInfo(mi)
  100. }
  101. }
  102. func (x *PartnerStatisticsMessageReply) String() string {
  103. return protoimpl.X.MessageStringOf(x)
  104. }
  105. func (*PartnerStatisticsMessageReply) ProtoMessage() {}
  106. func (x *PartnerStatisticsMessageReply) ProtoReflect() protoreflect.Message {
  107. mi := &file_statistics_proto_msgTypes[1]
  108. if protoimpl.UnsafeEnabled && x != nil {
  109. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  110. if ms.LoadMessageInfo() == nil {
  111. ms.StoreMessageInfo(mi)
  112. }
  113. return ms
  114. }
  115. return mi.MessageOf(x)
  116. }
  117. // Deprecated: Use PartnerStatisticsMessageReply.ProtoReflect.Descriptor instead.
  118. func (*PartnerStatisticsMessageReply) Descriptor() ([]byte, []int) {
  119. return file_statistics_proto_rawDescGZIP(), []int{1}
  120. }
  121. func (x *PartnerStatisticsMessageReply) GetLookNum() int64 {
  122. if x != nil {
  123. return x.LookNum
  124. }
  125. return 0
  126. }
  127. func (x *PartnerStatisticsMessageReply) GetLookUnreadNum() int64 {
  128. if x != nil {
  129. return x.LookUnreadNum
  130. }
  131. return 0
  132. }
  133. type GetStatisticsMessageRequest struct {
  134. state protoimpl.MessageState
  135. sizeCache protoimpl.SizeCache
  136. unknownFields protoimpl.UnknownFields
  137. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  138. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  139. }
  140. func (x *GetStatisticsMessageRequest) Reset() {
  141. *x = GetStatisticsMessageRequest{}
  142. if protoimpl.UnsafeEnabled {
  143. mi := &file_statistics_proto_msgTypes[2]
  144. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  145. ms.StoreMessageInfo(mi)
  146. }
  147. }
  148. func (x *GetStatisticsMessageRequest) String() string {
  149. return protoimpl.X.MessageStringOf(x)
  150. }
  151. func (*GetStatisticsMessageRequest) ProtoMessage() {}
  152. func (x *GetStatisticsMessageRequest) ProtoReflect() protoreflect.Message {
  153. mi := &file_statistics_proto_msgTypes[2]
  154. if protoimpl.UnsafeEnabled && x != nil {
  155. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  156. if ms.LoadMessageInfo() == nil {
  157. ms.StoreMessageInfo(mi)
  158. }
  159. return ms
  160. }
  161. return mi.MessageOf(x)
  162. }
  163. // Deprecated: Use GetStatisticsMessageRequest.ProtoReflect.Descriptor instead.
  164. func (*GetStatisticsMessageRequest) Descriptor() ([]byte, []int) {
  165. return file_statistics_proto_rawDescGZIP(), []int{2}
  166. }
  167. func (x *GetStatisticsMessageRequest) GetPersonID() string {
  168. if x != nil {
  169. return x.PersonID
  170. }
  171. return ""
  172. }
  173. func (x *GetStatisticsMessageRequest) GetPersonType() string {
  174. if x != nil {
  175. return x.PersonType
  176. }
  177. return ""
  178. }
  179. type PersonMessage struct {
  180. state protoimpl.MessageState
  181. sizeCache protoimpl.SizeCache
  182. unknownFields protoimpl.UnknownFields
  183. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 关注者、浏览者的ID
  184. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 关注者、浏览者的类型
  185. BePersonID string `protobuf:"bytes,3,opt,name=bePersonID,proto3" json:"bePersonID"` // 被关注者、被浏览者的ID
  186. BePersonType string `protobuf:"bytes,4,opt,name=bePersonType,proto3" json:"bePersonType"` // 被关注者、被浏览者的类型
  187. }
  188. func (x *PersonMessage) Reset() {
  189. *x = PersonMessage{}
  190. if protoimpl.UnsafeEnabled {
  191. mi := &file_statistics_proto_msgTypes[3]
  192. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  193. ms.StoreMessageInfo(mi)
  194. }
  195. }
  196. func (x *PersonMessage) String() string {
  197. return protoimpl.X.MessageStringOf(x)
  198. }
  199. func (*PersonMessage) ProtoMessage() {}
  200. func (x *PersonMessage) ProtoReflect() protoreflect.Message {
  201. mi := &file_statistics_proto_msgTypes[3]
  202. if protoimpl.UnsafeEnabled && x != nil {
  203. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  204. if ms.LoadMessageInfo() == nil {
  205. ms.StoreMessageInfo(mi)
  206. }
  207. return ms
  208. }
  209. return mi.MessageOf(x)
  210. }
  211. // Deprecated: Use PersonMessage.ProtoReflect.Descriptor instead.
  212. func (*PersonMessage) Descriptor() ([]byte, []int) {
  213. return file_statistics_proto_rawDescGZIP(), []int{3}
  214. }
  215. func (x *PersonMessage) GetPersonID() string {
  216. if x != nil {
  217. return x.PersonID
  218. }
  219. return ""
  220. }
  221. func (x *PersonMessage) GetPersonType() string {
  222. if x != nil {
  223. return x.PersonType
  224. }
  225. return ""
  226. }
  227. func (x *PersonMessage) GetBePersonID() string {
  228. if x != nil {
  229. return x.BePersonID
  230. }
  231. return ""
  232. }
  233. func (x *PersonMessage) GetBePersonType() string {
  234. if x != nil {
  235. return x.BePersonType
  236. }
  237. return ""
  238. }
  239. var File_statistics_proto protoreflect.FileDescriptor
  240. var file_statistics_proto_rawDesc = []byte{
  241. 0x0a, 0x10, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f,
  242. 0x74, 0x6f, 0x12, 0x0e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  243. 0x63, 0x73, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  244. 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
  245. 0xba, 0x01, 0x0a, 0x1a, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  246. 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x18,
  247. 0x0a, 0x07, 0x6c, 0x69, 0x6b, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  248. 0x07, 0x6c, 0x69, 0x6b, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x69, 0x6b, 0x65,
  249. 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x69, 0x6b, 0x65,
  250. 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x55, 0x6e, 0x72,
  251. 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x6c, 0x69,
  252. 0x6b, 0x65, 0x64, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x18, 0x0a, 0x07,
  253. 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6c,
  254. 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55, 0x6e,
  255. 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6c,
  256. 0x6f, 0x6f, 0x6b, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x5f, 0x0a, 0x1d,
  257. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  258. 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x18, 0x0a,
  259. 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07,
  260. 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55,
  261. 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d,
  262. 0x6c, 0x6f, 0x6f, 0x6b, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x59, 0x0a,
  263. 0x1b, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65,
  264. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08,
  265. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  266. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73,
  267. 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65,
  268. 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x8f, 0x01, 0x0a, 0x0d, 0x50, 0x65, 0x72,
  269. 0x73, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65,
  270. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65,
  271. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  272. 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73,
  273. 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x62, 0x65, 0x50, 0x65, 0x72, 0x73,
  274. 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x65, 0x50, 0x65,
  275. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x62, 0x65, 0x50, 0x65, 0x72, 0x73,
  276. 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x62, 0x65,
  277. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x32, 0xc3, 0x05, 0x0a, 0x0a, 0x53,
  278. 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x12, 0x43, 0x0a, 0x0a, 0x4c, 0x6f, 0x6f,
  279. 0x6b, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74,
  280. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d,
  281. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  282. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x43,
  283. 0x0a, 0x0a, 0x4c, 0x69, 0x6b, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x1d, 0x2e, 0x61,
  284. 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x50, 0x65,
  285. 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  286. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  287. 0x70, 0x74, 0x79, 0x12, 0x45, 0x0a, 0x0c, 0x55, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x50, 0x65, 0x72,
  288. 0x73, 0x6f, 0x6e, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73,
  289. 0x74, 0x69, 0x63, 0x73, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  290. 0x67, 0x65, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  291. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x7a, 0x0a, 0x1f, 0x47, 0x65,
  292. 0x74, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74,
  293. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x2b, 0x2e,
  294. 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x47,
  295. 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73,
  296. 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x61, 0x70, 0x69,
  297. 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72,
  298. 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  299. 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x80, 0x01, 0x0a, 0x22, 0x47, 0x65, 0x74, 0x50, 0x61,
  300. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74,
  301. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x2b, 0x2e,
  302. 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x47,
  303. 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73,
  304. 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69,
  305. 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x50, 0x61, 0x72, 0x74,
  306. 0x6e, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65, 0x73,
  307. 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x4c, 0x0a, 0x13, 0x52, 0x65, 0x64,
  308. 0x75, 0x63, 0x65, 0x4c, 0x6f, 0x6f, 0x6b, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d,
  309. 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  310. 0x73, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a,
  311. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  312. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4c, 0x0a, 0x13, 0x52, 0x65, 0x64, 0x75, 0x63,
  313. 0x65, 0x4c, 0x69, 0x6b, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1d,
  314. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e,
  315. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x16, 0x2e,
  316. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  317. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x49, 0x0a, 0x10, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x4c,
  318. 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  319. 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  320. 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  321. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  322. 0x42, 0x4f, 0x0a, 0x0e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  323. 0x63, 0x73, 0x50, 0x01, 0x5a, 0x3b, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e,
  324. 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70,
  325. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74,
  326. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x3b, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  327. 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  328. }
  329. var (
  330. file_statistics_proto_rawDescOnce sync.Once
  331. file_statistics_proto_rawDescData = file_statistics_proto_rawDesc
  332. )
  333. func file_statistics_proto_rawDescGZIP() []byte {
  334. file_statistics_proto_rawDescOnce.Do(func() {
  335. file_statistics_proto_rawDescData = protoimpl.X.CompressGZIP(file_statistics_proto_rawDescData)
  336. })
  337. return file_statistics_proto_rawDescData
  338. }
  339. var file_statistics_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
  340. var file_statistics_proto_goTypes = []interface{}{
  341. (*UserStatisticsMessageReply)(nil), // 0: api.statistics.UserStatisticsMessageReply
  342. (*PartnerStatisticsMessageReply)(nil), // 1: api.statistics.PartnerStatisticsMessageReply
  343. (*GetStatisticsMessageRequest)(nil), // 2: api.statistics.GetStatisticsMessageRequest
  344. (*PersonMessage)(nil), // 3: api.statistics.PersonMessage
  345. (*emptypb.Empty)(nil), // 4: google.protobuf.Empty
  346. }
  347. var file_statistics_proto_depIdxs = []int32{
  348. 3, // 0: api.statistics.Statistics.LookPerson:input_type -> api.statistics.PersonMessage
  349. 3, // 1: api.statistics.Statistics.LikePerson:input_type -> api.statistics.PersonMessage
  350. 3, // 2: api.statistics.Statistics.UnLikePerson:input_type -> api.statistics.PersonMessage
  351. 2, // 3: api.statistics.Statistics.GetUserServiceStatisticsMessage:input_type -> api.statistics.GetStatisticsMessageRequest
  352. 2, // 4: api.statistics.Statistics.GetPartnerServiceStatisticsMessage:input_type -> api.statistics.GetStatisticsMessageRequest
  353. 3, // 5: api.statistics.Statistics.ReduceLookUnreadNum:input_type -> api.statistics.PersonMessage
  354. 3, // 6: api.statistics.Statistics.ReduceLikeUnreadNum:input_type -> api.statistics.PersonMessage
  355. 3, // 7: api.statistics.Statistics.UnlockLookRecord:input_type -> api.statistics.PersonMessage
  356. 4, // 8: api.statistics.Statistics.LookPerson:output_type -> google.protobuf.Empty
  357. 4, // 9: api.statistics.Statistics.LikePerson:output_type -> google.protobuf.Empty
  358. 4, // 10: api.statistics.Statistics.UnLikePerson:output_type -> google.protobuf.Empty
  359. 0, // 11: api.statistics.Statistics.GetUserServiceStatisticsMessage:output_type -> api.statistics.UserStatisticsMessageReply
  360. 1, // 12: api.statistics.Statistics.GetPartnerServiceStatisticsMessage:output_type -> api.statistics.PartnerStatisticsMessageReply
  361. 4, // 13: api.statistics.Statistics.ReduceLookUnreadNum:output_type -> google.protobuf.Empty
  362. 4, // 14: api.statistics.Statistics.ReduceLikeUnreadNum:output_type -> google.protobuf.Empty
  363. 4, // 15: api.statistics.Statistics.UnlockLookRecord:output_type -> google.protobuf.Empty
  364. 8, // [8:16] is the sub-list for method output_type
  365. 0, // [0:8] is the sub-list for method input_type
  366. 0, // [0:0] is the sub-list for extension type_name
  367. 0, // [0:0] is the sub-list for extension extendee
  368. 0, // [0:0] is the sub-list for field type_name
  369. }
  370. func init() { file_statistics_proto_init() }
  371. func file_statistics_proto_init() {
  372. if File_statistics_proto != nil {
  373. return
  374. }
  375. if !protoimpl.UnsafeEnabled {
  376. file_statistics_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  377. switch v := v.(*UserStatisticsMessageReply); i {
  378. case 0:
  379. return &v.state
  380. case 1:
  381. return &v.sizeCache
  382. case 2:
  383. return &v.unknownFields
  384. default:
  385. return nil
  386. }
  387. }
  388. file_statistics_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  389. switch v := v.(*PartnerStatisticsMessageReply); i {
  390. case 0:
  391. return &v.state
  392. case 1:
  393. return &v.sizeCache
  394. case 2:
  395. return &v.unknownFields
  396. default:
  397. return nil
  398. }
  399. }
  400. file_statistics_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  401. switch v := v.(*GetStatisticsMessageRequest); i {
  402. case 0:
  403. return &v.state
  404. case 1:
  405. return &v.sizeCache
  406. case 2:
  407. return &v.unknownFields
  408. default:
  409. return nil
  410. }
  411. }
  412. file_statistics_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  413. switch v := v.(*PersonMessage); i {
  414. case 0:
  415. return &v.state
  416. case 1:
  417. return &v.sizeCache
  418. case 2:
  419. return &v.unknownFields
  420. default:
  421. return nil
  422. }
  423. }
  424. }
  425. type x struct{}
  426. out := protoimpl.TypeBuilder{
  427. File: protoimpl.DescBuilder{
  428. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  429. RawDescriptor: file_statistics_proto_rawDesc,
  430. NumEnums: 0,
  431. NumMessages: 4,
  432. NumExtensions: 0,
  433. NumServices: 1,
  434. },
  435. GoTypes: file_statistics_proto_goTypes,
  436. DependencyIndexes: file_statistics_proto_depIdxs,
  437. MessageInfos: file_statistics_proto_msgTypes,
  438. }.Build()
  439. File_statistics_proto = out.File
  440. file_statistics_proto_rawDesc = nil
  441. file_statistics_proto_goTypes = nil
  442. file_statistics_proto_depIdxs = nil
  443. }