common.pb.go 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.26.0-devel
  4. // protoc v3.15.8
  5. // source: common.proto
  6. package common
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type UserAndPartnerIdParam struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"`
  24. UserId string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId"`
  25. }
  26. func (x *UserAndPartnerIdParam) Reset() {
  27. *x = UserAndPartnerIdParam{}
  28. if protoimpl.UnsafeEnabled {
  29. mi := &file_common_proto_msgTypes[0]
  30. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  31. ms.StoreMessageInfo(mi)
  32. }
  33. }
  34. func (x *UserAndPartnerIdParam) String() string {
  35. return protoimpl.X.MessageStringOf(x)
  36. }
  37. func (*UserAndPartnerIdParam) ProtoMessage() {}
  38. func (x *UserAndPartnerIdParam) ProtoReflect() protoreflect.Message {
  39. mi := &file_common_proto_msgTypes[0]
  40. if protoimpl.UnsafeEnabled && x != nil {
  41. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  42. if ms.LoadMessageInfo() == nil {
  43. ms.StoreMessageInfo(mi)
  44. }
  45. return ms
  46. }
  47. return mi.MessageOf(x)
  48. }
  49. // Deprecated: Use UserAndPartnerIdParam.ProtoReflect.Descriptor instead.
  50. func (*UserAndPartnerIdParam) Descriptor() ([]byte, []int) {
  51. return file_common_proto_rawDescGZIP(), []int{0}
  52. }
  53. func (x *UserAndPartnerIdParam) GetPartnerId() string {
  54. if x != nil {
  55. return x.PartnerId
  56. }
  57. return ""
  58. }
  59. func (x *UserAndPartnerIdParam) GetUserId() string {
  60. if x != nil {
  61. return x.UserId
  62. }
  63. return ""
  64. }
  65. type 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. }
  981. func (x *PersonDB) Reset() {
  982. *x = PersonDB{}
  983. if protoimpl.UnsafeEnabled {
  984. mi := &file_common_proto_msgTypes[15]
  985. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  986. ms.StoreMessageInfo(mi)
  987. }
  988. }
  989. func (x *PersonDB) String() string {
  990. return protoimpl.X.MessageStringOf(x)
  991. }
  992. func (*PersonDB) ProtoMessage() {}
  993. func (x *PersonDB) ProtoReflect() protoreflect.Message {
  994. mi := &file_common_proto_msgTypes[15]
  995. if protoimpl.UnsafeEnabled && x != nil {
  996. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  997. if ms.LoadMessageInfo() == nil {
  998. ms.StoreMessageInfo(mi)
  999. }
  1000. return ms
  1001. }
  1002. return mi.MessageOf(x)
  1003. }
  1004. // Deprecated: Use PersonDB.ProtoReflect.Descriptor instead.
  1005. func (*PersonDB) Descriptor() ([]byte, []int) {
  1006. return file_common_proto_rawDescGZIP(), []int{15}
  1007. }
  1008. func (x *PersonDB) GetId() string {
  1009. if x != nil {
  1010. return x.Id
  1011. }
  1012. return ""
  1013. }
  1014. func (x *PersonDB) GetNickname() string {
  1015. if x != nil {
  1016. return x.Nickname
  1017. }
  1018. return ""
  1019. }
  1020. func (x *PersonDB) GetAvatarUrl() string {
  1021. if x != nil {
  1022. return x.AvatarUrl
  1023. }
  1024. return ""
  1025. }
  1026. func (x *PersonDB) GetSex() int64 {
  1027. if x != nil {
  1028. return x.Sex
  1029. }
  1030. return 0
  1031. }
  1032. func (x *PersonDB) GetPictures() []string {
  1033. if x != nil {
  1034. return x.Pictures
  1035. }
  1036. return nil
  1037. }
  1038. func (x *PersonDB) GetAge() int64 {
  1039. if x != nil {
  1040. return x.Age
  1041. }
  1042. return 0
  1043. }
  1044. func (x *PersonDB) GetConstellation() string {
  1045. if x != nil {
  1046. return x.Constellation
  1047. }
  1048. return ""
  1049. }
  1050. func (x *PersonDB) GetIntroduceVoice() string {
  1051. if x != nil {
  1052. return x.IntroduceVoice
  1053. }
  1054. return ""
  1055. }
  1056. func (x *PersonDB) GetProvince() string {
  1057. if x != nil {
  1058. return x.Province
  1059. }
  1060. return ""
  1061. }
  1062. func (x *PersonDB) GetCity() string {
  1063. if x != nil {
  1064. return x.City
  1065. }
  1066. return ""
  1067. }
  1068. func (x *PersonDB) GetArea() string {
  1069. if x != nil {
  1070. return x.Area
  1071. }
  1072. return ""
  1073. }
  1074. func (x *PersonDB) GetSignature() string {
  1075. if x != nil {
  1076. return x.Signature
  1077. }
  1078. return ""
  1079. }
  1080. func (x *PersonDB) GetIsFinishInformation() bool {
  1081. if x != nil {
  1082. return x.IsFinishInformation
  1083. }
  1084. return false
  1085. }
  1086. type ListPageRequest struct {
  1087. state protoimpl.MessageState
  1088. sizeCache protoimpl.SizeCache
  1089. unknownFields protoimpl.UnknownFields
  1090. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1091. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1092. }
  1093. func (x *ListPageRequest) Reset() {
  1094. *x = ListPageRequest{}
  1095. if protoimpl.UnsafeEnabled {
  1096. mi := &file_common_proto_msgTypes[16]
  1097. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1098. ms.StoreMessageInfo(mi)
  1099. }
  1100. }
  1101. func (x *ListPageRequest) String() string {
  1102. return protoimpl.X.MessageStringOf(x)
  1103. }
  1104. func (*ListPageRequest) ProtoMessage() {}
  1105. func (x *ListPageRequest) ProtoReflect() protoreflect.Message {
  1106. mi := &file_common_proto_msgTypes[16]
  1107. if protoimpl.UnsafeEnabled && x != nil {
  1108. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1109. if ms.LoadMessageInfo() == nil {
  1110. ms.StoreMessageInfo(mi)
  1111. }
  1112. return ms
  1113. }
  1114. return mi.MessageOf(x)
  1115. }
  1116. // Deprecated: Use ListPageRequest.ProtoReflect.Descriptor instead.
  1117. func (*ListPageRequest) Descriptor() ([]byte, []int) {
  1118. return file_common_proto_rawDescGZIP(), []int{16}
  1119. }
  1120. func (x *ListPageRequest) GetNextId() int64 {
  1121. if x != nil {
  1122. return x.NextId
  1123. }
  1124. return 0
  1125. }
  1126. func (x *ListPageRequest) GetOffset() int64 {
  1127. if x != nil {
  1128. return x.Offset
  1129. }
  1130. return 0
  1131. }
  1132. type ListPage2Request struct {
  1133. state protoimpl.MessageState
  1134. sizeCache protoimpl.SizeCache
  1135. unknownFields protoimpl.UnknownFields
  1136. NextId string `protobuf:"bytes,1,opt,name=nextId,proto3" json:"nextId"`
  1137. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1138. }
  1139. func (x *ListPage2Request) Reset() {
  1140. *x = ListPage2Request{}
  1141. if protoimpl.UnsafeEnabled {
  1142. mi := &file_common_proto_msgTypes[17]
  1143. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1144. ms.StoreMessageInfo(mi)
  1145. }
  1146. }
  1147. func (x *ListPage2Request) String() string {
  1148. return protoimpl.X.MessageStringOf(x)
  1149. }
  1150. func (*ListPage2Request) ProtoMessage() {}
  1151. func (x *ListPage2Request) ProtoReflect() protoreflect.Message {
  1152. mi := &file_common_proto_msgTypes[17]
  1153. if protoimpl.UnsafeEnabled && x != nil {
  1154. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1155. if ms.LoadMessageInfo() == nil {
  1156. ms.StoreMessageInfo(mi)
  1157. }
  1158. return ms
  1159. }
  1160. return mi.MessageOf(x)
  1161. }
  1162. // Deprecated: Use ListPage2Request.ProtoReflect.Descriptor instead.
  1163. func (*ListPage2Request) Descriptor() ([]byte, []int) {
  1164. return file_common_proto_rawDescGZIP(), []int{17}
  1165. }
  1166. func (x *ListPage2Request) GetNextId() string {
  1167. if x != nil {
  1168. return x.NextId
  1169. }
  1170. return ""
  1171. }
  1172. func (x *ListPage2Request) GetOffset() int64 {
  1173. if x != nil {
  1174. return x.Offset
  1175. }
  1176. return 0
  1177. }
  1178. type ListPageAndPersonRequest struct {
  1179. state protoimpl.MessageState
  1180. sizeCache protoimpl.SizeCache
  1181. unknownFields protoimpl.UnknownFields
  1182. NextId string `protobuf:"bytes,1,opt,name=nextId,proto3" json:"nextId"`
  1183. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1184. PersonID string `protobuf:"bytes,3,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1185. PersonType string `protobuf:"bytes,4,opt,name=personType,proto3" json:"personType"` // 类型
  1186. }
  1187. func (x *ListPageAndPersonRequest) Reset() {
  1188. *x = ListPageAndPersonRequest{}
  1189. if protoimpl.UnsafeEnabled {
  1190. mi := &file_common_proto_msgTypes[18]
  1191. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1192. ms.StoreMessageInfo(mi)
  1193. }
  1194. }
  1195. func (x *ListPageAndPersonRequest) String() string {
  1196. return protoimpl.X.MessageStringOf(x)
  1197. }
  1198. func (*ListPageAndPersonRequest) ProtoMessage() {}
  1199. func (x *ListPageAndPersonRequest) ProtoReflect() protoreflect.Message {
  1200. mi := &file_common_proto_msgTypes[18]
  1201. if protoimpl.UnsafeEnabled && x != nil {
  1202. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1203. if ms.LoadMessageInfo() == nil {
  1204. ms.StoreMessageInfo(mi)
  1205. }
  1206. return ms
  1207. }
  1208. return mi.MessageOf(x)
  1209. }
  1210. // Deprecated: Use ListPageAndPersonRequest.ProtoReflect.Descriptor instead.
  1211. func (*ListPageAndPersonRequest) Descriptor() ([]byte, []int) {
  1212. return file_common_proto_rawDescGZIP(), []int{18}
  1213. }
  1214. func (x *ListPageAndPersonRequest) GetNextId() string {
  1215. if x != nil {
  1216. return x.NextId
  1217. }
  1218. return ""
  1219. }
  1220. func (x *ListPageAndPersonRequest) GetOffset() int64 {
  1221. if x != nil {
  1222. return x.Offset
  1223. }
  1224. return 0
  1225. }
  1226. func (x *ListPageAndPersonRequest) GetPersonID() string {
  1227. if x != nil {
  1228. return x.PersonID
  1229. }
  1230. return ""
  1231. }
  1232. func (x *ListPageAndPersonRequest) GetPersonType() string {
  1233. if x != nil {
  1234. return x.PersonType
  1235. }
  1236. return ""
  1237. }
  1238. type SendPhoneCodeRequest struct {
  1239. state protoimpl.MessageState
  1240. sizeCache protoimpl.SizeCache
  1241. unknownFields protoimpl.UnknownFields
  1242. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  1243. }
  1244. func (x *SendPhoneCodeRequest) Reset() {
  1245. *x = SendPhoneCodeRequest{}
  1246. if protoimpl.UnsafeEnabled {
  1247. mi := &file_common_proto_msgTypes[19]
  1248. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1249. ms.StoreMessageInfo(mi)
  1250. }
  1251. }
  1252. func (x *SendPhoneCodeRequest) String() string {
  1253. return protoimpl.X.MessageStringOf(x)
  1254. }
  1255. func (*SendPhoneCodeRequest) ProtoMessage() {}
  1256. func (x *SendPhoneCodeRequest) ProtoReflect() protoreflect.Message {
  1257. mi := &file_common_proto_msgTypes[19]
  1258. if protoimpl.UnsafeEnabled && x != nil {
  1259. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1260. if ms.LoadMessageInfo() == nil {
  1261. ms.StoreMessageInfo(mi)
  1262. }
  1263. return ms
  1264. }
  1265. return mi.MessageOf(x)
  1266. }
  1267. // Deprecated: Use SendPhoneCodeRequest.ProtoReflect.Descriptor instead.
  1268. func (*SendPhoneCodeRequest) Descriptor() ([]byte, []int) {
  1269. return file_common_proto_rawDescGZIP(), []int{19}
  1270. }
  1271. func (x *SendPhoneCodeRequest) GetPhone() string {
  1272. if x != nil {
  1273. return x.Phone
  1274. }
  1275. return ""
  1276. }
  1277. type CheckPhoneCodeRequest struct {
  1278. state protoimpl.MessageState
  1279. sizeCache protoimpl.SizeCache
  1280. unknownFields protoimpl.UnknownFields
  1281. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  1282. Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code"`
  1283. }
  1284. func (x *CheckPhoneCodeRequest) Reset() {
  1285. *x = CheckPhoneCodeRequest{}
  1286. if protoimpl.UnsafeEnabled {
  1287. mi := &file_common_proto_msgTypes[20]
  1288. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1289. ms.StoreMessageInfo(mi)
  1290. }
  1291. }
  1292. func (x *CheckPhoneCodeRequest) String() string {
  1293. return protoimpl.X.MessageStringOf(x)
  1294. }
  1295. func (*CheckPhoneCodeRequest) ProtoMessage() {}
  1296. func (x *CheckPhoneCodeRequest) ProtoReflect() protoreflect.Message {
  1297. mi := &file_common_proto_msgTypes[20]
  1298. if protoimpl.UnsafeEnabled && x != nil {
  1299. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1300. if ms.LoadMessageInfo() == nil {
  1301. ms.StoreMessageInfo(mi)
  1302. }
  1303. return ms
  1304. }
  1305. return mi.MessageOf(x)
  1306. }
  1307. // Deprecated: Use CheckPhoneCodeRequest.ProtoReflect.Descriptor instead.
  1308. func (*CheckPhoneCodeRequest) Descriptor() ([]byte, []int) {
  1309. return file_common_proto_rawDescGZIP(), []int{20}
  1310. }
  1311. func (x *CheckPhoneCodeRequest) GetPhone() string {
  1312. if x != nil {
  1313. return x.Phone
  1314. }
  1315. return ""
  1316. }
  1317. func (x *CheckPhoneCodeRequest) GetCode() string {
  1318. if x != nil {
  1319. return x.Code
  1320. }
  1321. return ""
  1322. }
  1323. type UploadMaterialResponse struct {
  1324. state protoimpl.MessageState
  1325. sizeCache protoimpl.SizeCache
  1326. unknownFields protoimpl.UnknownFields
  1327. Link string `protobuf:"bytes,1,opt,name=link,proto3" json:"link"`
  1328. }
  1329. func (x *UploadMaterialResponse) Reset() {
  1330. *x = UploadMaterialResponse{}
  1331. if protoimpl.UnsafeEnabled {
  1332. mi := &file_common_proto_msgTypes[21]
  1333. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1334. ms.StoreMessageInfo(mi)
  1335. }
  1336. }
  1337. func (x *UploadMaterialResponse) String() string {
  1338. return protoimpl.X.MessageStringOf(x)
  1339. }
  1340. func (*UploadMaterialResponse) ProtoMessage() {}
  1341. func (x *UploadMaterialResponse) ProtoReflect() protoreflect.Message {
  1342. mi := &file_common_proto_msgTypes[21]
  1343. if protoimpl.UnsafeEnabled && x != nil {
  1344. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1345. if ms.LoadMessageInfo() == nil {
  1346. ms.StoreMessageInfo(mi)
  1347. }
  1348. return ms
  1349. }
  1350. return mi.MessageOf(x)
  1351. }
  1352. // Deprecated: Use UploadMaterialResponse.ProtoReflect.Descriptor instead.
  1353. func (*UploadMaterialResponse) Descriptor() ([]byte, []int) {
  1354. return file_common_proto_rawDescGZIP(), []int{21}
  1355. }
  1356. func (x *UploadMaterialResponse) GetLink() string {
  1357. if x != nil {
  1358. return x.Link
  1359. }
  1360. return ""
  1361. }
  1362. type Ids struct {
  1363. state protoimpl.MessageState
  1364. sizeCache protoimpl.SizeCache
  1365. unknownFields protoimpl.UnknownFields
  1366. Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids"` // 标签ID
  1367. }
  1368. func (x *Ids) Reset() {
  1369. *x = Ids{}
  1370. if protoimpl.UnsafeEnabled {
  1371. mi := &file_common_proto_msgTypes[22]
  1372. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1373. ms.StoreMessageInfo(mi)
  1374. }
  1375. }
  1376. func (x *Ids) String() string {
  1377. return protoimpl.X.MessageStringOf(x)
  1378. }
  1379. func (*Ids) ProtoMessage() {}
  1380. func (x *Ids) ProtoReflect() protoreflect.Message {
  1381. mi := &file_common_proto_msgTypes[22]
  1382. if protoimpl.UnsafeEnabled && x != nil {
  1383. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1384. if ms.LoadMessageInfo() == nil {
  1385. ms.StoreMessageInfo(mi)
  1386. }
  1387. return ms
  1388. }
  1389. return mi.MessageOf(x)
  1390. }
  1391. // Deprecated: Use Ids.ProtoReflect.Descriptor instead.
  1392. func (*Ids) Descriptor() ([]byte, []int) {
  1393. return file_common_proto_rawDescGZIP(), []int{22}
  1394. }
  1395. func (x *Ids) GetIds() []int64 {
  1396. if x != nil {
  1397. return x.Ids
  1398. }
  1399. return nil
  1400. }
  1401. type TagListReply struct {
  1402. state protoimpl.MessageState
  1403. sizeCache protoimpl.SizeCache
  1404. unknownFields protoimpl.UnknownFields
  1405. List []*TagList `protobuf:"bytes,1,rep,name=list,proto3" json:"list"` // 标签列表
  1406. }
  1407. func (x *TagListReply) Reset() {
  1408. *x = TagListReply{}
  1409. if protoimpl.UnsafeEnabled {
  1410. mi := &file_common_proto_msgTypes[23]
  1411. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1412. ms.StoreMessageInfo(mi)
  1413. }
  1414. }
  1415. func (x *TagListReply) String() string {
  1416. return protoimpl.X.MessageStringOf(x)
  1417. }
  1418. func (*TagListReply) ProtoMessage() {}
  1419. func (x *TagListReply) ProtoReflect() protoreflect.Message {
  1420. mi := &file_common_proto_msgTypes[23]
  1421. if protoimpl.UnsafeEnabled && x != nil {
  1422. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1423. if ms.LoadMessageInfo() == nil {
  1424. ms.StoreMessageInfo(mi)
  1425. }
  1426. return ms
  1427. }
  1428. return mi.MessageOf(x)
  1429. }
  1430. // Deprecated: Use TagListReply.ProtoReflect.Descriptor instead.
  1431. func (*TagListReply) Descriptor() ([]byte, []int) {
  1432. return file_common_proto_rawDescGZIP(), []int{23}
  1433. }
  1434. func (x *TagListReply) GetList() []*TagList {
  1435. if x != nil {
  1436. return x.List
  1437. }
  1438. return nil
  1439. }
  1440. type TagList struct {
  1441. state protoimpl.MessageState
  1442. sizeCache protoimpl.SizeCache
  1443. unknownFields protoimpl.UnknownFields
  1444. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // 标签ID
  1445. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"` // 分组名
  1446. }
  1447. func (x *TagList) Reset() {
  1448. *x = TagList{}
  1449. if protoimpl.UnsafeEnabled {
  1450. mi := &file_common_proto_msgTypes[24]
  1451. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1452. ms.StoreMessageInfo(mi)
  1453. }
  1454. }
  1455. func (x *TagList) String() string {
  1456. return protoimpl.X.MessageStringOf(x)
  1457. }
  1458. func (*TagList) ProtoMessage() {}
  1459. func (x *TagList) ProtoReflect() protoreflect.Message {
  1460. mi := &file_common_proto_msgTypes[24]
  1461. if protoimpl.UnsafeEnabled && x != nil {
  1462. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1463. if ms.LoadMessageInfo() == nil {
  1464. ms.StoreMessageInfo(mi)
  1465. }
  1466. return ms
  1467. }
  1468. return mi.MessageOf(x)
  1469. }
  1470. // Deprecated: Use TagList.ProtoReflect.Descriptor instead.
  1471. func (*TagList) Descriptor() ([]byte, []int) {
  1472. return file_common_proto_rawDescGZIP(), []int{24}
  1473. }
  1474. func (x *TagList) GetId() int64 {
  1475. if x != nil {
  1476. return x.Id
  1477. }
  1478. return 0
  1479. }
  1480. func (x *TagList) GetName() string {
  1481. if x != nil {
  1482. return x.Name
  1483. }
  1484. return ""
  1485. }
  1486. type SexReq struct {
  1487. state protoimpl.MessageState
  1488. sizeCache protoimpl.SizeCache
  1489. unknownFields protoimpl.UnknownFields
  1490. Sex int64 `protobuf:"varint,1,opt,name=sex,proto3" json:"sex"`
  1491. }
  1492. func (x *SexReq) Reset() {
  1493. *x = SexReq{}
  1494. if protoimpl.UnsafeEnabled {
  1495. mi := &file_common_proto_msgTypes[25]
  1496. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1497. ms.StoreMessageInfo(mi)
  1498. }
  1499. }
  1500. func (x *SexReq) String() string {
  1501. return protoimpl.X.MessageStringOf(x)
  1502. }
  1503. func (*SexReq) ProtoMessage() {}
  1504. func (x *SexReq) ProtoReflect() protoreflect.Message {
  1505. mi := &file_common_proto_msgTypes[25]
  1506. if protoimpl.UnsafeEnabled && x != nil {
  1507. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1508. if ms.LoadMessageInfo() == nil {
  1509. ms.StoreMessageInfo(mi)
  1510. }
  1511. return ms
  1512. }
  1513. return mi.MessageOf(x)
  1514. }
  1515. // Deprecated: Use SexReq.ProtoReflect.Descriptor instead.
  1516. func (*SexReq) Descriptor() ([]byte, []int) {
  1517. return file_common_proto_rawDescGZIP(), []int{25}
  1518. }
  1519. func (x *SexReq) GetSex() int64 {
  1520. if x != nil {
  1521. return x.Sex
  1522. }
  1523. return 0
  1524. }
  1525. type RandomIntroduceReply struct {
  1526. state protoimpl.MessageState
  1527. sizeCache protoimpl.SizeCache
  1528. unknownFields protoimpl.UnknownFields
  1529. Introduce string `protobuf:"bytes,1,opt,name=introduce,proto3" json:"introduce"`
  1530. }
  1531. func (x *RandomIntroduceReply) Reset() {
  1532. *x = RandomIntroduceReply{}
  1533. if protoimpl.UnsafeEnabled {
  1534. mi := &file_common_proto_msgTypes[26]
  1535. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1536. ms.StoreMessageInfo(mi)
  1537. }
  1538. }
  1539. func (x *RandomIntroduceReply) String() string {
  1540. return protoimpl.X.MessageStringOf(x)
  1541. }
  1542. func (*RandomIntroduceReply) ProtoMessage() {}
  1543. func (x *RandomIntroduceReply) ProtoReflect() protoreflect.Message {
  1544. mi := &file_common_proto_msgTypes[26]
  1545. if protoimpl.UnsafeEnabled && x != nil {
  1546. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1547. if ms.LoadMessageInfo() == nil {
  1548. ms.StoreMessageInfo(mi)
  1549. }
  1550. return ms
  1551. }
  1552. return mi.MessageOf(x)
  1553. }
  1554. // Deprecated: Use RandomIntroduceReply.ProtoReflect.Descriptor instead.
  1555. func (*RandomIntroduceReply) Descriptor() ([]byte, []int) {
  1556. return file_common_proto_rawDescGZIP(), []int{26}
  1557. }
  1558. func (x *RandomIntroduceReply) GetIntroduce() string {
  1559. if x != nil {
  1560. return x.Introduce
  1561. }
  1562. return ""
  1563. }
  1564. type UpdateInformationRequest struct {
  1565. state protoimpl.MessageState
  1566. sizeCache protoimpl.SizeCache
  1567. unknownFields protoimpl.UnknownFields
  1568. Nickname string `protobuf:"bytes,1,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1569. AvatarUrl string `protobuf:"bytes,2,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  1570. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"` // 性别
  1571. Birthday int64 `protobuf:"varint,4,opt,name=birthday,proto3" json:"birthday"` // 出生日期(毫秒级时间戳)
  1572. TagList []int64 `protobuf:"varint,5,rep,packed,name=tagList,proto3" json:"tagList"` // 标签id列表
  1573. IntroduceVoice string `protobuf:"bytes,6,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音的链接
  1574. Signature string `protobuf:"bytes,7,opt,name=signature,proto3" json:"signature"` // 介绍(签名)
  1575. Pictures []string `protobuf:"bytes,8,rep,name=pictures,proto3" json:"pictures"` // 相册(主页图片)
  1576. Province string `protobuf:"bytes,9,opt,name=province,proto3" json:"province"` // 省
  1577. City string `protobuf:"bytes,10,opt,name=city,proto3" json:"city"` // 市
  1578. Area string `protobuf:"bytes,11,opt,name=area,proto3" json:"area"` // 区
  1579. }
  1580. func (x *UpdateInformationRequest) Reset() {
  1581. *x = UpdateInformationRequest{}
  1582. if protoimpl.UnsafeEnabled {
  1583. mi := &file_common_proto_msgTypes[27]
  1584. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1585. ms.StoreMessageInfo(mi)
  1586. }
  1587. }
  1588. func (x *UpdateInformationRequest) String() string {
  1589. return protoimpl.X.MessageStringOf(x)
  1590. }
  1591. func (*UpdateInformationRequest) ProtoMessage() {}
  1592. func (x *UpdateInformationRequest) ProtoReflect() protoreflect.Message {
  1593. mi := &file_common_proto_msgTypes[27]
  1594. if protoimpl.UnsafeEnabled && x != nil {
  1595. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1596. if ms.LoadMessageInfo() == nil {
  1597. ms.StoreMessageInfo(mi)
  1598. }
  1599. return ms
  1600. }
  1601. return mi.MessageOf(x)
  1602. }
  1603. // Deprecated: Use UpdateInformationRequest.ProtoReflect.Descriptor instead.
  1604. func (*UpdateInformationRequest) Descriptor() ([]byte, []int) {
  1605. return file_common_proto_rawDescGZIP(), []int{27}
  1606. }
  1607. func (x *UpdateInformationRequest) GetNickname() string {
  1608. if x != nil {
  1609. return x.Nickname
  1610. }
  1611. return ""
  1612. }
  1613. func (x *UpdateInformationRequest) GetAvatarUrl() string {
  1614. if x != nil {
  1615. return x.AvatarUrl
  1616. }
  1617. return ""
  1618. }
  1619. func (x *UpdateInformationRequest) GetSex() int64 {
  1620. if x != nil {
  1621. return x.Sex
  1622. }
  1623. return 0
  1624. }
  1625. func (x *UpdateInformationRequest) GetBirthday() int64 {
  1626. if x != nil {
  1627. return x.Birthday
  1628. }
  1629. return 0
  1630. }
  1631. func (x *UpdateInformationRequest) GetTagList() []int64 {
  1632. if x != nil {
  1633. return x.TagList
  1634. }
  1635. return nil
  1636. }
  1637. func (x *UpdateInformationRequest) GetIntroduceVoice() string {
  1638. if x != nil {
  1639. return x.IntroduceVoice
  1640. }
  1641. return ""
  1642. }
  1643. func (x *UpdateInformationRequest) GetSignature() string {
  1644. if x != nil {
  1645. return x.Signature
  1646. }
  1647. return ""
  1648. }
  1649. func (x *UpdateInformationRequest) GetPictures() []string {
  1650. if x != nil {
  1651. return x.Pictures
  1652. }
  1653. return nil
  1654. }
  1655. func (x *UpdateInformationRequest) GetProvince() string {
  1656. if x != nil {
  1657. return x.Province
  1658. }
  1659. return ""
  1660. }
  1661. func (x *UpdateInformationRequest) GetCity() string {
  1662. if x != nil {
  1663. return x.City
  1664. }
  1665. return ""
  1666. }
  1667. func (x *UpdateInformationRequest) GetArea() string {
  1668. if x != nil {
  1669. return x.Area
  1670. }
  1671. return ""
  1672. }
  1673. type OnlinePersonListReply struct {
  1674. state protoimpl.MessageState
  1675. sizeCache protoimpl.SizeCache
  1676. unknownFields protoimpl.UnknownFields
  1677. List []*OnlinePersonInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1678. NextId string `protobuf:"bytes,2,opt,name=nextId,proto3" json:"nextId"`
  1679. }
  1680. func (x *OnlinePersonListReply) Reset() {
  1681. *x = OnlinePersonListReply{}
  1682. if protoimpl.UnsafeEnabled {
  1683. mi := &file_common_proto_msgTypes[28]
  1684. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1685. ms.StoreMessageInfo(mi)
  1686. }
  1687. }
  1688. func (x *OnlinePersonListReply) String() string {
  1689. return protoimpl.X.MessageStringOf(x)
  1690. }
  1691. func (*OnlinePersonListReply) ProtoMessage() {}
  1692. func (x *OnlinePersonListReply) ProtoReflect() protoreflect.Message {
  1693. mi := &file_common_proto_msgTypes[28]
  1694. if protoimpl.UnsafeEnabled && x != nil {
  1695. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1696. if ms.LoadMessageInfo() == nil {
  1697. ms.StoreMessageInfo(mi)
  1698. }
  1699. return ms
  1700. }
  1701. return mi.MessageOf(x)
  1702. }
  1703. // Deprecated: Use OnlinePersonListReply.ProtoReflect.Descriptor instead.
  1704. func (*OnlinePersonListReply) Descriptor() ([]byte, []int) {
  1705. return file_common_proto_rawDescGZIP(), []int{28}
  1706. }
  1707. func (x *OnlinePersonListReply) GetList() []*OnlinePersonInfo {
  1708. if x != nil {
  1709. return x.List
  1710. }
  1711. return nil
  1712. }
  1713. func (x *OnlinePersonListReply) GetNextId() string {
  1714. if x != nil {
  1715. return x.NextId
  1716. }
  1717. return ""
  1718. }
  1719. type OnlinePersonInfo struct {
  1720. state protoimpl.MessageState
  1721. sizeCache protoimpl.SizeCache
  1722. unknownFields protoimpl.UnknownFields
  1723. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1724. PersonType string `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"` // 类型
  1725. Nickname string `protobuf:"bytes,3,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1726. AvatarUrl string `protobuf:"bytes,4,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1727. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  1728. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  1729. Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
  1730. Signature string `protobuf:"bytes,8,opt,name=signature,proto3" json:"signature"` // 签名
  1731. Province string `protobuf:"bytes,9,opt,name=province,proto3" json:"province"` // 省
  1732. City string `protobuf:"bytes,10,opt,name=city,proto3" json:"city"` // 市
  1733. Area string `protobuf:"bytes,11,opt,name=area,proto3" json:"area"` // 区
  1734. }
  1735. func (x *OnlinePersonInfo) Reset() {
  1736. *x = OnlinePersonInfo{}
  1737. if protoimpl.UnsafeEnabled {
  1738. mi := &file_common_proto_msgTypes[29]
  1739. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1740. ms.StoreMessageInfo(mi)
  1741. }
  1742. }
  1743. func (x *OnlinePersonInfo) String() string {
  1744. return protoimpl.X.MessageStringOf(x)
  1745. }
  1746. func (*OnlinePersonInfo) ProtoMessage() {}
  1747. func (x *OnlinePersonInfo) ProtoReflect() protoreflect.Message {
  1748. mi := &file_common_proto_msgTypes[29]
  1749. if protoimpl.UnsafeEnabled && x != nil {
  1750. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1751. if ms.LoadMessageInfo() == nil {
  1752. ms.StoreMessageInfo(mi)
  1753. }
  1754. return ms
  1755. }
  1756. return mi.MessageOf(x)
  1757. }
  1758. // Deprecated: Use OnlinePersonInfo.ProtoReflect.Descriptor instead.
  1759. func (*OnlinePersonInfo) Descriptor() ([]byte, []int) {
  1760. return file_common_proto_rawDescGZIP(), []int{29}
  1761. }
  1762. func (x *OnlinePersonInfo) GetPersonID() string {
  1763. if x != nil {
  1764. return x.PersonID
  1765. }
  1766. return ""
  1767. }
  1768. func (x *OnlinePersonInfo) GetPersonType() string {
  1769. if x != nil {
  1770. return x.PersonType
  1771. }
  1772. return ""
  1773. }
  1774. func (x *OnlinePersonInfo) GetNickname() string {
  1775. if x != nil {
  1776. return x.Nickname
  1777. }
  1778. return ""
  1779. }
  1780. func (x *OnlinePersonInfo) GetAvatarUrl() string {
  1781. if x != nil {
  1782. return x.AvatarUrl
  1783. }
  1784. return ""
  1785. }
  1786. func (x *OnlinePersonInfo) GetSex() int64 {
  1787. if x != nil {
  1788. return x.Sex
  1789. }
  1790. return 0
  1791. }
  1792. func (x *OnlinePersonInfo) GetAge() int64 {
  1793. if x != nil {
  1794. return x.Age
  1795. }
  1796. return 0
  1797. }
  1798. func (x *OnlinePersonInfo) GetConstellation() string {
  1799. if x != nil {
  1800. return x.Constellation
  1801. }
  1802. return ""
  1803. }
  1804. func (x *OnlinePersonInfo) GetSignature() string {
  1805. if x != nil {
  1806. return x.Signature
  1807. }
  1808. return ""
  1809. }
  1810. func (x *OnlinePersonInfo) GetProvince() string {
  1811. if x != nil {
  1812. return x.Province
  1813. }
  1814. return ""
  1815. }
  1816. func (x *OnlinePersonInfo) GetCity() string {
  1817. if x != nil {
  1818. return x.City
  1819. }
  1820. return ""
  1821. }
  1822. func (x *OnlinePersonInfo) GetArea() string {
  1823. if x != nil {
  1824. return x.Area
  1825. }
  1826. return ""
  1827. }
  1828. type ChatRecordListReply struct {
  1829. state protoimpl.MessageState
  1830. sizeCache protoimpl.SizeCache
  1831. unknownFields protoimpl.UnknownFields
  1832. List []*ChatRecordInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1833. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  1834. }
  1835. func (x *ChatRecordListReply) Reset() {
  1836. *x = ChatRecordListReply{}
  1837. if protoimpl.UnsafeEnabled {
  1838. mi := &file_common_proto_msgTypes[30]
  1839. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1840. ms.StoreMessageInfo(mi)
  1841. }
  1842. }
  1843. func (x *ChatRecordListReply) String() string {
  1844. return protoimpl.X.MessageStringOf(x)
  1845. }
  1846. func (*ChatRecordListReply) ProtoMessage() {}
  1847. func (x *ChatRecordListReply) ProtoReflect() protoreflect.Message {
  1848. mi := &file_common_proto_msgTypes[30]
  1849. if protoimpl.UnsafeEnabled && x != nil {
  1850. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1851. if ms.LoadMessageInfo() == nil {
  1852. ms.StoreMessageInfo(mi)
  1853. }
  1854. return ms
  1855. }
  1856. return mi.MessageOf(x)
  1857. }
  1858. // Deprecated: Use ChatRecordListReply.ProtoReflect.Descriptor instead.
  1859. func (*ChatRecordListReply) Descriptor() ([]byte, []int) {
  1860. return file_common_proto_rawDescGZIP(), []int{30}
  1861. }
  1862. func (x *ChatRecordListReply) GetList() []*ChatRecordInfo {
  1863. if x != nil {
  1864. return x.List
  1865. }
  1866. return nil
  1867. }
  1868. func (x *ChatRecordListReply) GetNextId() int64 {
  1869. if x != nil {
  1870. return x.NextId
  1871. }
  1872. return 0
  1873. }
  1874. type ChatRoomMsg struct {
  1875. state protoimpl.MessageState
  1876. sizeCache protoimpl.SizeCache
  1877. unknownFields protoimpl.UnknownFields
  1878. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  1879. SelfID string `protobuf:"bytes,2,opt,name=selfID,proto3" json:"selfID"` // 自己的ID
  1880. SelfType string `protobuf:"bytes,3,opt,name=selfType,proto3" json:"selfType"` // 自己的type
  1881. OtherID string `protobuf:"bytes,4,opt,name=otherID,proto3" json:"otherID"` // 对方的ID
  1882. OtherType string `protobuf:"bytes,5,opt,name=otherType,proto3" json:"otherType"` // 对方的type
  1883. SelfName string `protobuf:"bytes,6,opt,name=selfName,proto3" json:"selfName"` // 自己的名称
  1884. OtherName string `protobuf:"bytes,7,opt,name=otherName,proto3" json:"otherName"` // 他人的名称
  1885. SelfAvatar string `protobuf:"bytes,8,opt,name=selfAvatar,proto3" json:"selfAvatar"` // 自己的头像
  1886. OtherAvatar string `protobuf:"bytes,9,opt,name=otherAvatar,proto3" json:"otherAvatar"` // 他人的头像
  1887. }
  1888. func (x *ChatRoomMsg) Reset() {
  1889. *x = ChatRoomMsg{}
  1890. if protoimpl.UnsafeEnabled {
  1891. mi := &file_common_proto_msgTypes[31]
  1892. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1893. ms.StoreMessageInfo(mi)
  1894. }
  1895. }
  1896. func (x *ChatRoomMsg) String() string {
  1897. return protoimpl.X.MessageStringOf(x)
  1898. }
  1899. func (*ChatRoomMsg) ProtoMessage() {}
  1900. func (x *ChatRoomMsg) ProtoReflect() protoreflect.Message {
  1901. mi := &file_common_proto_msgTypes[31]
  1902. if protoimpl.UnsafeEnabled && x != nil {
  1903. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1904. if ms.LoadMessageInfo() == nil {
  1905. ms.StoreMessageInfo(mi)
  1906. }
  1907. return ms
  1908. }
  1909. return mi.MessageOf(x)
  1910. }
  1911. // Deprecated: Use ChatRoomMsg.ProtoReflect.Descriptor instead.
  1912. func (*ChatRoomMsg) Descriptor() ([]byte, []int) {
  1913. return file_common_proto_rawDescGZIP(), []int{31}
  1914. }
  1915. func (x *ChatRoomMsg) GetRoomId() int64 {
  1916. if x != nil {
  1917. return x.RoomId
  1918. }
  1919. return 0
  1920. }
  1921. func (x *ChatRoomMsg) GetSelfID() string {
  1922. if x != nil {
  1923. return x.SelfID
  1924. }
  1925. return ""
  1926. }
  1927. func (x *ChatRoomMsg) GetSelfType() string {
  1928. if x != nil {
  1929. return x.SelfType
  1930. }
  1931. return ""
  1932. }
  1933. func (x *ChatRoomMsg) GetOtherID() string {
  1934. if x != nil {
  1935. return x.OtherID
  1936. }
  1937. return ""
  1938. }
  1939. func (x *ChatRoomMsg) GetOtherType() string {
  1940. if x != nil {
  1941. return x.OtherType
  1942. }
  1943. return ""
  1944. }
  1945. func (x *ChatRoomMsg) GetSelfName() string {
  1946. if x != nil {
  1947. return x.SelfName
  1948. }
  1949. return ""
  1950. }
  1951. func (x *ChatRoomMsg) GetOtherName() string {
  1952. if x != nil {
  1953. return x.OtherName
  1954. }
  1955. return ""
  1956. }
  1957. func (x *ChatRoomMsg) GetSelfAvatar() string {
  1958. if x != nil {
  1959. return x.SelfAvatar
  1960. }
  1961. return ""
  1962. }
  1963. func (x *ChatRoomMsg) GetOtherAvatar() string {
  1964. if x != nil {
  1965. return x.OtherAvatar
  1966. }
  1967. return ""
  1968. }
  1969. type ChatRecordInfo struct {
  1970. state protoimpl.MessageState
  1971. sizeCache protoimpl.SizeCache
  1972. unknownFields protoimpl.UnknownFields
  1973. MessageId int64 `protobuf:"varint,1,opt,name=messageId,proto3" json:"messageId"` // 消息的ID
  1974. MsgType string `protobuf:"bytes,2,opt,name=msgType,proto3" json:"msgType"` // 消息类型
  1975. Message *Message `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` // 消息的结构
  1976. RoomId int64 `protobuf:"varint,4,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  1977. IsSelf bool `protobuf:"varint,5,opt,name=isSelf,proto3" json:"isSelf"` // 是否是自己
  1978. SendTime int64 `protobuf:"varint,6,opt,name=sendTime,proto3" json:"sendTime"` // 发送时间
  1979. Status string `protobuf:"bytes,7,opt,name=status,proto3" json:"status"` // 消息状态
  1980. }
  1981. func (x *ChatRecordInfo) Reset() {
  1982. *x = ChatRecordInfo{}
  1983. if protoimpl.UnsafeEnabled {
  1984. mi := &file_common_proto_msgTypes[32]
  1985. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1986. ms.StoreMessageInfo(mi)
  1987. }
  1988. }
  1989. func (x *ChatRecordInfo) String() string {
  1990. return protoimpl.X.MessageStringOf(x)
  1991. }
  1992. func (*ChatRecordInfo) ProtoMessage() {}
  1993. func (x *ChatRecordInfo) ProtoReflect() protoreflect.Message {
  1994. mi := &file_common_proto_msgTypes[32]
  1995. if protoimpl.UnsafeEnabled && x != nil {
  1996. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1997. if ms.LoadMessageInfo() == nil {
  1998. ms.StoreMessageInfo(mi)
  1999. }
  2000. return ms
  2001. }
  2002. return mi.MessageOf(x)
  2003. }
  2004. // Deprecated: Use ChatRecordInfo.ProtoReflect.Descriptor instead.
  2005. func (*ChatRecordInfo) Descriptor() ([]byte, []int) {
  2006. return file_common_proto_rawDescGZIP(), []int{32}
  2007. }
  2008. func (x *ChatRecordInfo) GetMessageId() int64 {
  2009. if x != nil {
  2010. return x.MessageId
  2011. }
  2012. return 0
  2013. }
  2014. func (x *ChatRecordInfo) GetMsgType() string {
  2015. if x != nil {
  2016. return x.MsgType
  2017. }
  2018. return ""
  2019. }
  2020. func (x *ChatRecordInfo) GetMessage() *Message {
  2021. if x != nil {
  2022. return x.Message
  2023. }
  2024. return nil
  2025. }
  2026. func (x *ChatRecordInfo) GetRoomId() int64 {
  2027. if x != nil {
  2028. return x.RoomId
  2029. }
  2030. return 0
  2031. }
  2032. func (x *ChatRecordInfo) GetIsSelf() bool {
  2033. if x != nil {
  2034. return x.IsSelf
  2035. }
  2036. return false
  2037. }
  2038. func (x *ChatRecordInfo) GetSendTime() int64 {
  2039. if x != nil {
  2040. return x.SendTime
  2041. }
  2042. return 0
  2043. }
  2044. func (x *ChatRecordInfo) GetStatus() string {
  2045. if x != nil {
  2046. return x.Status
  2047. }
  2048. return ""
  2049. }
  2050. type Message struct {
  2051. state protoimpl.MessageState
  2052. sizeCache protoimpl.SizeCache
  2053. unknownFields protoimpl.UnknownFields
  2054. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content"` // 文本内容
  2055. MaterialUrl string `protobuf:"bytes,2,opt,name=materialUrl,proto3" json:"materialUrl"` // 素材链接
  2056. Second int64 `protobuf:"varint,3,opt,name=second,proto3" json:"second"` // 音频的秒数
  2057. }
  2058. func (x *Message) Reset() {
  2059. *x = Message{}
  2060. if protoimpl.UnsafeEnabled {
  2061. mi := &file_common_proto_msgTypes[33]
  2062. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2063. ms.StoreMessageInfo(mi)
  2064. }
  2065. }
  2066. func (x *Message) String() string {
  2067. return protoimpl.X.MessageStringOf(x)
  2068. }
  2069. func (*Message) ProtoMessage() {}
  2070. func (x *Message) ProtoReflect() protoreflect.Message {
  2071. mi := &file_common_proto_msgTypes[33]
  2072. if protoimpl.UnsafeEnabled && x != nil {
  2073. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2074. if ms.LoadMessageInfo() == nil {
  2075. ms.StoreMessageInfo(mi)
  2076. }
  2077. return ms
  2078. }
  2079. return mi.MessageOf(x)
  2080. }
  2081. // Deprecated: Use Message.ProtoReflect.Descriptor instead.
  2082. func (*Message) Descriptor() ([]byte, []int) {
  2083. return file_common_proto_rawDescGZIP(), []int{33}
  2084. }
  2085. func (x *Message) GetContent() string {
  2086. if x != nil {
  2087. return x.Content
  2088. }
  2089. return ""
  2090. }
  2091. func (x *Message) GetMaterialUrl() string {
  2092. if x != nil {
  2093. return x.MaterialUrl
  2094. }
  2095. return ""
  2096. }
  2097. func (x *Message) GetSecond() int64 {
  2098. if x != nil {
  2099. return x.Second
  2100. }
  2101. return 0
  2102. }
  2103. type FindChatRoomMsgRequest struct {
  2104. state protoimpl.MessageState
  2105. sizeCache protoimpl.SizeCache
  2106. unknownFields protoimpl.UnknownFields
  2107. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"`
  2108. }
  2109. func (x *FindChatRoomMsgRequest) Reset() {
  2110. *x = FindChatRoomMsgRequest{}
  2111. if protoimpl.UnsafeEnabled {
  2112. mi := &file_common_proto_msgTypes[34]
  2113. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2114. ms.StoreMessageInfo(mi)
  2115. }
  2116. }
  2117. func (x *FindChatRoomMsgRequest) String() string {
  2118. return protoimpl.X.MessageStringOf(x)
  2119. }
  2120. func (*FindChatRoomMsgRequest) ProtoMessage() {}
  2121. func (x *FindChatRoomMsgRequest) ProtoReflect() protoreflect.Message {
  2122. mi := &file_common_proto_msgTypes[34]
  2123. if protoimpl.UnsafeEnabled && x != nil {
  2124. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2125. if ms.LoadMessageInfo() == nil {
  2126. ms.StoreMessageInfo(mi)
  2127. }
  2128. return ms
  2129. }
  2130. return mi.MessageOf(x)
  2131. }
  2132. // Deprecated: Use FindChatRoomMsgRequest.ProtoReflect.Descriptor instead.
  2133. func (*FindChatRoomMsgRequest) Descriptor() ([]byte, []int) {
  2134. return file_common_proto_rawDescGZIP(), []int{34}
  2135. }
  2136. func (x *FindChatRoomMsgRequest) GetRoomId() int64 {
  2137. if x != nil {
  2138. return x.RoomId
  2139. }
  2140. return 0
  2141. }
  2142. type FindChatRecordListRequest struct {
  2143. state protoimpl.MessageState
  2144. sizeCache protoimpl.SizeCache
  2145. unknownFields protoimpl.UnknownFields
  2146. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  2147. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  2148. RoomId int64 `protobuf:"varint,3,opt,name=roomId,proto3" json:"roomId"`
  2149. }
  2150. func (x *FindChatRecordListRequest) Reset() {
  2151. *x = FindChatRecordListRequest{}
  2152. if protoimpl.UnsafeEnabled {
  2153. mi := &file_common_proto_msgTypes[35]
  2154. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2155. ms.StoreMessageInfo(mi)
  2156. }
  2157. }
  2158. func (x *FindChatRecordListRequest) String() string {
  2159. return protoimpl.X.MessageStringOf(x)
  2160. }
  2161. func (*FindChatRecordListRequest) ProtoMessage() {}
  2162. func (x *FindChatRecordListRequest) ProtoReflect() protoreflect.Message {
  2163. mi := &file_common_proto_msgTypes[35]
  2164. if protoimpl.UnsafeEnabled && x != nil {
  2165. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2166. if ms.LoadMessageInfo() == nil {
  2167. ms.StoreMessageInfo(mi)
  2168. }
  2169. return ms
  2170. }
  2171. return mi.MessageOf(x)
  2172. }
  2173. // Deprecated: Use FindChatRecordListRequest.ProtoReflect.Descriptor instead.
  2174. func (*FindChatRecordListRequest) Descriptor() ([]byte, []int) {
  2175. return file_common_proto_rawDescGZIP(), []int{35}
  2176. }
  2177. func (x *FindChatRecordListRequest) GetNextId() int64 {
  2178. if x != nil {
  2179. return x.NextId
  2180. }
  2181. return 0
  2182. }
  2183. func (x *FindChatRecordListRequest) GetOffset() int64 {
  2184. if x != nil {
  2185. return x.Offset
  2186. }
  2187. return 0
  2188. }
  2189. func (x *FindChatRecordListRequest) GetRoomId() int64 {
  2190. if x != nil {
  2191. return x.RoomId
  2192. }
  2193. return 0
  2194. }
  2195. var File_common_proto protoreflect.FileDescriptor
  2196. var file_common_proto_rawDesc = []byte{
  2197. 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0a,
  2198. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x4d, 0x0a, 0x15, 0x55, 0x73,
  2199. 0x65, 0x72, 0x41, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x50, 0x61,
  2200. 0x72, 0x61, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64,
  2201. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  2202. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  2203. 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0xa1, 0x01, 0x0a, 0x13, 0x55, 0x73,
  2204. 0x65, 0x72, 0x41, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x50, 0x61, 0x72, 0x61,
  2205. 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01,
  2206. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12,
  2207. 0x2c, 0x0a, 0x11, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69,
  2208. 0x66, 0x79, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x61, 0x72, 0x74,
  2209. 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44, 0x12, 0x16, 0x0a,
  2210. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
  2211. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65,
  2212. 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x75,
  2213. 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x44, 0x22, 0x42, 0x0a,
  2214. 0x14, 0x55, 0x73, 0x65, 0x72, 0x31, 0x41, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x32, 0x49, 0x64,
  2215. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x75, 0x73, 0x65, 0x72, 0x31, 0x18, 0x01,
  2216. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x75, 0x73, 0x65, 0x72, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x75,
  2217. 0x73, 0x65, 0x72, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x75, 0x73, 0x65, 0x72,
  2218. 0x32, 0x22, 0x2e, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61,
  2219. 0x72, 0x61, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44,
  2220. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  2221. 0x44, 0x22, 0x2b, 0x0a, 0x0d, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72,
  2222. 0x61, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01,
  2223. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x22, 0x49,
  2224. 0x0a, 0x0b, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x1a, 0x0a,
  2225. 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2226. 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72,
  2227. 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70,
  2228. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x25, 0x0a, 0x0b, 0x55, 0x73, 0x65,
  2229. 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72,
  2230. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  2231. 0x22, 0x1d, 0x0a, 0x09, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a,
  2232. 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22,
  2233. 0x90, 0x01, 0x0a, 0x0e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  2234. 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  2235. 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65,
  2236. 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x74, 0x69, 0x6d,
  2237. 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x6f, 0x6e, 0x63, 0x65, 0x53,
  2238. 0x74, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x6f, 0x6e, 0x63, 0x65, 0x53,
  2239. 0x74, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18,
  2240. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65,
  2241. 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75,
  2242. 0x72, 0x6c, 0x22, 0xf3, 0x02, 0x0a, 0x08, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  2243. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
  2244. 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2245. 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61,
  2246. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  2247. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78,
  2248. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  2249. 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70,
  2250. 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06,
  2251. 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e,
  2252. 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  2253. 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  2254. 0x2d, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b,
  2255. 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61,
  2256. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c,
  2257. 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
  2258. 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e,
  2259. 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a,
  2260. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56,
  2261. 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65,
  2262. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65,
  2263. 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  2264. 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01,
  2265. 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x22, 0xdf, 0x02, 0x0a, 0x09, 0x50, 0x65, 0x72,
  2266. 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  2267. 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  2268. 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  2269. 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18,
  2270. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
  2271. 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
  2272. 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x05,
  2273. 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x10,
  2274. 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65,
  2275. 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  2276. 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c,
  2277. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73,
  2278. 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74,
  2279. 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20,
  2280. 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26,
  2281. 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65,
  2282. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63,
  2283. 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e,
  2284. 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e,
  2285. 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09,
  2286. 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d,
  2287. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x22, 0x5d, 0x0a, 0x11, 0x4c, 0x6f,
  2288. 0x6f, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12,
  2289. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
  2290. 0x1c, 0x0a, 0x09, 0x6c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01,
  2291. 0x28, 0x03, 0x52, 0x09, 0x6c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a,
  2292. 0x08, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  2293. 0x08, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0xc4, 0x03, 0x0a, 0x14, 0x41, 0x64,
  2294. 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e,
  2295. 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  2296. 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  2297. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c,
  2298. 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28,
  2299. 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03,
  2300. 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a,
  2301. 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09,
  2302. 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x66, 0x72,
  2303. 0x6f, 0x6d, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  2304. 0x66, 0x72, 0x6f, 0x6d, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73,
  2305. 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a,
  2306. 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73,
  2307. 0x43, 0x68, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x43, 0x68,
  2308. 0x61, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x55, 0x73, 0x18, 0x09,
  2309. 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x55, 0x73, 0x12, 0x1c,
  2310. 0x0a, 0x09, 0x66, 0x72, 0x6f, 0x6d, 0x41, 0x70, 0x70, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28,
  2311. 0x09, 0x52, 0x09, 0x66, 0x72, 0x6f, 0x6d, 0x41, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08,
  2312. 0x66, 0x72, 0x6f, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  2313. 0x66, 0x72, 0x6f, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73,
  2314. 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52,
  2315. 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1c,
  2316. 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28,
  2317. 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  2318. 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  2319. 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79,
  2320. 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04,
  2321. 0x61, 0x72, 0x65, 0x61, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61,
  2322. 0x22, 0x2c, 0x0a, 0x0c, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74,
  2323. 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20,
  2324. 0x03, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x22, 0x39,
  2325. 0x0a, 0x0d, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  2326. 0x28, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e,
  2327. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2328. 0x6e, 0x44, 0x42, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xf6, 0x02, 0x0a, 0x08, 0x50, 0x65,
  2329. 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  2330. 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  2331. 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  2332. 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18,
  2333. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
  2334. 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
  2335. 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x05,
  2336. 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x10,
  2337. 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65,
  2338. 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  2339. 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c,
  2340. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64,
  2341. 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  2342. 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a,
  2343. 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  2344. 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69,
  2345. 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12,
  2346. 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72,
  2347. 0x65, 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18,
  2348. 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65,
  2349. 0x12, 0x30, 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f,
  2350. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69,
  2351. 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  2352. 0x6f, 0x6e, 0x22, 0x41, 0x0a, 0x0f, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65,
  2353. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18,
  2354. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a,
  2355. 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f,
  2356. 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x42, 0x0a, 0x10, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67,
  2357. 0x65, 0x32, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78,
  2358. 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
  2359. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
  2360. 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x86, 0x01, 0x0a, 0x18, 0x4c, 0x69,
  2361. 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x41, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52,
  2362. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
  2363. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16,
  2364. 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  2365. 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2366. 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2367. 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
  2368. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79,
  2369. 0x70, 0x65, 0x22, 0x2c, 0x0a, 0x14, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43,
  2370. 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68,
  2371. 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65,
  2372. 0x22, 0x41, 0x0a, 0x15, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f,
  2373. 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f,
  2374. 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12,
  2375. 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63,
  2376. 0x6f, 0x64, 0x65, 0x22, 0x2c, 0x0a, 0x16, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4d, 0x61, 0x74,
  2377. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a,
  2378. 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x6e,
  2379. 0x6b, 0x22, 0x17, 0x0a, 0x03, 0x49, 0x64, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x73, 0x18,
  2380. 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22, 0x37, 0x0a, 0x0c, 0x54, 0x61,
  2381. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x27, 0x0a, 0x04, 0x6c, 0x69,
  2382. 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2383. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c,
  2384. 0x69, 0x73, 0x74, 0x22, 0x2d, 0x0a, 0x07, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e,
  2385. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12,
  2386. 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
  2387. 0x6d, 0x65, 0x22, 0x1a, 0x0a, 0x06, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03,
  2388. 0x73, 0x65, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x34,
  2389. 0x0a, 0x14, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63,
  2390. 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64,
  2391. 0x75, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x69, 0x6e, 0x74, 0x72, 0x6f,
  2392. 0x64, 0x75, 0x63, 0x65, 0x22, 0xc2, 0x02, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49,
  2393. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2394. 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
  2395. 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a,
  2396. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2397. 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73,
  2398. 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a,
  2399. 0x08, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52,
  2400. 0x08, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67,
  2401. 0x4c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c,
  2402. 0x69, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65,
  2403. 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74,
  2404. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73,
  2405. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  2406. 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63,
  2407. 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63,
  2408. 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63,
  2409. 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63,
  2410. 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52,
  2411. 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0b, 0x20,
  2412. 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x22, 0x61, 0x0a, 0x15, 0x4f, 0x6e, 0x6c,
  2413. 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  2414. 0x6c, 0x79, 0x12, 0x30, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  2415. 0x32, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4f, 0x6e,
  2416. 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04,
  2417. 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02,
  2418. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0xb4, 0x02, 0x0a,
  2419. 0x10, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x6e, 0x66,
  2420. 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20,
  2421. 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a,
  2422. 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2423. 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a,
  2424. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  2425. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61,
  2426. 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76,
  2427. 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05,
  2428. 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65,
  2429. 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63,
  2430. 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01,
  2431. 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  2432. 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x08,
  2433. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12,
  2434. 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
  2435. 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63,
  2436. 0x69, 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12,
  2437. 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61,
  2438. 0x72, 0x65, 0x61, 0x22, 0x5d, 0x0a, 0x13, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72,
  2439. 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2e, 0x0a, 0x04, 0x6c, 0x69,
  2440. 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2441. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  2442. 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65,
  2443. 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74,
  2444. 0x49, 0x64, 0x22, 0x8d, 0x02, 0x0a, 0x0b, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d,
  2445. 0x73, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  2446. 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65,
  2447. 0x6c, 0x66, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x65, 0x6c, 0x66,
  2448. 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6c, 0x66, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03,
  2449. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x65, 0x6c, 0x66, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18,
  2450. 0x0a, 0x07, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  2451. 0x07, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x6f, 0x74, 0x68, 0x65,
  2452. 0x72, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x74, 0x68,
  2453. 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6c, 0x66, 0x4e, 0x61,
  2454. 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x65, 0x6c, 0x66, 0x4e, 0x61,
  2455. 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18,
  2456. 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65,
  2457. 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6c, 0x66, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18, 0x08,
  2458. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x6c, 0x66, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72,
  2459. 0x12, 0x20, 0x0a, 0x0b, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18,
  2460. 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x41, 0x76, 0x61, 0x74,
  2461. 0x61, 0x72, 0x22, 0xdb, 0x01, 0x0a, 0x0e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72,
  2462. 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2463. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2464. 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02,
  2465. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2d, 0x0a,
  2466. 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13,
  2467. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73,
  2468. 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06,
  2469. 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f,
  2470. 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x53, 0x65, 0x6c, 0x66, 0x18, 0x05,
  2471. 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x53, 0x65, 0x6c, 0x66, 0x12, 0x1a, 0x0a, 0x08,
  2472. 0x73, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08,
  2473. 0x73, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74,
  2474. 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  2475. 0x22, 0x5d, 0x0a, 0x07, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63,
  2476. 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f,
  2477. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61,
  2478. 0x6c, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x61, 0x74, 0x65,
  2479. 0x72, 0x69, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65, 0x63, 0x6f, 0x6e,
  2480. 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x22,
  2481. 0x30, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d,
  2482. 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f,
  2483. 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49,
  2484. 0x64, 0x22, 0x63, 0x0a, 0x19, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63,
  2485. 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
  2486. 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  2487. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
  2488. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16,
  2489. 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  2490. 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x42, 0x43, 0x0a, 0x0a, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2491. 0x6d, 0x6d, 0x6f, 0x6e, 0x50, 0x01, 0x5a, 0x33, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62,
  2492. 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77,
  2493. 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f,
  2494. 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f,
  2495. 0x74, 0x6f, 0x33,
  2496. }
  2497. var (
  2498. file_common_proto_rawDescOnce sync.Once
  2499. file_common_proto_rawDescData = file_common_proto_rawDesc
  2500. )
  2501. func file_common_proto_rawDescGZIP() []byte {
  2502. file_common_proto_rawDescOnce.Do(func() {
  2503. file_common_proto_rawDescData = protoimpl.X.CompressGZIP(file_common_proto_rawDescData)
  2504. })
  2505. return file_common_proto_rawDescData
  2506. }
  2507. var file_common_proto_msgTypes = make([]protoimpl.MessageInfo, 36)
  2508. var file_common_proto_goTypes = []interface{}{
  2509. (*UserAndPartnerIdParam)(nil), // 0: api.common.UserAndPartnerIdParam
  2510. (*UserAndPartnerParam)(nil), // 1: api.common.UserAndPartnerParam
  2511. (*User1AndUser2IdParam)(nil), // 2: api.common.User1AndUser2IdParam
  2512. (*PartnerIDParam)(nil), // 3: api.common.PartnerIDParam
  2513. (*PersonIDParam)(nil), // 4: api.common.PersonIDParam
  2514. (*PersonParam)(nil), // 5: api.common.PersonParam
  2515. (*UserIDParam)(nil), // 6: api.common.UserIDParam
  2516. (*WxConfReq)(nil), // 7: api.common.WxConfReq
  2517. (*WxConfResponse)(nil), // 8: api.common.WxConfResponse
  2518. (*HomeInfo)(nil), // 9: api.common.HomeInfo
  2519. (*PersonMsg)(nil), // 10: api.common.PersonMsg
  2520. (*LookedAndLikedNum)(nil), // 11: api.common.LookedAndLikedNum
  2521. (*AddFriendMessageInfo)(nil), // 12: api.common.AddFriendMessageInfo
  2522. (*PersonIDList)(nil), // 13: api.common.PersonIDList
  2523. (*PersonDBReply)(nil), // 14: api.common.PersonDBReply
  2524. (*PersonDB)(nil), // 15: api.common.PersonDB
  2525. (*ListPageRequest)(nil), // 16: api.common.ListPageRequest
  2526. (*ListPage2Request)(nil), // 17: api.common.ListPage2Request
  2527. (*ListPageAndPersonRequest)(nil), // 18: api.common.ListPageAndPersonRequest
  2528. (*SendPhoneCodeRequest)(nil), // 19: api.common.SendPhoneCodeRequest
  2529. (*CheckPhoneCodeRequest)(nil), // 20: api.common.CheckPhoneCodeRequest
  2530. (*UploadMaterialResponse)(nil), // 21: api.common.UploadMaterialResponse
  2531. (*Ids)(nil), // 22: api.common.Ids
  2532. (*TagListReply)(nil), // 23: api.common.TagListReply
  2533. (*TagList)(nil), // 24: api.common.TagList
  2534. (*SexReq)(nil), // 25: api.common.SexReq
  2535. (*RandomIntroduceReply)(nil), // 26: api.common.RandomIntroduceReply
  2536. (*UpdateInformationRequest)(nil), // 27: api.common.UpdateInformationRequest
  2537. (*OnlinePersonListReply)(nil), // 28: api.common.OnlinePersonListReply
  2538. (*OnlinePersonInfo)(nil), // 29: api.common.OnlinePersonInfo
  2539. (*ChatRecordListReply)(nil), // 30: api.common.ChatRecordListReply
  2540. (*ChatRoomMsg)(nil), // 31: api.common.ChatRoomMsg
  2541. (*ChatRecordInfo)(nil), // 32: api.common.ChatRecordInfo
  2542. (*Message)(nil), // 33: api.common.Message
  2543. (*FindChatRoomMsgRequest)(nil), // 34: api.common.FindChatRoomMsgRequest
  2544. (*FindChatRecordListRequest)(nil), // 35: api.common.FindChatRecordListRequest
  2545. }
  2546. var file_common_proto_depIdxs = []int32{
  2547. 24, // 0: api.common.HomeInfo.tagList:type_name -> api.common.TagList
  2548. 15, // 1: api.common.PersonDBReply.list:type_name -> api.common.PersonDB
  2549. 24, // 2: api.common.TagListReply.list:type_name -> api.common.TagList
  2550. 29, // 3: api.common.OnlinePersonListReply.list:type_name -> api.common.OnlinePersonInfo
  2551. 32, // 4: api.common.ChatRecordListReply.list:type_name -> api.common.ChatRecordInfo
  2552. 33, // 5: api.common.ChatRecordInfo.message:type_name -> api.common.Message
  2553. 6, // [6:6] is the sub-list for method output_type
  2554. 6, // [6:6] is the sub-list for method input_type
  2555. 6, // [6:6] is the sub-list for extension type_name
  2556. 6, // [6:6] is the sub-list for extension extendee
  2557. 0, // [0:6] is the sub-list for field type_name
  2558. }
  2559. func init() { file_common_proto_init() }
  2560. func file_common_proto_init() {
  2561. if File_common_proto != nil {
  2562. return
  2563. }
  2564. if !protoimpl.UnsafeEnabled {
  2565. file_common_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2566. switch v := v.(*UserAndPartnerIdParam); i {
  2567. case 0:
  2568. return &v.state
  2569. case 1:
  2570. return &v.sizeCache
  2571. case 2:
  2572. return &v.unknownFields
  2573. default:
  2574. return nil
  2575. }
  2576. }
  2577. file_common_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2578. switch v := v.(*UserAndPartnerParam); i {
  2579. case 0:
  2580. return &v.state
  2581. case 1:
  2582. return &v.sizeCache
  2583. case 2:
  2584. return &v.unknownFields
  2585. default:
  2586. return nil
  2587. }
  2588. }
  2589. file_common_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2590. switch v := v.(*User1AndUser2IdParam); i {
  2591. case 0:
  2592. return &v.state
  2593. case 1:
  2594. return &v.sizeCache
  2595. case 2:
  2596. return &v.unknownFields
  2597. default:
  2598. return nil
  2599. }
  2600. }
  2601. file_common_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2602. switch v := v.(*PartnerIDParam); i {
  2603. case 0:
  2604. return &v.state
  2605. case 1:
  2606. return &v.sizeCache
  2607. case 2:
  2608. return &v.unknownFields
  2609. default:
  2610. return nil
  2611. }
  2612. }
  2613. file_common_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2614. switch v := v.(*PersonIDParam); i {
  2615. case 0:
  2616. return &v.state
  2617. case 1:
  2618. return &v.sizeCache
  2619. case 2:
  2620. return &v.unknownFields
  2621. default:
  2622. return nil
  2623. }
  2624. }
  2625. file_common_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2626. switch v := v.(*PersonParam); i {
  2627. case 0:
  2628. return &v.state
  2629. case 1:
  2630. return &v.sizeCache
  2631. case 2:
  2632. return &v.unknownFields
  2633. default:
  2634. return nil
  2635. }
  2636. }
  2637. file_common_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2638. switch v := v.(*UserIDParam); i {
  2639. case 0:
  2640. return &v.state
  2641. case 1:
  2642. return &v.sizeCache
  2643. case 2:
  2644. return &v.unknownFields
  2645. default:
  2646. return nil
  2647. }
  2648. }
  2649. file_common_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2650. switch v := v.(*WxConfReq); i {
  2651. case 0:
  2652. return &v.state
  2653. case 1:
  2654. return &v.sizeCache
  2655. case 2:
  2656. return &v.unknownFields
  2657. default:
  2658. return nil
  2659. }
  2660. }
  2661. file_common_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2662. switch v := v.(*WxConfResponse); i {
  2663. case 0:
  2664. return &v.state
  2665. case 1:
  2666. return &v.sizeCache
  2667. case 2:
  2668. return &v.unknownFields
  2669. default:
  2670. return nil
  2671. }
  2672. }
  2673. file_common_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2674. switch v := v.(*HomeInfo); i {
  2675. case 0:
  2676. return &v.state
  2677. case 1:
  2678. return &v.sizeCache
  2679. case 2:
  2680. return &v.unknownFields
  2681. default:
  2682. return nil
  2683. }
  2684. }
  2685. file_common_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2686. switch v := v.(*PersonMsg); i {
  2687. case 0:
  2688. return &v.state
  2689. case 1:
  2690. return &v.sizeCache
  2691. case 2:
  2692. return &v.unknownFields
  2693. default:
  2694. return nil
  2695. }
  2696. }
  2697. file_common_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2698. switch v := v.(*LookedAndLikedNum); i {
  2699. case 0:
  2700. return &v.state
  2701. case 1:
  2702. return &v.sizeCache
  2703. case 2:
  2704. return &v.unknownFields
  2705. default:
  2706. return nil
  2707. }
  2708. }
  2709. file_common_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2710. switch v := v.(*AddFriendMessageInfo); i {
  2711. case 0:
  2712. return &v.state
  2713. case 1:
  2714. return &v.sizeCache
  2715. case 2:
  2716. return &v.unknownFields
  2717. default:
  2718. return nil
  2719. }
  2720. }
  2721. file_common_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2722. switch v := v.(*PersonIDList); i {
  2723. case 0:
  2724. return &v.state
  2725. case 1:
  2726. return &v.sizeCache
  2727. case 2:
  2728. return &v.unknownFields
  2729. default:
  2730. return nil
  2731. }
  2732. }
  2733. file_common_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2734. switch v := v.(*PersonDBReply); i {
  2735. case 0:
  2736. return &v.state
  2737. case 1:
  2738. return &v.sizeCache
  2739. case 2:
  2740. return &v.unknownFields
  2741. default:
  2742. return nil
  2743. }
  2744. }
  2745. file_common_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2746. switch v := v.(*PersonDB); i {
  2747. case 0:
  2748. return &v.state
  2749. case 1:
  2750. return &v.sizeCache
  2751. case 2:
  2752. return &v.unknownFields
  2753. default:
  2754. return nil
  2755. }
  2756. }
  2757. file_common_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2758. switch v := v.(*ListPageRequest); i {
  2759. case 0:
  2760. return &v.state
  2761. case 1:
  2762. return &v.sizeCache
  2763. case 2:
  2764. return &v.unknownFields
  2765. default:
  2766. return nil
  2767. }
  2768. }
  2769. file_common_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2770. switch v := v.(*ListPage2Request); i {
  2771. case 0:
  2772. return &v.state
  2773. case 1:
  2774. return &v.sizeCache
  2775. case 2:
  2776. return &v.unknownFields
  2777. default:
  2778. return nil
  2779. }
  2780. }
  2781. file_common_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2782. switch v := v.(*ListPageAndPersonRequest); i {
  2783. case 0:
  2784. return &v.state
  2785. case 1:
  2786. return &v.sizeCache
  2787. case 2:
  2788. return &v.unknownFields
  2789. default:
  2790. return nil
  2791. }
  2792. }
  2793. file_common_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2794. switch v := v.(*SendPhoneCodeRequest); i {
  2795. case 0:
  2796. return &v.state
  2797. case 1:
  2798. return &v.sizeCache
  2799. case 2:
  2800. return &v.unknownFields
  2801. default:
  2802. return nil
  2803. }
  2804. }
  2805. file_common_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2806. switch v := v.(*CheckPhoneCodeRequest); i {
  2807. case 0:
  2808. return &v.state
  2809. case 1:
  2810. return &v.sizeCache
  2811. case 2:
  2812. return &v.unknownFields
  2813. default:
  2814. return nil
  2815. }
  2816. }
  2817. file_common_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2818. switch v := v.(*UploadMaterialResponse); i {
  2819. case 0:
  2820. return &v.state
  2821. case 1:
  2822. return &v.sizeCache
  2823. case 2:
  2824. return &v.unknownFields
  2825. default:
  2826. return nil
  2827. }
  2828. }
  2829. file_common_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2830. switch v := v.(*Ids); i {
  2831. case 0:
  2832. return &v.state
  2833. case 1:
  2834. return &v.sizeCache
  2835. case 2:
  2836. return &v.unknownFields
  2837. default:
  2838. return nil
  2839. }
  2840. }
  2841. file_common_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2842. switch v := v.(*TagListReply); i {
  2843. case 0:
  2844. return &v.state
  2845. case 1:
  2846. return &v.sizeCache
  2847. case 2:
  2848. return &v.unknownFields
  2849. default:
  2850. return nil
  2851. }
  2852. }
  2853. file_common_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2854. switch v := v.(*TagList); i {
  2855. case 0:
  2856. return &v.state
  2857. case 1:
  2858. return &v.sizeCache
  2859. case 2:
  2860. return &v.unknownFields
  2861. default:
  2862. return nil
  2863. }
  2864. }
  2865. file_common_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2866. switch v := v.(*SexReq); i {
  2867. case 0:
  2868. return &v.state
  2869. case 1:
  2870. return &v.sizeCache
  2871. case 2:
  2872. return &v.unknownFields
  2873. default:
  2874. return nil
  2875. }
  2876. }
  2877. file_common_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  2878. switch v := v.(*RandomIntroduceReply); i {
  2879. case 0:
  2880. return &v.state
  2881. case 1:
  2882. return &v.sizeCache
  2883. case 2:
  2884. return &v.unknownFields
  2885. default:
  2886. return nil
  2887. }
  2888. }
  2889. file_common_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  2890. switch v := v.(*UpdateInformationRequest); i {
  2891. case 0:
  2892. return &v.state
  2893. case 1:
  2894. return &v.sizeCache
  2895. case 2:
  2896. return &v.unknownFields
  2897. default:
  2898. return nil
  2899. }
  2900. }
  2901. file_common_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  2902. switch v := v.(*OnlinePersonListReply); i {
  2903. case 0:
  2904. return &v.state
  2905. case 1:
  2906. return &v.sizeCache
  2907. case 2:
  2908. return &v.unknownFields
  2909. default:
  2910. return nil
  2911. }
  2912. }
  2913. file_common_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  2914. switch v := v.(*OnlinePersonInfo); i {
  2915. case 0:
  2916. return &v.state
  2917. case 1:
  2918. return &v.sizeCache
  2919. case 2:
  2920. return &v.unknownFields
  2921. default:
  2922. return nil
  2923. }
  2924. }
  2925. file_common_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  2926. switch v := v.(*ChatRecordListReply); i {
  2927. case 0:
  2928. return &v.state
  2929. case 1:
  2930. return &v.sizeCache
  2931. case 2:
  2932. return &v.unknownFields
  2933. default:
  2934. return nil
  2935. }
  2936. }
  2937. file_common_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  2938. switch v := v.(*ChatRoomMsg); i {
  2939. case 0:
  2940. return &v.state
  2941. case 1:
  2942. return &v.sizeCache
  2943. case 2:
  2944. return &v.unknownFields
  2945. default:
  2946. return nil
  2947. }
  2948. }
  2949. file_common_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  2950. switch v := v.(*ChatRecordInfo); i {
  2951. case 0:
  2952. return &v.state
  2953. case 1:
  2954. return &v.sizeCache
  2955. case 2:
  2956. return &v.unknownFields
  2957. default:
  2958. return nil
  2959. }
  2960. }
  2961. file_common_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  2962. switch v := v.(*Message); i {
  2963. case 0:
  2964. return &v.state
  2965. case 1:
  2966. return &v.sizeCache
  2967. case 2:
  2968. return &v.unknownFields
  2969. default:
  2970. return nil
  2971. }
  2972. }
  2973. file_common_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  2974. switch v := v.(*FindChatRoomMsgRequest); i {
  2975. case 0:
  2976. return &v.state
  2977. case 1:
  2978. return &v.sizeCache
  2979. case 2:
  2980. return &v.unknownFields
  2981. default:
  2982. return nil
  2983. }
  2984. }
  2985. file_common_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  2986. switch v := v.(*FindChatRecordListRequest); i {
  2987. case 0:
  2988. return &v.state
  2989. case 1:
  2990. return &v.sizeCache
  2991. case 2:
  2992. return &v.unknownFields
  2993. default:
  2994. return nil
  2995. }
  2996. }
  2997. }
  2998. type x struct{}
  2999. out := protoimpl.TypeBuilder{
  3000. File: protoimpl.DescBuilder{
  3001. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3002. RawDescriptor: file_common_proto_rawDesc,
  3003. NumEnums: 0,
  3004. NumMessages: 36,
  3005. NumExtensions: 0,
  3006. NumServices: 0,
  3007. },
  3008. GoTypes: file_common_proto_goTypes,
  3009. DependencyIndexes: file_common_proto_depIdxs,
  3010. MessageInfos: file_common_proto_msgTypes,
  3011. }.Build()
  3012. File_common_proto = out.File
  3013. file_common_proto_rawDesc = nil
  3014. file_common_proto_goTypes = nil
  3015. file_common_proto_depIdxs = nil
  3016. }