common.pb.go 70 KB

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