common.pb.go 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845
  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: common.proto
  6. package common
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type UserAndPartnerIdParam struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"`
  24. UserId string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId"`
  25. }
  26. func (x *UserAndPartnerIdParam) Reset() {
  27. *x = UserAndPartnerIdParam{}
  28. if protoimpl.UnsafeEnabled {
  29. mi := &file_common_proto_msgTypes[0]
  30. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  31. ms.StoreMessageInfo(mi)
  32. }
  33. }
  34. func (x *UserAndPartnerIdParam) String() string {
  35. return protoimpl.X.MessageStringOf(x)
  36. }
  37. func (*UserAndPartnerIdParam) ProtoMessage() {}
  38. func (x *UserAndPartnerIdParam) ProtoReflect() protoreflect.Message {
  39. mi := &file_common_proto_msgTypes[0]
  40. if protoimpl.UnsafeEnabled && x != nil {
  41. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  42. if ms.LoadMessageInfo() == nil {
  43. ms.StoreMessageInfo(mi)
  44. }
  45. return ms
  46. }
  47. return mi.MessageOf(x)
  48. }
  49. // Deprecated: Use UserAndPartnerIdParam.ProtoReflect.Descriptor instead.
  50. func (*UserAndPartnerIdParam) Descriptor() ([]byte, []int) {
  51. return file_common_proto_rawDescGZIP(), []int{0}
  52. }
  53. func (x *UserAndPartnerIdParam) GetPartnerId() string {
  54. if x != nil {
  55. return x.PartnerId
  56. }
  57. return ""
  58. }
  59. func (x *UserAndPartnerIdParam) GetUserId() string {
  60. if x != nil {
  61. return x.UserId
  62. }
  63. return ""
  64. }
  65. type User1AndUser2IdParam struct {
  66. state protoimpl.MessageState
  67. sizeCache protoimpl.SizeCache
  68. unknownFields protoimpl.UnknownFields
  69. User1 string `protobuf:"bytes,1,opt,name=user1,proto3" json:"user1"`
  70. User2 string `protobuf:"bytes,2,opt,name=user2,proto3" json:"user2"`
  71. }
  72. func (x *User1AndUser2IdParam) Reset() {
  73. *x = User1AndUser2IdParam{}
  74. if protoimpl.UnsafeEnabled {
  75. mi := &file_common_proto_msgTypes[1]
  76. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  77. ms.StoreMessageInfo(mi)
  78. }
  79. }
  80. func (x *User1AndUser2IdParam) String() string {
  81. return protoimpl.X.MessageStringOf(x)
  82. }
  83. func (*User1AndUser2IdParam) ProtoMessage() {}
  84. func (x *User1AndUser2IdParam) ProtoReflect() protoreflect.Message {
  85. mi := &file_common_proto_msgTypes[1]
  86. if protoimpl.UnsafeEnabled && x != nil {
  87. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  88. if ms.LoadMessageInfo() == nil {
  89. ms.StoreMessageInfo(mi)
  90. }
  91. return ms
  92. }
  93. return mi.MessageOf(x)
  94. }
  95. // Deprecated: Use User1AndUser2IdParam.ProtoReflect.Descriptor instead.
  96. func (*User1AndUser2IdParam) Descriptor() ([]byte, []int) {
  97. return file_common_proto_rawDescGZIP(), []int{1}
  98. }
  99. func (x *User1AndUser2IdParam) GetUser1() string {
  100. if x != nil {
  101. return x.User1
  102. }
  103. return ""
  104. }
  105. func (x *User1AndUser2IdParam) GetUser2() string {
  106. if x != nil {
  107. return x.User2
  108. }
  109. return ""
  110. }
  111. type PartnerIDParam struct {
  112. state protoimpl.MessageState
  113. sizeCache protoimpl.SizeCache
  114. unknownFields protoimpl.UnknownFields
  115. PartnerID string `protobuf:"bytes,1,opt,name=partnerID,proto3" json:"partnerID"`
  116. }
  117. func (x *PartnerIDParam) Reset() {
  118. *x = PartnerIDParam{}
  119. if protoimpl.UnsafeEnabled {
  120. mi := &file_common_proto_msgTypes[2]
  121. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  122. ms.StoreMessageInfo(mi)
  123. }
  124. }
  125. func (x *PartnerIDParam) String() string {
  126. return protoimpl.X.MessageStringOf(x)
  127. }
  128. func (*PartnerIDParam) ProtoMessage() {}
  129. func (x *PartnerIDParam) ProtoReflect() protoreflect.Message {
  130. mi := &file_common_proto_msgTypes[2]
  131. if protoimpl.UnsafeEnabled && x != nil {
  132. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  133. if ms.LoadMessageInfo() == nil {
  134. ms.StoreMessageInfo(mi)
  135. }
  136. return ms
  137. }
  138. return mi.MessageOf(x)
  139. }
  140. // Deprecated: Use PartnerIDParam.ProtoReflect.Descriptor instead.
  141. func (*PartnerIDParam) Descriptor() ([]byte, []int) {
  142. return file_common_proto_rawDescGZIP(), []int{2}
  143. }
  144. func (x *PartnerIDParam) GetPartnerID() string {
  145. if x != nil {
  146. return x.PartnerID
  147. }
  148. return ""
  149. }
  150. type PersonParam struct {
  151. state protoimpl.MessageState
  152. sizeCache protoimpl.SizeCache
  153. unknownFields protoimpl.UnknownFields
  154. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  155. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  156. }
  157. func (x *PersonParam) Reset() {
  158. *x = PersonParam{}
  159. if protoimpl.UnsafeEnabled {
  160. mi := &file_common_proto_msgTypes[3]
  161. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  162. ms.StoreMessageInfo(mi)
  163. }
  164. }
  165. func (x *PersonParam) String() string {
  166. return protoimpl.X.MessageStringOf(x)
  167. }
  168. func (*PersonParam) ProtoMessage() {}
  169. func (x *PersonParam) ProtoReflect() protoreflect.Message {
  170. mi := &file_common_proto_msgTypes[3]
  171. if protoimpl.UnsafeEnabled && x != nil {
  172. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  173. if ms.LoadMessageInfo() == nil {
  174. ms.StoreMessageInfo(mi)
  175. }
  176. return ms
  177. }
  178. return mi.MessageOf(x)
  179. }
  180. // Deprecated: Use PersonParam.ProtoReflect.Descriptor instead.
  181. func (*PersonParam) Descriptor() ([]byte, []int) {
  182. return file_common_proto_rawDescGZIP(), []int{3}
  183. }
  184. func (x *PersonParam) GetPersonID() string {
  185. if x != nil {
  186. return x.PersonID
  187. }
  188. return ""
  189. }
  190. func (x *PersonParam) GetPersonType() string {
  191. if x != nil {
  192. return x.PersonType
  193. }
  194. return ""
  195. }
  196. type UserIDParam struct {
  197. state protoimpl.MessageState
  198. sizeCache protoimpl.SizeCache
  199. unknownFields protoimpl.UnknownFields
  200. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"`
  201. }
  202. func (x *UserIDParam) Reset() {
  203. *x = UserIDParam{}
  204. if protoimpl.UnsafeEnabled {
  205. mi := &file_common_proto_msgTypes[4]
  206. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  207. ms.StoreMessageInfo(mi)
  208. }
  209. }
  210. func (x *UserIDParam) String() string {
  211. return protoimpl.X.MessageStringOf(x)
  212. }
  213. func (*UserIDParam) ProtoMessage() {}
  214. func (x *UserIDParam) ProtoReflect() protoreflect.Message {
  215. mi := &file_common_proto_msgTypes[4]
  216. if protoimpl.UnsafeEnabled && x != nil {
  217. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  218. if ms.LoadMessageInfo() == nil {
  219. ms.StoreMessageInfo(mi)
  220. }
  221. return ms
  222. }
  223. return mi.MessageOf(x)
  224. }
  225. // Deprecated: Use UserIDParam.ProtoReflect.Descriptor instead.
  226. func (*UserIDParam) Descriptor() ([]byte, []int) {
  227. return file_common_proto_rawDescGZIP(), []int{4}
  228. }
  229. func (x *UserIDParam) GetUserId() string {
  230. if x != nil {
  231. return x.UserId
  232. }
  233. return ""
  234. }
  235. type WxConfReq struct {
  236. state protoimpl.MessageState
  237. sizeCache protoimpl.SizeCache
  238. unknownFields protoimpl.UnknownFields
  239. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url"`
  240. }
  241. func (x *WxConfReq) Reset() {
  242. *x = WxConfReq{}
  243. if protoimpl.UnsafeEnabled {
  244. mi := &file_common_proto_msgTypes[5]
  245. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  246. ms.StoreMessageInfo(mi)
  247. }
  248. }
  249. func (x *WxConfReq) String() string {
  250. return protoimpl.X.MessageStringOf(x)
  251. }
  252. func (*WxConfReq) ProtoMessage() {}
  253. func (x *WxConfReq) ProtoReflect() protoreflect.Message {
  254. mi := &file_common_proto_msgTypes[5]
  255. if protoimpl.UnsafeEnabled && x != nil {
  256. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  257. if ms.LoadMessageInfo() == nil {
  258. ms.StoreMessageInfo(mi)
  259. }
  260. return ms
  261. }
  262. return mi.MessageOf(x)
  263. }
  264. // Deprecated: Use WxConfReq.ProtoReflect.Descriptor instead.
  265. func (*WxConfReq) Descriptor() ([]byte, []int) {
  266. return file_common_proto_rawDescGZIP(), []int{5}
  267. }
  268. func (x *WxConfReq) GetUrl() string {
  269. if x != nil {
  270. return x.Url
  271. }
  272. return ""
  273. }
  274. type WxConfResponse struct {
  275. state protoimpl.MessageState
  276. sizeCache protoimpl.SizeCache
  277. unknownFields protoimpl.UnknownFields
  278. AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId"` // 必填,公众号的唯一标识
  279. Timestamp int64 `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp"` // 必填,生成签名的时间戳
  280. NonceStr string `protobuf:"bytes,3,opt,name=nonceStr,proto3" json:"nonceStr"` // 必填,生成签名的随机串
  281. Signature string `protobuf:"bytes,4,opt,name=signature,proto3" json:"signature"` // 必填,签名
  282. }
  283. func (x *WxConfResponse) Reset() {
  284. *x = WxConfResponse{}
  285. if protoimpl.UnsafeEnabled {
  286. mi := &file_common_proto_msgTypes[6]
  287. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  288. ms.StoreMessageInfo(mi)
  289. }
  290. }
  291. func (x *WxConfResponse) String() string {
  292. return protoimpl.X.MessageStringOf(x)
  293. }
  294. func (*WxConfResponse) ProtoMessage() {}
  295. func (x *WxConfResponse) ProtoReflect() protoreflect.Message {
  296. mi := &file_common_proto_msgTypes[6]
  297. if protoimpl.UnsafeEnabled && x != nil {
  298. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  299. if ms.LoadMessageInfo() == nil {
  300. ms.StoreMessageInfo(mi)
  301. }
  302. return ms
  303. }
  304. return mi.MessageOf(x)
  305. }
  306. // Deprecated: Use WxConfResponse.ProtoReflect.Descriptor instead.
  307. func (*WxConfResponse) Descriptor() ([]byte, []int) {
  308. return file_common_proto_rawDescGZIP(), []int{6}
  309. }
  310. func (x *WxConfResponse) GetAppId() string {
  311. if x != nil {
  312. return x.AppId
  313. }
  314. return ""
  315. }
  316. func (x *WxConfResponse) GetTimestamp() int64 {
  317. if x != nil {
  318. return x.Timestamp
  319. }
  320. return 0
  321. }
  322. func (x *WxConfResponse) GetNonceStr() string {
  323. if x != nil {
  324. return x.NonceStr
  325. }
  326. return ""
  327. }
  328. func (x *WxConfResponse) GetSignature() string {
  329. if x != nil {
  330. return x.Signature
  331. }
  332. return ""
  333. }
  334. // 主页信息
  335. type HomeInfo struct {
  336. state protoimpl.MessageState
  337. sizeCache protoimpl.SizeCache
  338. unknownFields protoimpl.UnknownFields
  339. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  340. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  341. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  342. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  343. Pictures []string `protobuf:"bytes,5,rep,name=pictures,proto3" json:"pictures"` // 图片
  344. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  345. Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
  346. Area string `protobuf:"bytes,8,opt,name=area,proto3" json:"area"` // 地区
  347. TagList []*TagList `protobuf:"bytes,9,rep,name=tagList,proto3" json:"tagList"` // 标签
  348. Signature string `protobuf:"bytes,10,opt,name=signature,proto3" json:"signature"` // 签名
  349. IntroduceVoice string `protobuf:"bytes,11,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  350. }
  351. func (x *HomeInfo) Reset() {
  352. *x = HomeInfo{}
  353. if protoimpl.UnsafeEnabled {
  354. mi := &file_common_proto_msgTypes[7]
  355. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  356. ms.StoreMessageInfo(mi)
  357. }
  358. }
  359. func (x *HomeInfo) String() string {
  360. return protoimpl.X.MessageStringOf(x)
  361. }
  362. func (*HomeInfo) ProtoMessage() {}
  363. func (x *HomeInfo) ProtoReflect() protoreflect.Message {
  364. mi := &file_common_proto_msgTypes[7]
  365. if protoimpl.UnsafeEnabled && x != nil {
  366. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  367. if ms.LoadMessageInfo() == nil {
  368. ms.StoreMessageInfo(mi)
  369. }
  370. return ms
  371. }
  372. return mi.MessageOf(x)
  373. }
  374. // Deprecated: Use HomeInfo.ProtoReflect.Descriptor instead.
  375. func (*HomeInfo) Descriptor() ([]byte, []int) {
  376. return file_common_proto_rawDescGZIP(), []int{7}
  377. }
  378. func (x *HomeInfo) GetId() string {
  379. if x != nil {
  380. return x.Id
  381. }
  382. return ""
  383. }
  384. func (x *HomeInfo) GetNickname() string {
  385. if x != nil {
  386. return x.Nickname
  387. }
  388. return ""
  389. }
  390. func (x *HomeInfo) GetAvatarUrl() string {
  391. if x != nil {
  392. return x.AvatarUrl
  393. }
  394. return ""
  395. }
  396. func (x *HomeInfo) GetSex() int64 {
  397. if x != nil {
  398. return x.Sex
  399. }
  400. return 0
  401. }
  402. func (x *HomeInfo) GetPictures() []string {
  403. if x != nil {
  404. return x.Pictures
  405. }
  406. return nil
  407. }
  408. func (x *HomeInfo) GetAge() int64 {
  409. if x != nil {
  410. return x.Age
  411. }
  412. return 0
  413. }
  414. func (x *HomeInfo) GetConstellation() string {
  415. if x != nil {
  416. return x.Constellation
  417. }
  418. return ""
  419. }
  420. func (x *HomeInfo) GetArea() string {
  421. if x != nil {
  422. return x.Area
  423. }
  424. return ""
  425. }
  426. func (x *HomeInfo) GetTagList() []*TagList {
  427. if x != nil {
  428. return x.TagList
  429. }
  430. return nil
  431. }
  432. func (x *HomeInfo) GetSignature() string {
  433. if x != nil {
  434. return x.Signature
  435. }
  436. return ""
  437. }
  438. func (x *HomeInfo) GetIntroduceVoice() string {
  439. if x != nil {
  440. return x.IntroduceVoice
  441. }
  442. return ""
  443. }
  444. // 添加好友页面信息
  445. type AddFriendMessageInfo struct {
  446. state protoimpl.MessageState
  447. sizeCache protoimpl.SizeCache
  448. unknownFields protoimpl.UnknownFields
  449. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  450. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  451. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  452. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  453. Pictures []string `protobuf:"bytes,5,rep,name=pictures,proto3" json:"pictures"` // 图片
  454. FromOpenId string `protobuf:"bytes,6,opt,name=fromOpenId,proto3" json:"fromOpenId"` // 来源公众号对应的openID
  455. IsRegister bool `protobuf:"varint,7,opt,name=isRegister,proto3" json:"isRegister"` // 是否注册
  456. IsChat bool `protobuf:"varint,8,opt,name=isChat,proto3" json:"isChat"` // 是否聊天
  457. IsFromUs bool `protobuf:"varint,9,opt,name=isFromUs,proto3" json:"isFromUs"` // 是否是来源我们
  458. FromAppId string `protobuf:"bytes,10,opt,name=fromAppId,proto3" json:"fromAppId"` // 来源公众号对应的appID
  459. FromName string `protobuf:"bytes,11,opt,name=fromName,proto3" json:"fromName"` // 来源公众号对应的公众号名称
  460. }
  461. func (x *AddFriendMessageInfo) Reset() {
  462. *x = AddFriendMessageInfo{}
  463. if protoimpl.UnsafeEnabled {
  464. mi := &file_common_proto_msgTypes[8]
  465. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  466. ms.StoreMessageInfo(mi)
  467. }
  468. }
  469. func (x *AddFriendMessageInfo) String() string {
  470. return protoimpl.X.MessageStringOf(x)
  471. }
  472. func (*AddFriendMessageInfo) ProtoMessage() {}
  473. func (x *AddFriendMessageInfo) ProtoReflect() protoreflect.Message {
  474. mi := &file_common_proto_msgTypes[8]
  475. if protoimpl.UnsafeEnabled && x != nil {
  476. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  477. if ms.LoadMessageInfo() == nil {
  478. ms.StoreMessageInfo(mi)
  479. }
  480. return ms
  481. }
  482. return mi.MessageOf(x)
  483. }
  484. // Deprecated: Use AddFriendMessageInfo.ProtoReflect.Descriptor instead.
  485. func (*AddFriendMessageInfo) Descriptor() ([]byte, []int) {
  486. return file_common_proto_rawDescGZIP(), []int{8}
  487. }
  488. func (x *AddFriendMessageInfo) GetId() string {
  489. if x != nil {
  490. return x.Id
  491. }
  492. return ""
  493. }
  494. func (x *AddFriendMessageInfo) GetNickname() string {
  495. if x != nil {
  496. return x.Nickname
  497. }
  498. return ""
  499. }
  500. func (x *AddFriendMessageInfo) GetAvatarUrl() string {
  501. if x != nil {
  502. return x.AvatarUrl
  503. }
  504. return ""
  505. }
  506. func (x *AddFriendMessageInfo) GetSex() int64 {
  507. if x != nil {
  508. return x.Sex
  509. }
  510. return 0
  511. }
  512. func (x *AddFriendMessageInfo) GetPictures() []string {
  513. if x != nil {
  514. return x.Pictures
  515. }
  516. return nil
  517. }
  518. func (x *AddFriendMessageInfo) GetFromOpenId() string {
  519. if x != nil {
  520. return x.FromOpenId
  521. }
  522. return ""
  523. }
  524. func (x *AddFriendMessageInfo) GetIsRegister() bool {
  525. if x != nil {
  526. return x.IsRegister
  527. }
  528. return false
  529. }
  530. func (x *AddFriendMessageInfo) GetIsChat() bool {
  531. if x != nil {
  532. return x.IsChat
  533. }
  534. return false
  535. }
  536. func (x *AddFriendMessageInfo) GetIsFromUs() bool {
  537. if x != nil {
  538. return x.IsFromUs
  539. }
  540. return false
  541. }
  542. func (x *AddFriendMessageInfo) GetFromAppId() string {
  543. if x != nil {
  544. return x.FromAppId
  545. }
  546. return ""
  547. }
  548. func (x *AddFriendMessageInfo) GetFromName() string {
  549. if x != nil {
  550. return x.FromName
  551. }
  552. return ""
  553. }
  554. type PersonIDList struct {
  555. state protoimpl.MessageState
  556. sizeCache protoimpl.SizeCache
  557. unknownFields protoimpl.UnknownFields
  558. PersonIds []string `protobuf:"bytes,1,rep,name=personIds,proto3" json:"personIds"`
  559. }
  560. func (x *PersonIDList) Reset() {
  561. *x = PersonIDList{}
  562. if protoimpl.UnsafeEnabled {
  563. mi := &file_common_proto_msgTypes[9]
  564. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  565. ms.StoreMessageInfo(mi)
  566. }
  567. }
  568. func (x *PersonIDList) String() string {
  569. return protoimpl.X.MessageStringOf(x)
  570. }
  571. func (*PersonIDList) ProtoMessage() {}
  572. func (x *PersonIDList) ProtoReflect() protoreflect.Message {
  573. mi := &file_common_proto_msgTypes[9]
  574. if protoimpl.UnsafeEnabled && x != nil {
  575. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  576. if ms.LoadMessageInfo() == nil {
  577. ms.StoreMessageInfo(mi)
  578. }
  579. return ms
  580. }
  581. return mi.MessageOf(x)
  582. }
  583. // Deprecated: Use PersonIDList.ProtoReflect.Descriptor instead.
  584. func (*PersonIDList) Descriptor() ([]byte, []int) {
  585. return file_common_proto_rawDescGZIP(), []int{9}
  586. }
  587. func (x *PersonIDList) GetPersonIds() []string {
  588. if x != nil {
  589. return x.PersonIds
  590. }
  591. return nil
  592. }
  593. type PersonDBReply struct {
  594. state protoimpl.MessageState
  595. sizeCache protoimpl.SizeCache
  596. unknownFields protoimpl.UnknownFields
  597. List []*PersonDB `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  598. }
  599. func (x *PersonDBReply) Reset() {
  600. *x = PersonDBReply{}
  601. if protoimpl.UnsafeEnabled {
  602. mi := &file_common_proto_msgTypes[10]
  603. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  604. ms.StoreMessageInfo(mi)
  605. }
  606. }
  607. func (x *PersonDBReply) String() string {
  608. return protoimpl.X.MessageStringOf(x)
  609. }
  610. func (*PersonDBReply) ProtoMessage() {}
  611. func (x *PersonDBReply) ProtoReflect() protoreflect.Message {
  612. mi := &file_common_proto_msgTypes[10]
  613. if protoimpl.UnsafeEnabled && x != nil {
  614. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  615. if ms.LoadMessageInfo() == nil {
  616. ms.StoreMessageInfo(mi)
  617. }
  618. return ms
  619. }
  620. return mi.MessageOf(x)
  621. }
  622. // Deprecated: Use PersonDBReply.ProtoReflect.Descriptor instead.
  623. func (*PersonDBReply) Descriptor() ([]byte, []int) {
  624. return file_common_proto_rawDescGZIP(), []int{10}
  625. }
  626. func (x *PersonDBReply) GetList() []*PersonDB {
  627. if x != nil {
  628. return x.List
  629. }
  630. return nil
  631. }
  632. type PersonDB struct {
  633. state protoimpl.MessageState
  634. sizeCache protoimpl.SizeCache
  635. unknownFields protoimpl.UnknownFields
  636. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  637. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  638. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  639. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  640. Pictures []string `protobuf:"bytes,5,rep,name=pictures,proto3" json:"pictures"` // 图片
  641. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  642. Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
  643. Area string `protobuf:"bytes,8,opt,name=area,proto3" json:"area"` // 地区
  644. IntroduceVoice string `protobuf:"bytes,9,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  645. }
  646. func (x *PersonDB) Reset() {
  647. *x = PersonDB{}
  648. if protoimpl.UnsafeEnabled {
  649. mi := &file_common_proto_msgTypes[11]
  650. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  651. ms.StoreMessageInfo(mi)
  652. }
  653. }
  654. func (x *PersonDB) String() string {
  655. return protoimpl.X.MessageStringOf(x)
  656. }
  657. func (*PersonDB) ProtoMessage() {}
  658. func (x *PersonDB) ProtoReflect() protoreflect.Message {
  659. mi := &file_common_proto_msgTypes[11]
  660. if protoimpl.UnsafeEnabled && x != nil {
  661. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  662. if ms.LoadMessageInfo() == nil {
  663. ms.StoreMessageInfo(mi)
  664. }
  665. return ms
  666. }
  667. return mi.MessageOf(x)
  668. }
  669. // Deprecated: Use PersonDB.ProtoReflect.Descriptor instead.
  670. func (*PersonDB) Descriptor() ([]byte, []int) {
  671. return file_common_proto_rawDescGZIP(), []int{11}
  672. }
  673. func (x *PersonDB) GetId() string {
  674. if x != nil {
  675. return x.Id
  676. }
  677. return ""
  678. }
  679. func (x *PersonDB) GetNickname() string {
  680. if x != nil {
  681. return x.Nickname
  682. }
  683. return ""
  684. }
  685. func (x *PersonDB) GetAvatarUrl() string {
  686. if x != nil {
  687. return x.AvatarUrl
  688. }
  689. return ""
  690. }
  691. func (x *PersonDB) GetSex() int64 {
  692. if x != nil {
  693. return x.Sex
  694. }
  695. return 0
  696. }
  697. func (x *PersonDB) GetPictures() []string {
  698. if x != nil {
  699. return x.Pictures
  700. }
  701. return nil
  702. }
  703. func (x *PersonDB) GetAge() int64 {
  704. if x != nil {
  705. return x.Age
  706. }
  707. return 0
  708. }
  709. func (x *PersonDB) GetConstellation() string {
  710. if x != nil {
  711. return x.Constellation
  712. }
  713. return ""
  714. }
  715. func (x *PersonDB) GetArea() string {
  716. if x != nil {
  717. return x.Area
  718. }
  719. return ""
  720. }
  721. func (x *PersonDB) GetIntroduceVoice() string {
  722. if x != nil {
  723. return x.IntroduceVoice
  724. }
  725. return ""
  726. }
  727. type ListPageRequest struct {
  728. state protoimpl.MessageState
  729. sizeCache protoimpl.SizeCache
  730. unknownFields protoimpl.UnknownFields
  731. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  732. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  733. }
  734. func (x *ListPageRequest) Reset() {
  735. *x = ListPageRequest{}
  736. if protoimpl.UnsafeEnabled {
  737. mi := &file_common_proto_msgTypes[12]
  738. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  739. ms.StoreMessageInfo(mi)
  740. }
  741. }
  742. func (x *ListPageRequest) String() string {
  743. return protoimpl.X.MessageStringOf(x)
  744. }
  745. func (*ListPageRequest) ProtoMessage() {}
  746. func (x *ListPageRequest) ProtoReflect() protoreflect.Message {
  747. mi := &file_common_proto_msgTypes[12]
  748. if protoimpl.UnsafeEnabled && x != nil {
  749. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  750. if ms.LoadMessageInfo() == nil {
  751. ms.StoreMessageInfo(mi)
  752. }
  753. return ms
  754. }
  755. return mi.MessageOf(x)
  756. }
  757. // Deprecated: Use ListPageRequest.ProtoReflect.Descriptor instead.
  758. func (*ListPageRequest) Descriptor() ([]byte, []int) {
  759. return file_common_proto_rawDescGZIP(), []int{12}
  760. }
  761. func (x *ListPageRequest) GetNextId() int64 {
  762. if x != nil {
  763. return x.NextId
  764. }
  765. return 0
  766. }
  767. func (x *ListPageRequest) GetOffset() int64 {
  768. if x != nil {
  769. return x.Offset
  770. }
  771. return 0
  772. }
  773. type SendPhoneCodeRequest struct {
  774. state protoimpl.MessageState
  775. sizeCache protoimpl.SizeCache
  776. unknownFields protoimpl.UnknownFields
  777. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  778. }
  779. func (x *SendPhoneCodeRequest) Reset() {
  780. *x = SendPhoneCodeRequest{}
  781. if protoimpl.UnsafeEnabled {
  782. mi := &file_common_proto_msgTypes[13]
  783. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  784. ms.StoreMessageInfo(mi)
  785. }
  786. }
  787. func (x *SendPhoneCodeRequest) String() string {
  788. return protoimpl.X.MessageStringOf(x)
  789. }
  790. func (*SendPhoneCodeRequest) ProtoMessage() {}
  791. func (x *SendPhoneCodeRequest) ProtoReflect() protoreflect.Message {
  792. mi := &file_common_proto_msgTypes[13]
  793. if protoimpl.UnsafeEnabled && x != nil {
  794. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  795. if ms.LoadMessageInfo() == nil {
  796. ms.StoreMessageInfo(mi)
  797. }
  798. return ms
  799. }
  800. return mi.MessageOf(x)
  801. }
  802. // Deprecated: Use SendPhoneCodeRequest.ProtoReflect.Descriptor instead.
  803. func (*SendPhoneCodeRequest) Descriptor() ([]byte, []int) {
  804. return file_common_proto_rawDescGZIP(), []int{13}
  805. }
  806. func (x *SendPhoneCodeRequest) GetPhone() string {
  807. if x != nil {
  808. return x.Phone
  809. }
  810. return ""
  811. }
  812. type CheckPhoneCodeRequest struct {
  813. state protoimpl.MessageState
  814. sizeCache protoimpl.SizeCache
  815. unknownFields protoimpl.UnknownFields
  816. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  817. Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code"`
  818. }
  819. func (x *CheckPhoneCodeRequest) Reset() {
  820. *x = CheckPhoneCodeRequest{}
  821. if protoimpl.UnsafeEnabled {
  822. mi := &file_common_proto_msgTypes[14]
  823. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  824. ms.StoreMessageInfo(mi)
  825. }
  826. }
  827. func (x *CheckPhoneCodeRequest) String() string {
  828. return protoimpl.X.MessageStringOf(x)
  829. }
  830. func (*CheckPhoneCodeRequest) ProtoMessage() {}
  831. func (x *CheckPhoneCodeRequest) ProtoReflect() protoreflect.Message {
  832. mi := &file_common_proto_msgTypes[14]
  833. if protoimpl.UnsafeEnabled && x != nil {
  834. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  835. if ms.LoadMessageInfo() == nil {
  836. ms.StoreMessageInfo(mi)
  837. }
  838. return ms
  839. }
  840. return mi.MessageOf(x)
  841. }
  842. // Deprecated: Use CheckPhoneCodeRequest.ProtoReflect.Descriptor instead.
  843. func (*CheckPhoneCodeRequest) Descriptor() ([]byte, []int) {
  844. return file_common_proto_rawDescGZIP(), []int{14}
  845. }
  846. func (x *CheckPhoneCodeRequest) GetPhone() string {
  847. if x != nil {
  848. return x.Phone
  849. }
  850. return ""
  851. }
  852. func (x *CheckPhoneCodeRequest) GetCode() string {
  853. if x != nil {
  854. return x.Code
  855. }
  856. return ""
  857. }
  858. type UploadMaterialResponse struct {
  859. state protoimpl.MessageState
  860. sizeCache protoimpl.SizeCache
  861. unknownFields protoimpl.UnknownFields
  862. Link string `protobuf:"bytes,1,opt,name=link,proto3" json:"link"`
  863. }
  864. func (x *UploadMaterialResponse) Reset() {
  865. *x = UploadMaterialResponse{}
  866. if protoimpl.UnsafeEnabled {
  867. mi := &file_common_proto_msgTypes[15]
  868. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  869. ms.StoreMessageInfo(mi)
  870. }
  871. }
  872. func (x *UploadMaterialResponse) String() string {
  873. return protoimpl.X.MessageStringOf(x)
  874. }
  875. func (*UploadMaterialResponse) ProtoMessage() {}
  876. func (x *UploadMaterialResponse) ProtoReflect() protoreflect.Message {
  877. mi := &file_common_proto_msgTypes[15]
  878. if protoimpl.UnsafeEnabled && x != nil {
  879. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  880. if ms.LoadMessageInfo() == nil {
  881. ms.StoreMessageInfo(mi)
  882. }
  883. return ms
  884. }
  885. return mi.MessageOf(x)
  886. }
  887. // Deprecated: Use UploadMaterialResponse.ProtoReflect.Descriptor instead.
  888. func (*UploadMaterialResponse) Descriptor() ([]byte, []int) {
  889. return file_common_proto_rawDescGZIP(), []int{15}
  890. }
  891. func (x *UploadMaterialResponse) GetLink() string {
  892. if x != nil {
  893. return x.Link
  894. }
  895. return ""
  896. }
  897. type Ids struct {
  898. state protoimpl.MessageState
  899. sizeCache protoimpl.SizeCache
  900. unknownFields protoimpl.UnknownFields
  901. Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids"` // 标签ID
  902. }
  903. func (x *Ids) Reset() {
  904. *x = Ids{}
  905. if protoimpl.UnsafeEnabled {
  906. mi := &file_common_proto_msgTypes[16]
  907. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  908. ms.StoreMessageInfo(mi)
  909. }
  910. }
  911. func (x *Ids) String() string {
  912. return protoimpl.X.MessageStringOf(x)
  913. }
  914. func (*Ids) ProtoMessage() {}
  915. func (x *Ids) ProtoReflect() protoreflect.Message {
  916. mi := &file_common_proto_msgTypes[16]
  917. if protoimpl.UnsafeEnabled && x != nil {
  918. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  919. if ms.LoadMessageInfo() == nil {
  920. ms.StoreMessageInfo(mi)
  921. }
  922. return ms
  923. }
  924. return mi.MessageOf(x)
  925. }
  926. // Deprecated: Use Ids.ProtoReflect.Descriptor instead.
  927. func (*Ids) Descriptor() ([]byte, []int) {
  928. return file_common_proto_rawDescGZIP(), []int{16}
  929. }
  930. func (x *Ids) GetIds() []int64 {
  931. if x != nil {
  932. return x.Ids
  933. }
  934. return nil
  935. }
  936. type FindTagListByGroupNameAndSex struct {
  937. state protoimpl.MessageState
  938. sizeCache protoimpl.SizeCache
  939. unknownFields protoimpl.UnknownFields
  940. GroupName string `protobuf:"bytes,1,opt,name=groupName,proto3" json:"groupName"` // 分组名
  941. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 性别
  942. }
  943. func (x *FindTagListByGroupNameAndSex) Reset() {
  944. *x = FindTagListByGroupNameAndSex{}
  945. if protoimpl.UnsafeEnabled {
  946. mi := &file_common_proto_msgTypes[17]
  947. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  948. ms.StoreMessageInfo(mi)
  949. }
  950. }
  951. func (x *FindTagListByGroupNameAndSex) String() string {
  952. return protoimpl.X.MessageStringOf(x)
  953. }
  954. func (*FindTagListByGroupNameAndSex) ProtoMessage() {}
  955. func (x *FindTagListByGroupNameAndSex) ProtoReflect() protoreflect.Message {
  956. mi := &file_common_proto_msgTypes[17]
  957. if protoimpl.UnsafeEnabled && x != nil {
  958. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  959. if ms.LoadMessageInfo() == nil {
  960. ms.StoreMessageInfo(mi)
  961. }
  962. return ms
  963. }
  964. return mi.MessageOf(x)
  965. }
  966. // Deprecated: Use FindTagListByGroupNameAndSex.ProtoReflect.Descriptor instead.
  967. func (*FindTagListByGroupNameAndSex) Descriptor() ([]byte, []int) {
  968. return file_common_proto_rawDescGZIP(), []int{17}
  969. }
  970. func (x *FindTagListByGroupNameAndSex) GetGroupName() string {
  971. if x != nil {
  972. return x.GroupName
  973. }
  974. return ""
  975. }
  976. func (x *FindTagListByGroupNameAndSex) GetSex() int64 {
  977. if x != nil {
  978. return x.Sex
  979. }
  980. return 0
  981. }
  982. type TagListReply struct {
  983. state protoimpl.MessageState
  984. sizeCache protoimpl.SizeCache
  985. unknownFields protoimpl.UnknownFields
  986. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name"` // 分组名
  987. List []*TagList `protobuf:"bytes,2,rep,name=list,proto3" json:"list"` // 标签列表
  988. }
  989. func (x *TagListReply) Reset() {
  990. *x = TagListReply{}
  991. if protoimpl.UnsafeEnabled {
  992. mi := &file_common_proto_msgTypes[18]
  993. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  994. ms.StoreMessageInfo(mi)
  995. }
  996. }
  997. func (x *TagListReply) String() string {
  998. return protoimpl.X.MessageStringOf(x)
  999. }
  1000. func (*TagListReply) ProtoMessage() {}
  1001. func (x *TagListReply) ProtoReflect() protoreflect.Message {
  1002. mi := &file_common_proto_msgTypes[18]
  1003. if protoimpl.UnsafeEnabled && x != nil {
  1004. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1005. if ms.LoadMessageInfo() == nil {
  1006. ms.StoreMessageInfo(mi)
  1007. }
  1008. return ms
  1009. }
  1010. return mi.MessageOf(x)
  1011. }
  1012. // Deprecated: Use TagListReply.ProtoReflect.Descriptor instead.
  1013. func (*TagListReply) Descriptor() ([]byte, []int) {
  1014. return file_common_proto_rawDescGZIP(), []int{18}
  1015. }
  1016. func (x *TagListReply) GetName() string {
  1017. if x != nil {
  1018. return x.Name
  1019. }
  1020. return ""
  1021. }
  1022. func (x *TagListReply) GetList() []*TagList {
  1023. if x != nil {
  1024. return x.List
  1025. }
  1026. return nil
  1027. }
  1028. type TagList struct {
  1029. state protoimpl.MessageState
  1030. sizeCache protoimpl.SizeCache
  1031. unknownFields protoimpl.UnknownFields
  1032. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // 标签ID
  1033. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"` // 分组名
  1034. }
  1035. func (x *TagList) Reset() {
  1036. *x = TagList{}
  1037. if protoimpl.UnsafeEnabled {
  1038. mi := &file_common_proto_msgTypes[19]
  1039. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1040. ms.StoreMessageInfo(mi)
  1041. }
  1042. }
  1043. func (x *TagList) String() string {
  1044. return protoimpl.X.MessageStringOf(x)
  1045. }
  1046. func (*TagList) ProtoMessage() {}
  1047. func (x *TagList) ProtoReflect() protoreflect.Message {
  1048. mi := &file_common_proto_msgTypes[19]
  1049. if protoimpl.UnsafeEnabled && x != nil {
  1050. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1051. if ms.LoadMessageInfo() == nil {
  1052. ms.StoreMessageInfo(mi)
  1053. }
  1054. return ms
  1055. }
  1056. return mi.MessageOf(x)
  1057. }
  1058. // Deprecated: Use TagList.ProtoReflect.Descriptor instead.
  1059. func (*TagList) Descriptor() ([]byte, []int) {
  1060. return file_common_proto_rawDescGZIP(), []int{19}
  1061. }
  1062. func (x *TagList) GetId() int64 {
  1063. if x != nil {
  1064. return x.Id
  1065. }
  1066. return 0
  1067. }
  1068. func (x *TagList) GetName() string {
  1069. if x != nil {
  1070. return x.Name
  1071. }
  1072. return ""
  1073. }
  1074. type SexReq struct {
  1075. state protoimpl.MessageState
  1076. sizeCache protoimpl.SizeCache
  1077. unknownFields protoimpl.UnknownFields
  1078. Sex int64 `protobuf:"varint,1,opt,name=sex,proto3" json:"sex"`
  1079. }
  1080. func (x *SexReq) Reset() {
  1081. *x = SexReq{}
  1082. if protoimpl.UnsafeEnabled {
  1083. mi := &file_common_proto_msgTypes[20]
  1084. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1085. ms.StoreMessageInfo(mi)
  1086. }
  1087. }
  1088. func (x *SexReq) String() string {
  1089. return protoimpl.X.MessageStringOf(x)
  1090. }
  1091. func (*SexReq) ProtoMessage() {}
  1092. func (x *SexReq) ProtoReflect() protoreflect.Message {
  1093. mi := &file_common_proto_msgTypes[20]
  1094. if protoimpl.UnsafeEnabled && x != nil {
  1095. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1096. if ms.LoadMessageInfo() == nil {
  1097. ms.StoreMessageInfo(mi)
  1098. }
  1099. return ms
  1100. }
  1101. return mi.MessageOf(x)
  1102. }
  1103. // Deprecated: Use SexReq.ProtoReflect.Descriptor instead.
  1104. func (*SexReq) Descriptor() ([]byte, []int) {
  1105. return file_common_proto_rawDescGZIP(), []int{20}
  1106. }
  1107. func (x *SexReq) GetSex() int64 {
  1108. if x != nil {
  1109. return x.Sex
  1110. }
  1111. return 0
  1112. }
  1113. type RandomIntroduceReply struct {
  1114. state protoimpl.MessageState
  1115. sizeCache protoimpl.SizeCache
  1116. unknownFields protoimpl.UnknownFields
  1117. Introduce string `protobuf:"bytes,1,opt,name=introduce,proto3" json:"introduce"`
  1118. }
  1119. func (x *RandomIntroduceReply) Reset() {
  1120. *x = RandomIntroduceReply{}
  1121. if protoimpl.UnsafeEnabled {
  1122. mi := &file_common_proto_msgTypes[21]
  1123. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1124. ms.StoreMessageInfo(mi)
  1125. }
  1126. }
  1127. func (x *RandomIntroduceReply) String() string {
  1128. return protoimpl.X.MessageStringOf(x)
  1129. }
  1130. func (*RandomIntroduceReply) ProtoMessage() {}
  1131. func (x *RandomIntroduceReply) ProtoReflect() protoreflect.Message {
  1132. mi := &file_common_proto_msgTypes[21]
  1133. if protoimpl.UnsafeEnabled && x != nil {
  1134. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1135. if ms.LoadMessageInfo() == nil {
  1136. ms.StoreMessageInfo(mi)
  1137. }
  1138. return ms
  1139. }
  1140. return mi.MessageOf(x)
  1141. }
  1142. // Deprecated: Use RandomIntroduceReply.ProtoReflect.Descriptor instead.
  1143. func (*RandomIntroduceReply) Descriptor() ([]byte, []int) {
  1144. return file_common_proto_rawDescGZIP(), []int{21}
  1145. }
  1146. func (x *RandomIntroduceReply) GetIntroduce() string {
  1147. if x != nil {
  1148. return x.Introduce
  1149. }
  1150. return ""
  1151. }
  1152. var File_common_proto protoreflect.FileDescriptor
  1153. var file_common_proto_rawDesc = []byte{
  1154. 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0a,
  1155. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x4d, 0x0a, 0x15, 0x55, 0x73,
  1156. 0x65, 0x72, 0x41, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x50, 0x61,
  1157. 0x72, 0x61, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64,
  1158. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  1159. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  1160. 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x42, 0x0a, 0x14, 0x55, 0x73, 0x65,
  1161. 0x72, 0x31, 0x41, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x32, 0x49, 0x64, 0x50, 0x61, 0x72, 0x61,
  1162. 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x75, 0x73, 0x65, 0x72, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1163. 0x52, 0x05, 0x75, 0x73, 0x65, 0x72, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x75, 0x73, 0x65, 0x72, 0x32,
  1164. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x75, 0x73, 0x65, 0x72, 0x32, 0x22, 0x2e, 0x0a,
  1165. 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12,
  1166. 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01,
  1167. 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x22, 0x49, 0x0a,
  1168. 0x0b, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1a, 0x0a, 0x08,
  1169. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  1170. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73,
  1171. 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65,
  1172. 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x25, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72,
  1173. 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
  1174. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22,
  1175. 0x1d, 0x0a, 0x09, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03,
  1176. 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0x7e,
  1177. 0x0a, 0x0e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  1178. 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1179. 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74,
  1180. 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73,
  1181. 0x74, 0x61, 0x6d, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x6f, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x72,
  1182. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x6f, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x72,
  1183. 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20,
  1184. 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x22, 0xc3,
  1185. 0x02, 0x0a, 0x08, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  1186. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e,
  1187. 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e,
  1188. 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61,
  1189. 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74,
  1190. 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01,
  1191. 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75,
  1192. 0x72, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75,
  1193. 0x72, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03,
  1194. 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c,
  1195. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f,
  1196. 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x61,
  1197. 0x72, 0x65, 0x61, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12,
  1198. 0x2d, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b,
  1199. 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61,
  1200. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c,
  1201. 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,
  1202. 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e,
  1203. 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0b,
  1204. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56,
  1205. 0x6f, 0x69, 0x63, 0x65, 0x22, 0xbc, 0x02, 0x0a, 0x14, 0x41, 0x64, 0x64, 0x46, 0x72, 0x69, 0x65,
  1206. 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a,
  1207. 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a,
  1208. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1209. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61,
  1210. 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76,
  1211. 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04,
  1212. 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63,
  1213. 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63,
  1214. 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x66, 0x72, 0x6f, 0x6d, 0x4f, 0x70, 0x65,
  1215. 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x72, 0x6f, 0x6d, 0x4f,
  1216. 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73,
  1217. 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67,
  1218. 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x43, 0x68, 0x61, 0x74, 0x18,
  1219. 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x43, 0x68, 0x61, 0x74, 0x12, 0x1a, 0x0a,
  1220. 0x08, 0x69, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x55, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52,
  1221. 0x08, 0x69, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x55, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x66, 0x72, 0x6f,
  1222. 0x6d, 0x41, 0x70, 0x70, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66, 0x72,
  1223. 0x6f, 0x6d, 0x41, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x72, 0x6f, 0x6d, 0x4e,
  1224. 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x72, 0x6f, 0x6d, 0x4e,
  1225. 0x61, 0x6d, 0x65, 0x22, 0x2c, 0x0a, 0x0c, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c,
  1226. 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x73,
  1227. 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  1228. 0x73, 0x22, 0x39, 0x0a, 0x0d, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70,
  1229. 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  1230. 0x32, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  1231. 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xf6, 0x01, 0x0a,
  1232. 0x08, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  1233. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63,
  1234. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63,
  1235. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55,
  1236. 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  1237. 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  1238. 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
  1239. 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
  1240. 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  1241. 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61,
  1242. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73,
  1243. 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65,
  1244. 0x61, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x26, 0x0a,
  1245. 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18,
  1246. 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65,
  1247. 0x56, 0x6f, 0x69, 0x63, 0x65, 0x22, 0x41, 0x0a, 0x0f, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67,
  1248. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74,
  1249. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
  1250. 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  1251. 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x2c, 0x0a, 0x14, 0x53, 0x65, 0x6e, 0x64,
  1252. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1253. 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1254. 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x41, 0x0a, 0x15, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50,
  1255. 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  1256. 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  1257. 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20,
  1258. 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x22, 0x2c, 0x0a, 0x16, 0x55, 0x70, 0x6c,
  1259. 0x6f, 0x61, 0x64, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f,
  1260. 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28,
  1261. 0x09, 0x52, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x17, 0x0a, 0x03, 0x49, 0x64, 0x73, 0x12, 0x10,
  1262. 0x0a, 0x03, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x03, 0x69, 0x64, 0x73,
  1263. 0x22, 0x4e, 0x0a, 0x1c, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42,
  1264. 0x79, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78,
  1265. 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
  1266. 0x01, 0x28, 0x09, 0x52, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x10,
  1267. 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78,
  1268. 0x22, 0x4b, 0x0a, 0x0c, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1269. 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  1270. 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03,
  1271. 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1272. 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x2d, 0x0a,
  1273. 0x07, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  1274. 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  1275. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x1a, 0x0a, 0x06,
  1276. 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x01, 0x20,
  1277. 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x34, 0x0a, 0x14, 0x52, 0x61, 0x6e, 0x64,
  1278. 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1279. 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x18, 0x01, 0x20,
  1280. 0x01, 0x28, 0x09, 0x52, 0x09, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x42, 0x43,
  1281. 0x0a, 0x0a, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x50, 0x01, 0x5a, 0x33,
  1282. 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73,
  1283. 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1284. 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d,
  1285. 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1286. }
  1287. var (
  1288. file_common_proto_rawDescOnce sync.Once
  1289. file_common_proto_rawDescData = file_common_proto_rawDesc
  1290. )
  1291. func file_common_proto_rawDescGZIP() []byte {
  1292. file_common_proto_rawDescOnce.Do(func() {
  1293. file_common_proto_rawDescData = protoimpl.X.CompressGZIP(file_common_proto_rawDescData)
  1294. })
  1295. return file_common_proto_rawDescData
  1296. }
  1297. var file_common_proto_msgTypes = make([]protoimpl.MessageInfo, 22)
  1298. var file_common_proto_goTypes = []interface{}{
  1299. (*UserAndPartnerIdParam)(nil), // 0: api.common.UserAndPartnerIdParam
  1300. (*User1AndUser2IdParam)(nil), // 1: api.common.User1AndUser2IdParam
  1301. (*PartnerIDParam)(nil), // 2: api.common.PartnerIDParam
  1302. (*PersonParam)(nil), // 3: api.common.PersonParam
  1303. (*UserIDParam)(nil), // 4: api.common.UserIDParam
  1304. (*WxConfReq)(nil), // 5: api.common.WxConfReq
  1305. (*WxConfResponse)(nil), // 6: api.common.WxConfResponse
  1306. (*HomeInfo)(nil), // 7: api.common.HomeInfo
  1307. (*AddFriendMessageInfo)(nil), // 8: api.common.AddFriendMessageInfo
  1308. (*PersonIDList)(nil), // 9: api.common.PersonIDList
  1309. (*PersonDBReply)(nil), // 10: api.common.PersonDBReply
  1310. (*PersonDB)(nil), // 11: api.common.PersonDB
  1311. (*ListPageRequest)(nil), // 12: api.common.ListPageRequest
  1312. (*SendPhoneCodeRequest)(nil), // 13: api.common.SendPhoneCodeRequest
  1313. (*CheckPhoneCodeRequest)(nil), // 14: api.common.CheckPhoneCodeRequest
  1314. (*UploadMaterialResponse)(nil), // 15: api.common.UploadMaterialResponse
  1315. (*Ids)(nil), // 16: api.common.Ids
  1316. (*FindTagListByGroupNameAndSex)(nil), // 17: api.common.FindTagListByGroupNameAndSex
  1317. (*TagListReply)(nil), // 18: api.common.TagListReply
  1318. (*TagList)(nil), // 19: api.common.TagList
  1319. (*SexReq)(nil), // 20: api.common.SexReq
  1320. (*RandomIntroduceReply)(nil), // 21: api.common.RandomIntroduceReply
  1321. }
  1322. var file_common_proto_depIdxs = []int32{
  1323. 19, // 0: api.common.HomeInfo.tagList:type_name -> api.common.TagList
  1324. 11, // 1: api.common.PersonDBReply.list:type_name -> api.common.PersonDB
  1325. 19, // 2: api.common.TagListReply.list:type_name -> api.common.TagList
  1326. 3, // [3:3] is the sub-list for method output_type
  1327. 3, // [3:3] is the sub-list for method input_type
  1328. 3, // [3:3] is the sub-list for extension type_name
  1329. 3, // [3:3] is the sub-list for extension extendee
  1330. 0, // [0:3] is the sub-list for field type_name
  1331. }
  1332. func init() { file_common_proto_init() }
  1333. func file_common_proto_init() {
  1334. if File_common_proto != nil {
  1335. return
  1336. }
  1337. if !protoimpl.UnsafeEnabled {
  1338. file_common_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1339. switch v := v.(*UserAndPartnerIdParam); i {
  1340. case 0:
  1341. return &v.state
  1342. case 1:
  1343. return &v.sizeCache
  1344. case 2:
  1345. return &v.unknownFields
  1346. default:
  1347. return nil
  1348. }
  1349. }
  1350. file_common_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1351. switch v := v.(*User1AndUser2IdParam); i {
  1352. case 0:
  1353. return &v.state
  1354. case 1:
  1355. return &v.sizeCache
  1356. case 2:
  1357. return &v.unknownFields
  1358. default:
  1359. return nil
  1360. }
  1361. }
  1362. file_common_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1363. switch v := v.(*PartnerIDParam); i {
  1364. case 0:
  1365. return &v.state
  1366. case 1:
  1367. return &v.sizeCache
  1368. case 2:
  1369. return &v.unknownFields
  1370. default:
  1371. return nil
  1372. }
  1373. }
  1374. file_common_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1375. switch v := v.(*PersonParam); i {
  1376. case 0:
  1377. return &v.state
  1378. case 1:
  1379. return &v.sizeCache
  1380. case 2:
  1381. return &v.unknownFields
  1382. default:
  1383. return nil
  1384. }
  1385. }
  1386. file_common_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1387. switch v := v.(*UserIDParam); i {
  1388. case 0:
  1389. return &v.state
  1390. case 1:
  1391. return &v.sizeCache
  1392. case 2:
  1393. return &v.unknownFields
  1394. default:
  1395. return nil
  1396. }
  1397. }
  1398. file_common_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1399. switch v := v.(*WxConfReq); i {
  1400. case 0:
  1401. return &v.state
  1402. case 1:
  1403. return &v.sizeCache
  1404. case 2:
  1405. return &v.unknownFields
  1406. default:
  1407. return nil
  1408. }
  1409. }
  1410. file_common_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1411. switch v := v.(*WxConfResponse); i {
  1412. case 0:
  1413. return &v.state
  1414. case 1:
  1415. return &v.sizeCache
  1416. case 2:
  1417. return &v.unknownFields
  1418. default:
  1419. return nil
  1420. }
  1421. }
  1422. file_common_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1423. switch v := v.(*HomeInfo); i {
  1424. case 0:
  1425. return &v.state
  1426. case 1:
  1427. return &v.sizeCache
  1428. case 2:
  1429. return &v.unknownFields
  1430. default:
  1431. return nil
  1432. }
  1433. }
  1434. file_common_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1435. switch v := v.(*AddFriendMessageInfo); i {
  1436. case 0:
  1437. return &v.state
  1438. case 1:
  1439. return &v.sizeCache
  1440. case 2:
  1441. return &v.unknownFields
  1442. default:
  1443. return nil
  1444. }
  1445. }
  1446. file_common_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1447. switch v := v.(*PersonIDList); i {
  1448. case 0:
  1449. return &v.state
  1450. case 1:
  1451. return &v.sizeCache
  1452. case 2:
  1453. return &v.unknownFields
  1454. default:
  1455. return nil
  1456. }
  1457. }
  1458. file_common_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1459. switch v := v.(*PersonDBReply); i {
  1460. case 0:
  1461. return &v.state
  1462. case 1:
  1463. return &v.sizeCache
  1464. case 2:
  1465. return &v.unknownFields
  1466. default:
  1467. return nil
  1468. }
  1469. }
  1470. file_common_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1471. switch v := v.(*PersonDB); i {
  1472. case 0:
  1473. return &v.state
  1474. case 1:
  1475. return &v.sizeCache
  1476. case 2:
  1477. return &v.unknownFields
  1478. default:
  1479. return nil
  1480. }
  1481. }
  1482. file_common_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1483. switch v := v.(*ListPageRequest); i {
  1484. case 0:
  1485. return &v.state
  1486. case 1:
  1487. return &v.sizeCache
  1488. case 2:
  1489. return &v.unknownFields
  1490. default:
  1491. return nil
  1492. }
  1493. }
  1494. file_common_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1495. switch v := v.(*SendPhoneCodeRequest); i {
  1496. case 0:
  1497. return &v.state
  1498. case 1:
  1499. return &v.sizeCache
  1500. case 2:
  1501. return &v.unknownFields
  1502. default:
  1503. return nil
  1504. }
  1505. }
  1506. file_common_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  1507. switch v := v.(*CheckPhoneCodeRequest); i {
  1508. case 0:
  1509. return &v.state
  1510. case 1:
  1511. return &v.sizeCache
  1512. case 2:
  1513. return &v.unknownFields
  1514. default:
  1515. return nil
  1516. }
  1517. }
  1518. file_common_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  1519. switch v := v.(*UploadMaterialResponse); i {
  1520. case 0:
  1521. return &v.state
  1522. case 1:
  1523. return &v.sizeCache
  1524. case 2:
  1525. return &v.unknownFields
  1526. default:
  1527. return nil
  1528. }
  1529. }
  1530. file_common_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  1531. switch v := v.(*Ids); i {
  1532. case 0:
  1533. return &v.state
  1534. case 1:
  1535. return &v.sizeCache
  1536. case 2:
  1537. return &v.unknownFields
  1538. default:
  1539. return nil
  1540. }
  1541. }
  1542. file_common_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  1543. switch v := v.(*FindTagListByGroupNameAndSex); i {
  1544. case 0:
  1545. return &v.state
  1546. case 1:
  1547. return &v.sizeCache
  1548. case 2:
  1549. return &v.unknownFields
  1550. default:
  1551. return nil
  1552. }
  1553. }
  1554. file_common_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  1555. switch v := v.(*TagListReply); i {
  1556. case 0:
  1557. return &v.state
  1558. case 1:
  1559. return &v.sizeCache
  1560. case 2:
  1561. return &v.unknownFields
  1562. default:
  1563. return nil
  1564. }
  1565. }
  1566. file_common_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  1567. switch v := v.(*TagList); i {
  1568. case 0:
  1569. return &v.state
  1570. case 1:
  1571. return &v.sizeCache
  1572. case 2:
  1573. return &v.unknownFields
  1574. default:
  1575. return nil
  1576. }
  1577. }
  1578. file_common_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  1579. switch v := v.(*SexReq); i {
  1580. case 0:
  1581. return &v.state
  1582. case 1:
  1583. return &v.sizeCache
  1584. case 2:
  1585. return &v.unknownFields
  1586. default:
  1587. return nil
  1588. }
  1589. }
  1590. file_common_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  1591. switch v := v.(*RandomIntroduceReply); i {
  1592. case 0:
  1593. return &v.state
  1594. case 1:
  1595. return &v.sizeCache
  1596. case 2:
  1597. return &v.unknownFields
  1598. default:
  1599. return nil
  1600. }
  1601. }
  1602. }
  1603. type x struct{}
  1604. out := protoimpl.TypeBuilder{
  1605. File: protoimpl.DescBuilder{
  1606. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1607. RawDescriptor: file_common_proto_rawDesc,
  1608. NumEnums: 0,
  1609. NumMessages: 22,
  1610. NumExtensions: 0,
  1611. NumServices: 0,
  1612. },
  1613. GoTypes: file_common_proto_goTypes,
  1614. DependencyIndexes: file_common_proto_depIdxs,
  1615. MessageInfos: file_common_proto_msgTypes,
  1616. }.Build()
  1617. File_common_proto = out.File
  1618. file_common_proto_rawDesc = nil
  1619. file_common_proto_goTypes = nil
  1620. file_common_proto_depIdxs = nil
  1621. }