message.pb.go 143 KB

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