statistics.pb.go 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266
  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. common "git.ikuban.com/server/pw-protobuf/api/common"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. emptypb "google.golang.org/protobuf/types/known/emptypb"
  12. reflect "reflect"
  13. sync "sync"
  14. )
  15. const (
  16. // Verify that this generated code is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  18. // Verify that runtime/protoimpl is sufficiently up-to-date.
  19. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  20. )
  21. type IsLike struct {
  22. state protoimpl.MessageState
  23. sizeCache protoimpl.SizeCache
  24. unknownFields protoimpl.UnknownFields
  25. IsLike bool `protobuf:"varint,1,opt,name=isLike,proto3" json:"isLike"` // 是否喜欢(关注)该用户
  26. }
  27. func (x *IsLike) Reset() {
  28. *x = IsLike{}
  29. if protoimpl.UnsafeEnabled {
  30. mi := &file_statistics_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. }
  35. func (x *IsLike) String() string {
  36. return protoimpl.X.MessageStringOf(x)
  37. }
  38. func (*IsLike) ProtoMessage() {}
  39. func (x *IsLike) ProtoReflect() protoreflect.Message {
  40. mi := &file_statistics_proto_msgTypes[0]
  41. if protoimpl.UnsafeEnabled && x != nil {
  42. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  43. if ms.LoadMessageInfo() == nil {
  44. ms.StoreMessageInfo(mi)
  45. }
  46. return ms
  47. }
  48. return mi.MessageOf(x)
  49. }
  50. // Deprecated: Use IsLike.ProtoReflect.Descriptor instead.
  51. func (*IsLike) Descriptor() ([]byte, []int) {
  52. return file_statistics_proto_rawDescGZIP(), []int{0}
  53. }
  54. func (x *IsLike) GetIsLike() bool {
  55. if x != nil {
  56. return x.IsLike
  57. }
  58. return false
  59. }
  60. type AddTodayProfitRequest struct {
  61. state protoimpl.MessageState
  62. sizeCache protoimpl.SizeCache
  63. unknownFields protoimpl.UnknownFields
  64. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 接待者的ID
  65. Profit int64 `protobuf:"varint,2,opt,name=profit,proto3" json:"profit"` // 收益
  66. }
  67. func (x *AddTodayProfitRequest) Reset() {
  68. *x = AddTodayProfitRequest{}
  69. if protoimpl.UnsafeEnabled {
  70. mi := &file_statistics_proto_msgTypes[1]
  71. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  72. ms.StoreMessageInfo(mi)
  73. }
  74. }
  75. func (x *AddTodayProfitRequest) String() string {
  76. return protoimpl.X.MessageStringOf(x)
  77. }
  78. func (*AddTodayProfitRequest) ProtoMessage() {}
  79. func (x *AddTodayProfitRequest) ProtoReflect() protoreflect.Message {
  80. mi := &file_statistics_proto_msgTypes[1]
  81. if protoimpl.UnsafeEnabled && x != nil {
  82. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  83. if ms.LoadMessageInfo() == nil {
  84. ms.StoreMessageInfo(mi)
  85. }
  86. return ms
  87. }
  88. return mi.MessageOf(x)
  89. }
  90. // Deprecated: Use AddTodayProfitRequest.ProtoReflect.Descriptor instead.
  91. func (*AddTodayProfitRequest) Descriptor() ([]byte, []int) {
  92. return file_statistics_proto_rawDescGZIP(), []int{1}
  93. }
  94. func (x *AddTodayProfitRequest) GetPersonID() string {
  95. if x != nil {
  96. return x.PersonID
  97. }
  98. return ""
  99. }
  100. func (x *AddTodayProfitRequest) GetProfit() int64 {
  101. if x != nil {
  102. return x.Profit
  103. }
  104. return 0
  105. }
  106. type GetLookAndLikeStatisticsMessageRequest struct {
  107. state protoimpl.MessageState
  108. sizeCache protoimpl.SizeCache
  109. unknownFields protoimpl.UnknownFields
  110. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  111. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  112. IsSelf bool `protobuf:"varint,3,opt,name=isSelf,proto3" json:"isSelf"`
  113. }
  114. func (x *GetLookAndLikeStatisticsMessageRequest) Reset() {
  115. *x = GetLookAndLikeStatisticsMessageRequest{}
  116. if protoimpl.UnsafeEnabled {
  117. mi := &file_statistics_proto_msgTypes[2]
  118. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  119. ms.StoreMessageInfo(mi)
  120. }
  121. }
  122. func (x *GetLookAndLikeStatisticsMessageRequest) String() string {
  123. return protoimpl.X.MessageStringOf(x)
  124. }
  125. func (*GetLookAndLikeStatisticsMessageRequest) ProtoMessage() {}
  126. func (x *GetLookAndLikeStatisticsMessageRequest) ProtoReflect() protoreflect.Message {
  127. mi := &file_statistics_proto_msgTypes[2]
  128. if protoimpl.UnsafeEnabled && x != nil {
  129. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  130. if ms.LoadMessageInfo() == nil {
  131. ms.StoreMessageInfo(mi)
  132. }
  133. return ms
  134. }
  135. return mi.MessageOf(x)
  136. }
  137. // Deprecated: Use GetLookAndLikeStatisticsMessageRequest.ProtoReflect.Descriptor instead.
  138. func (*GetLookAndLikeStatisticsMessageRequest) Descriptor() ([]byte, []int) {
  139. return file_statistics_proto_rawDescGZIP(), []int{2}
  140. }
  141. func (x *GetLookAndLikeStatisticsMessageRequest) GetPersonID() string {
  142. if x != nil {
  143. return x.PersonID
  144. }
  145. return ""
  146. }
  147. func (x *GetLookAndLikeStatisticsMessageRequest) GetPersonType() string {
  148. if x != nil {
  149. return x.PersonType
  150. }
  151. return ""
  152. }
  153. func (x *GetLookAndLikeStatisticsMessageRequest) GetIsSelf() bool {
  154. if x != nil {
  155. return x.IsSelf
  156. }
  157. return false
  158. }
  159. type ReceptionMsg struct {
  160. state protoimpl.MessageState
  161. sizeCache protoimpl.SizeCache
  162. unknownFields protoimpl.UnknownFields
  163. TodayReceptionNum int64 `protobuf:"varint,1,opt,name=todayReceptionNum,proto3" json:"todayReceptionNum"` //今日接待人数
  164. }
  165. func (x *ReceptionMsg) Reset() {
  166. *x = ReceptionMsg{}
  167. if protoimpl.UnsafeEnabled {
  168. mi := &file_statistics_proto_msgTypes[3]
  169. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  170. ms.StoreMessageInfo(mi)
  171. }
  172. }
  173. func (x *ReceptionMsg) String() string {
  174. return protoimpl.X.MessageStringOf(x)
  175. }
  176. func (*ReceptionMsg) ProtoMessage() {}
  177. func (x *ReceptionMsg) ProtoReflect() protoreflect.Message {
  178. mi := &file_statistics_proto_msgTypes[3]
  179. if protoimpl.UnsafeEnabled && x != nil {
  180. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  181. if ms.LoadMessageInfo() == nil {
  182. ms.StoreMessageInfo(mi)
  183. }
  184. return ms
  185. }
  186. return mi.MessageOf(x)
  187. }
  188. // Deprecated: Use ReceptionMsg.ProtoReflect.Descriptor instead.
  189. func (*ReceptionMsg) Descriptor() ([]byte, []int) {
  190. return file_statistics_proto_rawDescGZIP(), []int{3}
  191. }
  192. func (x *ReceptionMsg) GetTodayReceptionNum() int64 {
  193. if x != nil {
  194. return x.TodayReceptionNum
  195. }
  196. return 0
  197. }
  198. type TodayProfitMsg struct {
  199. state protoimpl.MessageState
  200. sizeCache protoimpl.SizeCache
  201. unknownFields protoimpl.UnknownFields
  202. TodayProfit int64 `protobuf:"varint,1,opt,name=todayProfit,proto3" json:"todayProfit"` // 今日收益
  203. }
  204. func (x *TodayProfitMsg) Reset() {
  205. *x = TodayProfitMsg{}
  206. if protoimpl.UnsafeEnabled {
  207. mi := &file_statistics_proto_msgTypes[4]
  208. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  209. ms.StoreMessageInfo(mi)
  210. }
  211. }
  212. func (x *TodayProfitMsg) String() string {
  213. return protoimpl.X.MessageStringOf(x)
  214. }
  215. func (*TodayProfitMsg) ProtoMessage() {}
  216. func (x *TodayProfitMsg) ProtoReflect() protoreflect.Message {
  217. mi := &file_statistics_proto_msgTypes[4]
  218. if protoimpl.UnsafeEnabled && x != nil {
  219. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  220. if ms.LoadMessageInfo() == nil {
  221. ms.StoreMessageInfo(mi)
  222. }
  223. return ms
  224. }
  225. return mi.MessageOf(x)
  226. }
  227. // Deprecated: Use TodayProfitMsg.ProtoReflect.Descriptor instead.
  228. func (*TodayProfitMsg) Descriptor() ([]byte, []int) {
  229. return file_statistics_proto_rawDescGZIP(), []int{4}
  230. }
  231. func (x *TodayProfitMsg) GetTodayProfit() int64 {
  232. if x != nil {
  233. return x.TodayProfit
  234. }
  235. return 0
  236. }
  237. type LookAndLikeListReply struct {
  238. state protoimpl.MessageState
  239. sizeCache protoimpl.SizeCache
  240. unknownFields protoimpl.UnknownFields
  241. List []*LookAndLikeListInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  242. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  243. }
  244. func (x *LookAndLikeListReply) Reset() {
  245. *x = LookAndLikeListReply{}
  246. if protoimpl.UnsafeEnabled {
  247. mi := &file_statistics_proto_msgTypes[5]
  248. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  249. ms.StoreMessageInfo(mi)
  250. }
  251. }
  252. func (x *LookAndLikeListReply) String() string {
  253. return protoimpl.X.MessageStringOf(x)
  254. }
  255. func (*LookAndLikeListReply) ProtoMessage() {}
  256. func (x *LookAndLikeListReply) ProtoReflect() protoreflect.Message {
  257. mi := &file_statistics_proto_msgTypes[5]
  258. if protoimpl.UnsafeEnabled && x != nil {
  259. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  260. if ms.LoadMessageInfo() == nil {
  261. ms.StoreMessageInfo(mi)
  262. }
  263. return ms
  264. }
  265. return mi.MessageOf(x)
  266. }
  267. // Deprecated: Use LookAndLikeListReply.ProtoReflect.Descriptor instead.
  268. func (*LookAndLikeListReply) Descriptor() ([]byte, []int) {
  269. return file_statistics_proto_rawDescGZIP(), []int{5}
  270. }
  271. func (x *LookAndLikeListReply) GetList() []*LookAndLikeListInfo {
  272. if x != nil {
  273. return x.List
  274. }
  275. return nil
  276. }
  277. func (x *LookAndLikeListReply) GetNextId() int64 {
  278. if x != nil {
  279. return x.NextId
  280. }
  281. return 0
  282. }
  283. type LookAndLikeListInfo struct {
  284. state protoimpl.MessageState
  285. sizeCache protoimpl.SizeCache
  286. unknownFields protoimpl.UnknownFields
  287. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // 被查看的列表中的人的ID
  288. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  289. Nickname string `protobuf:"bytes,3,opt,name=nickname,proto3" json:"nickname"` // 昵称
  290. AvatarUrl string `protobuf:"bytes,4,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  291. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  292. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  293. Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
  294. LastLookTime int64 `protobuf:"varint,8,opt,name=lastLookTime,proto3" json:"lastLookTime"` // 上次访问时间
  295. IsHavePicture bool `protobuf:"varint,10,opt,name=isHavePicture,proto3" json:"isHavePicture"` // 是否有图片
  296. IsHaveVoice bool `protobuf:"varint,11,opt,name=isHaveVoice,proto3" json:"isHaveVoice"` // 是否有语音
  297. IsLock bool `protobuf:"varint,12,opt,name=isLock,proto3" json:"isLock"` // 是否锁住信息
  298. City string `protobuf:"bytes,13,opt,name=city,proto3" json:"city"` // 市
  299. }
  300. func (x *LookAndLikeListInfo) Reset() {
  301. *x = LookAndLikeListInfo{}
  302. if protoimpl.UnsafeEnabled {
  303. mi := &file_statistics_proto_msgTypes[6]
  304. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  305. ms.StoreMessageInfo(mi)
  306. }
  307. }
  308. func (x *LookAndLikeListInfo) String() string {
  309. return protoimpl.X.MessageStringOf(x)
  310. }
  311. func (*LookAndLikeListInfo) ProtoMessage() {}
  312. func (x *LookAndLikeListInfo) ProtoReflect() protoreflect.Message {
  313. mi := &file_statistics_proto_msgTypes[6]
  314. if protoimpl.UnsafeEnabled && x != nil {
  315. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  316. if ms.LoadMessageInfo() == nil {
  317. ms.StoreMessageInfo(mi)
  318. }
  319. return ms
  320. }
  321. return mi.MessageOf(x)
  322. }
  323. // Deprecated: Use LookAndLikeListInfo.ProtoReflect.Descriptor instead.
  324. func (*LookAndLikeListInfo) Descriptor() ([]byte, []int) {
  325. return file_statistics_proto_rawDescGZIP(), []int{6}
  326. }
  327. func (x *LookAndLikeListInfo) GetId() string {
  328. if x != nil {
  329. return x.Id
  330. }
  331. return ""
  332. }
  333. func (x *LookAndLikeListInfo) GetType() string {
  334. if x != nil {
  335. return x.Type
  336. }
  337. return ""
  338. }
  339. func (x *LookAndLikeListInfo) GetNickname() string {
  340. if x != nil {
  341. return x.Nickname
  342. }
  343. return ""
  344. }
  345. func (x *LookAndLikeListInfo) GetAvatarUrl() string {
  346. if x != nil {
  347. return x.AvatarUrl
  348. }
  349. return ""
  350. }
  351. func (x *LookAndLikeListInfo) GetSex() int64 {
  352. if x != nil {
  353. return x.Sex
  354. }
  355. return 0
  356. }
  357. func (x *LookAndLikeListInfo) GetAge() int64 {
  358. if x != nil {
  359. return x.Age
  360. }
  361. return 0
  362. }
  363. func (x *LookAndLikeListInfo) GetConstellation() string {
  364. if x != nil {
  365. return x.Constellation
  366. }
  367. return ""
  368. }
  369. func (x *LookAndLikeListInfo) GetLastLookTime() int64 {
  370. if x != nil {
  371. return x.LastLookTime
  372. }
  373. return 0
  374. }
  375. func (x *LookAndLikeListInfo) GetIsHavePicture() bool {
  376. if x != nil {
  377. return x.IsHavePicture
  378. }
  379. return false
  380. }
  381. func (x *LookAndLikeListInfo) GetIsHaveVoice() bool {
  382. if x != nil {
  383. return x.IsHaveVoice
  384. }
  385. return false
  386. }
  387. func (x *LookAndLikeListInfo) GetIsLock() bool {
  388. if x != nil {
  389. return x.IsLock
  390. }
  391. return false
  392. }
  393. func (x *LookAndLikeListInfo) GetCity() string {
  394. if x != nil {
  395. return x.City
  396. }
  397. return ""
  398. }
  399. type GetLookAndLikeListRequest struct {
  400. state protoimpl.MessageState
  401. sizeCache protoimpl.SizeCache
  402. unknownFields protoimpl.UnknownFields
  403. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  404. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  405. NextId int64 `protobuf:"varint,3,opt,name=nextId,proto3" json:"nextId"`
  406. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset"`
  407. }
  408. func (x *GetLookAndLikeListRequest) Reset() {
  409. *x = GetLookAndLikeListRequest{}
  410. if protoimpl.UnsafeEnabled {
  411. mi := &file_statistics_proto_msgTypes[7]
  412. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  413. ms.StoreMessageInfo(mi)
  414. }
  415. }
  416. func (x *GetLookAndLikeListRequest) String() string {
  417. return protoimpl.X.MessageStringOf(x)
  418. }
  419. func (*GetLookAndLikeListRequest) ProtoMessage() {}
  420. func (x *GetLookAndLikeListRequest) ProtoReflect() protoreflect.Message {
  421. mi := &file_statistics_proto_msgTypes[7]
  422. if protoimpl.UnsafeEnabled && x != nil {
  423. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  424. if ms.LoadMessageInfo() == nil {
  425. ms.StoreMessageInfo(mi)
  426. }
  427. return ms
  428. }
  429. return mi.MessageOf(x)
  430. }
  431. // Deprecated: Use GetLookAndLikeListRequest.ProtoReflect.Descriptor instead.
  432. func (*GetLookAndLikeListRequest) Descriptor() ([]byte, []int) {
  433. return file_statistics_proto_rawDescGZIP(), []int{7}
  434. }
  435. func (x *GetLookAndLikeListRequest) GetPersonID() string {
  436. if x != nil {
  437. return x.PersonID
  438. }
  439. return ""
  440. }
  441. func (x *GetLookAndLikeListRequest) GetPersonType() string {
  442. if x != nil {
  443. return x.PersonType
  444. }
  445. return ""
  446. }
  447. func (x *GetLookAndLikeListRequest) GetNextId() int64 {
  448. if x != nil {
  449. return x.NextId
  450. }
  451. return 0
  452. }
  453. func (x *GetLookAndLikeListRequest) GetOffset() int64 {
  454. if x != nil {
  455. return x.Offset
  456. }
  457. return 0
  458. }
  459. type LookAndLikeMessageReply struct {
  460. state protoimpl.MessageState
  461. sizeCache protoimpl.SizeCache
  462. unknownFields protoimpl.UnknownFields
  463. LikeNum int64 `protobuf:"varint,1,opt,name=likeNum,proto3" json:"likeNum"` // 我喜欢
  464. LikedNum int64 `protobuf:"varint,2,opt,name=likedNum,proto3" json:"likedNum"` // 喜欢我
  465. LikedUnreadNum int64 `protobuf:"varint,3,opt,name=likedUnreadNum,proto3" json:"likedUnreadNum"` // 喜欢我的未读数
  466. LookNum int64 `protobuf:"varint,4,opt,name=lookNum,proto3" json:"lookNum"` // 看过我
  467. LookUnreadNum int64 `protobuf:"varint,5,opt,name=lookUnreadNum,proto3" json:"lookUnreadNum"` // 看过我的未读数
  468. AvatarUrlList []string `protobuf:"bytes,6,rep,name=avatarUrlList,proto3" json:"avatarUrlList"` // 头像列表
  469. }
  470. func (x *LookAndLikeMessageReply) Reset() {
  471. *x = LookAndLikeMessageReply{}
  472. if protoimpl.UnsafeEnabled {
  473. mi := &file_statistics_proto_msgTypes[8]
  474. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  475. ms.StoreMessageInfo(mi)
  476. }
  477. }
  478. func (x *LookAndLikeMessageReply) String() string {
  479. return protoimpl.X.MessageStringOf(x)
  480. }
  481. func (*LookAndLikeMessageReply) ProtoMessage() {}
  482. func (x *LookAndLikeMessageReply) ProtoReflect() protoreflect.Message {
  483. mi := &file_statistics_proto_msgTypes[8]
  484. if protoimpl.UnsafeEnabled && x != nil {
  485. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  486. if ms.LoadMessageInfo() == nil {
  487. ms.StoreMessageInfo(mi)
  488. }
  489. return ms
  490. }
  491. return mi.MessageOf(x)
  492. }
  493. // Deprecated: Use LookAndLikeMessageReply.ProtoReflect.Descriptor instead.
  494. func (*LookAndLikeMessageReply) Descriptor() ([]byte, []int) {
  495. return file_statistics_proto_rawDescGZIP(), []int{8}
  496. }
  497. func (x *LookAndLikeMessageReply) GetLikeNum() int64 {
  498. if x != nil {
  499. return x.LikeNum
  500. }
  501. return 0
  502. }
  503. func (x *LookAndLikeMessageReply) GetLikedNum() int64 {
  504. if x != nil {
  505. return x.LikedNum
  506. }
  507. return 0
  508. }
  509. func (x *LookAndLikeMessageReply) GetLikedUnreadNum() int64 {
  510. if x != nil {
  511. return x.LikedUnreadNum
  512. }
  513. return 0
  514. }
  515. func (x *LookAndLikeMessageReply) GetLookNum() int64 {
  516. if x != nil {
  517. return x.LookNum
  518. }
  519. return 0
  520. }
  521. func (x *LookAndLikeMessageReply) GetLookUnreadNum() int64 {
  522. if x != nil {
  523. return x.LookUnreadNum
  524. }
  525. return 0
  526. }
  527. func (x *LookAndLikeMessageReply) GetAvatarUrlList() []string {
  528. if x != nil {
  529. return x.AvatarUrlList
  530. }
  531. return nil
  532. }
  533. type LookMessageReply struct {
  534. state protoimpl.MessageState
  535. sizeCache protoimpl.SizeCache
  536. unknownFields protoimpl.UnknownFields
  537. LookNum int64 `protobuf:"varint,1,opt,name=lookNum,proto3" json:"lookNum"`
  538. LookUnreadNum int64 `protobuf:"varint,2,opt,name=lookUnreadNum,proto3" json:"lookUnreadNum"`
  539. TodayLookNum int64 `protobuf:"varint,3,opt,name=todayLookNum,proto3" json:"todayLookNum"`
  540. }
  541. func (x *LookMessageReply) Reset() {
  542. *x = LookMessageReply{}
  543. if protoimpl.UnsafeEnabled {
  544. mi := &file_statistics_proto_msgTypes[9]
  545. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  546. ms.StoreMessageInfo(mi)
  547. }
  548. }
  549. func (x *LookMessageReply) String() string {
  550. return protoimpl.X.MessageStringOf(x)
  551. }
  552. func (*LookMessageReply) ProtoMessage() {}
  553. func (x *LookMessageReply) ProtoReflect() protoreflect.Message {
  554. mi := &file_statistics_proto_msgTypes[9]
  555. if protoimpl.UnsafeEnabled && x != nil {
  556. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  557. if ms.LoadMessageInfo() == nil {
  558. ms.StoreMessageInfo(mi)
  559. }
  560. return ms
  561. }
  562. return mi.MessageOf(x)
  563. }
  564. // Deprecated: Use LookMessageReply.ProtoReflect.Descriptor instead.
  565. func (*LookMessageReply) Descriptor() ([]byte, []int) {
  566. return file_statistics_proto_rawDescGZIP(), []int{9}
  567. }
  568. func (x *LookMessageReply) GetLookNum() int64 {
  569. if x != nil {
  570. return x.LookNum
  571. }
  572. return 0
  573. }
  574. func (x *LookMessageReply) GetLookUnreadNum() int64 {
  575. if x != nil {
  576. return x.LookUnreadNum
  577. }
  578. return 0
  579. }
  580. func (x *LookMessageReply) GetTodayLookNum() int64 {
  581. if x != nil {
  582. return x.TodayLookNum
  583. }
  584. return 0
  585. }
  586. type PersonMessage struct {
  587. state protoimpl.MessageState
  588. sizeCache protoimpl.SizeCache
  589. unknownFields protoimpl.UnknownFields
  590. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 关注者、浏览者的ID
  591. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 关注者、浏览者的类型
  592. BePersonID string `protobuf:"bytes,3,opt,name=bePersonID,proto3" json:"bePersonID"` // 被关注者、被浏览者的ID
  593. BePersonType string `protobuf:"bytes,4,opt,name=bePersonType,proto3" json:"bePersonType"` // 被关注者、被浏览者的类型
  594. }
  595. func (x *PersonMessage) Reset() {
  596. *x = PersonMessage{}
  597. if protoimpl.UnsafeEnabled {
  598. mi := &file_statistics_proto_msgTypes[10]
  599. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  600. ms.StoreMessageInfo(mi)
  601. }
  602. }
  603. func (x *PersonMessage) String() string {
  604. return protoimpl.X.MessageStringOf(x)
  605. }
  606. func (*PersonMessage) ProtoMessage() {}
  607. func (x *PersonMessage) ProtoReflect() protoreflect.Message {
  608. mi := &file_statistics_proto_msgTypes[10]
  609. if protoimpl.UnsafeEnabled && x != nil {
  610. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  611. if ms.LoadMessageInfo() == nil {
  612. ms.StoreMessageInfo(mi)
  613. }
  614. return ms
  615. }
  616. return mi.MessageOf(x)
  617. }
  618. // Deprecated: Use PersonMessage.ProtoReflect.Descriptor instead.
  619. func (*PersonMessage) Descriptor() ([]byte, []int) {
  620. return file_statistics_proto_rawDescGZIP(), []int{10}
  621. }
  622. func (x *PersonMessage) GetPersonID() string {
  623. if x != nil {
  624. return x.PersonID
  625. }
  626. return ""
  627. }
  628. func (x *PersonMessage) GetPersonType() string {
  629. if x != nil {
  630. return x.PersonType
  631. }
  632. return ""
  633. }
  634. func (x *PersonMessage) GetBePersonID() string {
  635. if x != nil {
  636. return x.BePersonID
  637. }
  638. return ""
  639. }
  640. func (x *PersonMessage) GetBePersonType() string {
  641. if x != nil {
  642. return x.BePersonType
  643. }
  644. return ""
  645. }
  646. type ReceptionMessage struct {
  647. state protoimpl.MessageState
  648. sizeCache protoimpl.SizeCache
  649. unknownFields protoimpl.UnknownFields
  650. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 接待者的ID
  651. BePersonID string `protobuf:"bytes,2,opt,name=bePersonID,proto3" json:"bePersonID"` // 被接待者的ID
  652. Profit int64 `protobuf:"varint,3,opt,name=profit,proto3" json:"profit"` // 收益
  653. }
  654. func (x *ReceptionMessage) Reset() {
  655. *x = ReceptionMessage{}
  656. if protoimpl.UnsafeEnabled {
  657. mi := &file_statistics_proto_msgTypes[11]
  658. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  659. ms.StoreMessageInfo(mi)
  660. }
  661. }
  662. func (x *ReceptionMessage) String() string {
  663. return protoimpl.X.MessageStringOf(x)
  664. }
  665. func (*ReceptionMessage) ProtoMessage() {}
  666. func (x *ReceptionMessage) ProtoReflect() protoreflect.Message {
  667. mi := &file_statistics_proto_msgTypes[11]
  668. if protoimpl.UnsafeEnabled && x != nil {
  669. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  670. if ms.LoadMessageInfo() == nil {
  671. ms.StoreMessageInfo(mi)
  672. }
  673. return ms
  674. }
  675. return mi.MessageOf(x)
  676. }
  677. // Deprecated: Use ReceptionMessage.ProtoReflect.Descriptor instead.
  678. func (*ReceptionMessage) Descriptor() ([]byte, []int) {
  679. return file_statistics_proto_rawDescGZIP(), []int{11}
  680. }
  681. func (x *ReceptionMessage) GetPersonID() string {
  682. if x != nil {
  683. return x.PersonID
  684. }
  685. return ""
  686. }
  687. func (x *ReceptionMessage) GetBePersonID() string {
  688. if x != nil {
  689. return x.BePersonID
  690. }
  691. return ""
  692. }
  693. func (x *ReceptionMessage) GetProfit() int64 {
  694. if x != nil {
  695. return x.Profit
  696. }
  697. return 0
  698. }
  699. var File_statistics_proto protoreflect.FileDescriptor
  700. var file_statistics_proto_rawDesc = []byte{
  701. 0x0a, 0x10, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f,
  702. 0x74, 0x6f, 0x12, 0x0e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  703. 0x63, 0x73, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  704. 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  705. 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d,
  706. 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x20, 0x0a, 0x06, 0x49, 0x73, 0x4c, 0x69,
  707. 0x6b, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x18, 0x01, 0x20, 0x01,
  708. 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x4b, 0x0a, 0x15, 0x41, 0x64,
  709. 0x64, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75,
  710. 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18,
  711. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12,
  712. 0x16, 0x0a, 0x06, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  713. 0x06, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x22, 0x7c, 0x0a, 0x26, 0x47, 0x65, 0x74, 0x4c, 0x6f,
  714. 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
  715. 0x69, 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  716. 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20,
  717. 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a,
  718. 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  719. 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a,
  720. 0x06, 0x69, 0x73, 0x53, 0x65, 0x6c, 0x66, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69,
  721. 0x73, 0x53, 0x65, 0x6c, 0x66, 0x22, 0x3c, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x65, 0x70, 0x74, 0x69,
  722. 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x2c, 0x0a, 0x11, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x52, 0x65,
  723. 0x63, 0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  724. 0x52, 0x11, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x52, 0x65, 0x63, 0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  725. 0x4e, 0x75, 0x6d, 0x22, 0x32, 0x0a, 0x0e, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66,
  726. 0x69, 0x74, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72,
  727. 0x6f, 0x66, 0x69, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x74, 0x6f, 0x64, 0x61,
  728. 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x22, 0x67, 0x0a, 0x14, 0x4c, 0x6f, 0x6f, 0x6b, 0x41,
  729. 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  730. 0x37, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e,
  731. 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c,
  732. 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e,
  733. 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74,
  734. 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
  735. 0x22, 0xd5, 0x02, 0x0a, 0x13, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65,
  736. 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  737. 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65,
  738. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  739. 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  740. 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74,
  741. 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61,
  742. 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20,
  743. 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18,
  744. 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f,
  745. 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28,
  746. 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  747. 0x12, 0x22, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x6f, 0x6b, 0x54, 0x69, 0x6d, 0x65,
  748. 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x6f, 0x6b,
  749. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x69, 0x73, 0x48, 0x61, 0x76, 0x65, 0x50, 0x69,
  750. 0x63, 0x74, 0x75, 0x72, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x69, 0x73, 0x48,
  751. 0x61, 0x76, 0x65, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x73,
  752. 0x48, 0x61, 0x76, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x52,
  753. 0x0b, 0x69, 0x73, 0x48, 0x61, 0x76, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06,
  754. 0x69, 0x73, 0x4c, 0x6f, 0x63, 0x6b, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73,
  755. 0x4c, 0x6f, 0x63, 0x6b, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0d, 0x20, 0x01,
  756. 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x22, 0x87, 0x01, 0x0a, 0x19, 0x47, 0x65, 0x74,
  757. 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52,
  758. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  759. 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  760. 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
  761. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79,
  762. 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01,
  763. 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66,
  764. 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73,
  765. 0x65, 0x74, 0x22, 0xdd, 0x01, 0x0a, 0x17, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69,
  766. 0x6b, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x18,
  767. 0x0a, 0x07, 0x6c, 0x69, 0x6b, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  768. 0x07, 0x6c, 0x69, 0x6b, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x69, 0x6b, 0x65,
  769. 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x69, 0x6b, 0x65,
  770. 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x55, 0x6e, 0x72,
  771. 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x6c, 0x69,
  772. 0x6b, 0x65, 0x64, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x18, 0x0a, 0x07,
  773. 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6c,
  774. 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55, 0x6e,
  775. 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6c,
  776. 0x6f, 0x6f, 0x6b, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d,
  777. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x06, 0x20,
  778. 0x03, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x4c, 0x69,
  779. 0x73, 0x74, 0x22, 0x76, 0x0a, 0x10, 0x4c, 0x6f, 0x6f, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  780. 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75,
  781. 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d,
  782. 0x12, 0x24, 0x0a, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75,
  783. 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55, 0x6e, 0x72,
  784. 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x22, 0x0a, 0x0c, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4c,
  785. 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x74, 0x6f,
  786. 0x64, 0x61, 0x79, 0x4c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x22, 0x8f, 0x01, 0x0a, 0x0d, 0x50,
  787. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  788. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  789. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73,
  790. 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65,
  791. 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x62, 0x65, 0x50, 0x65,
  792. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x65,
  793. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x62, 0x65, 0x50, 0x65,
  794. 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  795. 0x62, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x66, 0x0a, 0x10,
  796. 0x52, 0x65, 0x63, 0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  797. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01,
  798. 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a,
  799. 0x62, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  800. 0x52, 0x0a, 0x62, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06,
  801. 0x70, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x70, 0x72,
  802. 0x6f, 0x66, 0x69, 0x74, 0x32, 0xc1, 0x0a, 0x0a, 0x0a, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
  803. 0x69, 0x63, 0x73, 0x12, 0x43, 0x0a, 0x0a, 0x4c, 0x6f, 0x6f, 0x6b, 0x50, 0x65, 0x72, 0x73, 0x6f,
  804. 0x6e, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  805. 0x63, 0x73, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  806. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  807. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x43, 0x0a, 0x0a, 0x4c, 0x69, 0x6b, 0x65,
  808. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61,
  809. 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x65,
  810. 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  811. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x45, 0x0a,
  812. 0x0c, 0x55, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x1d, 0x2e,
  813. 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x50,
  814. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x16, 0x2e, 0x67,
  815. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  816. 0x6d, 0x70, 0x74, 0x79, 0x12, 0x82, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x6f, 0x6b,
  817. 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  818. 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x36, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73,
  819. 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x6f,
  820. 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  821. 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  822. 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  823. 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4d, 0x65, 0x73,
  824. 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x55, 0x0a, 0x18, 0x47, 0x65, 0x74,
  825. 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65,
  826. 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  827. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x20,
  828. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e,
  829. 0x4c, 0x6f, 0x6f, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79,
  830. 0x12, 0x4c, 0x0a, 0x13, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x4c, 0x6f, 0x6f, 0x6b, 0x55, 0x6e,
  831. 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74,
  832. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d,
  833. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  834. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4c,
  835. 0x0a, 0x13, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x4c, 0x69, 0x6b, 0x65, 0x55, 0x6e, 0x72, 0x65,
  836. 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74,
  837. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x65, 0x73,
  838. 0x73, 0x61, 0x67, 0x65, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  839. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x49, 0x0a, 0x10,
  840. 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  841. 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  842. 0x73, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a,
  843. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  844. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x5f, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c,
  845. 0x6f, 0x6f, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x29, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74,
  846. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x6f, 0x6b,
  847. 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  848. 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
  849. 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c,
  850. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x5f, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64,
  851. 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x29, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73,
  852. 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x6f,
  853. 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  854. 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73,
  855. 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65,
  856. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x60, 0x0a, 0x0d, 0x46, 0x69, 0x6e,
  857. 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x29, 0x2e, 0x61, 0x70, 0x69,
  858. 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x4c,
  859. 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  860. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74,
  861. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69,
  862. 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x4b, 0x0a, 0x0f, 0x52,
  863. 0x65, 0x63, 0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x20,
  864. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e,
  865. 0x52, 0x65, 0x63, 0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  866. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  867. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4f, 0x0a, 0x0e, 0x41, 0x64, 0x64, 0x54,
  868. 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69,
  869. 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x41, 0x64, 0x64, 0x54,
  870. 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  871. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  872. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4b, 0x0a, 0x0f, 0x47, 0x65, 0x74,
  873. 0x52, 0x65, 0x63, 0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x1a, 0x2e, 0x61,
  874. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  875. 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73,
  876. 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x65, 0x70, 0x74,
  877. 0x69, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x4c, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x64,
  878. 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  879. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50,
  880. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69,
  881. 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69,
  882. 0x74, 0x4d, 0x73, 0x67, 0x12, 0x42, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x49, 0x73, 0x4c, 0x69, 0x6b,
  883. 0x65, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  884. 0x63, 0x73, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  885. 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  886. 0x73, 0x2e, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x42, 0x4f, 0x0a, 0x0e, 0x61, 0x70, 0x69, 0x2e,
  887. 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x50, 0x01, 0x5a, 0x3b, 0x67, 0x69,
  888. 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72,
  889. 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f,
  890. 0x61, 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x3b, 0x73,
  891. 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  892. 0x33,
  893. }
  894. var (
  895. file_statistics_proto_rawDescOnce sync.Once
  896. file_statistics_proto_rawDescData = file_statistics_proto_rawDesc
  897. )
  898. func file_statistics_proto_rawDescGZIP() []byte {
  899. file_statistics_proto_rawDescOnce.Do(func() {
  900. file_statistics_proto_rawDescData = protoimpl.X.CompressGZIP(file_statistics_proto_rawDescData)
  901. })
  902. return file_statistics_proto_rawDescData
  903. }
  904. var file_statistics_proto_msgTypes = make([]protoimpl.MessageInfo, 12)
  905. var file_statistics_proto_goTypes = []interface{}{
  906. (*IsLike)(nil), // 0: api.statistics.IsLike
  907. (*AddTodayProfitRequest)(nil), // 1: api.statistics.AddTodayProfitRequest
  908. (*GetLookAndLikeStatisticsMessageRequest)(nil), // 2: api.statistics.GetLookAndLikeStatisticsMessageRequest
  909. (*ReceptionMsg)(nil), // 3: api.statistics.ReceptionMsg
  910. (*TodayProfitMsg)(nil), // 4: api.statistics.TodayProfitMsg
  911. (*LookAndLikeListReply)(nil), // 5: api.statistics.LookAndLikeListReply
  912. (*LookAndLikeListInfo)(nil), // 6: api.statistics.LookAndLikeListInfo
  913. (*GetLookAndLikeListRequest)(nil), // 7: api.statistics.GetLookAndLikeListRequest
  914. (*LookAndLikeMessageReply)(nil), // 8: api.statistics.LookAndLikeMessageReply
  915. (*LookMessageReply)(nil), // 9: api.statistics.LookMessageReply
  916. (*PersonMessage)(nil), // 10: api.statistics.PersonMessage
  917. (*ReceptionMessage)(nil), // 11: api.statistics.ReceptionMessage
  918. (*common.PersonParam)(nil), // 12: api.common.PersonParam
  919. (*common.PartnerIDParam)(nil), // 13: api.common.PartnerIDParam
  920. (*emptypb.Empty)(nil), // 14: google.protobuf.Empty
  921. }
  922. var file_statistics_proto_depIdxs = []int32{
  923. 6, // 0: api.statistics.LookAndLikeListReply.list:type_name -> api.statistics.LookAndLikeListInfo
  924. 10, // 1: api.statistics.Statistics.LookPerson:input_type -> api.statistics.PersonMessage
  925. 10, // 2: api.statistics.Statistics.LikePerson:input_type -> api.statistics.PersonMessage
  926. 10, // 3: api.statistics.Statistics.UnLikePerson:input_type -> api.statistics.PersonMessage
  927. 2, // 4: api.statistics.Statistics.GetLookAndLikeStatisticsMessage:input_type -> api.statistics.GetLookAndLikeStatisticsMessageRequest
  928. 12, // 5: api.statistics.Statistics.GetLookStatisticsMessage:input_type -> api.common.PersonParam
  929. 10, // 6: api.statistics.Statistics.ReduceLookUnreadNum:input_type -> api.statistics.PersonMessage
  930. 10, // 7: api.statistics.Statistics.ReduceLikeUnreadNum:input_type -> api.statistics.PersonMessage
  931. 10, // 8: api.statistics.Statistics.UnlockLookRecord:input_type -> api.statistics.PersonMessage
  932. 7, // 9: api.statistics.Statistics.FindLookList:input_type -> api.statistics.GetLookAndLikeListRequest
  933. 7, // 10: api.statistics.Statistics.FindLikeList:input_type -> api.statistics.GetLookAndLikeListRequest
  934. 7, // 11: api.statistics.Statistics.FindLikedList:input_type -> api.statistics.GetLookAndLikeListRequest
  935. 11, // 12: api.statistics.Statistics.ReceptionPerson:input_type -> api.statistics.ReceptionMessage
  936. 1, // 13: api.statistics.Statistics.AddTodayProfit:input_type -> api.statistics.AddTodayProfitRequest
  937. 13, // 14: api.statistics.Statistics.GetReceptionMsg:input_type -> api.common.PartnerIDParam
  938. 13, // 15: api.statistics.Statistics.GetTodayProfit:input_type -> api.common.PartnerIDParam
  939. 10, // 16: api.statistics.Statistics.GetIsLike:input_type -> api.statistics.PersonMessage
  940. 14, // 17: api.statistics.Statistics.LookPerson:output_type -> google.protobuf.Empty
  941. 14, // 18: api.statistics.Statistics.LikePerson:output_type -> google.protobuf.Empty
  942. 14, // 19: api.statistics.Statistics.UnLikePerson:output_type -> google.protobuf.Empty
  943. 8, // 20: api.statistics.Statistics.GetLookAndLikeStatisticsMessage:output_type -> api.statistics.LookAndLikeMessageReply
  944. 9, // 21: api.statistics.Statistics.GetLookStatisticsMessage:output_type -> api.statistics.LookMessageReply
  945. 14, // 22: api.statistics.Statistics.ReduceLookUnreadNum:output_type -> google.protobuf.Empty
  946. 14, // 23: api.statistics.Statistics.ReduceLikeUnreadNum:output_type -> google.protobuf.Empty
  947. 14, // 24: api.statistics.Statistics.UnlockLookRecord:output_type -> google.protobuf.Empty
  948. 5, // 25: api.statistics.Statistics.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  949. 5, // 26: api.statistics.Statistics.FindLikeList:output_type -> api.statistics.LookAndLikeListReply
  950. 5, // 27: api.statistics.Statistics.FindLikedList:output_type -> api.statistics.LookAndLikeListReply
  951. 14, // 28: api.statistics.Statistics.ReceptionPerson:output_type -> google.protobuf.Empty
  952. 14, // 29: api.statistics.Statistics.AddTodayProfit:output_type -> google.protobuf.Empty
  953. 3, // 30: api.statistics.Statistics.GetReceptionMsg:output_type -> api.statistics.ReceptionMsg
  954. 4, // 31: api.statistics.Statistics.GetTodayProfit:output_type -> api.statistics.TodayProfitMsg
  955. 0, // 32: api.statistics.Statistics.GetIsLike:output_type -> api.statistics.IsLike
  956. 17, // [17:33] is the sub-list for method output_type
  957. 1, // [1:17] is the sub-list for method input_type
  958. 1, // [1:1] is the sub-list for extension type_name
  959. 1, // [1:1] is the sub-list for extension extendee
  960. 0, // [0:1] is the sub-list for field type_name
  961. }
  962. func init() { file_statistics_proto_init() }
  963. func file_statistics_proto_init() {
  964. if File_statistics_proto != nil {
  965. return
  966. }
  967. if !protoimpl.UnsafeEnabled {
  968. file_statistics_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  969. switch v := v.(*IsLike); i {
  970. case 0:
  971. return &v.state
  972. case 1:
  973. return &v.sizeCache
  974. case 2:
  975. return &v.unknownFields
  976. default:
  977. return nil
  978. }
  979. }
  980. file_statistics_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  981. switch v := v.(*AddTodayProfitRequest); i {
  982. case 0:
  983. return &v.state
  984. case 1:
  985. return &v.sizeCache
  986. case 2:
  987. return &v.unknownFields
  988. default:
  989. return nil
  990. }
  991. }
  992. file_statistics_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  993. switch v := v.(*GetLookAndLikeStatisticsMessageRequest); i {
  994. case 0:
  995. return &v.state
  996. case 1:
  997. return &v.sizeCache
  998. case 2:
  999. return &v.unknownFields
  1000. default:
  1001. return nil
  1002. }
  1003. }
  1004. file_statistics_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1005. switch v := v.(*ReceptionMsg); i {
  1006. case 0:
  1007. return &v.state
  1008. case 1:
  1009. return &v.sizeCache
  1010. case 2:
  1011. return &v.unknownFields
  1012. default:
  1013. return nil
  1014. }
  1015. }
  1016. file_statistics_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1017. switch v := v.(*TodayProfitMsg); i {
  1018. case 0:
  1019. return &v.state
  1020. case 1:
  1021. return &v.sizeCache
  1022. case 2:
  1023. return &v.unknownFields
  1024. default:
  1025. return nil
  1026. }
  1027. }
  1028. file_statistics_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1029. switch v := v.(*LookAndLikeListReply); i {
  1030. case 0:
  1031. return &v.state
  1032. case 1:
  1033. return &v.sizeCache
  1034. case 2:
  1035. return &v.unknownFields
  1036. default:
  1037. return nil
  1038. }
  1039. }
  1040. file_statistics_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1041. switch v := v.(*LookAndLikeListInfo); i {
  1042. case 0:
  1043. return &v.state
  1044. case 1:
  1045. return &v.sizeCache
  1046. case 2:
  1047. return &v.unknownFields
  1048. default:
  1049. return nil
  1050. }
  1051. }
  1052. file_statistics_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1053. switch v := v.(*GetLookAndLikeListRequest); i {
  1054. case 0:
  1055. return &v.state
  1056. case 1:
  1057. return &v.sizeCache
  1058. case 2:
  1059. return &v.unknownFields
  1060. default:
  1061. return nil
  1062. }
  1063. }
  1064. file_statistics_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1065. switch v := v.(*LookAndLikeMessageReply); i {
  1066. case 0:
  1067. return &v.state
  1068. case 1:
  1069. return &v.sizeCache
  1070. case 2:
  1071. return &v.unknownFields
  1072. default:
  1073. return nil
  1074. }
  1075. }
  1076. file_statistics_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1077. switch v := v.(*LookMessageReply); i {
  1078. case 0:
  1079. return &v.state
  1080. case 1:
  1081. return &v.sizeCache
  1082. case 2:
  1083. return &v.unknownFields
  1084. default:
  1085. return nil
  1086. }
  1087. }
  1088. file_statistics_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1089. switch v := v.(*PersonMessage); i {
  1090. case 0:
  1091. return &v.state
  1092. case 1:
  1093. return &v.sizeCache
  1094. case 2:
  1095. return &v.unknownFields
  1096. default:
  1097. return nil
  1098. }
  1099. }
  1100. file_statistics_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1101. switch v := v.(*ReceptionMessage); i {
  1102. case 0:
  1103. return &v.state
  1104. case 1:
  1105. return &v.sizeCache
  1106. case 2:
  1107. return &v.unknownFields
  1108. default:
  1109. return nil
  1110. }
  1111. }
  1112. }
  1113. type x struct{}
  1114. out := protoimpl.TypeBuilder{
  1115. File: protoimpl.DescBuilder{
  1116. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1117. RawDescriptor: file_statistics_proto_rawDesc,
  1118. NumEnums: 0,
  1119. NumMessages: 12,
  1120. NumExtensions: 0,
  1121. NumServices: 1,
  1122. },
  1123. GoTypes: file_statistics_proto_goTypes,
  1124. DependencyIndexes: file_statistics_proto_depIdxs,
  1125. MessageInfos: file_statistics_proto_msgTypes,
  1126. }.Build()
  1127. File_statistics_proto = out.File
  1128. file_statistics_proto_rawDesc = nil
  1129. file_statistics_proto_goTypes = nil
  1130. file_statistics_proto_depIdxs = nil
  1131. }