common.pb.go 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491
  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 UserAndPartnerIdentifyIdParam struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. PartnerIdentifyId string `protobuf:"bytes,1,opt,name=partnerIdentifyId,proto3" json:"partnerIdentifyId"`
  24. UserIdentifyId string `protobuf:"bytes,2,opt,name=userIdentifyId,proto3" json:"userIdentifyId"`
  25. }
  26. func (x *UserAndPartnerIdentifyIdParam) Reset() {
  27. *x = UserAndPartnerIdentifyIdParam{}
  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 *UserAndPartnerIdentifyIdParam) String() string {
  35. return protoimpl.X.MessageStringOf(x)
  36. }
  37. func (*UserAndPartnerIdentifyIdParam) ProtoMessage() {}
  38. func (x *UserAndPartnerIdentifyIdParam) 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 UserAndPartnerIdentifyIdParam.ProtoReflect.Descriptor instead.
  50. func (*UserAndPartnerIdentifyIdParam) Descriptor() ([]byte, []int) {
  51. return file_common_proto_rawDescGZIP(), []int{0}
  52. }
  53. func (x *UserAndPartnerIdentifyIdParam) GetPartnerIdentifyId() string {
  54. if x != nil {
  55. return x.PartnerIdentifyId
  56. }
  57. return ""
  58. }
  59. func (x *UserAndPartnerIdentifyIdParam) GetUserIdentifyId() string {
  60. if x != nil {
  61. return x.UserIdentifyId
  62. }
  63. return ""
  64. }
  65. type UserAndPartnerParam struct {
  66. state protoimpl.MessageState
  67. sizeCache protoimpl.SizeCache
  68. unknownFields protoimpl.UnknownFields
  69. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"`
  70. PartnerIdentifyID string `protobuf:"bytes,2,opt,name=partnerIdentifyID,proto3" json:"partnerIdentifyID"` // 身份ID
  71. UserId string `protobuf:"bytes,3,opt,name=userId,proto3" json:"userId"`
  72. UserIdentifyID string `protobuf:"bytes,4,opt,name=userIdentifyID,proto3" json:"userIdentifyID"` // 身份ID
  73. }
  74. func (x *UserAndPartnerParam) Reset() {
  75. *x = UserAndPartnerParam{}
  76. if protoimpl.UnsafeEnabled {
  77. mi := &file_common_proto_msgTypes[1]
  78. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  79. ms.StoreMessageInfo(mi)
  80. }
  81. }
  82. func (x *UserAndPartnerParam) String() string {
  83. return protoimpl.X.MessageStringOf(x)
  84. }
  85. func (*UserAndPartnerParam) ProtoMessage() {}
  86. func (x *UserAndPartnerParam) ProtoReflect() protoreflect.Message {
  87. mi := &file_common_proto_msgTypes[1]
  88. if protoimpl.UnsafeEnabled && x != nil {
  89. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  90. if ms.LoadMessageInfo() == nil {
  91. ms.StoreMessageInfo(mi)
  92. }
  93. return ms
  94. }
  95. return mi.MessageOf(x)
  96. }
  97. // Deprecated: Use UserAndPartnerParam.ProtoReflect.Descriptor instead.
  98. func (*UserAndPartnerParam) Descriptor() ([]byte, []int) {
  99. return file_common_proto_rawDescGZIP(), []int{1}
  100. }
  101. func (x *UserAndPartnerParam) GetPartnerId() string {
  102. if x != nil {
  103. return x.PartnerId
  104. }
  105. return ""
  106. }
  107. func (x *UserAndPartnerParam) GetPartnerIdentifyID() string {
  108. if x != nil {
  109. return x.PartnerIdentifyID
  110. }
  111. return ""
  112. }
  113. func (x *UserAndPartnerParam) GetUserId() string {
  114. if x != nil {
  115. return x.UserId
  116. }
  117. return ""
  118. }
  119. func (x *UserAndPartnerParam) GetUserIdentifyID() string {
  120. if x != nil {
  121. return x.UserIdentifyID
  122. }
  123. return ""
  124. }
  125. type User1AndUser2IdParam struct {
  126. state protoimpl.MessageState
  127. sizeCache protoimpl.SizeCache
  128. unknownFields protoimpl.UnknownFields
  129. User1 string `protobuf:"bytes,1,opt,name=user1,proto3" json:"user1"`
  130. User2 string `protobuf:"bytes,2,opt,name=user2,proto3" json:"user2"`
  131. }
  132. func (x *User1AndUser2IdParam) Reset() {
  133. *x = User1AndUser2IdParam{}
  134. if protoimpl.UnsafeEnabled {
  135. mi := &file_common_proto_msgTypes[2]
  136. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  137. ms.StoreMessageInfo(mi)
  138. }
  139. }
  140. func (x *User1AndUser2IdParam) String() string {
  141. return protoimpl.X.MessageStringOf(x)
  142. }
  143. func (*User1AndUser2IdParam) ProtoMessage() {}
  144. func (x *User1AndUser2IdParam) ProtoReflect() protoreflect.Message {
  145. mi := &file_common_proto_msgTypes[2]
  146. if protoimpl.UnsafeEnabled && x != nil {
  147. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  148. if ms.LoadMessageInfo() == nil {
  149. ms.StoreMessageInfo(mi)
  150. }
  151. return ms
  152. }
  153. return mi.MessageOf(x)
  154. }
  155. // Deprecated: Use User1AndUser2IdParam.ProtoReflect.Descriptor instead.
  156. func (*User1AndUser2IdParam) Descriptor() ([]byte, []int) {
  157. return file_common_proto_rawDescGZIP(), []int{2}
  158. }
  159. func (x *User1AndUser2IdParam) GetUser1() string {
  160. if x != nil {
  161. return x.User1
  162. }
  163. return ""
  164. }
  165. func (x *User1AndUser2IdParam) GetUser2() string {
  166. if x != nil {
  167. return x.User2
  168. }
  169. return ""
  170. }
  171. type PartnerIDParam struct {
  172. state protoimpl.MessageState
  173. sizeCache protoimpl.SizeCache
  174. unknownFields protoimpl.UnknownFields
  175. PartnerID string `protobuf:"bytes,1,opt,name=partnerID,proto3" json:"partnerID"`
  176. }
  177. func (x *PartnerIDParam) Reset() {
  178. *x = PartnerIDParam{}
  179. if protoimpl.UnsafeEnabled {
  180. mi := &file_common_proto_msgTypes[3]
  181. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  182. ms.StoreMessageInfo(mi)
  183. }
  184. }
  185. func (x *PartnerIDParam) String() string {
  186. return protoimpl.X.MessageStringOf(x)
  187. }
  188. func (*PartnerIDParam) ProtoMessage() {}
  189. func (x *PartnerIDParam) ProtoReflect() protoreflect.Message {
  190. mi := &file_common_proto_msgTypes[3]
  191. if protoimpl.UnsafeEnabled && x != nil {
  192. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  193. if ms.LoadMessageInfo() == nil {
  194. ms.StoreMessageInfo(mi)
  195. }
  196. return ms
  197. }
  198. return mi.MessageOf(x)
  199. }
  200. // Deprecated: Use PartnerIDParam.ProtoReflect.Descriptor instead.
  201. func (*PartnerIDParam) Descriptor() ([]byte, []int) {
  202. return file_common_proto_rawDescGZIP(), []int{3}
  203. }
  204. func (x *PartnerIDParam) GetPartnerID() string {
  205. if x != nil {
  206. return x.PartnerID
  207. }
  208. return ""
  209. }
  210. type PersonIDParam struct {
  211. state protoimpl.MessageState
  212. sizeCache protoimpl.SizeCache
  213. unknownFields protoimpl.UnknownFields
  214. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"`
  215. }
  216. func (x *PersonIDParam) Reset() {
  217. *x = PersonIDParam{}
  218. if protoimpl.UnsafeEnabled {
  219. mi := &file_common_proto_msgTypes[4]
  220. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  221. ms.StoreMessageInfo(mi)
  222. }
  223. }
  224. func (x *PersonIDParam) String() string {
  225. return protoimpl.X.MessageStringOf(x)
  226. }
  227. func (*PersonIDParam) ProtoMessage() {}
  228. func (x *PersonIDParam) ProtoReflect() protoreflect.Message {
  229. mi := &file_common_proto_msgTypes[4]
  230. if protoimpl.UnsafeEnabled && x != nil {
  231. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  232. if ms.LoadMessageInfo() == nil {
  233. ms.StoreMessageInfo(mi)
  234. }
  235. return ms
  236. }
  237. return mi.MessageOf(x)
  238. }
  239. // Deprecated: Use PersonIDParam.ProtoReflect.Descriptor instead.
  240. func (*PersonIDParam) Descriptor() ([]byte, []int) {
  241. return file_common_proto_rawDescGZIP(), []int{4}
  242. }
  243. func (x *PersonIDParam) GetPersonID() string {
  244. if x != nil {
  245. return x.PersonID
  246. }
  247. return ""
  248. }
  249. type PersonParam struct {
  250. state protoimpl.MessageState
  251. sizeCache protoimpl.SizeCache
  252. unknownFields protoimpl.UnknownFields
  253. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  254. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  255. }
  256. func (x *PersonParam) Reset() {
  257. *x = PersonParam{}
  258. if protoimpl.UnsafeEnabled {
  259. mi := &file_common_proto_msgTypes[5]
  260. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  261. ms.StoreMessageInfo(mi)
  262. }
  263. }
  264. func (x *PersonParam) String() string {
  265. return protoimpl.X.MessageStringOf(x)
  266. }
  267. func (*PersonParam) ProtoMessage() {}
  268. func (x *PersonParam) ProtoReflect() protoreflect.Message {
  269. mi := &file_common_proto_msgTypes[5]
  270. if protoimpl.UnsafeEnabled && x != nil {
  271. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  272. if ms.LoadMessageInfo() == nil {
  273. ms.StoreMessageInfo(mi)
  274. }
  275. return ms
  276. }
  277. return mi.MessageOf(x)
  278. }
  279. // Deprecated: Use PersonParam.ProtoReflect.Descriptor instead.
  280. func (*PersonParam) Descriptor() ([]byte, []int) {
  281. return file_common_proto_rawDescGZIP(), []int{5}
  282. }
  283. func (x *PersonParam) GetPersonID() string {
  284. if x != nil {
  285. return x.PersonID
  286. }
  287. return ""
  288. }
  289. func (x *PersonParam) GetPersonType() string {
  290. if x != nil {
  291. return x.PersonType
  292. }
  293. return ""
  294. }
  295. type UserIDParam struct {
  296. state protoimpl.MessageState
  297. sizeCache protoimpl.SizeCache
  298. unknownFields protoimpl.UnknownFields
  299. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"`
  300. }
  301. func (x *UserIDParam) Reset() {
  302. *x = UserIDParam{}
  303. if protoimpl.UnsafeEnabled {
  304. mi := &file_common_proto_msgTypes[6]
  305. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  306. ms.StoreMessageInfo(mi)
  307. }
  308. }
  309. func (x *UserIDParam) String() string {
  310. return protoimpl.X.MessageStringOf(x)
  311. }
  312. func (*UserIDParam) ProtoMessage() {}
  313. func (x *UserIDParam) ProtoReflect() protoreflect.Message {
  314. mi := &file_common_proto_msgTypes[6]
  315. if protoimpl.UnsafeEnabled && x != nil {
  316. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  317. if ms.LoadMessageInfo() == nil {
  318. ms.StoreMessageInfo(mi)
  319. }
  320. return ms
  321. }
  322. return mi.MessageOf(x)
  323. }
  324. // Deprecated: Use UserIDParam.ProtoReflect.Descriptor instead.
  325. func (*UserIDParam) Descriptor() ([]byte, []int) {
  326. return file_common_proto_rawDescGZIP(), []int{6}
  327. }
  328. func (x *UserIDParam) GetUserId() string {
  329. if x != nil {
  330. return x.UserId
  331. }
  332. return ""
  333. }
  334. type WxConfReq struct {
  335. state protoimpl.MessageState
  336. sizeCache protoimpl.SizeCache
  337. unknownFields protoimpl.UnknownFields
  338. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url"`
  339. }
  340. func (x *WxConfReq) Reset() {
  341. *x = WxConfReq{}
  342. if protoimpl.UnsafeEnabled {
  343. mi := &file_common_proto_msgTypes[7]
  344. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  345. ms.StoreMessageInfo(mi)
  346. }
  347. }
  348. func (x *WxConfReq) String() string {
  349. return protoimpl.X.MessageStringOf(x)
  350. }
  351. func (*WxConfReq) ProtoMessage() {}
  352. func (x *WxConfReq) ProtoReflect() protoreflect.Message {
  353. mi := &file_common_proto_msgTypes[7]
  354. if protoimpl.UnsafeEnabled && x != nil {
  355. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  356. if ms.LoadMessageInfo() == nil {
  357. ms.StoreMessageInfo(mi)
  358. }
  359. return ms
  360. }
  361. return mi.MessageOf(x)
  362. }
  363. // Deprecated: Use WxConfReq.ProtoReflect.Descriptor instead.
  364. func (*WxConfReq) Descriptor() ([]byte, []int) {
  365. return file_common_proto_rawDescGZIP(), []int{7}
  366. }
  367. func (x *WxConfReq) GetUrl() string {
  368. if x != nil {
  369. return x.Url
  370. }
  371. return ""
  372. }
  373. type WxConfResponse struct {
  374. state protoimpl.MessageState
  375. sizeCache protoimpl.SizeCache
  376. unknownFields protoimpl.UnknownFields
  377. AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId"` // 必填,公众号的唯一标识
  378. Timestamp int64 `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp"` // 必填,生成签名的时间戳
  379. NonceStr string `protobuf:"bytes,3,opt,name=nonceStr,proto3" json:"nonceStr"` // 必填,生成签名的随机串
  380. Signature string `protobuf:"bytes,4,opt,name=signature,proto3" json:"signature"` // 必填,签名
  381. Url string `protobuf:"bytes,5,opt,name=url,proto3" json:"url"` // 传入的url
  382. }
  383. func (x *WxConfResponse) Reset() {
  384. *x = WxConfResponse{}
  385. if protoimpl.UnsafeEnabled {
  386. mi := &file_common_proto_msgTypes[8]
  387. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  388. ms.StoreMessageInfo(mi)
  389. }
  390. }
  391. func (x *WxConfResponse) String() string {
  392. return protoimpl.X.MessageStringOf(x)
  393. }
  394. func (*WxConfResponse) ProtoMessage() {}
  395. func (x *WxConfResponse) ProtoReflect() protoreflect.Message {
  396. mi := &file_common_proto_msgTypes[8]
  397. if protoimpl.UnsafeEnabled && x != nil {
  398. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  399. if ms.LoadMessageInfo() == nil {
  400. ms.StoreMessageInfo(mi)
  401. }
  402. return ms
  403. }
  404. return mi.MessageOf(x)
  405. }
  406. // Deprecated: Use WxConfResponse.ProtoReflect.Descriptor instead.
  407. func (*WxConfResponse) Descriptor() ([]byte, []int) {
  408. return file_common_proto_rawDescGZIP(), []int{8}
  409. }
  410. func (x *WxConfResponse) GetAppId() string {
  411. if x != nil {
  412. return x.AppId
  413. }
  414. return ""
  415. }
  416. func (x *WxConfResponse) GetTimestamp() int64 {
  417. if x != nil {
  418. return x.Timestamp
  419. }
  420. return 0
  421. }
  422. func (x *WxConfResponse) GetNonceStr() string {
  423. if x != nil {
  424. return x.NonceStr
  425. }
  426. return ""
  427. }
  428. func (x *WxConfResponse) GetSignature() string {
  429. if x != nil {
  430. return x.Signature
  431. }
  432. return ""
  433. }
  434. func (x *WxConfResponse) GetUrl() string {
  435. if x != nil {
  436. return x.Url
  437. }
  438. return ""
  439. }
  440. // 主页信息
  441. type HomeInfo struct {
  442. state protoimpl.MessageState
  443. sizeCache protoimpl.SizeCache
  444. unknownFields protoimpl.UnknownFields
  445. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  446. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  447. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  448. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  449. Pictures []string `protobuf:"bytes,5,rep,name=pictures,proto3" json:"pictures"` // 图片
  450. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  451. Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
  452. TagList []*TagList `protobuf:"bytes,8,rep,name=tagList,proto3" json:"tagList"` // 标签
  453. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  454. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  455. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  456. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  457. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  458. }
  459. func (x *HomeInfo) Reset() {
  460. *x = HomeInfo{}
  461. if protoimpl.UnsafeEnabled {
  462. mi := &file_common_proto_msgTypes[9]
  463. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  464. ms.StoreMessageInfo(mi)
  465. }
  466. }
  467. func (x *HomeInfo) String() string {
  468. return protoimpl.X.MessageStringOf(x)
  469. }
  470. func (*HomeInfo) ProtoMessage() {}
  471. func (x *HomeInfo) ProtoReflect() protoreflect.Message {
  472. mi := &file_common_proto_msgTypes[9]
  473. if protoimpl.UnsafeEnabled && x != nil {
  474. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  475. if ms.LoadMessageInfo() == nil {
  476. ms.StoreMessageInfo(mi)
  477. }
  478. return ms
  479. }
  480. return mi.MessageOf(x)
  481. }
  482. // Deprecated: Use HomeInfo.ProtoReflect.Descriptor instead.
  483. func (*HomeInfo) Descriptor() ([]byte, []int) {
  484. return file_common_proto_rawDescGZIP(), []int{9}
  485. }
  486. func (x *HomeInfo) GetId() string {
  487. if x != nil {
  488. return x.Id
  489. }
  490. return ""
  491. }
  492. func (x *HomeInfo) GetNickname() string {
  493. if x != nil {
  494. return x.Nickname
  495. }
  496. return ""
  497. }
  498. func (x *HomeInfo) GetAvatarUrl() string {
  499. if x != nil {
  500. return x.AvatarUrl
  501. }
  502. return ""
  503. }
  504. func (x *HomeInfo) GetSex() int64 {
  505. if x != nil {
  506. return x.Sex
  507. }
  508. return 0
  509. }
  510. func (x *HomeInfo) GetPictures() []string {
  511. if x != nil {
  512. return x.Pictures
  513. }
  514. return nil
  515. }
  516. func (x *HomeInfo) GetAge() int64 {
  517. if x != nil {
  518. return x.Age
  519. }
  520. return 0
  521. }
  522. func (x *HomeInfo) GetConstellation() string {
  523. if x != nil {
  524. return x.Constellation
  525. }
  526. return ""
  527. }
  528. func (x *HomeInfo) GetTagList() []*TagList {
  529. if x != nil {
  530. return x.TagList
  531. }
  532. return nil
  533. }
  534. func (x *HomeInfo) GetSignature() string {
  535. if x != nil {
  536. return x.Signature
  537. }
  538. return ""
  539. }
  540. func (x *HomeInfo) GetIntroduceVoice() string {
  541. if x != nil {
  542. return x.IntroduceVoice
  543. }
  544. return ""
  545. }
  546. func (x *HomeInfo) GetProvince() string {
  547. if x != nil {
  548. return x.Province
  549. }
  550. return ""
  551. }
  552. func (x *HomeInfo) GetCity() string {
  553. if x != nil {
  554. return x.City
  555. }
  556. return ""
  557. }
  558. func (x *HomeInfo) GetArea() string {
  559. if x != nil {
  560. return x.Area
  561. }
  562. return ""
  563. }
  564. type PersonMsg struct {
  565. state protoimpl.MessageState
  566. sizeCache protoimpl.SizeCache
  567. unknownFields protoimpl.UnknownFields
  568. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  569. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  570. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  571. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  572. Pictures []string `protobuf:"bytes,5,rep,name=pictures,proto3" json:"pictures"` // 图片
  573. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  574. Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
  575. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  576. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  577. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  578. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  579. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  580. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  581. }
  582. func (x *PersonMsg) Reset() {
  583. *x = PersonMsg{}
  584. if protoimpl.UnsafeEnabled {
  585. mi := &file_common_proto_msgTypes[10]
  586. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  587. ms.StoreMessageInfo(mi)
  588. }
  589. }
  590. func (x *PersonMsg) String() string {
  591. return protoimpl.X.MessageStringOf(x)
  592. }
  593. func (*PersonMsg) ProtoMessage() {}
  594. func (x *PersonMsg) ProtoReflect() protoreflect.Message {
  595. mi := &file_common_proto_msgTypes[10]
  596. if protoimpl.UnsafeEnabled && x != nil {
  597. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  598. if ms.LoadMessageInfo() == nil {
  599. ms.StoreMessageInfo(mi)
  600. }
  601. return ms
  602. }
  603. return mi.MessageOf(x)
  604. }
  605. // Deprecated: Use PersonMsg.ProtoReflect.Descriptor instead.
  606. func (*PersonMsg) Descriptor() ([]byte, []int) {
  607. return file_common_proto_rawDescGZIP(), []int{10}
  608. }
  609. func (x *PersonMsg) GetId() string {
  610. if x != nil {
  611. return x.Id
  612. }
  613. return ""
  614. }
  615. func (x *PersonMsg) GetNickname() string {
  616. if x != nil {
  617. return x.Nickname
  618. }
  619. return ""
  620. }
  621. func (x *PersonMsg) GetAvatarUrl() string {
  622. if x != nil {
  623. return x.AvatarUrl
  624. }
  625. return ""
  626. }
  627. func (x *PersonMsg) GetSex() int64 {
  628. if x != nil {
  629. return x.Sex
  630. }
  631. return 0
  632. }
  633. func (x *PersonMsg) GetPictures() []string {
  634. if x != nil {
  635. return x.Pictures
  636. }
  637. return nil
  638. }
  639. func (x *PersonMsg) GetAge() int64 {
  640. if x != nil {
  641. return x.Age
  642. }
  643. return 0
  644. }
  645. func (x *PersonMsg) GetConstellation() string {
  646. if x != nil {
  647. return x.Constellation
  648. }
  649. return ""
  650. }
  651. func (x *PersonMsg) GetTagList() []int64 {
  652. if x != nil {
  653. return x.TagList
  654. }
  655. return nil
  656. }
  657. func (x *PersonMsg) GetSignature() string {
  658. if x != nil {
  659. return x.Signature
  660. }
  661. return ""
  662. }
  663. func (x *PersonMsg) GetIntroduceVoice() string {
  664. if x != nil {
  665. return x.IntroduceVoice
  666. }
  667. return ""
  668. }
  669. func (x *PersonMsg) GetProvince() string {
  670. if x != nil {
  671. return x.Province
  672. }
  673. return ""
  674. }
  675. func (x *PersonMsg) GetCity() string {
  676. if x != nil {
  677. return x.City
  678. }
  679. return ""
  680. }
  681. func (x *PersonMsg) GetArea() string {
  682. if x != nil {
  683. return x.Area
  684. }
  685. return ""
  686. }
  687. type LookedAndLikedNum struct {
  688. state protoimpl.MessageState
  689. sizeCache protoimpl.SizeCache
  690. unknownFields protoimpl.UnknownFields
  691. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  692. LookedNum int64 `protobuf:"varint,2,opt,name=lookedNum,proto3" json:"lookedNum"` // 看过ta的数量
  693. LikedNum int64 `protobuf:"varint,3,opt,name=likedNum,proto3" json:"likedNum"` // 喜欢ta的数量
  694. }
  695. func (x *LookedAndLikedNum) Reset() {
  696. *x = LookedAndLikedNum{}
  697. if protoimpl.UnsafeEnabled {
  698. mi := &file_common_proto_msgTypes[11]
  699. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  700. ms.StoreMessageInfo(mi)
  701. }
  702. }
  703. func (x *LookedAndLikedNum) String() string {
  704. return protoimpl.X.MessageStringOf(x)
  705. }
  706. func (*LookedAndLikedNum) ProtoMessage() {}
  707. func (x *LookedAndLikedNum) ProtoReflect() protoreflect.Message {
  708. mi := &file_common_proto_msgTypes[11]
  709. if protoimpl.UnsafeEnabled && x != nil {
  710. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  711. if ms.LoadMessageInfo() == nil {
  712. ms.StoreMessageInfo(mi)
  713. }
  714. return ms
  715. }
  716. return mi.MessageOf(x)
  717. }
  718. // Deprecated: Use LookedAndLikedNum.ProtoReflect.Descriptor instead.
  719. func (*LookedAndLikedNum) Descriptor() ([]byte, []int) {
  720. return file_common_proto_rawDescGZIP(), []int{11}
  721. }
  722. func (x *LookedAndLikedNum) GetId() string {
  723. if x != nil {
  724. return x.Id
  725. }
  726. return ""
  727. }
  728. func (x *LookedAndLikedNum) GetLookedNum() int64 {
  729. if x != nil {
  730. return x.LookedNum
  731. }
  732. return 0
  733. }
  734. func (x *LookedAndLikedNum) GetLikedNum() int64 {
  735. if x != nil {
  736. return x.LikedNum
  737. }
  738. return 0
  739. }
  740. // 添加好友页面信息
  741. type AddFriendMessageInfo struct {
  742. state protoimpl.MessageState
  743. sizeCache protoimpl.SizeCache
  744. unknownFields protoimpl.UnknownFields
  745. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  746. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  747. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  748. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  749. Pictures []string `protobuf:"bytes,5,rep,name=pictures,proto3" json:"pictures"` // 图片
  750. FromOpenId string `protobuf:"bytes,6,opt,name=fromOpenId,proto3" json:"fromOpenId"` // 来源公众号对应的openID
  751. IsRegister bool `protobuf:"varint,7,opt,name=isRegister,proto3" json:"isRegister"` // 是否注册
  752. IsChat bool `protobuf:"varint,8,opt,name=isChat,proto3" json:"isChat"` // 是否聊天
  753. IsFromUs bool `protobuf:"varint,9,opt,name=isFromUs,proto3" json:"isFromUs"` // 是否是来源我们
  754. FromAppId string `protobuf:"bytes,10,opt,name=fromAppId,proto3" json:"fromAppId"` // 来源公众号对应的appID
  755. FromName string `protobuf:"bytes,11,opt,name=fromName,proto3" json:"fromName"` // 来源公众号对应的公众号名称
  756. Constellation string `protobuf:"bytes,12,opt,name=constellation,proto3" json:"constellation"` // 星座
  757. Signature string `protobuf:"bytes,13,opt,name=signature,proto3" json:"signature"` // 介绍(签名)
  758. Province string `protobuf:"bytes,14,opt,name=province,proto3" json:"province"` // 省
  759. City string `protobuf:"bytes,15,opt,name=city,proto3" json:"city"` // 市
  760. Area string `protobuf:"bytes,16,opt,name=area,proto3" json:"area"` // 区
  761. }
  762. func (x *AddFriendMessageInfo) Reset() {
  763. *x = AddFriendMessageInfo{}
  764. if protoimpl.UnsafeEnabled {
  765. mi := &file_common_proto_msgTypes[12]
  766. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  767. ms.StoreMessageInfo(mi)
  768. }
  769. }
  770. func (x *AddFriendMessageInfo) String() string {
  771. return protoimpl.X.MessageStringOf(x)
  772. }
  773. func (*AddFriendMessageInfo) ProtoMessage() {}
  774. func (x *AddFriendMessageInfo) ProtoReflect() protoreflect.Message {
  775. mi := &file_common_proto_msgTypes[12]
  776. if protoimpl.UnsafeEnabled && x != nil {
  777. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  778. if ms.LoadMessageInfo() == nil {
  779. ms.StoreMessageInfo(mi)
  780. }
  781. return ms
  782. }
  783. return mi.MessageOf(x)
  784. }
  785. // Deprecated: Use AddFriendMessageInfo.ProtoReflect.Descriptor instead.
  786. func (*AddFriendMessageInfo) Descriptor() ([]byte, []int) {
  787. return file_common_proto_rawDescGZIP(), []int{12}
  788. }
  789. func (x *AddFriendMessageInfo) GetId() string {
  790. if x != nil {
  791. return x.Id
  792. }
  793. return ""
  794. }
  795. func (x *AddFriendMessageInfo) GetNickname() string {
  796. if x != nil {
  797. return x.Nickname
  798. }
  799. return ""
  800. }
  801. func (x *AddFriendMessageInfo) GetAvatarUrl() string {
  802. if x != nil {
  803. return x.AvatarUrl
  804. }
  805. return ""
  806. }
  807. func (x *AddFriendMessageInfo) GetSex() int64 {
  808. if x != nil {
  809. return x.Sex
  810. }
  811. return 0
  812. }
  813. func (x *AddFriendMessageInfo) GetPictures() []string {
  814. if x != nil {
  815. return x.Pictures
  816. }
  817. return nil
  818. }
  819. func (x *AddFriendMessageInfo) GetFromOpenId() string {
  820. if x != nil {
  821. return x.FromOpenId
  822. }
  823. return ""
  824. }
  825. func (x *AddFriendMessageInfo) GetIsRegister() bool {
  826. if x != nil {
  827. return x.IsRegister
  828. }
  829. return false
  830. }
  831. func (x *AddFriendMessageInfo) GetIsChat() bool {
  832. if x != nil {
  833. return x.IsChat
  834. }
  835. return false
  836. }
  837. func (x *AddFriendMessageInfo) GetIsFromUs() bool {
  838. if x != nil {
  839. return x.IsFromUs
  840. }
  841. return false
  842. }
  843. func (x *AddFriendMessageInfo) GetFromAppId() string {
  844. if x != nil {
  845. return x.FromAppId
  846. }
  847. return ""
  848. }
  849. func (x *AddFriendMessageInfo) GetFromName() string {
  850. if x != nil {
  851. return x.FromName
  852. }
  853. return ""
  854. }
  855. func (x *AddFriendMessageInfo) GetConstellation() string {
  856. if x != nil {
  857. return x.Constellation
  858. }
  859. return ""
  860. }
  861. func (x *AddFriendMessageInfo) GetSignature() string {
  862. if x != nil {
  863. return x.Signature
  864. }
  865. return ""
  866. }
  867. func (x *AddFriendMessageInfo) GetProvince() string {
  868. if x != nil {
  869. return x.Province
  870. }
  871. return ""
  872. }
  873. func (x *AddFriendMessageInfo) GetCity() string {
  874. if x != nil {
  875. return x.City
  876. }
  877. return ""
  878. }
  879. func (x *AddFriendMessageInfo) GetArea() string {
  880. if x != nil {
  881. return x.Area
  882. }
  883. return ""
  884. }
  885. type PersonIDList struct {
  886. state protoimpl.MessageState
  887. sizeCache protoimpl.SizeCache
  888. unknownFields protoimpl.UnknownFields
  889. PersonIds []string `protobuf:"bytes,1,rep,name=personIds,proto3" json:"personIds"`
  890. }
  891. func (x *PersonIDList) Reset() {
  892. *x = PersonIDList{}
  893. if protoimpl.UnsafeEnabled {
  894. mi := &file_common_proto_msgTypes[13]
  895. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  896. ms.StoreMessageInfo(mi)
  897. }
  898. }
  899. func (x *PersonIDList) String() string {
  900. return protoimpl.X.MessageStringOf(x)
  901. }
  902. func (*PersonIDList) ProtoMessage() {}
  903. func (x *PersonIDList) ProtoReflect() protoreflect.Message {
  904. mi := &file_common_proto_msgTypes[13]
  905. if protoimpl.UnsafeEnabled && x != nil {
  906. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  907. if ms.LoadMessageInfo() == nil {
  908. ms.StoreMessageInfo(mi)
  909. }
  910. return ms
  911. }
  912. return mi.MessageOf(x)
  913. }
  914. // Deprecated: Use PersonIDList.ProtoReflect.Descriptor instead.
  915. func (*PersonIDList) Descriptor() ([]byte, []int) {
  916. return file_common_proto_rawDescGZIP(), []int{13}
  917. }
  918. func (x *PersonIDList) GetPersonIds() []string {
  919. if x != nil {
  920. return x.PersonIds
  921. }
  922. return nil
  923. }
  924. type PersonDBReply struct {
  925. state protoimpl.MessageState
  926. sizeCache protoimpl.SizeCache
  927. unknownFields protoimpl.UnknownFields
  928. List []*PersonDB `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  929. }
  930. func (x *PersonDBReply) Reset() {
  931. *x = PersonDBReply{}
  932. if protoimpl.UnsafeEnabled {
  933. mi := &file_common_proto_msgTypes[14]
  934. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  935. ms.StoreMessageInfo(mi)
  936. }
  937. }
  938. func (x *PersonDBReply) String() string {
  939. return protoimpl.X.MessageStringOf(x)
  940. }
  941. func (*PersonDBReply) ProtoMessage() {}
  942. func (x *PersonDBReply) ProtoReflect() protoreflect.Message {
  943. mi := &file_common_proto_msgTypes[14]
  944. if protoimpl.UnsafeEnabled && x != nil {
  945. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  946. if ms.LoadMessageInfo() == nil {
  947. ms.StoreMessageInfo(mi)
  948. }
  949. return ms
  950. }
  951. return mi.MessageOf(x)
  952. }
  953. // Deprecated: Use PersonDBReply.ProtoReflect.Descriptor instead.
  954. func (*PersonDBReply) Descriptor() ([]byte, []int) {
  955. return file_common_proto_rawDescGZIP(), []int{14}
  956. }
  957. func (x *PersonDBReply) GetList() []*PersonDB {
  958. if x != nil {
  959. return x.List
  960. }
  961. return nil
  962. }
  963. type PersonDB struct {
  964. state protoimpl.MessageState
  965. sizeCache protoimpl.SizeCache
  966. unknownFields protoimpl.UnknownFields
  967. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  968. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  969. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  970. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  971. Pictures []string `protobuf:"bytes,5,rep,name=pictures,proto3" json:"pictures"` // 图片
  972. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  973. Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
  974. IntroduceVoice string `protobuf:"bytes,8,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  975. Province string `protobuf:"bytes,9,opt,name=province,proto3" json:"province"` // 省
  976. City string `protobuf:"bytes,10,opt,name=city,proto3" json:"city"` // 市
  977. Area string `protobuf:"bytes,11,opt,name=area,proto3" json:"area"` // 区
  978. Signature string `protobuf:"bytes,12,opt,name=signature,proto3" json:"signature"` //介绍
  979. IsFinishInformation bool `protobuf:"varint,13,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善消息
  980. TagList []int64 `protobuf:"varint,14,rep,packed,name=tagList,proto3" json:"tagList"` // 标签列表
  981. }
  982. func (x *PersonDB) Reset() {
  983. *x = PersonDB{}
  984. if protoimpl.UnsafeEnabled {
  985. mi := &file_common_proto_msgTypes[15]
  986. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  987. ms.StoreMessageInfo(mi)
  988. }
  989. }
  990. func (x *PersonDB) String() string {
  991. return protoimpl.X.MessageStringOf(x)
  992. }
  993. func (*PersonDB) ProtoMessage() {}
  994. func (x *PersonDB) ProtoReflect() protoreflect.Message {
  995. mi := &file_common_proto_msgTypes[15]
  996. if protoimpl.UnsafeEnabled && x != nil {
  997. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  998. if ms.LoadMessageInfo() == nil {
  999. ms.StoreMessageInfo(mi)
  1000. }
  1001. return ms
  1002. }
  1003. return mi.MessageOf(x)
  1004. }
  1005. // Deprecated: Use PersonDB.ProtoReflect.Descriptor instead.
  1006. func (*PersonDB) Descriptor() ([]byte, []int) {
  1007. return file_common_proto_rawDescGZIP(), []int{15}
  1008. }
  1009. func (x *PersonDB) GetId() string {
  1010. if x != nil {
  1011. return x.Id
  1012. }
  1013. return ""
  1014. }
  1015. func (x *PersonDB) GetNickname() string {
  1016. if x != nil {
  1017. return x.Nickname
  1018. }
  1019. return ""
  1020. }
  1021. func (x *PersonDB) GetAvatarUrl() string {
  1022. if x != nil {
  1023. return x.AvatarUrl
  1024. }
  1025. return ""
  1026. }
  1027. func (x *PersonDB) GetSex() int64 {
  1028. if x != nil {
  1029. return x.Sex
  1030. }
  1031. return 0
  1032. }
  1033. func (x *PersonDB) GetPictures() []string {
  1034. if x != nil {
  1035. return x.Pictures
  1036. }
  1037. return nil
  1038. }
  1039. func (x *PersonDB) GetAge() int64 {
  1040. if x != nil {
  1041. return x.Age
  1042. }
  1043. return 0
  1044. }
  1045. func (x *PersonDB) GetConstellation() string {
  1046. if x != nil {
  1047. return x.Constellation
  1048. }
  1049. return ""
  1050. }
  1051. func (x *PersonDB) GetIntroduceVoice() string {
  1052. if x != nil {
  1053. return x.IntroduceVoice
  1054. }
  1055. return ""
  1056. }
  1057. func (x *PersonDB) GetProvince() string {
  1058. if x != nil {
  1059. return x.Province
  1060. }
  1061. return ""
  1062. }
  1063. func (x *PersonDB) GetCity() string {
  1064. if x != nil {
  1065. return x.City
  1066. }
  1067. return ""
  1068. }
  1069. func (x *PersonDB) GetArea() string {
  1070. if x != nil {
  1071. return x.Area
  1072. }
  1073. return ""
  1074. }
  1075. func (x *PersonDB) GetSignature() string {
  1076. if x != nil {
  1077. return x.Signature
  1078. }
  1079. return ""
  1080. }
  1081. func (x *PersonDB) GetIsFinishInformation() bool {
  1082. if x != nil {
  1083. return x.IsFinishInformation
  1084. }
  1085. return false
  1086. }
  1087. func (x *PersonDB) GetTagList() []int64 {
  1088. if x != nil {
  1089. return x.TagList
  1090. }
  1091. return nil
  1092. }
  1093. type ListPageRequest struct {
  1094. state protoimpl.MessageState
  1095. sizeCache protoimpl.SizeCache
  1096. unknownFields protoimpl.UnknownFields
  1097. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1098. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1099. }
  1100. func (x *ListPageRequest) Reset() {
  1101. *x = ListPageRequest{}
  1102. if protoimpl.UnsafeEnabled {
  1103. mi := &file_common_proto_msgTypes[16]
  1104. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1105. ms.StoreMessageInfo(mi)
  1106. }
  1107. }
  1108. func (x *ListPageRequest) String() string {
  1109. return protoimpl.X.MessageStringOf(x)
  1110. }
  1111. func (*ListPageRequest) ProtoMessage() {}
  1112. func (x *ListPageRequest) ProtoReflect() protoreflect.Message {
  1113. mi := &file_common_proto_msgTypes[16]
  1114. if protoimpl.UnsafeEnabled && x != nil {
  1115. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1116. if ms.LoadMessageInfo() == nil {
  1117. ms.StoreMessageInfo(mi)
  1118. }
  1119. return ms
  1120. }
  1121. return mi.MessageOf(x)
  1122. }
  1123. // Deprecated: Use ListPageRequest.ProtoReflect.Descriptor instead.
  1124. func (*ListPageRequest) Descriptor() ([]byte, []int) {
  1125. return file_common_proto_rawDescGZIP(), []int{16}
  1126. }
  1127. func (x *ListPageRequest) GetNextId() int64 {
  1128. if x != nil {
  1129. return x.NextId
  1130. }
  1131. return 0
  1132. }
  1133. func (x *ListPageRequest) GetOffset() int64 {
  1134. if x != nil {
  1135. return x.Offset
  1136. }
  1137. return 0
  1138. }
  1139. type ListPageAndSexRequest struct {
  1140. state protoimpl.MessageState
  1141. sizeCache protoimpl.SizeCache
  1142. unknownFields protoimpl.UnknownFields
  1143. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1144. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1145. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"` // 对方的性别
  1146. }
  1147. func (x *ListPageAndSexRequest) Reset() {
  1148. *x = ListPageAndSexRequest{}
  1149. if protoimpl.UnsafeEnabled {
  1150. mi := &file_common_proto_msgTypes[17]
  1151. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1152. ms.StoreMessageInfo(mi)
  1153. }
  1154. }
  1155. func (x *ListPageAndSexRequest) String() string {
  1156. return protoimpl.X.MessageStringOf(x)
  1157. }
  1158. func (*ListPageAndSexRequest) ProtoMessage() {}
  1159. func (x *ListPageAndSexRequest) ProtoReflect() protoreflect.Message {
  1160. mi := &file_common_proto_msgTypes[17]
  1161. if protoimpl.UnsafeEnabled && x != nil {
  1162. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1163. if ms.LoadMessageInfo() == nil {
  1164. ms.StoreMessageInfo(mi)
  1165. }
  1166. return ms
  1167. }
  1168. return mi.MessageOf(x)
  1169. }
  1170. // Deprecated: Use ListPageAndSexRequest.ProtoReflect.Descriptor instead.
  1171. func (*ListPageAndSexRequest) Descriptor() ([]byte, []int) {
  1172. return file_common_proto_rawDescGZIP(), []int{17}
  1173. }
  1174. func (x *ListPageAndSexRequest) GetNextId() int64 {
  1175. if x != nil {
  1176. return x.NextId
  1177. }
  1178. return 0
  1179. }
  1180. func (x *ListPageAndSexRequest) GetOffset() int64 {
  1181. if x != nil {
  1182. return x.Offset
  1183. }
  1184. return 0
  1185. }
  1186. func (x *ListPageAndSexRequest) GetSex() int64 {
  1187. if x != nil {
  1188. return x.Sex
  1189. }
  1190. return 0
  1191. }
  1192. type ListPage2Request struct {
  1193. state protoimpl.MessageState
  1194. sizeCache protoimpl.SizeCache
  1195. unknownFields protoimpl.UnknownFields
  1196. NextId string `protobuf:"bytes,1,opt,name=nextId,proto3" json:"nextId"`
  1197. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1198. }
  1199. func (x *ListPage2Request) Reset() {
  1200. *x = ListPage2Request{}
  1201. if protoimpl.UnsafeEnabled {
  1202. mi := &file_common_proto_msgTypes[18]
  1203. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1204. ms.StoreMessageInfo(mi)
  1205. }
  1206. }
  1207. func (x *ListPage2Request) String() string {
  1208. return protoimpl.X.MessageStringOf(x)
  1209. }
  1210. func (*ListPage2Request) ProtoMessage() {}
  1211. func (x *ListPage2Request) ProtoReflect() protoreflect.Message {
  1212. mi := &file_common_proto_msgTypes[18]
  1213. if protoimpl.UnsafeEnabled && x != nil {
  1214. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1215. if ms.LoadMessageInfo() == nil {
  1216. ms.StoreMessageInfo(mi)
  1217. }
  1218. return ms
  1219. }
  1220. return mi.MessageOf(x)
  1221. }
  1222. // Deprecated: Use ListPage2Request.ProtoReflect.Descriptor instead.
  1223. func (*ListPage2Request) Descriptor() ([]byte, []int) {
  1224. return file_common_proto_rawDescGZIP(), []int{18}
  1225. }
  1226. func (x *ListPage2Request) GetNextId() string {
  1227. if x != nil {
  1228. return x.NextId
  1229. }
  1230. return ""
  1231. }
  1232. func (x *ListPage2Request) GetOffset() int64 {
  1233. if x != nil {
  1234. return x.Offset
  1235. }
  1236. return 0
  1237. }
  1238. type ListPageAndPersonRequest struct {
  1239. state protoimpl.MessageState
  1240. sizeCache protoimpl.SizeCache
  1241. unknownFields protoimpl.UnknownFields
  1242. NextId string `protobuf:"bytes,1,opt,name=nextId,proto3" json:"nextId"`
  1243. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1244. PersonID string `protobuf:"bytes,3,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1245. PersonType string `protobuf:"bytes,4,opt,name=personType,proto3" json:"personType"` // 类型
  1246. }
  1247. func (x *ListPageAndPersonRequest) Reset() {
  1248. *x = ListPageAndPersonRequest{}
  1249. if protoimpl.UnsafeEnabled {
  1250. mi := &file_common_proto_msgTypes[19]
  1251. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1252. ms.StoreMessageInfo(mi)
  1253. }
  1254. }
  1255. func (x *ListPageAndPersonRequest) String() string {
  1256. return protoimpl.X.MessageStringOf(x)
  1257. }
  1258. func (*ListPageAndPersonRequest) ProtoMessage() {}
  1259. func (x *ListPageAndPersonRequest) ProtoReflect() protoreflect.Message {
  1260. mi := &file_common_proto_msgTypes[19]
  1261. if protoimpl.UnsafeEnabled && x != nil {
  1262. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1263. if ms.LoadMessageInfo() == nil {
  1264. ms.StoreMessageInfo(mi)
  1265. }
  1266. return ms
  1267. }
  1268. return mi.MessageOf(x)
  1269. }
  1270. // Deprecated: Use ListPageAndPersonRequest.ProtoReflect.Descriptor instead.
  1271. func (*ListPageAndPersonRequest) Descriptor() ([]byte, []int) {
  1272. return file_common_proto_rawDescGZIP(), []int{19}
  1273. }
  1274. func (x *ListPageAndPersonRequest) GetNextId() string {
  1275. if x != nil {
  1276. return x.NextId
  1277. }
  1278. return ""
  1279. }
  1280. func (x *ListPageAndPersonRequest) GetOffset() int64 {
  1281. if x != nil {
  1282. return x.Offset
  1283. }
  1284. return 0
  1285. }
  1286. func (x *ListPageAndPersonRequest) GetPersonID() string {
  1287. if x != nil {
  1288. return x.PersonID
  1289. }
  1290. return ""
  1291. }
  1292. func (x *ListPageAndPersonRequest) GetPersonType() string {
  1293. if x != nil {
  1294. return x.PersonType
  1295. }
  1296. return ""
  1297. }
  1298. type SendPhoneCodeRequest struct {
  1299. state protoimpl.MessageState
  1300. sizeCache protoimpl.SizeCache
  1301. unknownFields protoimpl.UnknownFields
  1302. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  1303. }
  1304. func (x *SendPhoneCodeRequest) Reset() {
  1305. *x = SendPhoneCodeRequest{}
  1306. if protoimpl.UnsafeEnabled {
  1307. mi := &file_common_proto_msgTypes[20]
  1308. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1309. ms.StoreMessageInfo(mi)
  1310. }
  1311. }
  1312. func (x *SendPhoneCodeRequest) String() string {
  1313. return protoimpl.X.MessageStringOf(x)
  1314. }
  1315. func (*SendPhoneCodeRequest) ProtoMessage() {}
  1316. func (x *SendPhoneCodeRequest) ProtoReflect() protoreflect.Message {
  1317. mi := &file_common_proto_msgTypes[20]
  1318. if protoimpl.UnsafeEnabled && x != nil {
  1319. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1320. if ms.LoadMessageInfo() == nil {
  1321. ms.StoreMessageInfo(mi)
  1322. }
  1323. return ms
  1324. }
  1325. return mi.MessageOf(x)
  1326. }
  1327. // Deprecated: Use SendPhoneCodeRequest.ProtoReflect.Descriptor instead.
  1328. func (*SendPhoneCodeRequest) Descriptor() ([]byte, []int) {
  1329. return file_common_proto_rawDescGZIP(), []int{20}
  1330. }
  1331. func (x *SendPhoneCodeRequest) GetPhone() string {
  1332. if x != nil {
  1333. return x.Phone
  1334. }
  1335. return ""
  1336. }
  1337. type CheckPhoneCodeRequest struct {
  1338. state protoimpl.MessageState
  1339. sizeCache protoimpl.SizeCache
  1340. unknownFields protoimpl.UnknownFields
  1341. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  1342. Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code"`
  1343. }
  1344. func (x *CheckPhoneCodeRequest) Reset() {
  1345. *x = CheckPhoneCodeRequest{}
  1346. if protoimpl.UnsafeEnabled {
  1347. mi := &file_common_proto_msgTypes[21]
  1348. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1349. ms.StoreMessageInfo(mi)
  1350. }
  1351. }
  1352. func (x *CheckPhoneCodeRequest) String() string {
  1353. return protoimpl.X.MessageStringOf(x)
  1354. }
  1355. func (*CheckPhoneCodeRequest) ProtoMessage() {}
  1356. func (x *CheckPhoneCodeRequest) ProtoReflect() protoreflect.Message {
  1357. mi := &file_common_proto_msgTypes[21]
  1358. if protoimpl.UnsafeEnabled && x != nil {
  1359. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1360. if ms.LoadMessageInfo() == nil {
  1361. ms.StoreMessageInfo(mi)
  1362. }
  1363. return ms
  1364. }
  1365. return mi.MessageOf(x)
  1366. }
  1367. // Deprecated: Use CheckPhoneCodeRequest.ProtoReflect.Descriptor instead.
  1368. func (*CheckPhoneCodeRequest) Descriptor() ([]byte, []int) {
  1369. return file_common_proto_rawDescGZIP(), []int{21}
  1370. }
  1371. func (x *CheckPhoneCodeRequest) GetPhone() string {
  1372. if x != nil {
  1373. return x.Phone
  1374. }
  1375. return ""
  1376. }
  1377. func (x *CheckPhoneCodeRequest) GetCode() string {
  1378. if x != nil {
  1379. return x.Code
  1380. }
  1381. return ""
  1382. }
  1383. type UploadMaterialResponse struct {
  1384. state protoimpl.MessageState
  1385. sizeCache protoimpl.SizeCache
  1386. unknownFields protoimpl.UnknownFields
  1387. Link string `protobuf:"bytes,1,opt,name=link,proto3" json:"link"`
  1388. }
  1389. func (x *UploadMaterialResponse) Reset() {
  1390. *x = UploadMaterialResponse{}
  1391. if protoimpl.UnsafeEnabled {
  1392. mi := &file_common_proto_msgTypes[22]
  1393. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1394. ms.StoreMessageInfo(mi)
  1395. }
  1396. }
  1397. func (x *UploadMaterialResponse) String() string {
  1398. return protoimpl.X.MessageStringOf(x)
  1399. }
  1400. func (*UploadMaterialResponse) ProtoMessage() {}
  1401. func (x *UploadMaterialResponse) ProtoReflect() protoreflect.Message {
  1402. mi := &file_common_proto_msgTypes[22]
  1403. if protoimpl.UnsafeEnabled && x != nil {
  1404. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1405. if ms.LoadMessageInfo() == nil {
  1406. ms.StoreMessageInfo(mi)
  1407. }
  1408. return ms
  1409. }
  1410. return mi.MessageOf(x)
  1411. }
  1412. // Deprecated: Use UploadMaterialResponse.ProtoReflect.Descriptor instead.
  1413. func (*UploadMaterialResponse) Descriptor() ([]byte, []int) {
  1414. return file_common_proto_rawDescGZIP(), []int{22}
  1415. }
  1416. func (x *UploadMaterialResponse) GetLink() string {
  1417. if x != nil {
  1418. return x.Link
  1419. }
  1420. return ""
  1421. }
  1422. type Ids struct {
  1423. state protoimpl.MessageState
  1424. sizeCache protoimpl.SizeCache
  1425. unknownFields protoimpl.UnknownFields
  1426. Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids"` // 标签ID
  1427. }
  1428. func (x *Ids) Reset() {
  1429. *x = Ids{}
  1430. if protoimpl.UnsafeEnabled {
  1431. mi := &file_common_proto_msgTypes[23]
  1432. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1433. ms.StoreMessageInfo(mi)
  1434. }
  1435. }
  1436. func (x *Ids) String() string {
  1437. return protoimpl.X.MessageStringOf(x)
  1438. }
  1439. func (*Ids) ProtoMessage() {}
  1440. func (x *Ids) ProtoReflect() protoreflect.Message {
  1441. mi := &file_common_proto_msgTypes[23]
  1442. if protoimpl.UnsafeEnabled && x != nil {
  1443. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1444. if ms.LoadMessageInfo() == nil {
  1445. ms.StoreMessageInfo(mi)
  1446. }
  1447. return ms
  1448. }
  1449. return mi.MessageOf(x)
  1450. }
  1451. // Deprecated: Use Ids.ProtoReflect.Descriptor instead.
  1452. func (*Ids) Descriptor() ([]byte, []int) {
  1453. return file_common_proto_rawDescGZIP(), []int{23}
  1454. }
  1455. func (x *Ids) GetIds() []int64 {
  1456. if x != nil {
  1457. return x.Ids
  1458. }
  1459. return nil
  1460. }
  1461. type TagListReply struct {
  1462. state protoimpl.MessageState
  1463. sizeCache protoimpl.SizeCache
  1464. unknownFields protoimpl.UnknownFields
  1465. List []*TagList `protobuf:"bytes,1,rep,name=list,proto3" json:"list"` // 标签列表
  1466. }
  1467. func (x *TagListReply) Reset() {
  1468. *x = TagListReply{}
  1469. if protoimpl.UnsafeEnabled {
  1470. mi := &file_common_proto_msgTypes[24]
  1471. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1472. ms.StoreMessageInfo(mi)
  1473. }
  1474. }
  1475. func (x *TagListReply) String() string {
  1476. return protoimpl.X.MessageStringOf(x)
  1477. }
  1478. func (*TagListReply) ProtoMessage() {}
  1479. func (x *TagListReply) ProtoReflect() protoreflect.Message {
  1480. mi := &file_common_proto_msgTypes[24]
  1481. if protoimpl.UnsafeEnabled && x != nil {
  1482. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1483. if ms.LoadMessageInfo() == nil {
  1484. ms.StoreMessageInfo(mi)
  1485. }
  1486. return ms
  1487. }
  1488. return mi.MessageOf(x)
  1489. }
  1490. // Deprecated: Use TagListReply.ProtoReflect.Descriptor instead.
  1491. func (*TagListReply) Descriptor() ([]byte, []int) {
  1492. return file_common_proto_rawDescGZIP(), []int{24}
  1493. }
  1494. func (x *TagListReply) GetList() []*TagList {
  1495. if x != nil {
  1496. return x.List
  1497. }
  1498. return nil
  1499. }
  1500. type TagList struct {
  1501. state protoimpl.MessageState
  1502. sizeCache protoimpl.SizeCache
  1503. unknownFields protoimpl.UnknownFields
  1504. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // 标签ID
  1505. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"` // 分组名
  1506. }
  1507. func (x *TagList) Reset() {
  1508. *x = TagList{}
  1509. if protoimpl.UnsafeEnabled {
  1510. mi := &file_common_proto_msgTypes[25]
  1511. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1512. ms.StoreMessageInfo(mi)
  1513. }
  1514. }
  1515. func (x *TagList) String() string {
  1516. return protoimpl.X.MessageStringOf(x)
  1517. }
  1518. func (*TagList) ProtoMessage() {}
  1519. func (x *TagList) ProtoReflect() protoreflect.Message {
  1520. mi := &file_common_proto_msgTypes[25]
  1521. if protoimpl.UnsafeEnabled && x != nil {
  1522. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1523. if ms.LoadMessageInfo() == nil {
  1524. ms.StoreMessageInfo(mi)
  1525. }
  1526. return ms
  1527. }
  1528. return mi.MessageOf(x)
  1529. }
  1530. // Deprecated: Use TagList.ProtoReflect.Descriptor instead.
  1531. func (*TagList) Descriptor() ([]byte, []int) {
  1532. return file_common_proto_rawDescGZIP(), []int{25}
  1533. }
  1534. func (x *TagList) GetId() int64 {
  1535. if x != nil {
  1536. return x.Id
  1537. }
  1538. return 0
  1539. }
  1540. func (x *TagList) GetName() string {
  1541. if x != nil {
  1542. return x.Name
  1543. }
  1544. return ""
  1545. }
  1546. type SexReq struct {
  1547. state protoimpl.MessageState
  1548. sizeCache protoimpl.SizeCache
  1549. unknownFields protoimpl.UnknownFields
  1550. Sex int64 `protobuf:"varint,1,opt,name=sex,proto3" json:"sex"`
  1551. }
  1552. func (x *SexReq) Reset() {
  1553. *x = SexReq{}
  1554. if protoimpl.UnsafeEnabled {
  1555. mi := &file_common_proto_msgTypes[26]
  1556. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1557. ms.StoreMessageInfo(mi)
  1558. }
  1559. }
  1560. func (x *SexReq) String() string {
  1561. return protoimpl.X.MessageStringOf(x)
  1562. }
  1563. func (*SexReq) ProtoMessage() {}
  1564. func (x *SexReq) ProtoReflect() protoreflect.Message {
  1565. mi := &file_common_proto_msgTypes[26]
  1566. if protoimpl.UnsafeEnabled && x != nil {
  1567. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1568. if ms.LoadMessageInfo() == nil {
  1569. ms.StoreMessageInfo(mi)
  1570. }
  1571. return ms
  1572. }
  1573. return mi.MessageOf(x)
  1574. }
  1575. // Deprecated: Use SexReq.ProtoReflect.Descriptor instead.
  1576. func (*SexReq) Descriptor() ([]byte, []int) {
  1577. return file_common_proto_rawDescGZIP(), []int{26}
  1578. }
  1579. func (x *SexReq) GetSex() int64 {
  1580. if x != nil {
  1581. return x.Sex
  1582. }
  1583. return 0
  1584. }
  1585. type RandomIntroduceReply struct {
  1586. state protoimpl.MessageState
  1587. sizeCache protoimpl.SizeCache
  1588. unknownFields protoimpl.UnknownFields
  1589. Introduce string `protobuf:"bytes,1,opt,name=introduce,proto3" json:"introduce"`
  1590. }
  1591. func (x *RandomIntroduceReply) Reset() {
  1592. *x = RandomIntroduceReply{}
  1593. if protoimpl.UnsafeEnabled {
  1594. mi := &file_common_proto_msgTypes[27]
  1595. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1596. ms.StoreMessageInfo(mi)
  1597. }
  1598. }
  1599. func (x *RandomIntroduceReply) String() string {
  1600. return protoimpl.X.MessageStringOf(x)
  1601. }
  1602. func (*RandomIntroduceReply) ProtoMessage() {}
  1603. func (x *RandomIntroduceReply) ProtoReflect() protoreflect.Message {
  1604. mi := &file_common_proto_msgTypes[27]
  1605. if protoimpl.UnsafeEnabled && x != nil {
  1606. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1607. if ms.LoadMessageInfo() == nil {
  1608. ms.StoreMessageInfo(mi)
  1609. }
  1610. return ms
  1611. }
  1612. return mi.MessageOf(x)
  1613. }
  1614. // Deprecated: Use RandomIntroduceReply.ProtoReflect.Descriptor instead.
  1615. func (*RandomIntroduceReply) Descriptor() ([]byte, []int) {
  1616. return file_common_proto_rawDescGZIP(), []int{27}
  1617. }
  1618. func (x *RandomIntroduceReply) GetIntroduce() string {
  1619. if x != nil {
  1620. return x.Introduce
  1621. }
  1622. return ""
  1623. }
  1624. type UpdateInformationRequest struct {
  1625. state protoimpl.MessageState
  1626. sizeCache protoimpl.SizeCache
  1627. unknownFields protoimpl.UnknownFields
  1628. Nickname string `protobuf:"bytes,1,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1629. AvatarUrl string `protobuf:"bytes,2,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  1630. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"` // 性别
  1631. Birthday int64 `protobuf:"varint,4,opt,name=birthday,proto3" json:"birthday"` // 出生日期(毫秒级时间戳)
  1632. TagList []int64 `protobuf:"varint,5,rep,packed,name=tagList,proto3" json:"tagList"` // 标签id列表
  1633. IntroduceVoice string `protobuf:"bytes,6,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音的链接
  1634. Signature string `protobuf:"bytes,7,opt,name=signature,proto3" json:"signature"` // 介绍(签名)
  1635. Pictures []string `protobuf:"bytes,8,rep,name=pictures,proto3" json:"pictures"` // 相册(主页图片)
  1636. Province string `protobuf:"bytes,9,opt,name=province,proto3" json:"province"` // 省
  1637. City string `protobuf:"bytes,10,opt,name=city,proto3" json:"city"` // 市
  1638. Area string `protobuf:"bytes,11,opt,name=area,proto3" json:"area"` // 区
  1639. }
  1640. func (x *UpdateInformationRequest) Reset() {
  1641. *x = UpdateInformationRequest{}
  1642. if protoimpl.UnsafeEnabled {
  1643. mi := &file_common_proto_msgTypes[28]
  1644. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1645. ms.StoreMessageInfo(mi)
  1646. }
  1647. }
  1648. func (x *UpdateInformationRequest) String() string {
  1649. return protoimpl.X.MessageStringOf(x)
  1650. }
  1651. func (*UpdateInformationRequest) ProtoMessage() {}
  1652. func (x *UpdateInformationRequest) ProtoReflect() protoreflect.Message {
  1653. mi := &file_common_proto_msgTypes[28]
  1654. if protoimpl.UnsafeEnabled && x != nil {
  1655. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1656. if ms.LoadMessageInfo() == nil {
  1657. ms.StoreMessageInfo(mi)
  1658. }
  1659. return ms
  1660. }
  1661. return mi.MessageOf(x)
  1662. }
  1663. // Deprecated: Use UpdateInformationRequest.ProtoReflect.Descriptor instead.
  1664. func (*UpdateInformationRequest) Descriptor() ([]byte, []int) {
  1665. return file_common_proto_rawDescGZIP(), []int{28}
  1666. }
  1667. func (x *UpdateInformationRequest) GetNickname() string {
  1668. if x != nil {
  1669. return x.Nickname
  1670. }
  1671. return ""
  1672. }
  1673. func (x *UpdateInformationRequest) GetAvatarUrl() string {
  1674. if x != nil {
  1675. return x.AvatarUrl
  1676. }
  1677. return ""
  1678. }
  1679. func (x *UpdateInformationRequest) GetSex() int64 {
  1680. if x != nil {
  1681. return x.Sex
  1682. }
  1683. return 0
  1684. }
  1685. func (x *UpdateInformationRequest) GetBirthday() int64 {
  1686. if x != nil {
  1687. return x.Birthday
  1688. }
  1689. return 0
  1690. }
  1691. func (x *UpdateInformationRequest) GetTagList() []int64 {
  1692. if x != nil {
  1693. return x.TagList
  1694. }
  1695. return nil
  1696. }
  1697. func (x *UpdateInformationRequest) GetIntroduceVoice() string {
  1698. if x != nil {
  1699. return x.IntroduceVoice
  1700. }
  1701. return ""
  1702. }
  1703. func (x *UpdateInformationRequest) GetSignature() string {
  1704. if x != nil {
  1705. return x.Signature
  1706. }
  1707. return ""
  1708. }
  1709. func (x *UpdateInformationRequest) GetPictures() []string {
  1710. if x != nil {
  1711. return x.Pictures
  1712. }
  1713. return nil
  1714. }
  1715. func (x *UpdateInformationRequest) GetProvince() string {
  1716. if x != nil {
  1717. return x.Province
  1718. }
  1719. return ""
  1720. }
  1721. func (x *UpdateInformationRequest) GetCity() string {
  1722. if x != nil {
  1723. return x.City
  1724. }
  1725. return ""
  1726. }
  1727. func (x *UpdateInformationRequest) GetArea() string {
  1728. if x != nil {
  1729. return x.Area
  1730. }
  1731. return ""
  1732. }
  1733. type OnlinePersonListReply struct {
  1734. state protoimpl.MessageState
  1735. sizeCache protoimpl.SizeCache
  1736. unknownFields protoimpl.UnknownFields
  1737. List []*OnlinePersonInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1738. NextId string `protobuf:"bytes,2,opt,name=nextId,proto3" json:"nextId"`
  1739. }
  1740. func (x *OnlinePersonListReply) Reset() {
  1741. *x = OnlinePersonListReply{}
  1742. if protoimpl.UnsafeEnabled {
  1743. mi := &file_common_proto_msgTypes[29]
  1744. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1745. ms.StoreMessageInfo(mi)
  1746. }
  1747. }
  1748. func (x *OnlinePersonListReply) String() string {
  1749. return protoimpl.X.MessageStringOf(x)
  1750. }
  1751. func (*OnlinePersonListReply) ProtoMessage() {}
  1752. func (x *OnlinePersonListReply) ProtoReflect() protoreflect.Message {
  1753. mi := &file_common_proto_msgTypes[29]
  1754. if protoimpl.UnsafeEnabled && x != nil {
  1755. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1756. if ms.LoadMessageInfo() == nil {
  1757. ms.StoreMessageInfo(mi)
  1758. }
  1759. return ms
  1760. }
  1761. return mi.MessageOf(x)
  1762. }
  1763. // Deprecated: Use OnlinePersonListReply.ProtoReflect.Descriptor instead.
  1764. func (*OnlinePersonListReply) Descriptor() ([]byte, []int) {
  1765. return file_common_proto_rawDescGZIP(), []int{29}
  1766. }
  1767. func (x *OnlinePersonListReply) GetList() []*OnlinePersonInfo {
  1768. if x != nil {
  1769. return x.List
  1770. }
  1771. return nil
  1772. }
  1773. func (x *OnlinePersonListReply) GetNextId() string {
  1774. if x != nil {
  1775. return x.NextId
  1776. }
  1777. return ""
  1778. }
  1779. type OnlinePersonInfo struct {
  1780. state protoimpl.MessageState
  1781. sizeCache protoimpl.SizeCache
  1782. unknownFields protoimpl.UnknownFields
  1783. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1784. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  1785. Nickname string `protobuf:"bytes,3,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1786. AvatarUrl string `protobuf:"bytes,4,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1787. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  1788. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  1789. Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
  1790. Signature string `protobuf:"bytes,8,opt,name=signature,proto3" json:"signature"` // 签名
  1791. Province string `protobuf:"bytes,9,opt,name=province,proto3" json:"province"` // 省
  1792. City string `protobuf:"bytes,10,opt,name=city,proto3" json:"city"` // 市
  1793. Area string `protobuf:"bytes,11,opt,name=area,proto3" json:"area"` // 区
  1794. IntroduceVoice string `protobuf:"bytes,12,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  1795. TagList []string `protobuf:"bytes,13,rep,name=tagList,proto3" json:"tagList"` // 标签
  1796. }
  1797. func (x *OnlinePersonInfo) Reset() {
  1798. *x = OnlinePersonInfo{}
  1799. if protoimpl.UnsafeEnabled {
  1800. mi := &file_common_proto_msgTypes[30]
  1801. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1802. ms.StoreMessageInfo(mi)
  1803. }
  1804. }
  1805. func (x *OnlinePersonInfo) String() string {
  1806. return protoimpl.X.MessageStringOf(x)
  1807. }
  1808. func (*OnlinePersonInfo) ProtoMessage() {}
  1809. func (x *OnlinePersonInfo) ProtoReflect() protoreflect.Message {
  1810. mi := &file_common_proto_msgTypes[30]
  1811. if protoimpl.UnsafeEnabled && x != nil {
  1812. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1813. if ms.LoadMessageInfo() == nil {
  1814. ms.StoreMessageInfo(mi)
  1815. }
  1816. return ms
  1817. }
  1818. return mi.MessageOf(x)
  1819. }
  1820. // Deprecated: Use OnlinePersonInfo.ProtoReflect.Descriptor instead.
  1821. func (*OnlinePersonInfo) Descriptor() ([]byte, []int) {
  1822. return file_common_proto_rawDescGZIP(), []int{30}
  1823. }
  1824. func (x *OnlinePersonInfo) GetPersonID() string {
  1825. if x != nil {
  1826. return x.PersonID
  1827. }
  1828. return ""
  1829. }
  1830. func (x *OnlinePersonInfo) GetPersonType() string {
  1831. if x != nil {
  1832. return x.PersonType
  1833. }
  1834. return ""
  1835. }
  1836. func (x *OnlinePersonInfo) GetNickname() string {
  1837. if x != nil {
  1838. return x.Nickname
  1839. }
  1840. return ""
  1841. }
  1842. func (x *OnlinePersonInfo) GetAvatarUrl() string {
  1843. if x != nil {
  1844. return x.AvatarUrl
  1845. }
  1846. return ""
  1847. }
  1848. func (x *OnlinePersonInfo) GetSex() int64 {
  1849. if x != nil {
  1850. return x.Sex
  1851. }
  1852. return 0
  1853. }
  1854. func (x *OnlinePersonInfo) GetAge() int64 {
  1855. if x != nil {
  1856. return x.Age
  1857. }
  1858. return 0
  1859. }
  1860. func (x *OnlinePersonInfo) GetConstellation() string {
  1861. if x != nil {
  1862. return x.Constellation
  1863. }
  1864. return ""
  1865. }
  1866. func (x *OnlinePersonInfo) GetSignature() string {
  1867. if x != nil {
  1868. return x.Signature
  1869. }
  1870. return ""
  1871. }
  1872. func (x *OnlinePersonInfo) GetProvince() string {
  1873. if x != nil {
  1874. return x.Province
  1875. }
  1876. return ""
  1877. }
  1878. func (x *OnlinePersonInfo) GetCity() string {
  1879. if x != nil {
  1880. return x.City
  1881. }
  1882. return ""
  1883. }
  1884. func (x *OnlinePersonInfo) GetArea() string {
  1885. if x != nil {
  1886. return x.Area
  1887. }
  1888. return ""
  1889. }
  1890. func (x *OnlinePersonInfo) GetIntroduceVoice() string {
  1891. if x != nil {
  1892. return x.IntroduceVoice
  1893. }
  1894. return ""
  1895. }
  1896. func (x *OnlinePersonInfo) GetTagList() []string {
  1897. if x != nil {
  1898. return x.TagList
  1899. }
  1900. return nil
  1901. }
  1902. type ChatRecordListReply struct {
  1903. state protoimpl.MessageState
  1904. sizeCache protoimpl.SizeCache
  1905. unknownFields protoimpl.UnknownFields
  1906. List []*ChatRecordInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1907. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  1908. }
  1909. func (x *ChatRecordListReply) Reset() {
  1910. *x = ChatRecordListReply{}
  1911. if protoimpl.UnsafeEnabled {
  1912. mi := &file_common_proto_msgTypes[31]
  1913. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1914. ms.StoreMessageInfo(mi)
  1915. }
  1916. }
  1917. func (x *ChatRecordListReply) String() string {
  1918. return protoimpl.X.MessageStringOf(x)
  1919. }
  1920. func (*ChatRecordListReply) ProtoMessage() {}
  1921. func (x *ChatRecordListReply) ProtoReflect() protoreflect.Message {
  1922. mi := &file_common_proto_msgTypes[31]
  1923. if protoimpl.UnsafeEnabled && x != nil {
  1924. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1925. if ms.LoadMessageInfo() == nil {
  1926. ms.StoreMessageInfo(mi)
  1927. }
  1928. return ms
  1929. }
  1930. return mi.MessageOf(x)
  1931. }
  1932. // Deprecated: Use ChatRecordListReply.ProtoReflect.Descriptor instead.
  1933. func (*ChatRecordListReply) Descriptor() ([]byte, []int) {
  1934. return file_common_proto_rawDescGZIP(), []int{31}
  1935. }
  1936. func (x *ChatRecordListReply) GetList() []*ChatRecordInfo {
  1937. if x != nil {
  1938. return x.List
  1939. }
  1940. return nil
  1941. }
  1942. func (x *ChatRecordListReply) GetNextId() int64 {
  1943. if x != nil {
  1944. return x.NextId
  1945. }
  1946. return 0
  1947. }
  1948. type ChatRoomMsg struct {
  1949. state protoimpl.MessageState
  1950. sizeCache protoimpl.SizeCache
  1951. unknownFields protoimpl.UnknownFields
  1952. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  1953. Self *ChatPersonMsg `protobuf:"bytes,2,opt,name=self,proto3" json:"self"` // 自己的信息
  1954. Other *ChatPersonMsg `protobuf:"bytes,3,opt,name=other,proto3" json:"other"` // 对方的信息
  1955. Likeability int64 `protobuf:"varint,5,opt,name=likeability,proto3" json:"likeability"` // 对对方的好感度
  1956. }
  1957. func (x *ChatRoomMsg) Reset() {
  1958. *x = ChatRoomMsg{}
  1959. if protoimpl.UnsafeEnabled {
  1960. mi := &file_common_proto_msgTypes[32]
  1961. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1962. ms.StoreMessageInfo(mi)
  1963. }
  1964. }
  1965. func (x *ChatRoomMsg) String() string {
  1966. return protoimpl.X.MessageStringOf(x)
  1967. }
  1968. func (*ChatRoomMsg) ProtoMessage() {}
  1969. func (x *ChatRoomMsg) ProtoReflect() protoreflect.Message {
  1970. mi := &file_common_proto_msgTypes[32]
  1971. if protoimpl.UnsafeEnabled && x != nil {
  1972. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1973. if ms.LoadMessageInfo() == nil {
  1974. ms.StoreMessageInfo(mi)
  1975. }
  1976. return ms
  1977. }
  1978. return mi.MessageOf(x)
  1979. }
  1980. // Deprecated: Use ChatRoomMsg.ProtoReflect.Descriptor instead.
  1981. func (*ChatRoomMsg) Descriptor() ([]byte, []int) {
  1982. return file_common_proto_rawDescGZIP(), []int{32}
  1983. }
  1984. func (x *ChatRoomMsg) GetRoomId() int64 {
  1985. if x != nil {
  1986. return x.RoomId
  1987. }
  1988. return 0
  1989. }
  1990. func (x *ChatRoomMsg) GetSelf() *ChatPersonMsg {
  1991. if x != nil {
  1992. return x.Self
  1993. }
  1994. return nil
  1995. }
  1996. func (x *ChatRoomMsg) GetOther() *ChatPersonMsg {
  1997. if x != nil {
  1998. return x.Other
  1999. }
  2000. return nil
  2001. }
  2002. func (x *ChatRoomMsg) GetLikeability() int64 {
  2003. if x != nil {
  2004. return x.Likeability
  2005. }
  2006. return 0
  2007. }
  2008. type ChatPersonMsg struct {
  2009. state protoimpl.MessageState
  2010. sizeCache protoimpl.SizeCache
  2011. unknownFields protoimpl.UnknownFields
  2012. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  2013. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  2014. Nickname string `protobuf:"bytes,3,opt,name=nickname,proto3" json:"nickname"` // 昵称
  2015. Avatar string `protobuf:"bytes,4,opt,name=avatar,proto3" json:"avatar"` // 头像
  2016. }
  2017. func (x *ChatPersonMsg) Reset() {
  2018. *x = ChatPersonMsg{}
  2019. if protoimpl.UnsafeEnabled {
  2020. mi := &file_common_proto_msgTypes[33]
  2021. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2022. ms.StoreMessageInfo(mi)
  2023. }
  2024. }
  2025. func (x *ChatPersonMsg) String() string {
  2026. return protoimpl.X.MessageStringOf(x)
  2027. }
  2028. func (*ChatPersonMsg) ProtoMessage() {}
  2029. func (x *ChatPersonMsg) ProtoReflect() protoreflect.Message {
  2030. mi := &file_common_proto_msgTypes[33]
  2031. if protoimpl.UnsafeEnabled && x != nil {
  2032. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2033. if ms.LoadMessageInfo() == nil {
  2034. ms.StoreMessageInfo(mi)
  2035. }
  2036. return ms
  2037. }
  2038. return mi.MessageOf(x)
  2039. }
  2040. // Deprecated: Use ChatPersonMsg.ProtoReflect.Descriptor instead.
  2041. func (*ChatPersonMsg) Descriptor() ([]byte, []int) {
  2042. return file_common_proto_rawDescGZIP(), []int{33}
  2043. }
  2044. func (x *ChatPersonMsg) GetId() string {
  2045. if x != nil {
  2046. return x.Id
  2047. }
  2048. return ""
  2049. }
  2050. func (x *ChatPersonMsg) GetType() string {
  2051. if x != nil {
  2052. return x.Type
  2053. }
  2054. return ""
  2055. }
  2056. func (x *ChatPersonMsg) GetNickname() string {
  2057. if x != nil {
  2058. return x.Nickname
  2059. }
  2060. return ""
  2061. }
  2062. func (x *ChatPersonMsg) GetAvatar() string {
  2063. if x != nil {
  2064. return x.Avatar
  2065. }
  2066. return ""
  2067. }
  2068. type ChatRecordInfo struct {
  2069. state protoimpl.MessageState
  2070. sizeCache protoimpl.SizeCache
  2071. unknownFields protoimpl.UnknownFields
  2072. MessageId int64 `protobuf:"varint,1,opt,name=messageId,proto3" json:"messageId"` // 消息的ID
  2073. MsgType string `protobuf:"bytes,2,opt,name=msgType,proto3" json:"msgType"` // 消息类型
  2074. Message *Message `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` // 消息的结构
  2075. RoomId int64 `protobuf:"varint,4,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  2076. IsSelf bool `protobuf:"varint,5,opt,name=isSelf,proto3" json:"isSelf"` // 是否是自己
  2077. SendTime int64 `protobuf:"varint,6,opt,name=sendTime,proto3" json:"sendTime"` // 发送时间
  2078. Status string `protobuf:"bytes,7,opt,name=status,proto3" json:"status"` // 消息状态
  2079. StatusMsg string `protobuf:"bytes,8,opt,name=statusMsg,proto3" json:"statusMsg"` // 状态说明
  2080. IsRead bool `protobuf:"varint,9,opt,name=isRead,proto3" json:"isRead"` // 对方是否已读
  2081. }
  2082. func (x *ChatRecordInfo) Reset() {
  2083. *x = ChatRecordInfo{}
  2084. if protoimpl.UnsafeEnabled {
  2085. mi := &file_common_proto_msgTypes[34]
  2086. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2087. ms.StoreMessageInfo(mi)
  2088. }
  2089. }
  2090. func (x *ChatRecordInfo) String() string {
  2091. return protoimpl.X.MessageStringOf(x)
  2092. }
  2093. func (*ChatRecordInfo) ProtoMessage() {}
  2094. func (x *ChatRecordInfo) ProtoReflect() protoreflect.Message {
  2095. mi := &file_common_proto_msgTypes[34]
  2096. if protoimpl.UnsafeEnabled && x != nil {
  2097. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2098. if ms.LoadMessageInfo() == nil {
  2099. ms.StoreMessageInfo(mi)
  2100. }
  2101. return ms
  2102. }
  2103. return mi.MessageOf(x)
  2104. }
  2105. // Deprecated: Use ChatRecordInfo.ProtoReflect.Descriptor instead.
  2106. func (*ChatRecordInfo) Descriptor() ([]byte, []int) {
  2107. return file_common_proto_rawDescGZIP(), []int{34}
  2108. }
  2109. func (x *ChatRecordInfo) GetMessageId() int64 {
  2110. if x != nil {
  2111. return x.MessageId
  2112. }
  2113. return 0
  2114. }
  2115. func (x *ChatRecordInfo) GetMsgType() string {
  2116. if x != nil {
  2117. return x.MsgType
  2118. }
  2119. return ""
  2120. }
  2121. func (x *ChatRecordInfo) GetMessage() *Message {
  2122. if x != nil {
  2123. return x.Message
  2124. }
  2125. return nil
  2126. }
  2127. func (x *ChatRecordInfo) GetRoomId() int64 {
  2128. if x != nil {
  2129. return x.RoomId
  2130. }
  2131. return 0
  2132. }
  2133. func (x *ChatRecordInfo) GetIsSelf() bool {
  2134. if x != nil {
  2135. return x.IsSelf
  2136. }
  2137. return false
  2138. }
  2139. func (x *ChatRecordInfo) GetSendTime() int64 {
  2140. if x != nil {
  2141. return x.SendTime
  2142. }
  2143. return 0
  2144. }
  2145. func (x *ChatRecordInfo) GetStatus() string {
  2146. if x != nil {
  2147. return x.Status
  2148. }
  2149. return ""
  2150. }
  2151. func (x *ChatRecordInfo) GetStatusMsg() string {
  2152. if x != nil {
  2153. return x.StatusMsg
  2154. }
  2155. return ""
  2156. }
  2157. func (x *ChatRecordInfo) GetIsRead() bool {
  2158. if x != nil {
  2159. return x.IsRead
  2160. }
  2161. return false
  2162. }
  2163. type ChatIsReadInfo struct {
  2164. state protoimpl.MessageState
  2165. sizeCache protoimpl.SizeCache
  2166. unknownFields protoimpl.UnknownFields
  2167. MessageId int64 `protobuf:"varint,1,opt,name=messageId,proto3" json:"messageId"` // 消息的ID
  2168. RoomId int64 `protobuf:"varint,4,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  2169. }
  2170. func (x *ChatIsReadInfo) Reset() {
  2171. *x = ChatIsReadInfo{}
  2172. if protoimpl.UnsafeEnabled {
  2173. mi := &file_common_proto_msgTypes[35]
  2174. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2175. ms.StoreMessageInfo(mi)
  2176. }
  2177. }
  2178. func (x *ChatIsReadInfo) String() string {
  2179. return protoimpl.X.MessageStringOf(x)
  2180. }
  2181. func (*ChatIsReadInfo) ProtoMessage() {}
  2182. func (x *ChatIsReadInfo) ProtoReflect() protoreflect.Message {
  2183. mi := &file_common_proto_msgTypes[35]
  2184. if protoimpl.UnsafeEnabled && x != nil {
  2185. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2186. if ms.LoadMessageInfo() == nil {
  2187. ms.StoreMessageInfo(mi)
  2188. }
  2189. return ms
  2190. }
  2191. return mi.MessageOf(x)
  2192. }
  2193. // Deprecated: Use ChatIsReadInfo.ProtoReflect.Descriptor instead.
  2194. func (*ChatIsReadInfo) Descriptor() ([]byte, []int) {
  2195. return file_common_proto_rawDescGZIP(), []int{35}
  2196. }
  2197. func (x *ChatIsReadInfo) GetMessageId() int64 {
  2198. if x != nil {
  2199. return x.MessageId
  2200. }
  2201. return 0
  2202. }
  2203. func (x *ChatIsReadInfo) GetRoomId() int64 {
  2204. if x != nil {
  2205. return x.RoomId
  2206. }
  2207. return 0
  2208. }
  2209. type GoToRoom struct {
  2210. state protoimpl.MessageState
  2211. sizeCache protoimpl.SizeCache
  2212. unknownFields protoimpl.UnknownFields
  2213. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  2214. }
  2215. func (x *GoToRoom) Reset() {
  2216. *x = GoToRoom{}
  2217. if protoimpl.UnsafeEnabled {
  2218. mi := &file_common_proto_msgTypes[36]
  2219. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2220. ms.StoreMessageInfo(mi)
  2221. }
  2222. }
  2223. func (x *GoToRoom) String() string {
  2224. return protoimpl.X.MessageStringOf(x)
  2225. }
  2226. func (*GoToRoom) ProtoMessage() {}
  2227. func (x *GoToRoom) ProtoReflect() protoreflect.Message {
  2228. mi := &file_common_proto_msgTypes[36]
  2229. if protoimpl.UnsafeEnabled && x != nil {
  2230. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2231. if ms.LoadMessageInfo() == nil {
  2232. ms.StoreMessageInfo(mi)
  2233. }
  2234. return ms
  2235. }
  2236. return mi.MessageOf(x)
  2237. }
  2238. // Deprecated: Use GoToRoom.ProtoReflect.Descriptor instead.
  2239. func (*GoToRoom) Descriptor() ([]byte, []int) {
  2240. return file_common_proto_rawDescGZIP(), []int{36}
  2241. }
  2242. func (x *GoToRoom) GetRoomId() int64 {
  2243. if x != nil {
  2244. return x.RoomId
  2245. }
  2246. return 0
  2247. }
  2248. type Message struct {
  2249. state protoimpl.MessageState
  2250. sizeCache protoimpl.SizeCache
  2251. unknownFields protoimpl.UnknownFields
  2252. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content"` // 文本内容
  2253. MaterialUrl string `protobuf:"bytes,2,opt,name=materialUrl,proto3" json:"materialUrl"` // 素材链接
  2254. }
  2255. func (x *Message) Reset() {
  2256. *x = Message{}
  2257. if protoimpl.UnsafeEnabled {
  2258. mi := &file_common_proto_msgTypes[37]
  2259. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2260. ms.StoreMessageInfo(mi)
  2261. }
  2262. }
  2263. func (x *Message) String() string {
  2264. return protoimpl.X.MessageStringOf(x)
  2265. }
  2266. func (*Message) ProtoMessage() {}
  2267. func (x *Message) ProtoReflect() protoreflect.Message {
  2268. mi := &file_common_proto_msgTypes[37]
  2269. if protoimpl.UnsafeEnabled && x != nil {
  2270. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2271. if ms.LoadMessageInfo() == nil {
  2272. ms.StoreMessageInfo(mi)
  2273. }
  2274. return ms
  2275. }
  2276. return mi.MessageOf(x)
  2277. }
  2278. // Deprecated: Use Message.ProtoReflect.Descriptor instead.
  2279. func (*Message) Descriptor() ([]byte, []int) {
  2280. return file_common_proto_rawDescGZIP(), []int{37}
  2281. }
  2282. func (x *Message) GetContent() string {
  2283. if x != nil {
  2284. return x.Content
  2285. }
  2286. return ""
  2287. }
  2288. func (x *Message) GetMaterialUrl() string {
  2289. if x != nil {
  2290. return x.MaterialUrl
  2291. }
  2292. return ""
  2293. }
  2294. type FindChatRoomMsgRequest struct {
  2295. state protoimpl.MessageState
  2296. sizeCache protoimpl.SizeCache
  2297. unknownFields protoimpl.UnknownFields
  2298. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"`
  2299. }
  2300. func (x *FindChatRoomMsgRequest) Reset() {
  2301. *x = FindChatRoomMsgRequest{}
  2302. if protoimpl.UnsafeEnabled {
  2303. mi := &file_common_proto_msgTypes[38]
  2304. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2305. ms.StoreMessageInfo(mi)
  2306. }
  2307. }
  2308. func (x *FindChatRoomMsgRequest) String() string {
  2309. return protoimpl.X.MessageStringOf(x)
  2310. }
  2311. func (*FindChatRoomMsgRequest) ProtoMessage() {}
  2312. func (x *FindChatRoomMsgRequest) ProtoReflect() protoreflect.Message {
  2313. mi := &file_common_proto_msgTypes[38]
  2314. if protoimpl.UnsafeEnabled && x != nil {
  2315. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2316. if ms.LoadMessageInfo() == nil {
  2317. ms.StoreMessageInfo(mi)
  2318. }
  2319. return ms
  2320. }
  2321. return mi.MessageOf(x)
  2322. }
  2323. // Deprecated: Use FindChatRoomMsgRequest.ProtoReflect.Descriptor instead.
  2324. func (*FindChatRoomMsgRequest) Descriptor() ([]byte, []int) {
  2325. return file_common_proto_rawDescGZIP(), []int{38}
  2326. }
  2327. func (x *FindChatRoomMsgRequest) GetRoomId() int64 {
  2328. if x != nil {
  2329. return x.RoomId
  2330. }
  2331. return 0
  2332. }
  2333. type RoomIDRequest struct {
  2334. state protoimpl.MessageState
  2335. sizeCache protoimpl.SizeCache
  2336. unknownFields protoimpl.UnknownFields
  2337. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"`
  2338. }
  2339. func (x *RoomIDRequest) Reset() {
  2340. *x = RoomIDRequest{}
  2341. if protoimpl.UnsafeEnabled {
  2342. mi := &file_common_proto_msgTypes[39]
  2343. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2344. ms.StoreMessageInfo(mi)
  2345. }
  2346. }
  2347. func (x *RoomIDRequest) String() string {
  2348. return protoimpl.X.MessageStringOf(x)
  2349. }
  2350. func (*RoomIDRequest) ProtoMessage() {}
  2351. func (x *RoomIDRequest) ProtoReflect() protoreflect.Message {
  2352. mi := &file_common_proto_msgTypes[39]
  2353. if protoimpl.UnsafeEnabled && x != nil {
  2354. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2355. if ms.LoadMessageInfo() == nil {
  2356. ms.StoreMessageInfo(mi)
  2357. }
  2358. return ms
  2359. }
  2360. return mi.MessageOf(x)
  2361. }
  2362. // Deprecated: Use RoomIDRequest.ProtoReflect.Descriptor instead.
  2363. func (*RoomIDRequest) Descriptor() ([]byte, []int) {
  2364. return file_common_proto_rawDescGZIP(), []int{39}
  2365. }
  2366. func (x *RoomIDRequest) GetRoomId() int64 {
  2367. if x != nil {
  2368. return x.RoomId
  2369. }
  2370. return 0
  2371. }
  2372. type FindChatRecordListRequest struct {
  2373. state protoimpl.MessageState
  2374. sizeCache protoimpl.SizeCache
  2375. unknownFields protoimpl.UnknownFields
  2376. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  2377. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  2378. RoomId int64 `protobuf:"varint,3,opt,name=roomId,proto3" json:"roomId"`
  2379. }
  2380. func (x *FindChatRecordListRequest) Reset() {
  2381. *x = FindChatRecordListRequest{}
  2382. if protoimpl.UnsafeEnabled {
  2383. mi := &file_common_proto_msgTypes[40]
  2384. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2385. ms.StoreMessageInfo(mi)
  2386. }
  2387. }
  2388. func (x *FindChatRecordListRequest) String() string {
  2389. return protoimpl.X.MessageStringOf(x)
  2390. }
  2391. func (*FindChatRecordListRequest) ProtoMessage() {}
  2392. func (x *FindChatRecordListRequest) ProtoReflect() protoreflect.Message {
  2393. mi := &file_common_proto_msgTypes[40]
  2394. if protoimpl.UnsafeEnabled && x != nil {
  2395. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2396. if ms.LoadMessageInfo() == nil {
  2397. ms.StoreMessageInfo(mi)
  2398. }
  2399. return ms
  2400. }
  2401. return mi.MessageOf(x)
  2402. }
  2403. // Deprecated: Use FindChatRecordListRequest.ProtoReflect.Descriptor instead.
  2404. func (*FindChatRecordListRequest) Descriptor() ([]byte, []int) {
  2405. return file_common_proto_rawDescGZIP(), []int{40}
  2406. }
  2407. func (x *FindChatRecordListRequest) GetNextId() int64 {
  2408. if x != nil {
  2409. return x.NextId
  2410. }
  2411. return 0
  2412. }
  2413. func (x *FindChatRecordListRequest) GetOffset() int64 {
  2414. if x != nil {
  2415. return x.Offset
  2416. }
  2417. return 0
  2418. }
  2419. func (x *FindChatRecordListRequest) GetRoomId() int64 {
  2420. if x != nil {
  2421. return x.RoomId
  2422. }
  2423. return 0
  2424. }
  2425. type IsLike struct {
  2426. state protoimpl.MessageState
  2427. sizeCache protoimpl.SizeCache
  2428. unknownFields protoimpl.UnknownFields
  2429. IsLike bool `protobuf:"varint,1,opt,name=isLike,proto3" json:"isLike"` // 是否喜欢(关注)
  2430. }
  2431. func (x *IsLike) Reset() {
  2432. *x = IsLike{}
  2433. if protoimpl.UnsafeEnabled {
  2434. mi := &file_common_proto_msgTypes[41]
  2435. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2436. ms.StoreMessageInfo(mi)
  2437. }
  2438. }
  2439. func (x *IsLike) String() string {
  2440. return protoimpl.X.MessageStringOf(x)
  2441. }
  2442. func (*IsLike) ProtoMessage() {}
  2443. func (x *IsLike) ProtoReflect() protoreflect.Message {
  2444. mi := &file_common_proto_msgTypes[41]
  2445. if protoimpl.UnsafeEnabled && x != nil {
  2446. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2447. if ms.LoadMessageInfo() == nil {
  2448. ms.StoreMessageInfo(mi)
  2449. }
  2450. return ms
  2451. }
  2452. return mi.MessageOf(x)
  2453. }
  2454. // Deprecated: Use IsLike.ProtoReflect.Descriptor instead.
  2455. func (*IsLike) Descriptor() ([]byte, []int) {
  2456. return file_common_proto_rawDescGZIP(), []int{41}
  2457. }
  2458. func (x *IsLike) GetIsLike() bool {
  2459. if x != nil {
  2460. return x.IsLike
  2461. }
  2462. return false
  2463. }
  2464. type BalanceRequest struct {
  2465. state protoimpl.MessageState
  2466. sizeCache protoimpl.SizeCache
  2467. unknownFields protoimpl.UnknownFields
  2468. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  2469. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  2470. Balance int64 `protobuf:"varint,3,opt,name=balance,proto3" json:"balance"` // 充值或者减少的金额
  2471. }
  2472. func (x *BalanceRequest) Reset() {
  2473. *x = BalanceRequest{}
  2474. if protoimpl.UnsafeEnabled {
  2475. mi := &file_common_proto_msgTypes[42]
  2476. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2477. ms.StoreMessageInfo(mi)
  2478. }
  2479. }
  2480. func (x *BalanceRequest) String() string {
  2481. return protoimpl.X.MessageStringOf(x)
  2482. }
  2483. func (*BalanceRequest) ProtoMessage() {}
  2484. func (x *BalanceRequest) ProtoReflect() protoreflect.Message {
  2485. mi := &file_common_proto_msgTypes[42]
  2486. if protoimpl.UnsafeEnabled && x != nil {
  2487. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2488. if ms.LoadMessageInfo() == nil {
  2489. ms.StoreMessageInfo(mi)
  2490. }
  2491. return ms
  2492. }
  2493. return mi.MessageOf(x)
  2494. }
  2495. // Deprecated: Use BalanceRequest.ProtoReflect.Descriptor instead.
  2496. func (*BalanceRequest) Descriptor() ([]byte, []int) {
  2497. return file_common_proto_rawDescGZIP(), []int{42}
  2498. }
  2499. func (x *BalanceRequest) GetPersonID() string {
  2500. if x != nil {
  2501. return x.PersonID
  2502. }
  2503. return ""
  2504. }
  2505. func (x *BalanceRequest) GetPersonType() string {
  2506. if x != nil {
  2507. return x.PersonType
  2508. }
  2509. return ""
  2510. }
  2511. func (x *BalanceRequest) GetBalance() int64 {
  2512. if x != nil {
  2513. return x.Balance
  2514. }
  2515. return 0
  2516. }
  2517. type RandomNum struct {
  2518. state protoimpl.MessageState
  2519. sizeCache protoimpl.SizeCache
  2520. unknownFields protoimpl.UnknownFields
  2521. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 随机的数量
  2522. }
  2523. func (x *RandomNum) Reset() {
  2524. *x = RandomNum{}
  2525. if protoimpl.UnsafeEnabled {
  2526. mi := &file_common_proto_msgTypes[43]
  2527. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2528. ms.StoreMessageInfo(mi)
  2529. }
  2530. }
  2531. func (x *RandomNum) String() string {
  2532. return protoimpl.X.MessageStringOf(x)
  2533. }
  2534. func (*RandomNum) ProtoMessage() {}
  2535. func (x *RandomNum) ProtoReflect() protoreflect.Message {
  2536. mi := &file_common_proto_msgTypes[43]
  2537. if protoimpl.UnsafeEnabled && x != nil {
  2538. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2539. if ms.LoadMessageInfo() == nil {
  2540. ms.StoreMessageInfo(mi)
  2541. }
  2542. return ms
  2543. }
  2544. return mi.MessageOf(x)
  2545. }
  2546. // Deprecated: Use RandomNum.ProtoReflect.Descriptor instead.
  2547. func (*RandomNum) Descriptor() ([]byte, []int) {
  2548. return file_common_proto_rawDescGZIP(), []int{43}
  2549. }
  2550. func (x *RandomNum) GetNum() int64 {
  2551. if x != nil {
  2552. return x.Num
  2553. }
  2554. return 0
  2555. }
  2556. type RandomNumAndSex struct {
  2557. state protoimpl.MessageState
  2558. sizeCache protoimpl.SizeCache
  2559. unknownFields protoimpl.UnknownFields
  2560. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 随机的数量
  2561. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 对方的性别
  2562. }
  2563. func (x *RandomNumAndSex) Reset() {
  2564. *x = RandomNumAndSex{}
  2565. if protoimpl.UnsafeEnabled {
  2566. mi := &file_common_proto_msgTypes[44]
  2567. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2568. ms.StoreMessageInfo(mi)
  2569. }
  2570. }
  2571. func (x *RandomNumAndSex) String() string {
  2572. return protoimpl.X.MessageStringOf(x)
  2573. }
  2574. func (*RandomNumAndSex) ProtoMessage() {}
  2575. func (x *RandomNumAndSex) ProtoReflect() protoreflect.Message {
  2576. mi := &file_common_proto_msgTypes[44]
  2577. if protoimpl.UnsafeEnabled && x != nil {
  2578. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2579. if ms.LoadMessageInfo() == nil {
  2580. ms.StoreMessageInfo(mi)
  2581. }
  2582. return ms
  2583. }
  2584. return mi.MessageOf(x)
  2585. }
  2586. // Deprecated: Use RandomNumAndSex.ProtoReflect.Descriptor instead.
  2587. func (*RandomNumAndSex) Descriptor() ([]byte, []int) {
  2588. return file_common_proto_rawDescGZIP(), []int{44}
  2589. }
  2590. func (x *RandomNumAndSex) GetNum() int64 {
  2591. if x != nil {
  2592. return x.Num
  2593. }
  2594. return 0
  2595. }
  2596. func (x *RandomNumAndSex) GetSex() int64 {
  2597. if x != nil {
  2598. return x.Sex
  2599. }
  2600. return 0
  2601. }
  2602. type MemeRequest struct {
  2603. state protoimpl.MessageState
  2604. sizeCache protoimpl.SizeCache
  2605. unknownFields protoimpl.UnknownFields
  2606. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  2607. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  2608. Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type"`
  2609. }
  2610. func (x *MemeRequest) Reset() {
  2611. *x = MemeRequest{}
  2612. if protoimpl.UnsafeEnabled {
  2613. mi := &file_common_proto_msgTypes[45]
  2614. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2615. ms.StoreMessageInfo(mi)
  2616. }
  2617. }
  2618. func (x *MemeRequest) String() string {
  2619. return protoimpl.X.MessageStringOf(x)
  2620. }
  2621. func (*MemeRequest) ProtoMessage() {}
  2622. func (x *MemeRequest) ProtoReflect() protoreflect.Message {
  2623. mi := &file_common_proto_msgTypes[45]
  2624. if protoimpl.UnsafeEnabled && x != nil {
  2625. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2626. if ms.LoadMessageInfo() == nil {
  2627. ms.StoreMessageInfo(mi)
  2628. }
  2629. return ms
  2630. }
  2631. return mi.MessageOf(x)
  2632. }
  2633. // Deprecated: Use MemeRequest.ProtoReflect.Descriptor instead.
  2634. func (*MemeRequest) Descriptor() ([]byte, []int) {
  2635. return file_common_proto_rawDescGZIP(), []int{45}
  2636. }
  2637. func (x *MemeRequest) GetNextId() int64 {
  2638. if x != nil {
  2639. return x.NextId
  2640. }
  2641. return 0
  2642. }
  2643. func (x *MemeRequest) GetOffset() int64 {
  2644. if x != nil {
  2645. return x.Offset
  2646. }
  2647. return 0
  2648. }
  2649. func (x *MemeRequest) GetType() string {
  2650. if x != nil {
  2651. return x.Type
  2652. }
  2653. return ""
  2654. }
  2655. type CommonTextList struct {
  2656. state protoimpl.MessageState
  2657. sizeCache protoimpl.SizeCache
  2658. unknownFields protoimpl.UnknownFields
  2659. List []string `protobuf:"bytes,1,rep,name=list,proto3" json:"list"` // 需要的数据集合(随机表情包、随机打招呼)
  2660. }
  2661. func (x *CommonTextList) Reset() {
  2662. *x = CommonTextList{}
  2663. if protoimpl.UnsafeEnabled {
  2664. mi := &file_common_proto_msgTypes[46]
  2665. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2666. ms.StoreMessageInfo(mi)
  2667. }
  2668. }
  2669. func (x *CommonTextList) String() string {
  2670. return protoimpl.X.MessageStringOf(x)
  2671. }
  2672. func (*CommonTextList) ProtoMessage() {}
  2673. func (x *CommonTextList) ProtoReflect() protoreflect.Message {
  2674. mi := &file_common_proto_msgTypes[46]
  2675. if protoimpl.UnsafeEnabled && x != nil {
  2676. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2677. if ms.LoadMessageInfo() == nil {
  2678. ms.StoreMessageInfo(mi)
  2679. }
  2680. return ms
  2681. }
  2682. return mi.MessageOf(x)
  2683. }
  2684. // Deprecated: Use CommonTextList.ProtoReflect.Descriptor instead.
  2685. func (*CommonTextList) Descriptor() ([]byte, []int) {
  2686. return file_common_proto_rawDescGZIP(), []int{46}
  2687. }
  2688. func (x *CommonTextList) GetList() []string {
  2689. if x != nil {
  2690. return x.List
  2691. }
  2692. return nil
  2693. }
  2694. type MemeTitleList struct {
  2695. state protoimpl.MessageState
  2696. sizeCache protoimpl.SizeCache
  2697. unknownFields protoimpl.UnknownFields
  2698. List []*MemeTitle `protobuf:"bytes,1,rep,name=list,proto3" json:"list"` // 需要的数据集合(随机表情包、随机打招呼)
  2699. }
  2700. func (x *MemeTitleList) Reset() {
  2701. *x = MemeTitleList{}
  2702. if protoimpl.UnsafeEnabled {
  2703. mi := &file_common_proto_msgTypes[47]
  2704. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2705. ms.StoreMessageInfo(mi)
  2706. }
  2707. }
  2708. func (x *MemeTitleList) String() string {
  2709. return protoimpl.X.MessageStringOf(x)
  2710. }
  2711. func (*MemeTitleList) ProtoMessage() {}
  2712. func (x *MemeTitleList) ProtoReflect() protoreflect.Message {
  2713. mi := &file_common_proto_msgTypes[47]
  2714. if protoimpl.UnsafeEnabled && x != nil {
  2715. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2716. if ms.LoadMessageInfo() == nil {
  2717. ms.StoreMessageInfo(mi)
  2718. }
  2719. return ms
  2720. }
  2721. return mi.MessageOf(x)
  2722. }
  2723. // Deprecated: Use MemeTitleList.ProtoReflect.Descriptor instead.
  2724. func (*MemeTitleList) Descriptor() ([]byte, []int) {
  2725. return file_common_proto_rawDescGZIP(), []int{47}
  2726. }
  2727. func (x *MemeTitleList) GetList() []*MemeTitle {
  2728. if x != nil {
  2729. return x.List
  2730. }
  2731. return nil
  2732. }
  2733. type MemeTitle struct {
  2734. state protoimpl.MessageState
  2735. sizeCache protoimpl.SizeCache
  2736. unknownFields protoimpl.UnknownFields
  2737. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name"` // 名称
  2738. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  2739. }
  2740. func (x *MemeTitle) Reset() {
  2741. *x = MemeTitle{}
  2742. if protoimpl.UnsafeEnabled {
  2743. mi := &file_common_proto_msgTypes[48]
  2744. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2745. ms.StoreMessageInfo(mi)
  2746. }
  2747. }
  2748. func (x *MemeTitle) String() string {
  2749. return protoimpl.X.MessageStringOf(x)
  2750. }
  2751. func (*MemeTitle) ProtoMessage() {}
  2752. func (x *MemeTitle) ProtoReflect() protoreflect.Message {
  2753. mi := &file_common_proto_msgTypes[48]
  2754. if protoimpl.UnsafeEnabled && x != nil {
  2755. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2756. if ms.LoadMessageInfo() == nil {
  2757. ms.StoreMessageInfo(mi)
  2758. }
  2759. return ms
  2760. }
  2761. return mi.MessageOf(x)
  2762. }
  2763. // Deprecated: Use MemeTitle.ProtoReflect.Descriptor instead.
  2764. func (*MemeTitle) Descriptor() ([]byte, []int) {
  2765. return file_common_proto_rawDescGZIP(), []int{48}
  2766. }
  2767. func (x *MemeTitle) GetName() string {
  2768. if x != nil {
  2769. return x.Name
  2770. }
  2771. return ""
  2772. }
  2773. func (x *MemeTitle) GetType() string {
  2774. if x != nil {
  2775. return x.Type
  2776. }
  2777. return ""
  2778. }
  2779. type MemeList struct {
  2780. state protoimpl.MessageState
  2781. sizeCache protoimpl.SizeCache
  2782. unknownFields protoimpl.UnknownFields
  2783. List []string `protobuf:"bytes,1,rep,name=list,proto3" json:"list"` // 表情包列表
  2784. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  2785. }
  2786. func (x *MemeList) Reset() {
  2787. *x = MemeList{}
  2788. if protoimpl.UnsafeEnabled {
  2789. mi := &file_common_proto_msgTypes[49]
  2790. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2791. ms.StoreMessageInfo(mi)
  2792. }
  2793. }
  2794. func (x *MemeList) String() string {
  2795. return protoimpl.X.MessageStringOf(x)
  2796. }
  2797. func (*MemeList) ProtoMessage() {}
  2798. func (x *MemeList) ProtoReflect() protoreflect.Message {
  2799. mi := &file_common_proto_msgTypes[49]
  2800. if protoimpl.UnsafeEnabled && x != nil {
  2801. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2802. if ms.LoadMessageInfo() == nil {
  2803. ms.StoreMessageInfo(mi)
  2804. }
  2805. return ms
  2806. }
  2807. return mi.MessageOf(x)
  2808. }
  2809. // Deprecated: Use MemeList.ProtoReflect.Descriptor instead.
  2810. func (*MemeList) Descriptor() ([]byte, []int) {
  2811. return file_common_proto_rawDescGZIP(), []int{49}
  2812. }
  2813. func (x *MemeList) GetList() []string {
  2814. if x != nil {
  2815. return x.List
  2816. }
  2817. return nil
  2818. }
  2819. func (x *MemeList) GetNextId() int64 {
  2820. if x != nil {
  2821. return x.NextId
  2822. }
  2823. return 0
  2824. }
  2825. type ChatTopicList struct {
  2826. state protoimpl.MessageState
  2827. sizeCache protoimpl.SizeCache
  2828. unknownFields protoimpl.UnknownFields
  2829. List []string `protobuf:"bytes,1,rep,name=list,proto3" json:"list"` // 话题列表
  2830. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  2831. }
  2832. func (x *ChatTopicList) Reset() {
  2833. *x = ChatTopicList{}
  2834. if protoimpl.UnsafeEnabled {
  2835. mi := &file_common_proto_msgTypes[50]
  2836. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2837. ms.StoreMessageInfo(mi)
  2838. }
  2839. }
  2840. func (x *ChatTopicList) String() string {
  2841. return protoimpl.X.MessageStringOf(x)
  2842. }
  2843. func (*ChatTopicList) ProtoMessage() {}
  2844. func (x *ChatTopicList) ProtoReflect() protoreflect.Message {
  2845. mi := &file_common_proto_msgTypes[50]
  2846. if protoimpl.UnsafeEnabled && x != nil {
  2847. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2848. if ms.LoadMessageInfo() == nil {
  2849. ms.StoreMessageInfo(mi)
  2850. }
  2851. return ms
  2852. }
  2853. return mi.MessageOf(x)
  2854. }
  2855. // Deprecated: Use ChatTopicList.ProtoReflect.Descriptor instead.
  2856. func (*ChatTopicList) Descriptor() ([]byte, []int) {
  2857. return file_common_proto_rawDescGZIP(), []int{50}
  2858. }
  2859. func (x *ChatTopicList) GetList() []string {
  2860. if x != nil {
  2861. return x.List
  2862. }
  2863. return nil
  2864. }
  2865. func (x *ChatTopicList) GetNextId() int64 {
  2866. if x != nil {
  2867. return x.NextId
  2868. }
  2869. return 0
  2870. }
  2871. var File_common_proto protoreflect.FileDescriptor
  2872. var file_common_proto_rawDesc = []byte{
  2873. 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0a,
  2874. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x75, 0x0a, 0x1d, 0x55, 0x73,
  2875. 0x65, 0x72, 0x41, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e,
  2876. 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x70,
  2877. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64,
  2878. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  2879. 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x73, 0x65,
  2880. 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  2881. 0x09, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49,
  2882. 0x64, 0x22, 0xa1, 0x01, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x41, 0x6e, 0x64, 0x50, 0x61, 0x72,
  2883. 0x74, 0x6e, 0x65, 0x72, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72,
  2884. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61,
  2885. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e,
  2886. 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01,
  2887. 0x28, 0x09, 0x52, 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74,
  2888. 0x69, 0x66, 0x79, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  2889. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x26, 0x0a,
  2890. 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44, 0x18,
  2891. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74,
  2892. 0x69, 0x66, 0x79, 0x49, 0x44, 0x22, 0x42, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x31, 0x41, 0x6e,
  2893. 0x64, 0x55, 0x73, 0x65, 0x72, 0x32, 0x49, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x14, 0x0a,
  2894. 0x05, 0x75, 0x73, 0x65, 0x72, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x75, 0x73,
  2895. 0x65, 0x72, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x75, 0x73, 0x65, 0x72, 0x32, 0x18, 0x02, 0x20, 0x01,
  2896. 0x28, 0x09, 0x52, 0x05, 0x75, 0x73, 0x65, 0x72, 0x32, 0x22, 0x2e, 0x0a, 0x0e, 0x50, 0x61, 0x72,
  2897. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x70,
  2898. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  2899. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x22, 0x2b, 0x0a, 0x0d, 0x50, 0x65, 0x72,
  2900. 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65,
  2901. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65,
  2902. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x22, 0x49, 0x0a, 0x0b, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2903. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  2904. 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  2905. 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18,
  2906. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70,
  2907. 0x65, 0x22, 0x25, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d,
  2908. 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2909. 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x1d, 0x0a, 0x09, 0x57, 0x78, 0x43, 0x6f,
  2910. 0x6e, 0x66, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01,
  2911. 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0x90, 0x01, 0x0a, 0x0e, 0x57, 0x78, 0x43, 0x6f,
  2912. 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70,
  2913. 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64,
  2914. 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20,
  2915. 0x01, 0x28, 0x03, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x1a,
  2916. 0x0a, 0x08, 0x6e, 0x6f, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  2917. 0x52, 0x08, 0x6e, 0x6f, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69,
  2918. 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73,
  2919. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18,
  2920. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0xf3, 0x02, 0x0a, 0x08, 0x48,
  2921. 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
  2922. 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e,
  2923. 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e,
  2924. 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
  2925. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72,
  2926. 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  2927. 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18,
  2928. 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12,
  2929. 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67,
  2930. 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69,
  2931. 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65,
  2932. 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69,
  2933. 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2934. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x07, 0x74,
  2935. 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74,
  2936. 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61,
  2937. 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63,
  2938. 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e,
  2939. 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  2940. 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  2941. 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79,
  2942. 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04,
  2943. 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61,
  2944. 0x22, 0xdf, 0x02, 0x0a, 0x09, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x0e,
  2945. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a,
  2946. 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2947. 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76,
  2948. 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
  2949. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18,
  2950. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69,
  2951. 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69,
  2952. 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20,
  2953. 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73,
  2954. 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
  2955. 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18,
  2956. 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52,
  2957. 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e,
  2958. 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67,
  2959. 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64,
  2960. 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  2961. 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a,
  2962. 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09,
  2963. 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69,
  2964. 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12,
  2965. 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72,
  2966. 0x65, 0x61, 0x22, 0x5d, 0x0a, 0x11, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c,
  2967. 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
  2968. 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x6c, 0x6f, 0x6f, 0x6b, 0x65,
  2969. 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6c, 0x6f, 0x6f, 0x6b,
  2970. 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75,
  2971. 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75,
  2972. 0x6d, 0x22, 0xc4, 0x03, 0x0a, 0x14, 0x41, 0x64, 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d,
  2973. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  2974. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69,
  2975. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69,
  2976. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  2977. 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61,
  2978. 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28,
  2979. 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
  2980. 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
  2981. 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x66, 0x72, 0x6f, 0x6d, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x64,
  2982. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x72, 0x6f, 0x6d, 0x4f, 0x70, 0x65, 0x6e,
  2983. 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72,
  2984. 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74,
  2985. 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x43, 0x68, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01,
  2986. 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x43, 0x68, 0x61, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x73,
  2987. 0x46, 0x72, 0x6f, 0x6d, 0x55, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73,
  2988. 0x46, 0x72, 0x6f, 0x6d, 0x55, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x66, 0x72, 0x6f, 0x6d, 0x41, 0x70,
  2989. 0x70, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66, 0x72, 0x6f, 0x6d, 0x41,
  2990. 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x72, 0x6f, 0x6d, 0x4e, 0x61, 0x6d, 0x65,
  2991. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x72, 0x6f, 0x6d, 0x4e, 0x61, 0x6d, 0x65,
  2992. 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  2993. 0x6e, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c,
  2994. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74,
  2995. 0x75, 0x72, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61,
  2996. 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65,
  2997. 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65,
  2998. 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  2999. 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x10, 0x20, 0x01,
  3000. 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x22, 0x2c, 0x0a, 0x0c, 0x50, 0x65, 0x72, 0x73,
  3001. 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73,
  3002. 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72,
  3003. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x22, 0x39, 0x0a, 0x0d, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3004. 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18,
  3005. 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3006. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x04, 0x6c, 0x69, 0x73,
  3007. 0x74, 0x22, 0x90, 0x03, 0x0a, 0x08, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x12, 0x0e,
  3008. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a,
  3009. 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  3010. 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76,
  3011. 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
  3012. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18,
  3013. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69,
  3014. 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69,
  3015. 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20,
  3016. 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73,
  3017. 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
  3018. 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26,
  3019. 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65,
  3020. 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63,
  3021. 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e,
  3022. 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e,
  3023. 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  3024. 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0b,
  3025. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69,
  3026. 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73,
  3027. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x30, 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69,
  3028. 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  3029. 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49,
  3030. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61,
  3031. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x0e, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61, 0x67,
  3032. 0x4c, 0x69, 0x73, 0x74, 0x22, 0x41, 0x0a, 0x0f, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65,
  3033. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
  3034. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12,
  3035. 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3036. 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x59, 0x0a, 0x15, 0x4c, 0x69, 0x73, 0x74, 0x50,
  3037. 0x61, 0x67, 0x65, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3038. 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  3039. 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73,
  3040. 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
  3041. 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
  3042. 0x65, 0x78, 0x22, 0x42, 0x0a, 0x10, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32, 0x52,
  3043. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
  3044. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16,
  3045. 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  3046. 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x86, 0x01, 0x0a, 0x18, 0x4c, 0x69, 0x73, 0x74, 0x50,
  3047. 0x61, 0x67, 0x65, 0x41, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,
  3048. 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20,
  3049. 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f,
  3050. 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66,
  3051. 0x73, 0x65, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18,
  3052. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12,
  3053. 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20,
  3054. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22,
  3055. 0x2c, 0x0a, 0x14, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65,
  3056. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65,
  3057. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x41, 0x0a,
  3058. 0x15, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52,
  3059. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18,
  3060. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x12, 0x0a, 0x04,
  3061. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65,
  3062. 0x22, 0x2c, 0x0a, 0x16, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69,
  3063. 0x61, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69,
  3064. 0x6e, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x17,
  3065. 0x0a, 0x03, 0x49, 0x64, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03,
  3066. 0x28, 0x03, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22, 0x37, 0x0a, 0x0c, 0x54, 0x61, 0x67, 0x4c, 0x69,
  3067. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x27, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18,
  3068. 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3069. 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
  3070. 0x22, 0x2d, 0x0a, 0x07, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  3071. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e,
  3072. 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22,
  3073. 0x1a, 0x0a, 0x06, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78,
  3074. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x34, 0x0a, 0x14, 0x52,
  3075. 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x52, 0x65,
  3076. 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65,
  3077. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63,
  3078. 0x65, 0x22, 0xc2, 0x02, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  3079. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a,
  3080. 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3081. 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76,
  3082. 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
  3083. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18,
  3084. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x69,
  3085. 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x62, 0x69,
  3086. 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73,
  3087. 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74,
  3088. 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69,
  3089. 0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64,
  3090. 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e,
  3091. 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67,
  3092. 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
  3093. 0x65, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
  3094. 0x65, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x09,
  3095. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12,
  3096. 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69,
  3097. 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09,
  3098. 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x22, 0x61, 0x0a, 0x15, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65,
  3099. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  3100. 0x30, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e,
  3101. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4f, 0x6e, 0x6c, 0x69, 0x6e,
  3102. 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73,
  3103. 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  3104. 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0xf6, 0x02, 0x0a, 0x10, 0x4f, 0x6e,
  3105. 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a,
  3106. 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3107. 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65,
  3108. 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  3109. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69,
  3110. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69,
  3111. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  3112. 0x55, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61,
  3113. 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28,
  3114. 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20,
  3115. 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73,
  3116. 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
  3117. 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1c,
  3118. 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
  3119. 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  3120. 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  3121. 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79,
  3122. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04,
  3123. 0x61, 0x72, 0x65, 0x61, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61,
  3124. 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69,
  3125. 0x63, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64,
  3126. 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c,
  3127. 0x69, 0x73, 0x74, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69,
  3128. 0x73, 0x74, 0x22, 0x5d, 0x0a, 0x13, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  3129. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2e, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  3130. 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3131. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49,
  3132. 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78,
  3133. 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
  3134. 0x64, 0x22, 0xa7, 0x01, 0x0a, 0x0b, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73,
  3135. 0x67, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  3136. 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x04, 0x73, 0x65, 0x6c,
  3137. 0x66, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3138. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d,
  3139. 0x73, 0x67, 0x52, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x12, 0x2f, 0x0a, 0x05, 0x6f, 0x74, 0x68, 0x65,
  3140. 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3141. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d,
  3142. 0x73, 0x67, 0x52, 0x05, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b,
  3143. 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
  3144. 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x22, 0x67, 0x0a, 0x0d, 0x43,
  3145. 0x68, 0x61, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x0e, 0x0a, 0x02,
  3146. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04,
  3147. 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
  3148. 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
  3149. 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06,
  3150. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x76,
  3151. 0x61, 0x74, 0x61, 0x72, 0x22, 0x91, 0x02, 0x0a, 0x0e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63,
  3152. 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x65, 0x73, 0x73, 0x61,
  3153. 0x67, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6d, 0x65, 0x73, 0x73,
  3154. 0x61, 0x67, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65,
  3155. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12,
  3156. 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
  3157. 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65,
  3158. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16,
  3159. 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  3160. 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x53, 0x65, 0x6c, 0x66,
  3161. 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x53, 0x65, 0x6c, 0x66, 0x12, 0x1a,
  3162. 0x0a, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03,
  3163. 0x52, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74,
  3164. 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74,
  3165. 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4d, 0x73, 0x67, 0x18,
  3166. 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4d, 0x73, 0x67,
  3167. 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08,
  3168. 0x52, 0x06, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x22, 0x46, 0x0a, 0x0e, 0x43, 0x68, 0x61, 0x74,
  3169. 0x49, 0x73, 0x52, 0x65, 0x61, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x65,
  3170. 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6d,
  3171. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d,
  3172. 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64,
  3173. 0x22, 0x22, 0x0a, 0x08, 0x47, 0x6f, 0x54, 0x6f, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x16, 0x0a, 0x06,
  3174. 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f,
  3175. 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x45, 0x0a, 0x07, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
  3176. 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3177. 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x6d, 0x61, 0x74,
  3178. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  3179. 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x22, 0x30, 0x0a, 0x16, 0x46,
  3180. 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65,
  3181. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18,
  3182. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x27, 0x0a,
  3183. 0x0d, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
  3184. 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  3185. 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x63, 0x0a, 0x19, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  3186. 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  3187. 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20,
  3188. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f,
  3189. 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66,
  3190. 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x03, 0x20,
  3191. 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x20, 0x0a, 0x06, 0x49,
  3192. 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x18,
  3193. 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x66, 0x0a,
  3194. 0x0e, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  3195. 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28,
  3196. 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70,
  3197. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  3198. 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x62,
  3199. 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61,
  3200. 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x1d, 0x0a, 0x09, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e,
  3201. 0x75, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  3202. 0x03, 0x6e, 0x75, 0x6d, 0x22, 0x35, 0x0a, 0x0f, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75,
  3203. 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01,
  3204. 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78,
  3205. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x51, 0x0a, 0x0b, 0x4d,
  3206. 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65,
  3207. 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74,
  3208. 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01,
  3209. 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79,
  3210. 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x24,
  3211. 0x0a, 0x0e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74,
  3212. 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04,
  3213. 0x6c, 0x69, 0x73, 0x74, 0x22, 0x3a, 0x0a, 0x0d, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c,
  3214. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  3215. 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3216. 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
  3217. 0x22, 0x33, 0x0a, 0x09, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x12, 0x0a,
  3218. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
  3219. 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  3220. 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x36, 0x0a, 0x08, 0x4d, 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73,
  3221. 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52,
  3222. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18,
  3223. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x3b, 0x0a,
  3224. 0x0d, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12,
  3225. 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69,
  3226. 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01,
  3227. 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x42, 0x43, 0x0a, 0x0a, 0x61, 0x70,
  3228. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x50, 0x01, 0x5a, 0x33, 0x67, 0x69, 0x74, 0x2e,
  3229. 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65,
  3230. 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70,
  3231. 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62,
  3232. 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  3233. }
  3234. var (
  3235. file_common_proto_rawDescOnce sync.Once
  3236. file_common_proto_rawDescData = file_common_proto_rawDesc
  3237. )
  3238. func file_common_proto_rawDescGZIP() []byte {
  3239. file_common_proto_rawDescOnce.Do(func() {
  3240. file_common_proto_rawDescData = protoimpl.X.CompressGZIP(file_common_proto_rawDescData)
  3241. })
  3242. return file_common_proto_rawDescData
  3243. }
  3244. var file_common_proto_msgTypes = make([]protoimpl.MessageInfo, 51)
  3245. var file_common_proto_goTypes = []interface{}{
  3246. (*UserAndPartnerIdentifyIdParam)(nil), // 0: api.common.UserAndPartnerIdentifyIdParam
  3247. (*UserAndPartnerParam)(nil), // 1: api.common.UserAndPartnerParam
  3248. (*User1AndUser2IdParam)(nil), // 2: api.common.User1AndUser2IdParam
  3249. (*PartnerIDParam)(nil), // 3: api.common.PartnerIDParam
  3250. (*PersonIDParam)(nil), // 4: api.common.PersonIDParam
  3251. (*PersonParam)(nil), // 5: api.common.PersonParam
  3252. (*UserIDParam)(nil), // 6: api.common.UserIDParam
  3253. (*WxConfReq)(nil), // 7: api.common.WxConfReq
  3254. (*WxConfResponse)(nil), // 8: api.common.WxConfResponse
  3255. (*HomeInfo)(nil), // 9: api.common.HomeInfo
  3256. (*PersonMsg)(nil), // 10: api.common.PersonMsg
  3257. (*LookedAndLikedNum)(nil), // 11: api.common.LookedAndLikedNum
  3258. (*AddFriendMessageInfo)(nil), // 12: api.common.AddFriendMessageInfo
  3259. (*PersonIDList)(nil), // 13: api.common.PersonIDList
  3260. (*PersonDBReply)(nil), // 14: api.common.PersonDBReply
  3261. (*PersonDB)(nil), // 15: api.common.PersonDB
  3262. (*ListPageRequest)(nil), // 16: api.common.ListPageRequest
  3263. (*ListPageAndSexRequest)(nil), // 17: api.common.ListPageAndSexRequest
  3264. (*ListPage2Request)(nil), // 18: api.common.ListPage2Request
  3265. (*ListPageAndPersonRequest)(nil), // 19: api.common.ListPageAndPersonRequest
  3266. (*SendPhoneCodeRequest)(nil), // 20: api.common.SendPhoneCodeRequest
  3267. (*CheckPhoneCodeRequest)(nil), // 21: api.common.CheckPhoneCodeRequest
  3268. (*UploadMaterialResponse)(nil), // 22: api.common.UploadMaterialResponse
  3269. (*Ids)(nil), // 23: api.common.Ids
  3270. (*TagListReply)(nil), // 24: api.common.TagListReply
  3271. (*TagList)(nil), // 25: api.common.TagList
  3272. (*SexReq)(nil), // 26: api.common.SexReq
  3273. (*RandomIntroduceReply)(nil), // 27: api.common.RandomIntroduceReply
  3274. (*UpdateInformationRequest)(nil), // 28: api.common.UpdateInformationRequest
  3275. (*OnlinePersonListReply)(nil), // 29: api.common.OnlinePersonListReply
  3276. (*OnlinePersonInfo)(nil), // 30: api.common.OnlinePersonInfo
  3277. (*ChatRecordListReply)(nil), // 31: api.common.ChatRecordListReply
  3278. (*ChatRoomMsg)(nil), // 32: api.common.ChatRoomMsg
  3279. (*ChatPersonMsg)(nil), // 33: api.common.ChatPersonMsg
  3280. (*ChatRecordInfo)(nil), // 34: api.common.ChatRecordInfo
  3281. (*ChatIsReadInfo)(nil), // 35: api.common.ChatIsReadInfo
  3282. (*GoToRoom)(nil), // 36: api.common.GoToRoom
  3283. (*Message)(nil), // 37: api.common.Message
  3284. (*FindChatRoomMsgRequest)(nil), // 38: api.common.FindChatRoomMsgRequest
  3285. (*RoomIDRequest)(nil), // 39: api.common.RoomIDRequest
  3286. (*FindChatRecordListRequest)(nil), // 40: api.common.FindChatRecordListRequest
  3287. (*IsLike)(nil), // 41: api.common.IsLike
  3288. (*BalanceRequest)(nil), // 42: api.common.BalanceRequest
  3289. (*RandomNum)(nil), // 43: api.common.RandomNum
  3290. (*RandomNumAndSex)(nil), // 44: api.common.RandomNumAndSex
  3291. (*MemeRequest)(nil), // 45: api.common.MemeRequest
  3292. (*CommonTextList)(nil), // 46: api.common.CommonTextList
  3293. (*MemeTitleList)(nil), // 47: api.common.MemeTitleList
  3294. (*MemeTitle)(nil), // 48: api.common.MemeTitle
  3295. (*MemeList)(nil), // 49: api.common.MemeList
  3296. (*ChatTopicList)(nil), // 50: api.common.ChatTopicList
  3297. }
  3298. var file_common_proto_depIdxs = []int32{
  3299. 25, // 0: api.common.HomeInfo.tagList:type_name -> api.common.TagList
  3300. 15, // 1: api.common.PersonDBReply.list:type_name -> api.common.PersonDB
  3301. 25, // 2: api.common.TagListReply.list:type_name -> api.common.TagList
  3302. 30, // 3: api.common.OnlinePersonListReply.list:type_name -> api.common.OnlinePersonInfo
  3303. 34, // 4: api.common.ChatRecordListReply.list:type_name -> api.common.ChatRecordInfo
  3304. 33, // 5: api.common.ChatRoomMsg.self:type_name -> api.common.ChatPersonMsg
  3305. 33, // 6: api.common.ChatRoomMsg.other:type_name -> api.common.ChatPersonMsg
  3306. 37, // 7: api.common.ChatRecordInfo.message:type_name -> api.common.Message
  3307. 48, // 8: api.common.MemeTitleList.list:type_name -> api.common.MemeTitle
  3308. 9, // [9:9] is the sub-list for method output_type
  3309. 9, // [9:9] is the sub-list for method input_type
  3310. 9, // [9:9] is the sub-list for extension type_name
  3311. 9, // [9:9] is the sub-list for extension extendee
  3312. 0, // [0:9] is the sub-list for field type_name
  3313. }
  3314. func init() { file_common_proto_init() }
  3315. func file_common_proto_init() {
  3316. if File_common_proto != nil {
  3317. return
  3318. }
  3319. if !protoimpl.UnsafeEnabled {
  3320. file_common_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  3321. switch v := v.(*UserAndPartnerIdentifyIdParam); i {
  3322. case 0:
  3323. return &v.state
  3324. case 1:
  3325. return &v.sizeCache
  3326. case 2:
  3327. return &v.unknownFields
  3328. default:
  3329. return nil
  3330. }
  3331. }
  3332. file_common_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  3333. switch v := v.(*UserAndPartnerParam); i {
  3334. case 0:
  3335. return &v.state
  3336. case 1:
  3337. return &v.sizeCache
  3338. case 2:
  3339. return &v.unknownFields
  3340. default:
  3341. return nil
  3342. }
  3343. }
  3344. file_common_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  3345. switch v := v.(*User1AndUser2IdParam); i {
  3346. case 0:
  3347. return &v.state
  3348. case 1:
  3349. return &v.sizeCache
  3350. case 2:
  3351. return &v.unknownFields
  3352. default:
  3353. return nil
  3354. }
  3355. }
  3356. file_common_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  3357. switch v := v.(*PartnerIDParam); i {
  3358. case 0:
  3359. return &v.state
  3360. case 1:
  3361. return &v.sizeCache
  3362. case 2:
  3363. return &v.unknownFields
  3364. default:
  3365. return nil
  3366. }
  3367. }
  3368. file_common_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  3369. switch v := v.(*PersonIDParam); i {
  3370. case 0:
  3371. return &v.state
  3372. case 1:
  3373. return &v.sizeCache
  3374. case 2:
  3375. return &v.unknownFields
  3376. default:
  3377. return nil
  3378. }
  3379. }
  3380. file_common_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  3381. switch v := v.(*PersonParam); i {
  3382. case 0:
  3383. return &v.state
  3384. case 1:
  3385. return &v.sizeCache
  3386. case 2:
  3387. return &v.unknownFields
  3388. default:
  3389. return nil
  3390. }
  3391. }
  3392. file_common_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  3393. switch v := v.(*UserIDParam); i {
  3394. case 0:
  3395. return &v.state
  3396. case 1:
  3397. return &v.sizeCache
  3398. case 2:
  3399. return &v.unknownFields
  3400. default:
  3401. return nil
  3402. }
  3403. }
  3404. file_common_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  3405. switch v := v.(*WxConfReq); i {
  3406. case 0:
  3407. return &v.state
  3408. case 1:
  3409. return &v.sizeCache
  3410. case 2:
  3411. return &v.unknownFields
  3412. default:
  3413. return nil
  3414. }
  3415. }
  3416. file_common_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  3417. switch v := v.(*WxConfResponse); i {
  3418. case 0:
  3419. return &v.state
  3420. case 1:
  3421. return &v.sizeCache
  3422. case 2:
  3423. return &v.unknownFields
  3424. default:
  3425. return nil
  3426. }
  3427. }
  3428. file_common_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  3429. switch v := v.(*HomeInfo); i {
  3430. case 0:
  3431. return &v.state
  3432. case 1:
  3433. return &v.sizeCache
  3434. case 2:
  3435. return &v.unknownFields
  3436. default:
  3437. return nil
  3438. }
  3439. }
  3440. file_common_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  3441. switch v := v.(*PersonMsg); i {
  3442. case 0:
  3443. return &v.state
  3444. case 1:
  3445. return &v.sizeCache
  3446. case 2:
  3447. return &v.unknownFields
  3448. default:
  3449. return nil
  3450. }
  3451. }
  3452. file_common_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  3453. switch v := v.(*LookedAndLikedNum); i {
  3454. case 0:
  3455. return &v.state
  3456. case 1:
  3457. return &v.sizeCache
  3458. case 2:
  3459. return &v.unknownFields
  3460. default:
  3461. return nil
  3462. }
  3463. }
  3464. file_common_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  3465. switch v := v.(*AddFriendMessageInfo); i {
  3466. case 0:
  3467. return &v.state
  3468. case 1:
  3469. return &v.sizeCache
  3470. case 2:
  3471. return &v.unknownFields
  3472. default:
  3473. return nil
  3474. }
  3475. }
  3476. file_common_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  3477. switch v := v.(*PersonIDList); i {
  3478. case 0:
  3479. return &v.state
  3480. case 1:
  3481. return &v.sizeCache
  3482. case 2:
  3483. return &v.unknownFields
  3484. default:
  3485. return nil
  3486. }
  3487. }
  3488. file_common_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  3489. switch v := v.(*PersonDBReply); i {
  3490. case 0:
  3491. return &v.state
  3492. case 1:
  3493. return &v.sizeCache
  3494. case 2:
  3495. return &v.unknownFields
  3496. default:
  3497. return nil
  3498. }
  3499. }
  3500. file_common_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  3501. switch v := v.(*PersonDB); i {
  3502. case 0:
  3503. return &v.state
  3504. case 1:
  3505. return &v.sizeCache
  3506. case 2:
  3507. return &v.unknownFields
  3508. default:
  3509. return nil
  3510. }
  3511. }
  3512. file_common_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3513. switch v := v.(*ListPageRequest); i {
  3514. case 0:
  3515. return &v.state
  3516. case 1:
  3517. return &v.sizeCache
  3518. case 2:
  3519. return &v.unknownFields
  3520. default:
  3521. return nil
  3522. }
  3523. }
  3524. file_common_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3525. switch v := v.(*ListPageAndSexRequest); i {
  3526. case 0:
  3527. return &v.state
  3528. case 1:
  3529. return &v.sizeCache
  3530. case 2:
  3531. return &v.unknownFields
  3532. default:
  3533. return nil
  3534. }
  3535. }
  3536. file_common_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3537. switch v := v.(*ListPage2Request); i {
  3538. case 0:
  3539. return &v.state
  3540. case 1:
  3541. return &v.sizeCache
  3542. case 2:
  3543. return &v.unknownFields
  3544. default:
  3545. return nil
  3546. }
  3547. }
  3548. file_common_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3549. switch v := v.(*ListPageAndPersonRequest); i {
  3550. case 0:
  3551. return &v.state
  3552. case 1:
  3553. return &v.sizeCache
  3554. case 2:
  3555. return &v.unknownFields
  3556. default:
  3557. return nil
  3558. }
  3559. }
  3560. file_common_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3561. switch v := v.(*SendPhoneCodeRequest); i {
  3562. case 0:
  3563. return &v.state
  3564. case 1:
  3565. return &v.sizeCache
  3566. case 2:
  3567. return &v.unknownFields
  3568. default:
  3569. return nil
  3570. }
  3571. }
  3572. file_common_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3573. switch v := v.(*CheckPhoneCodeRequest); i {
  3574. case 0:
  3575. return &v.state
  3576. case 1:
  3577. return &v.sizeCache
  3578. case 2:
  3579. return &v.unknownFields
  3580. default:
  3581. return nil
  3582. }
  3583. }
  3584. file_common_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  3585. switch v := v.(*UploadMaterialResponse); i {
  3586. case 0:
  3587. return &v.state
  3588. case 1:
  3589. return &v.sizeCache
  3590. case 2:
  3591. return &v.unknownFields
  3592. default:
  3593. return nil
  3594. }
  3595. }
  3596. file_common_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  3597. switch v := v.(*Ids); i {
  3598. case 0:
  3599. return &v.state
  3600. case 1:
  3601. return &v.sizeCache
  3602. case 2:
  3603. return &v.unknownFields
  3604. default:
  3605. return nil
  3606. }
  3607. }
  3608. file_common_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  3609. switch v := v.(*TagListReply); i {
  3610. case 0:
  3611. return &v.state
  3612. case 1:
  3613. return &v.sizeCache
  3614. case 2:
  3615. return &v.unknownFields
  3616. default:
  3617. return nil
  3618. }
  3619. }
  3620. file_common_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  3621. switch v := v.(*TagList); i {
  3622. case 0:
  3623. return &v.state
  3624. case 1:
  3625. return &v.sizeCache
  3626. case 2:
  3627. return &v.unknownFields
  3628. default:
  3629. return nil
  3630. }
  3631. }
  3632. file_common_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  3633. switch v := v.(*SexReq); i {
  3634. case 0:
  3635. return &v.state
  3636. case 1:
  3637. return &v.sizeCache
  3638. case 2:
  3639. return &v.unknownFields
  3640. default:
  3641. return nil
  3642. }
  3643. }
  3644. file_common_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  3645. switch v := v.(*RandomIntroduceReply); i {
  3646. case 0:
  3647. return &v.state
  3648. case 1:
  3649. return &v.sizeCache
  3650. case 2:
  3651. return &v.unknownFields
  3652. default:
  3653. return nil
  3654. }
  3655. }
  3656. file_common_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  3657. switch v := v.(*UpdateInformationRequest); i {
  3658. case 0:
  3659. return &v.state
  3660. case 1:
  3661. return &v.sizeCache
  3662. case 2:
  3663. return &v.unknownFields
  3664. default:
  3665. return nil
  3666. }
  3667. }
  3668. file_common_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  3669. switch v := v.(*OnlinePersonListReply); i {
  3670. case 0:
  3671. return &v.state
  3672. case 1:
  3673. return &v.sizeCache
  3674. case 2:
  3675. return &v.unknownFields
  3676. default:
  3677. return nil
  3678. }
  3679. }
  3680. file_common_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  3681. switch v := v.(*OnlinePersonInfo); i {
  3682. case 0:
  3683. return &v.state
  3684. case 1:
  3685. return &v.sizeCache
  3686. case 2:
  3687. return &v.unknownFields
  3688. default:
  3689. return nil
  3690. }
  3691. }
  3692. file_common_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  3693. switch v := v.(*ChatRecordListReply); i {
  3694. case 0:
  3695. return &v.state
  3696. case 1:
  3697. return &v.sizeCache
  3698. case 2:
  3699. return &v.unknownFields
  3700. default:
  3701. return nil
  3702. }
  3703. }
  3704. file_common_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  3705. switch v := v.(*ChatRoomMsg); i {
  3706. case 0:
  3707. return &v.state
  3708. case 1:
  3709. return &v.sizeCache
  3710. case 2:
  3711. return &v.unknownFields
  3712. default:
  3713. return nil
  3714. }
  3715. }
  3716. file_common_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  3717. switch v := v.(*ChatPersonMsg); i {
  3718. case 0:
  3719. return &v.state
  3720. case 1:
  3721. return &v.sizeCache
  3722. case 2:
  3723. return &v.unknownFields
  3724. default:
  3725. return nil
  3726. }
  3727. }
  3728. file_common_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  3729. switch v := v.(*ChatRecordInfo); i {
  3730. case 0:
  3731. return &v.state
  3732. case 1:
  3733. return &v.sizeCache
  3734. case 2:
  3735. return &v.unknownFields
  3736. default:
  3737. return nil
  3738. }
  3739. }
  3740. file_common_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  3741. switch v := v.(*ChatIsReadInfo); i {
  3742. case 0:
  3743. return &v.state
  3744. case 1:
  3745. return &v.sizeCache
  3746. case 2:
  3747. return &v.unknownFields
  3748. default:
  3749. return nil
  3750. }
  3751. }
  3752. file_common_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  3753. switch v := v.(*GoToRoom); i {
  3754. case 0:
  3755. return &v.state
  3756. case 1:
  3757. return &v.sizeCache
  3758. case 2:
  3759. return &v.unknownFields
  3760. default:
  3761. return nil
  3762. }
  3763. }
  3764. file_common_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  3765. switch v := v.(*Message); i {
  3766. case 0:
  3767. return &v.state
  3768. case 1:
  3769. return &v.sizeCache
  3770. case 2:
  3771. return &v.unknownFields
  3772. default:
  3773. return nil
  3774. }
  3775. }
  3776. file_common_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  3777. switch v := v.(*FindChatRoomMsgRequest); i {
  3778. case 0:
  3779. return &v.state
  3780. case 1:
  3781. return &v.sizeCache
  3782. case 2:
  3783. return &v.unknownFields
  3784. default:
  3785. return nil
  3786. }
  3787. }
  3788. file_common_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  3789. switch v := v.(*RoomIDRequest); i {
  3790. case 0:
  3791. return &v.state
  3792. case 1:
  3793. return &v.sizeCache
  3794. case 2:
  3795. return &v.unknownFields
  3796. default:
  3797. return nil
  3798. }
  3799. }
  3800. file_common_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  3801. switch v := v.(*FindChatRecordListRequest); i {
  3802. case 0:
  3803. return &v.state
  3804. case 1:
  3805. return &v.sizeCache
  3806. case 2:
  3807. return &v.unknownFields
  3808. default:
  3809. return nil
  3810. }
  3811. }
  3812. file_common_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  3813. switch v := v.(*IsLike); i {
  3814. case 0:
  3815. return &v.state
  3816. case 1:
  3817. return &v.sizeCache
  3818. case 2:
  3819. return &v.unknownFields
  3820. default:
  3821. return nil
  3822. }
  3823. }
  3824. file_common_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  3825. switch v := v.(*BalanceRequest); i {
  3826. case 0:
  3827. return &v.state
  3828. case 1:
  3829. return &v.sizeCache
  3830. case 2:
  3831. return &v.unknownFields
  3832. default:
  3833. return nil
  3834. }
  3835. }
  3836. file_common_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  3837. switch v := v.(*RandomNum); i {
  3838. case 0:
  3839. return &v.state
  3840. case 1:
  3841. return &v.sizeCache
  3842. case 2:
  3843. return &v.unknownFields
  3844. default:
  3845. return nil
  3846. }
  3847. }
  3848. file_common_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  3849. switch v := v.(*RandomNumAndSex); i {
  3850. case 0:
  3851. return &v.state
  3852. case 1:
  3853. return &v.sizeCache
  3854. case 2:
  3855. return &v.unknownFields
  3856. default:
  3857. return nil
  3858. }
  3859. }
  3860. file_common_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  3861. switch v := v.(*MemeRequest); i {
  3862. case 0:
  3863. return &v.state
  3864. case 1:
  3865. return &v.sizeCache
  3866. case 2:
  3867. return &v.unknownFields
  3868. default:
  3869. return nil
  3870. }
  3871. }
  3872. file_common_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  3873. switch v := v.(*CommonTextList); i {
  3874. case 0:
  3875. return &v.state
  3876. case 1:
  3877. return &v.sizeCache
  3878. case 2:
  3879. return &v.unknownFields
  3880. default:
  3881. return nil
  3882. }
  3883. }
  3884. file_common_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  3885. switch v := v.(*MemeTitleList); i {
  3886. case 0:
  3887. return &v.state
  3888. case 1:
  3889. return &v.sizeCache
  3890. case 2:
  3891. return &v.unknownFields
  3892. default:
  3893. return nil
  3894. }
  3895. }
  3896. file_common_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  3897. switch v := v.(*MemeTitle); i {
  3898. case 0:
  3899. return &v.state
  3900. case 1:
  3901. return &v.sizeCache
  3902. case 2:
  3903. return &v.unknownFields
  3904. default:
  3905. return nil
  3906. }
  3907. }
  3908. file_common_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  3909. switch v := v.(*MemeList); i {
  3910. case 0:
  3911. return &v.state
  3912. case 1:
  3913. return &v.sizeCache
  3914. case 2:
  3915. return &v.unknownFields
  3916. default:
  3917. return nil
  3918. }
  3919. }
  3920. file_common_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  3921. switch v := v.(*ChatTopicList); i {
  3922. case 0:
  3923. return &v.state
  3924. case 1:
  3925. return &v.sizeCache
  3926. case 2:
  3927. return &v.unknownFields
  3928. default:
  3929. return nil
  3930. }
  3931. }
  3932. }
  3933. type x struct{}
  3934. out := protoimpl.TypeBuilder{
  3935. File: protoimpl.DescBuilder{
  3936. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3937. RawDescriptor: file_common_proto_rawDesc,
  3938. NumEnums: 0,
  3939. NumMessages: 51,
  3940. NumExtensions: 0,
  3941. NumServices: 0,
  3942. },
  3943. GoTypes: file_common_proto_goTypes,
  3944. DependencyIndexes: file_common_proto_depIdxs,
  3945. MessageInfos: file_common_proto_msgTypes,
  3946. }.Build()
  3947. File_common_proto = out.File
  3948. file_common_proto_rawDesc = nil
  3949. file_common_proto_goTypes = nil
  3950. file_common_proto_depIdxs = nil
  3951. }