message.pb.go 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1
  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 SendMsgRequest struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. ReceiveUserId string `protobuf:"bytes,1,opt,name=receiveUserId,proto3" json:"receiveUserId,omitempty"` //接收方用户ID
  24. ReceiveName string `protobuf:"bytes,2,opt,name=receiveName,proto3" json:"receiveName,omitempty"` //接收方用户名
  25. SendUserId string `protobuf:"bytes,3,opt,name=sendUserId,proto3" json:"sendUserId,omitempty"` //发送方用户ID
  26. SendName string `protobuf:"bytes,4,opt,name=sendName,proto3" json:"sendName,omitempty"` //发送方用户名
  27. Title string `protobuf:"bytes,5,opt,name=title,proto3" json:"title,omitempty"` //主题
  28. Content string `protobuf:"bytes,6,opt,name=content,proto3" json:"content,omitempty"` //内容
  29. MsgType int64 `protobuf:"varint,7,opt,name=msgType,proto3" json:"msgType,omitempty"` //消息类型 1:客服 2:系统通知 3:营销 4:用户会话
  30. Link string `protobuf:"bytes,8,opt,name=link,proto3" json:"link,omitempty"` //跳转链接
  31. CiteId int64 `protobuf:"varint,9,opt,name=citeId,proto3" json:"citeId,omitempty"` //引用id
  32. Appid string `protobuf:"bytes,10,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  33. }
  34. func (x *SendMsgRequest) Reset() {
  35. *x = SendMsgRequest{}
  36. if protoimpl.UnsafeEnabled {
  37. mi := &file_message_proto_msgTypes[0]
  38. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  39. ms.StoreMessageInfo(mi)
  40. }
  41. }
  42. func (x *SendMsgRequest) String() string {
  43. return protoimpl.X.MessageStringOf(x)
  44. }
  45. func (*SendMsgRequest) ProtoMessage() {}
  46. func (x *SendMsgRequest) ProtoReflect() protoreflect.Message {
  47. mi := &file_message_proto_msgTypes[0]
  48. if protoimpl.UnsafeEnabled && x != nil {
  49. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  50. if ms.LoadMessageInfo() == nil {
  51. ms.StoreMessageInfo(mi)
  52. }
  53. return ms
  54. }
  55. return mi.MessageOf(x)
  56. }
  57. // Deprecated: Use SendMsgRequest.ProtoReflect.Descriptor instead.
  58. func (*SendMsgRequest) Descriptor() ([]byte, []int) {
  59. return file_message_proto_rawDescGZIP(), []int{0}
  60. }
  61. func (x *SendMsgRequest) GetReceiveUserId() string {
  62. if x != nil {
  63. return x.ReceiveUserId
  64. }
  65. return ""
  66. }
  67. func (x *SendMsgRequest) GetReceiveName() string {
  68. if x != nil {
  69. return x.ReceiveName
  70. }
  71. return ""
  72. }
  73. func (x *SendMsgRequest) GetSendUserId() string {
  74. if x != nil {
  75. return x.SendUserId
  76. }
  77. return ""
  78. }
  79. func (x *SendMsgRequest) GetSendName() string {
  80. if x != nil {
  81. return x.SendName
  82. }
  83. return ""
  84. }
  85. func (x *SendMsgRequest) GetTitle() string {
  86. if x != nil {
  87. return x.Title
  88. }
  89. return ""
  90. }
  91. func (x *SendMsgRequest) GetContent() string {
  92. if x != nil {
  93. return x.Content
  94. }
  95. return ""
  96. }
  97. func (x *SendMsgRequest) GetMsgType() int64 {
  98. if x != nil {
  99. return x.MsgType
  100. }
  101. return 0
  102. }
  103. func (x *SendMsgRequest) GetLink() string {
  104. if x != nil {
  105. return x.Link
  106. }
  107. return ""
  108. }
  109. func (x *SendMsgRequest) GetCiteId() int64 {
  110. if x != nil {
  111. return x.CiteId
  112. }
  113. return 0
  114. }
  115. func (x *SendMsgRequest) GetAppid() string {
  116. if x != nil {
  117. return x.Appid
  118. }
  119. return ""
  120. }
  121. type ChangeReadStatusReq struct {
  122. state protoimpl.MessageState
  123. sizeCache protoimpl.SizeCache
  124. unknownFields protoimpl.UnknownFields
  125. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // 消息id
  126. ReadStatus int64 `protobuf:"varint,2,opt,name=readStatus,proto3" json:"readStatus,omitempty"` // 阅读状态 0-未读 1-已读
  127. Appid string `protobuf:"bytes,3,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  128. }
  129. func (x *ChangeReadStatusReq) Reset() {
  130. *x = ChangeReadStatusReq{}
  131. if protoimpl.UnsafeEnabled {
  132. mi := &file_message_proto_msgTypes[1]
  133. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  134. ms.StoreMessageInfo(mi)
  135. }
  136. }
  137. func (x *ChangeReadStatusReq) String() string {
  138. return protoimpl.X.MessageStringOf(x)
  139. }
  140. func (*ChangeReadStatusReq) ProtoMessage() {}
  141. func (x *ChangeReadStatusReq) ProtoReflect() protoreflect.Message {
  142. mi := &file_message_proto_msgTypes[1]
  143. if protoimpl.UnsafeEnabled && x != nil {
  144. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  145. if ms.LoadMessageInfo() == nil {
  146. ms.StoreMessageInfo(mi)
  147. }
  148. return ms
  149. }
  150. return mi.MessageOf(x)
  151. }
  152. // Deprecated: Use ChangeReadStatusReq.ProtoReflect.Descriptor instead.
  153. func (*ChangeReadStatusReq) Descriptor() ([]byte, []int) {
  154. return file_message_proto_rawDescGZIP(), []int{1}
  155. }
  156. func (x *ChangeReadStatusReq) GetId() string {
  157. if x != nil {
  158. return x.Id
  159. }
  160. return ""
  161. }
  162. func (x *ChangeReadStatusReq) GetReadStatus() int64 {
  163. if x != nil {
  164. return x.ReadStatus
  165. }
  166. return 0
  167. }
  168. func (x *ChangeReadStatusReq) GetAppid() string {
  169. if x != nil {
  170. return x.Appid
  171. }
  172. return ""
  173. }
  174. type ResCount struct {
  175. state protoimpl.MessageState
  176. sizeCache protoimpl.SizeCache
  177. unknownFields protoimpl.UnknownFields
  178. MsgType int64 `protobuf:"varint,1,opt,name=msgType,proto3" json:"msgType,omitempty"` // 类型及未读数量
  179. Count int64 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"` // 类型及未读数量
  180. }
  181. func (x *ResCount) Reset() {
  182. *x = ResCount{}
  183. if protoimpl.UnsafeEnabled {
  184. mi := &file_message_proto_msgTypes[2]
  185. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  186. ms.StoreMessageInfo(mi)
  187. }
  188. }
  189. func (x *ResCount) String() string {
  190. return protoimpl.X.MessageStringOf(x)
  191. }
  192. func (*ResCount) ProtoMessage() {}
  193. func (x *ResCount) ProtoReflect() protoreflect.Message {
  194. mi := &file_message_proto_msgTypes[2]
  195. if protoimpl.UnsafeEnabled && x != nil {
  196. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  197. if ms.LoadMessageInfo() == nil {
  198. ms.StoreMessageInfo(mi)
  199. }
  200. return ms
  201. }
  202. return mi.MessageOf(x)
  203. }
  204. // Deprecated: Use ResCount.ProtoReflect.Descriptor instead.
  205. func (*ResCount) Descriptor() ([]byte, []int) {
  206. return file_message_proto_rawDescGZIP(), []int{2}
  207. }
  208. func (x *ResCount) GetMsgType() int64 {
  209. if x != nil {
  210. return x.MsgType
  211. }
  212. return 0
  213. }
  214. func (x *ResCount) GetCount() int64 {
  215. if x != nil {
  216. return x.Count
  217. }
  218. return 0
  219. }
  220. // 查询指定用户未读消息合计
  221. type GetUnreadCountRequest struct {
  222. state protoimpl.MessageState
  223. sizeCache protoimpl.SizeCache
  224. unknownFields protoimpl.UnknownFields
  225. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"` // 用户id
  226. Appid string `protobuf:"bytes,2,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  227. }
  228. func (x *GetUnreadCountRequest) Reset() {
  229. *x = GetUnreadCountRequest{}
  230. if protoimpl.UnsafeEnabled {
  231. mi := &file_message_proto_msgTypes[3]
  232. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  233. ms.StoreMessageInfo(mi)
  234. }
  235. }
  236. func (x *GetUnreadCountRequest) String() string {
  237. return protoimpl.X.MessageStringOf(x)
  238. }
  239. func (*GetUnreadCountRequest) ProtoMessage() {}
  240. func (x *GetUnreadCountRequest) ProtoReflect() protoreflect.Message {
  241. mi := &file_message_proto_msgTypes[3]
  242. if protoimpl.UnsafeEnabled && x != nil {
  243. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  244. if ms.LoadMessageInfo() == nil {
  245. ms.StoreMessageInfo(mi)
  246. }
  247. return ms
  248. }
  249. return mi.MessageOf(x)
  250. }
  251. // Deprecated: Use GetUnreadCountRequest.ProtoReflect.Descriptor instead.
  252. func (*GetUnreadCountRequest) Descriptor() ([]byte, []int) {
  253. return file_message_proto_rawDescGZIP(), []int{3}
  254. }
  255. func (x *GetUnreadCountRequest) GetUserId() string {
  256. if x != nil {
  257. return x.UserId
  258. }
  259. return ""
  260. }
  261. func (x *GetUnreadCountRequest) GetAppid() string {
  262. if x != nil {
  263. return x.Appid
  264. }
  265. return ""
  266. }
  267. type Response struct {
  268. state protoimpl.MessageState
  269. sizeCache protoimpl.SizeCache
  270. unknownFields protoimpl.UnknownFields
  271. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` //状态码
  272. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //响应消息
  273. }
  274. func (x *Response) Reset() {
  275. *x = Response{}
  276. if protoimpl.UnsafeEnabled {
  277. mi := &file_message_proto_msgTypes[4]
  278. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  279. ms.StoreMessageInfo(mi)
  280. }
  281. }
  282. func (x *Response) String() string {
  283. return protoimpl.X.MessageStringOf(x)
  284. }
  285. func (*Response) ProtoMessage() {}
  286. func (x *Response) ProtoReflect() protoreflect.Message {
  287. mi := &file_message_proto_msgTypes[4]
  288. if protoimpl.UnsafeEnabled && x != nil {
  289. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  290. if ms.LoadMessageInfo() == nil {
  291. ms.StoreMessageInfo(mi)
  292. }
  293. return ms
  294. }
  295. return mi.MessageOf(x)
  296. }
  297. // Deprecated: Use Response.ProtoReflect.Descriptor instead.
  298. func (*Response) Descriptor() ([]byte, []int) {
  299. return file_message_proto_rawDescGZIP(), []int{4}
  300. }
  301. func (x *Response) GetCode() int64 {
  302. if x != nil {
  303. return x.Code
  304. }
  305. return 0
  306. }
  307. func (x *Response) GetMessage() string {
  308. if x != nil {
  309. return x.Message
  310. }
  311. return ""
  312. }
  313. type GetUnreadCountResponse struct {
  314. state protoimpl.MessageState
  315. sizeCache protoimpl.SizeCache
  316. unknownFields protoimpl.UnknownFields
  317. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` //状态码
  318. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //响应消息
  319. Count int64 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"` //
  320. }
  321. func (x *GetUnreadCountResponse) Reset() {
  322. *x = GetUnreadCountResponse{}
  323. if protoimpl.UnsafeEnabled {
  324. mi := &file_message_proto_msgTypes[5]
  325. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  326. ms.StoreMessageInfo(mi)
  327. }
  328. }
  329. func (x *GetUnreadCountResponse) String() string {
  330. return protoimpl.X.MessageStringOf(x)
  331. }
  332. func (*GetUnreadCountResponse) ProtoMessage() {}
  333. func (x *GetUnreadCountResponse) ProtoReflect() protoreflect.Message {
  334. mi := &file_message_proto_msgTypes[5]
  335. if protoimpl.UnsafeEnabled && x != nil {
  336. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  337. if ms.LoadMessageInfo() == nil {
  338. ms.StoreMessageInfo(mi)
  339. }
  340. return ms
  341. }
  342. return mi.MessageOf(x)
  343. }
  344. // Deprecated: Use GetUnreadCountResponse.ProtoReflect.Descriptor instead.
  345. func (*GetUnreadCountResponse) Descriptor() ([]byte, []int) {
  346. return file_message_proto_rawDescGZIP(), []int{5}
  347. }
  348. func (x *GetUnreadCountResponse) GetCode() int64 {
  349. if x != nil {
  350. return x.Code
  351. }
  352. return 0
  353. }
  354. func (x *GetUnreadCountResponse) GetMessage() string {
  355. if x != nil {
  356. return x.Message
  357. }
  358. return ""
  359. }
  360. func (x *GetUnreadCountResponse) GetCount() int64 {
  361. if x != nil {
  362. return x.Count
  363. }
  364. return 0
  365. }
  366. type FindUserMsgReq struct {
  367. state protoimpl.MessageState
  368. sizeCache protoimpl.SizeCache
  369. unknownFields protoimpl.UnknownFields
  370. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"` //用户id
  371. ReceiveUserId string `protobuf:"bytes,2,opt,name=receiveUserId,proto3" json:"receiveUserId,omitempty"` //聊天方用户id
  372. Appid string `protobuf:"bytes,3,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  373. OffSet int64 `protobuf:"varint,4,opt,name=offSet,proto3" json:"offSet,omitempty"` //当前
  374. PageSize int64 `protobuf:"varint,5,opt,name=pageSize,proto3" json:"pageSize,omitempty"` //大小
  375. MsgType int64 `protobuf:"varint,6,opt,name=msgType,proto3" json:"msgType,omitempty"` //是否区分类型
  376. Read int64 `protobuf:"varint,7,opt,name=read,proto3" json:"read,omitempty"` // 是否区分已读未读 -1 不区分已读未读 0 未读 1 已读
  377. }
  378. func (x *FindUserMsgReq) Reset() {
  379. *x = FindUserMsgReq{}
  380. if protoimpl.UnsafeEnabled {
  381. mi := &file_message_proto_msgTypes[6]
  382. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  383. ms.StoreMessageInfo(mi)
  384. }
  385. }
  386. func (x *FindUserMsgReq) String() string {
  387. return protoimpl.X.MessageStringOf(x)
  388. }
  389. func (*FindUserMsgReq) ProtoMessage() {}
  390. func (x *FindUserMsgReq) ProtoReflect() protoreflect.Message {
  391. mi := &file_message_proto_msgTypes[6]
  392. if protoimpl.UnsafeEnabled && x != nil {
  393. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  394. if ms.LoadMessageInfo() == nil {
  395. ms.StoreMessageInfo(mi)
  396. }
  397. return ms
  398. }
  399. return mi.MessageOf(x)
  400. }
  401. // Deprecated: Use FindUserMsgReq.ProtoReflect.Descriptor instead.
  402. func (*FindUserMsgReq) Descriptor() ([]byte, []int) {
  403. return file_message_proto_rawDescGZIP(), []int{6}
  404. }
  405. func (x *FindUserMsgReq) GetUserId() string {
  406. if x != nil {
  407. return x.UserId
  408. }
  409. return ""
  410. }
  411. func (x *FindUserMsgReq) GetReceiveUserId() string {
  412. if x != nil {
  413. return x.ReceiveUserId
  414. }
  415. return ""
  416. }
  417. func (x *FindUserMsgReq) GetAppid() string {
  418. if x != nil {
  419. return x.Appid
  420. }
  421. return ""
  422. }
  423. func (x *FindUserMsgReq) GetOffSet() int64 {
  424. if x != nil {
  425. return x.OffSet
  426. }
  427. return 0
  428. }
  429. func (x *FindUserMsgReq) GetPageSize() int64 {
  430. if x != nil {
  431. return x.PageSize
  432. }
  433. return 0
  434. }
  435. func (x *FindUserMsgReq) GetMsgType() int64 {
  436. if x != nil {
  437. return x.MsgType
  438. }
  439. return 0
  440. }
  441. func (x *FindUserMsgReq) GetRead() int64 {
  442. if x != nil {
  443. return x.Read
  444. }
  445. return 0
  446. }
  447. type Messages struct {
  448. state protoimpl.MessageState
  449. sizeCache protoimpl.SizeCache
  450. unknownFields protoimpl.UnknownFields
  451. ReceiveUserId string `protobuf:"bytes,1,opt,name=receiveUserId,proto3" json:"receiveUserId,omitempty"` //接收方用户ID
  452. ReceiveName string `protobuf:"bytes,2,opt,name=receiveName,proto3" json:"receiveName,omitempty"` //接收方用户名
  453. SendUserId string `protobuf:"bytes,3,opt,name=sendUserId,proto3" json:"sendUserId,omitempty"` //发送方用户ID
  454. SendName string `protobuf:"bytes,4,opt,name=sendName,proto3" json:"sendName,omitempty"` //发送方用户名
  455. Title string `protobuf:"bytes,5,opt,name=title,proto3" json:"title,omitempty"` //主题
  456. Content string `protobuf:"bytes,6,opt,name=content,proto3" json:"content,omitempty"` //内容
  457. MsgType int64 `protobuf:"varint,7,opt,name=msgType,proto3" json:"msgType,omitempty"` //消息类型 1:客服 2:系统通知 3:营销 4:用户会话
  458. Link string `protobuf:"bytes,8,opt,name=link,proto3" json:"link,omitempty"` //跳转链接
  459. CiteId int64 `protobuf:"varint,9,opt,name=citeId,proto3" json:"citeId,omitempty"` //引用id
  460. IsRead int64 `protobuf:"varint,10,opt,name=isRead,proto3" json:"isRead,omitempty"` //已读未读 0:未读 1:已读
  461. Createtime string `protobuf:"bytes,11,opt,name=createtime,proto3" json:"createtime,omitempty"`
  462. Appid string `protobuf:"bytes,12,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  463. Id string `protobuf:"bytes,13,opt,name=id,proto3" json:"id,omitempty"` //消息id
  464. MsgLogId int64 `protobuf:"varint,14,opt,name=msgLogId,proto3" json:"msgLogId,omitempty"`
  465. 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"`
  466. }
  467. func (x *Messages) Reset() {
  468. *x = Messages{}
  469. if protoimpl.UnsafeEnabled {
  470. mi := &file_message_proto_msgTypes[7]
  471. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  472. ms.StoreMessageInfo(mi)
  473. }
  474. }
  475. func (x *Messages) String() string {
  476. return protoimpl.X.MessageStringOf(x)
  477. }
  478. func (*Messages) ProtoMessage() {}
  479. func (x *Messages) ProtoReflect() protoreflect.Message {
  480. mi := &file_message_proto_msgTypes[7]
  481. if protoimpl.UnsafeEnabled && x != nil {
  482. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  483. if ms.LoadMessageInfo() == nil {
  484. ms.StoreMessageInfo(mi)
  485. }
  486. return ms
  487. }
  488. return mi.MessageOf(x)
  489. }
  490. // Deprecated: Use Messages.ProtoReflect.Descriptor instead.
  491. func (*Messages) Descriptor() ([]byte, []int) {
  492. return file_message_proto_rawDescGZIP(), []int{7}
  493. }
  494. func (x *Messages) GetReceiveUserId() string {
  495. if x != nil {
  496. return x.ReceiveUserId
  497. }
  498. return ""
  499. }
  500. func (x *Messages) GetReceiveName() string {
  501. if x != nil {
  502. return x.ReceiveName
  503. }
  504. return ""
  505. }
  506. func (x *Messages) GetSendUserId() string {
  507. if x != nil {
  508. return x.SendUserId
  509. }
  510. return ""
  511. }
  512. func (x *Messages) GetSendName() string {
  513. if x != nil {
  514. return x.SendName
  515. }
  516. return ""
  517. }
  518. func (x *Messages) GetTitle() string {
  519. if x != nil {
  520. return x.Title
  521. }
  522. return ""
  523. }
  524. func (x *Messages) GetContent() string {
  525. if x != nil {
  526. return x.Content
  527. }
  528. return ""
  529. }
  530. func (x *Messages) GetMsgType() int64 {
  531. if x != nil {
  532. return x.MsgType
  533. }
  534. return 0
  535. }
  536. func (x *Messages) GetLink() string {
  537. if x != nil {
  538. return x.Link
  539. }
  540. return ""
  541. }
  542. func (x *Messages) GetCiteId() int64 {
  543. if x != nil {
  544. return x.CiteId
  545. }
  546. return 0
  547. }
  548. func (x *Messages) GetIsRead() int64 {
  549. if x != nil {
  550. return x.IsRead
  551. }
  552. return 0
  553. }
  554. func (x *Messages) GetCreatetime() string {
  555. if x != nil {
  556. return x.Createtime
  557. }
  558. return ""
  559. }
  560. func (x *Messages) GetAppid() string {
  561. if x != nil {
  562. return x.Appid
  563. }
  564. return ""
  565. }
  566. func (x *Messages) GetId() string {
  567. if x != nil {
  568. return x.Id
  569. }
  570. return ""
  571. }
  572. func (x *Messages) GetMsgLogId() int64 {
  573. if x != nil {
  574. return x.MsgLogId
  575. }
  576. return 0
  577. }
  578. func (x *Messages) GetUrl() map[string]string {
  579. if x != nil {
  580. return x.Url
  581. }
  582. return nil
  583. }
  584. type FindUserMsgRes struct {
  585. state protoimpl.MessageState
  586. sizeCache protoimpl.SizeCache
  587. unknownFields protoimpl.UnknownFields
  588. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` //状态码
  589. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //响应消息
  590. Data []*Messages `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"` //
  591. Count int64 `protobuf:"varint,4,opt,name=count,proto3" json:"count,omitempty"` //总数
  592. }
  593. func (x *FindUserMsgRes) Reset() {
  594. *x = FindUserMsgRes{}
  595. if protoimpl.UnsafeEnabled {
  596. mi := &file_message_proto_msgTypes[8]
  597. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  598. ms.StoreMessageInfo(mi)
  599. }
  600. }
  601. func (x *FindUserMsgRes) String() string {
  602. return protoimpl.X.MessageStringOf(x)
  603. }
  604. func (*FindUserMsgRes) ProtoMessage() {}
  605. func (x *FindUserMsgRes) ProtoReflect() protoreflect.Message {
  606. mi := &file_message_proto_msgTypes[8]
  607. if protoimpl.UnsafeEnabled && x != nil {
  608. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  609. if ms.LoadMessageInfo() == nil {
  610. ms.StoreMessageInfo(mi)
  611. }
  612. return ms
  613. }
  614. return mi.MessageOf(x)
  615. }
  616. // Deprecated: Use FindUserMsgRes.ProtoReflect.Descriptor instead.
  617. func (*FindUserMsgRes) Descriptor() ([]byte, []int) {
  618. return file_message_proto_rawDescGZIP(), []int{8}
  619. }
  620. func (x *FindUserMsgRes) GetCode() int64 {
  621. if x != nil {
  622. return x.Code
  623. }
  624. return 0
  625. }
  626. func (x *FindUserMsgRes) GetMessage() string {
  627. if x != nil {
  628. return x.Message
  629. }
  630. return ""
  631. }
  632. func (x *FindUserMsgRes) GetData() []*Messages {
  633. if x != nil {
  634. return x.Data
  635. }
  636. return nil
  637. }
  638. func (x *FindUserMsgRes) GetCount() int64 {
  639. if x != nil {
  640. return x.Count
  641. }
  642. return 0
  643. }
  644. type GetClassUnreadCountReq struct {
  645. state protoimpl.MessageState
  646. sizeCache protoimpl.SizeCache
  647. unknownFields protoimpl.UnknownFields
  648. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"` // 用户id
  649. MsgType int64 `protobuf:"varint,2,opt,name=msgType,proto3" json:"msgType,omitempty"` //分类 1:客服 2:系统通知 3:营销 4:用户会话
  650. Appid string `protobuf:"bytes,3,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  651. }
  652. func (x *GetClassUnreadCountReq) Reset() {
  653. *x = GetClassUnreadCountReq{}
  654. if protoimpl.UnsafeEnabled {
  655. mi := &file_message_proto_msgTypes[9]
  656. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  657. ms.StoreMessageInfo(mi)
  658. }
  659. }
  660. func (x *GetClassUnreadCountReq) String() string {
  661. return protoimpl.X.MessageStringOf(x)
  662. }
  663. func (*GetClassUnreadCountReq) ProtoMessage() {}
  664. func (x *GetClassUnreadCountReq) ProtoReflect() protoreflect.Message {
  665. mi := &file_message_proto_msgTypes[9]
  666. if protoimpl.UnsafeEnabled && x != nil {
  667. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  668. if ms.LoadMessageInfo() == nil {
  669. ms.StoreMessageInfo(mi)
  670. }
  671. return ms
  672. }
  673. return mi.MessageOf(x)
  674. }
  675. // Deprecated: Use GetClassUnreadCountReq.ProtoReflect.Descriptor instead.
  676. func (*GetClassUnreadCountReq) Descriptor() ([]byte, []int) {
  677. return file_message_proto_rawDescGZIP(), []int{9}
  678. }
  679. func (x *GetClassUnreadCountReq) GetUserId() string {
  680. if x != nil {
  681. return x.UserId
  682. }
  683. return ""
  684. }
  685. func (x *GetClassUnreadCountReq) GetMsgType() int64 {
  686. if x != nil {
  687. return x.MsgType
  688. }
  689. return 0
  690. }
  691. func (x *GetClassUnreadCountReq) GetAppid() string {
  692. if x != nil {
  693. return x.Appid
  694. }
  695. return ""
  696. }
  697. // 查看消息内容
  698. type MessageDetailReq struct {
  699. state protoimpl.MessageState
  700. sizeCache protoimpl.SizeCache
  701. unknownFields protoimpl.UnknownFields
  702. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` //消息id
  703. }
  704. func (x *MessageDetailReq) Reset() {
  705. *x = MessageDetailReq{}
  706. if protoimpl.UnsafeEnabled {
  707. mi := &file_message_proto_msgTypes[10]
  708. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  709. ms.StoreMessageInfo(mi)
  710. }
  711. }
  712. func (x *MessageDetailReq) String() string {
  713. return protoimpl.X.MessageStringOf(x)
  714. }
  715. func (*MessageDetailReq) ProtoMessage() {}
  716. func (x *MessageDetailReq) ProtoReflect() protoreflect.Message {
  717. mi := &file_message_proto_msgTypes[10]
  718. if protoimpl.UnsafeEnabled && x != nil {
  719. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  720. if ms.LoadMessageInfo() == nil {
  721. ms.StoreMessageInfo(mi)
  722. }
  723. return ms
  724. }
  725. return mi.MessageOf(x)
  726. }
  727. // Deprecated: Use MessageDetailReq.ProtoReflect.Descriptor instead.
  728. func (*MessageDetailReq) Descriptor() ([]byte, []int) {
  729. return file_message_proto_rawDescGZIP(), []int{10}
  730. }
  731. func (x *MessageDetailReq) GetId() string {
  732. if x != nil {
  733. return x.Id
  734. }
  735. return ""
  736. }
  737. type MessageDetailResp struct {
  738. state protoimpl.MessageState
  739. sizeCache protoimpl.SizeCache
  740. unknownFields protoimpl.UnknownFields
  741. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` //状态码
  742. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //响应消息
  743. Data *Messages `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` //
  744. }
  745. func (x *MessageDetailResp) Reset() {
  746. *x = MessageDetailResp{}
  747. if protoimpl.UnsafeEnabled {
  748. mi := &file_message_proto_msgTypes[11]
  749. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  750. ms.StoreMessageInfo(mi)
  751. }
  752. }
  753. func (x *MessageDetailResp) String() string {
  754. return protoimpl.X.MessageStringOf(x)
  755. }
  756. func (*MessageDetailResp) ProtoMessage() {}
  757. func (x *MessageDetailResp) ProtoReflect() protoreflect.Message {
  758. mi := &file_message_proto_msgTypes[11]
  759. if protoimpl.UnsafeEnabled && x != nil {
  760. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  761. if ms.LoadMessageInfo() == nil {
  762. ms.StoreMessageInfo(mi)
  763. }
  764. return ms
  765. }
  766. return mi.MessageOf(x)
  767. }
  768. // Deprecated: Use MessageDetailResp.ProtoReflect.Descriptor instead.
  769. func (*MessageDetailResp) Descriptor() ([]byte, []int) {
  770. return file_message_proto_rawDescGZIP(), []int{11}
  771. }
  772. func (x *MessageDetailResp) GetCode() int64 {
  773. if x != nil {
  774. return x.Code
  775. }
  776. return 0
  777. }
  778. func (x *MessageDetailResp) GetMessage() string {
  779. if x != nil {
  780. return x.Message
  781. }
  782. return ""
  783. }
  784. func (x *MessageDetailResp) GetData() *Messages {
  785. if x != nil {
  786. return x.Data
  787. }
  788. return nil
  789. }
  790. type GetLastMessageReq struct {
  791. state protoimpl.MessageState
  792. sizeCache protoimpl.SizeCache
  793. unknownFields protoimpl.UnknownFields
  794. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"` // 用户id
  795. MsgType int64 `protobuf:"varint,2,opt,name=msgType,proto3" json:"msgType,omitempty"` //分类 1:客服 2:系统通知 3:营销 4:用户会话
  796. Appid string `protobuf:"bytes,3,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  797. IsRead int64 `protobuf:"varint,4,opt,name=isRead,proto3" json:"isRead,omitempty"` // 0:未读 1:已读 -1 不区分
  798. }
  799. func (x *GetLastMessageReq) Reset() {
  800. *x = GetLastMessageReq{}
  801. if protoimpl.UnsafeEnabled {
  802. mi := &file_message_proto_msgTypes[12]
  803. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  804. ms.StoreMessageInfo(mi)
  805. }
  806. }
  807. func (x *GetLastMessageReq) String() string {
  808. return protoimpl.X.MessageStringOf(x)
  809. }
  810. func (*GetLastMessageReq) ProtoMessage() {}
  811. func (x *GetLastMessageReq) ProtoReflect() protoreflect.Message {
  812. mi := &file_message_proto_msgTypes[12]
  813. if protoimpl.UnsafeEnabled && x != nil {
  814. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  815. if ms.LoadMessageInfo() == nil {
  816. ms.StoreMessageInfo(mi)
  817. }
  818. return ms
  819. }
  820. return mi.MessageOf(x)
  821. }
  822. // Deprecated: Use GetLastMessageReq.ProtoReflect.Descriptor instead.
  823. func (*GetLastMessageReq) Descriptor() ([]byte, []int) {
  824. return file_message_proto_rawDescGZIP(), []int{12}
  825. }
  826. func (x *GetLastMessageReq) GetUserId() string {
  827. if x != nil {
  828. return x.UserId
  829. }
  830. return ""
  831. }
  832. func (x *GetLastMessageReq) GetMsgType() int64 {
  833. if x != nil {
  834. return x.MsgType
  835. }
  836. return 0
  837. }
  838. func (x *GetLastMessageReq) GetAppid() string {
  839. if x != nil {
  840. return x.Appid
  841. }
  842. return ""
  843. }
  844. func (x *GetLastMessageReq) GetIsRead() int64 {
  845. if x != nil {
  846. return x.IsRead
  847. }
  848. return 0
  849. }
  850. type GetLastMessageRes struct {
  851. state protoimpl.MessageState
  852. sizeCache protoimpl.SizeCache
  853. unknownFields protoimpl.UnknownFields
  854. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` //状态码
  855. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //响应消息
  856. Data *Messages `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` //
  857. }
  858. func (x *GetLastMessageRes) Reset() {
  859. *x = GetLastMessageRes{}
  860. if protoimpl.UnsafeEnabled {
  861. mi := &file_message_proto_msgTypes[13]
  862. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  863. ms.StoreMessageInfo(mi)
  864. }
  865. }
  866. func (x *GetLastMessageRes) String() string {
  867. return protoimpl.X.MessageStringOf(x)
  868. }
  869. func (*GetLastMessageRes) ProtoMessage() {}
  870. func (x *GetLastMessageRes) ProtoReflect() protoreflect.Message {
  871. mi := &file_message_proto_msgTypes[13]
  872. if protoimpl.UnsafeEnabled && x != nil {
  873. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  874. if ms.LoadMessageInfo() == nil {
  875. ms.StoreMessageInfo(mi)
  876. }
  877. return ms
  878. }
  879. return mi.MessageOf(x)
  880. }
  881. // Deprecated: Use GetLastMessageRes.ProtoReflect.Descriptor instead.
  882. func (*GetLastMessageRes) Descriptor() ([]byte, []int) {
  883. return file_message_proto_rawDescGZIP(), []int{13}
  884. }
  885. func (x *GetLastMessageRes) GetCode() int64 {
  886. if x != nil {
  887. return x.Code
  888. }
  889. return 0
  890. }
  891. func (x *GetLastMessageRes) GetMessage() string {
  892. if x != nil {
  893. return x.Message
  894. }
  895. return ""
  896. }
  897. func (x *GetLastMessageRes) GetData() *Messages {
  898. if x != nil {
  899. return x.Data
  900. }
  901. return nil
  902. }
  903. // 获取用户分类的的未读消息分类及数量 及分类下最新的消息
  904. type GetUnreadClassCountReq struct {
  905. state protoimpl.MessageState
  906. sizeCache protoimpl.SizeCache
  907. unknownFields protoimpl.UnknownFields
  908. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"` // 用户id
  909. Appid string `protobuf:"bytes,2,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  910. NeedMsg bool `protobuf:"varint,3,opt,name=needMsg,proto3" json:"needMsg,omitempty"` //是否需要分类下的最新一条消息
  911. }
  912. func (x *GetUnreadClassCountReq) Reset() {
  913. *x = GetUnreadClassCountReq{}
  914. if protoimpl.UnsafeEnabled {
  915. mi := &file_message_proto_msgTypes[14]
  916. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  917. ms.StoreMessageInfo(mi)
  918. }
  919. }
  920. func (x *GetUnreadClassCountReq) String() string {
  921. return protoimpl.X.MessageStringOf(x)
  922. }
  923. func (*GetUnreadClassCountReq) ProtoMessage() {}
  924. func (x *GetUnreadClassCountReq) ProtoReflect() protoreflect.Message {
  925. mi := &file_message_proto_msgTypes[14]
  926. if protoimpl.UnsafeEnabled && x != nil {
  927. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  928. if ms.LoadMessageInfo() == nil {
  929. ms.StoreMessageInfo(mi)
  930. }
  931. return ms
  932. }
  933. return mi.MessageOf(x)
  934. }
  935. // Deprecated: Use GetUnreadClassCountReq.ProtoReflect.Descriptor instead.
  936. func (*GetUnreadClassCountReq) Descriptor() ([]byte, []int) {
  937. return file_message_proto_rawDescGZIP(), []int{14}
  938. }
  939. func (x *GetUnreadClassCountReq) GetUserId() string {
  940. if x != nil {
  941. return x.UserId
  942. }
  943. return ""
  944. }
  945. func (x *GetUnreadClassCountReq) GetAppid() string {
  946. if x != nil {
  947. return x.Appid
  948. }
  949. return ""
  950. }
  951. func (x *GetUnreadClassCountReq) GetNeedMsg() bool {
  952. if x != nil {
  953. return x.NeedMsg
  954. }
  955. return false
  956. }
  957. type GetUnreadClassCountRes struct {
  958. state protoimpl.MessageState
  959. sizeCache protoimpl.SizeCache
  960. unknownFields protoimpl.UnknownFields
  961. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` //状态码
  962. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //响应消息
  963. Data []*ResCount `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"` //
  964. Info []*Messages `protobuf:"bytes,4,rep,name=info,proto3" json:"info,omitempty"` // 每个类型最新消息列表
  965. }
  966. func (x *GetUnreadClassCountRes) Reset() {
  967. *x = GetUnreadClassCountRes{}
  968. if protoimpl.UnsafeEnabled {
  969. mi := &file_message_proto_msgTypes[15]
  970. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  971. ms.StoreMessageInfo(mi)
  972. }
  973. }
  974. func (x *GetUnreadClassCountRes) String() string {
  975. return protoimpl.X.MessageStringOf(x)
  976. }
  977. func (*GetUnreadClassCountRes) ProtoMessage() {}
  978. func (x *GetUnreadClassCountRes) ProtoReflect() protoreflect.Message {
  979. mi := &file_message_proto_msgTypes[15]
  980. if protoimpl.UnsafeEnabled && x != nil {
  981. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  982. if ms.LoadMessageInfo() == nil {
  983. ms.StoreMessageInfo(mi)
  984. }
  985. return ms
  986. }
  987. return mi.MessageOf(x)
  988. }
  989. // Deprecated: Use GetUnreadClassCountRes.ProtoReflect.Descriptor instead.
  990. func (*GetUnreadClassCountRes) Descriptor() ([]byte, []int) {
  991. return file_message_proto_rawDescGZIP(), []int{15}
  992. }
  993. func (x *GetUnreadClassCountRes) GetCode() int64 {
  994. if x != nil {
  995. return x.Code
  996. }
  997. return 0
  998. }
  999. func (x *GetUnreadClassCountRes) GetMessage() string {
  1000. if x != nil {
  1001. return x.Message
  1002. }
  1003. return ""
  1004. }
  1005. func (x *GetUnreadClassCountRes) GetData() []*ResCount {
  1006. if x != nil {
  1007. return x.Data
  1008. }
  1009. return nil
  1010. }
  1011. func (x *GetUnreadClassCountRes) GetInfo() []*Messages {
  1012. if x != nil {
  1013. return x.Info
  1014. }
  1015. return nil
  1016. }
  1017. type GetMsgTypeReq struct {
  1018. state protoimpl.MessageState
  1019. sizeCache protoimpl.SizeCache
  1020. unknownFields protoimpl.UnknownFields
  1021. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"` // 用户id
  1022. Appid string `protobuf:"bytes,2,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  1023. }
  1024. func (x *GetMsgTypeReq) Reset() {
  1025. *x = GetMsgTypeReq{}
  1026. if protoimpl.UnsafeEnabled {
  1027. mi := &file_message_proto_msgTypes[16]
  1028. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1029. ms.StoreMessageInfo(mi)
  1030. }
  1031. }
  1032. func (x *GetMsgTypeReq) String() string {
  1033. return protoimpl.X.MessageStringOf(x)
  1034. }
  1035. func (*GetMsgTypeReq) ProtoMessage() {}
  1036. func (x *GetMsgTypeReq) ProtoReflect() protoreflect.Message {
  1037. mi := &file_message_proto_msgTypes[16]
  1038. if protoimpl.UnsafeEnabled && x != nil {
  1039. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1040. if ms.LoadMessageInfo() == nil {
  1041. ms.StoreMessageInfo(mi)
  1042. }
  1043. return ms
  1044. }
  1045. return mi.MessageOf(x)
  1046. }
  1047. // Deprecated: Use GetMsgTypeReq.ProtoReflect.Descriptor instead.
  1048. func (*GetMsgTypeReq) Descriptor() ([]byte, []int) {
  1049. return file_message_proto_rawDescGZIP(), []int{16}
  1050. }
  1051. func (x *GetMsgTypeReq) GetUserId() string {
  1052. if x != nil {
  1053. return x.UserId
  1054. }
  1055. return ""
  1056. }
  1057. func (x *GetMsgTypeReq) GetAppid() string {
  1058. if x != nil {
  1059. return x.Appid
  1060. }
  1061. return ""
  1062. }
  1063. type GetMsgTypeRes struct {
  1064. state protoimpl.MessageState
  1065. sizeCache protoimpl.SizeCache
  1066. unknownFields protoimpl.UnknownFields
  1067. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` //状态码
  1068. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //响应消息
  1069. Data []int64 `protobuf:"varint,3,rep,packed,name=data,proto3" json:"data,omitempty"` //
  1070. }
  1071. func (x *GetMsgTypeRes) Reset() {
  1072. *x = GetMsgTypeRes{}
  1073. if protoimpl.UnsafeEnabled {
  1074. mi := &file_message_proto_msgTypes[17]
  1075. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1076. ms.StoreMessageInfo(mi)
  1077. }
  1078. }
  1079. func (x *GetMsgTypeRes) String() string {
  1080. return protoimpl.X.MessageStringOf(x)
  1081. }
  1082. func (*GetMsgTypeRes) ProtoMessage() {}
  1083. func (x *GetMsgTypeRes) ProtoReflect() protoreflect.Message {
  1084. mi := &file_message_proto_msgTypes[17]
  1085. if protoimpl.UnsafeEnabled && x != nil {
  1086. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1087. if ms.LoadMessageInfo() == nil {
  1088. ms.StoreMessageInfo(mi)
  1089. }
  1090. return ms
  1091. }
  1092. return mi.MessageOf(x)
  1093. }
  1094. // Deprecated: Use GetMsgTypeRes.ProtoReflect.Descriptor instead.
  1095. func (*GetMsgTypeRes) Descriptor() ([]byte, []int) {
  1096. return file_message_proto_rawDescGZIP(), []int{17}
  1097. }
  1098. func (x *GetMsgTypeRes) GetCode() int64 {
  1099. if x != nil {
  1100. return x.Code
  1101. }
  1102. return 0
  1103. }
  1104. func (x *GetMsgTypeRes) GetMessage() string {
  1105. if x != nil {
  1106. return x.Message
  1107. }
  1108. return ""
  1109. }
  1110. func (x *GetMsgTypeRes) GetData() []int64 {
  1111. if x != nil {
  1112. return x.Data
  1113. }
  1114. return nil
  1115. }
  1116. type User struct {
  1117. state protoimpl.MessageState
  1118. sizeCache protoimpl.SizeCache
  1119. unknownFields protoimpl.UnknownFields
  1120. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
  1121. UserName string `protobuf:"bytes,2,opt,name=userName,proto3" json:"userName,omitempty"`
  1122. }
  1123. func (x *User) Reset() {
  1124. *x = User{}
  1125. if protoimpl.UnsafeEnabled {
  1126. mi := &file_message_proto_msgTypes[18]
  1127. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1128. ms.StoreMessageInfo(mi)
  1129. }
  1130. }
  1131. func (x *User) String() string {
  1132. return protoimpl.X.MessageStringOf(x)
  1133. }
  1134. func (*User) ProtoMessage() {}
  1135. func (x *User) ProtoReflect() protoreflect.Message {
  1136. mi := &file_message_proto_msgTypes[18]
  1137. if protoimpl.UnsafeEnabled && x != nil {
  1138. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1139. if ms.LoadMessageInfo() == nil {
  1140. ms.StoreMessageInfo(mi)
  1141. }
  1142. return ms
  1143. }
  1144. return mi.MessageOf(x)
  1145. }
  1146. // Deprecated: Use User.ProtoReflect.Descriptor instead.
  1147. func (*User) Descriptor() ([]byte, []int) {
  1148. return file_message_proto_rawDescGZIP(), []int{18}
  1149. }
  1150. func (x *User) GetUserId() string {
  1151. if x != nil {
  1152. return x.UserId
  1153. }
  1154. return ""
  1155. }
  1156. func (x *User) GetUserName() string {
  1157. if x != nil {
  1158. return x.UserName
  1159. }
  1160. return ""
  1161. }
  1162. type MultipleSaveMsgReq struct {
  1163. state protoimpl.MessageState
  1164. sizeCache protoimpl.SizeCache
  1165. unknownFields protoimpl.UnknownFields
  1166. UserIds string `protobuf:"bytes,1,opt,name=userIds,proto3" json:"userIds,omitempty"`
  1167. UserNames string `protobuf:"bytes,2,opt,name=userNames,proto3" json:"userNames,omitempty"`
  1168. SendUserId string `protobuf:"bytes,3,opt,name=sendUserId,proto3" json:"sendUserId,omitempty"` //发送方用户ID
  1169. SendName string `protobuf:"bytes,4,opt,name=sendName,proto3" json:"sendName,omitempty"` //发送方用户名
  1170. Title string `protobuf:"bytes,5,opt,name=title,proto3" json:"title,omitempty"` //主题
  1171. Content string `protobuf:"bytes,6,opt,name=content,proto3" json:"content,omitempty"` //内容
  1172. MsgType int64 `protobuf:"varint,7,opt,name=msgType,proto3" json:"msgType,omitempty"` //消息类型 1:客服 2:系统通知 3:营销 4:用户会话
  1173. Link string `protobuf:"bytes,8,opt,name=link,proto3" json:"link,omitempty"` //跳转链接
  1174. CiteId int64 `protobuf:"varint,9,opt,name=citeId,proto3" json:"citeId,omitempty"` //引用id
  1175. Appid string `protobuf:"bytes,10,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  1176. MsgLogId int64 `protobuf:"varint,11,opt,name=msgLogId,proto3" json:"msgLogId,omitempty"` //消息记录表id
  1177. ShowBuoy int64 `protobuf:"varint,12,opt,name=showBuoy,proto3" json:"showBuoy,omitempty"` //是否展示为浮标
  1178. ShowContent string `protobuf:"bytes,13,opt,name=showContent,proto3" json:"showContent,omitempty"` //展示文案
  1179. PositionIds string `protobuf:"bytes,14,opt,name=positionIds,proto3" json:"positionIds,omitempty"` // 职位id 逗号分割
  1180. }
  1181. func (x *MultipleSaveMsgReq) Reset() {
  1182. *x = MultipleSaveMsgReq{}
  1183. if protoimpl.UnsafeEnabled {
  1184. mi := &file_message_proto_msgTypes[19]
  1185. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1186. ms.StoreMessageInfo(mi)
  1187. }
  1188. }
  1189. func (x *MultipleSaveMsgReq) String() string {
  1190. return protoimpl.X.MessageStringOf(x)
  1191. }
  1192. func (*MultipleSaveMsgReq) ProtoMessage() {}
  1193. func (x *MultipleSaveMsgReq) ProtoReflect() protoreflect.Message {
  1194. mi := &file_message_proto_msgTypes[19]
  1195. if protoimpl.UnsafeEnabled && x != nil {
  1196. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1197. if ms.LoadMessageInfo() == nil {
  1198. ms.StoreMessageInfo(mi)
  1199. }
  1200. return ms
  1201. }
  1202. return mi.MessageOf(x)
  1203. }
  1204. // Deprecated: Use MultipleSaveMsgReq.ProtoReflect.Descriptor instead.
  1205. func (*MultipleSaveMsgReq) Descriptor() ([]byte, []int) {
  1206. return file_message_proto_rawDescGZIP(), []int{19}
  1207. }
  1208. func (x *MultipleSaveMsgReq) GetUserIds() string {
  1209. if x != nil {
  1210. return x.UserIds
  1211. }
  1212. return ""
  1213. }
  1214. func (x *MultipleSaveMsgReq) GetUserNames() string {
  1215. if x != nil {
  1216. return x.UserNames
  1217. }
  1218. return ""
  1219. }
  1220. func (x *MultipleSaveMsgReq) GetSendUserId() string {
  1221. if x != nil {
  1222. return x.SendUserId
  1223. }
  1224. return ""
  1225. }
  1226. func (x *MultipleSaveMsgReq) GetSendName() string {
  1227. if x != nil {
  1228. return x.SendName
  1229. }
  1230. return ""
  1231. }
  1232. func (x *MultipleSaveMsgReq) GetTitle() string {
  1233. if x != nil {
  1234. return x.Title
  1235. }
  1236. return ""
  1237. }
  1238. func (x *MultipleSaveMsgReq) GetContent() string {
  1239. if x != nil {
  1240. return x.Content
  1241. }
  1242. return ""
  1243. }
  1244. func (x *MultipleSaveMsgReq) GetMsgType() int64 {
  1245. if x != nil {
  1246. return x.MsgType
  1247. }
  1248. return 0
  1249. }
  1250. func (x *MultipleSaveMsgReq) GetLink() string {
  1251. if x != nil {
  1252. return x.Link
  1253. }
  1254. return ""
  1255. }
  1256. func (x *MultipleSaveMsgReq) GetCiteId() int64 {
  1257. if x != nil {
  1258. return x.CiteId
  1259. }
  1260. return 0
  1261. }
  1262. func (x *MultipleSaveMsgReq) GetAppid() string {
  1263. if x != nil {
  1264. return x.Appid
  1265. }
  1266. return ""
  1267. }
  1268. func (x *MultipleSaveMsgReq) GetMsgLogId() int64 {
  1269. if x != nil {
  1270. return x.MsgLogId
  1271. }
  1272. return 0
  1273. }
  1274. func (x *MultipleSaveMsgReq) GetShowBuoy() int64 {
  1275. if x != nil {
  1276. return x.ShowBuoy
  1277. }
  1278. return 0
  1279. }
  1280. func (x *MultipleSaveMsgReq) GetShowContent() string {
  1281. if x != nil {
  1282. return x.ShowContent
  1283. }
  1284. return ""
  1285. }
  1286. func (x *MultipleSaveMsgReq) GetPositionIds() string {
  1287. if x != nil {
  1288. return x.PositionIds
  1289. }
  1290. return ""
  1291. }
  1292. type MultipleSaveMsgResp struct {
  1293. state protoimpl.MessageState
  1294. sizeCache protoimpl.SizeCache
  1295. unknownFields protoimpl.UnknownFields
  1296. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` //状态码
  1297. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //响应消息
  1298. ErrCount int64 `protobuf:"varint,3,opt,name=errCount,proto3" json:"errCount,omitempty"` // 保存出错数量
  1299. }
  1300. func (x *MultipleSaveMsgResp) Reset() {
  1301. *x = MultipleSaveMsgResp{}
  1302. if protoimpl.UnsafeEnabled {
  1303. mi := &file_message_proto_msgTypes[20]
  1304. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1305. ms.StoreMessageInfo(mi)
  1306. }
  1307. }
  1308. func (x *MultipleSaveMsgResp) String() string {
  1309. return protoimpl.X.MessageStringOf(x)
  1310. }
  1311. func (*MultipleSaveMsgResp) ProtoMessage() {}
  1312. func (x *MultipleSaveMsgResp) ProtoReflect() protoreflect.Message {
  1313. mi := &file_message_proto_msgTypes[20]
  1314. if protoimpl.UnsafeEnabled && x != nil {
  1315. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1316. if ms.LoadMessageInfo() == nil {
  1317. ms.StoreMessageInfo(mi)
  1318. }
  1319. return ms
  1320. }
  1321. return mi.MessageOf(x)
  1322. }
  1323. // Deprecated: Use MultipleSaveMsgResp.ProtoReflect.Descriptor instead.
  1324. func (*MultipleSaveMsgResp) Descriptor() ([]byte, []int) {
  1325. return file_message_proto_rawDescGZIP(), []int{20}
  1326. }
  1327. func (x *MultipleSaveMsgResp) GetCode() int64 {
  1328. if x != nil {
  1329. return x.Code
  1330. }
  1331. return 0
  1332. }
  1333. func (x *MultipleSaveMsgResp) GetMessage() string {
  1334. if x != nil {
  1335. return x.Message
  1336. }
  1337. return ""
  1338. }
  1339. func (x *MultipleSaveMsgResp) GetErrCount() int64 {
  1340. if x != nil {
  1341. return x.ErrCount
  1342. }
  1343. return 0
  1344. }
  1345. type FindUserBuoyMsgReq struct {
  1346. state protoimpl.MessageState
  1347. sizeCache protoimpl.SizeCache
  1348. unknownFields protoimpl.UnknownFields
  1349. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"` //用户id
  1350. Appid string `protobuf:"bytes,2,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  1351. PageSize int64 `protobuf:"varint,3,opt,name=pageSize,proto3" json:"pageSize,omitempty"` //大小
  1352. }
  1353. func (x *FindUserBuoyMsgReq) Reset() {
  1354. *x = FindUserBuoyMsgReq{}
  1355. if protoimpl.UnsafeEnabled {
  1356. mi := &file_message_proto_msgTypes[21]
  1357. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1358. ms.StoreMessageInfo(mi)
  1359. }
  1360. }
  1361. func (x *FindUserBuoyMsgReq) String() string {
  1362. return protoimpl.X.MessageStringOf(x)
  1363. }
  1364. func (*FindUserBuoyMsgReq) ProtoMessage() {}
  1365. func (x *FindUserBuoyMsgReq) ProtoReflect() protoreflect.Message {
  1366. mi := &file_message_proto_msgTypes[21]
  1367. if protoimpl.UnsafeEnabled && x != nil {
  1368. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1369. if ms.LoadMessageInfo() == nil {
  1370. ms.StoreMessageInfo(mi)
  1371. }
  1372. return ms
  1373. }
  1374. return mi.MessageOf(x)
  1375. }
  1376. // Deprecated: Use FindUserBuoyMsgReq.ProtoReflect.Descriptor instead.
  1377. func (*FindUserBuoyMsgReq) Descriptor() ([]byte, []int) {
  1378. return file_message_proto_rawDescGZIP(), []int{21}
  1379. }
  1380. func (x *FindUserBuoyMsgReq) GetUserId() string {
  1381. if x != nil {
  1382. return x.UserId
  1383. }
  1384. return ""
  1385. }
  1386. func (x *FindUserBuoyMsgReq) GetAppid() string {
  1387. if x != nil {
  1388. return x.Appid
  1389. }
  1390. return ""
  1391. }
  1392. func (x *FindUserBuoyMsgReq) GetPageSize() int64 {
  1393. if x != nil {
  1394. return x.PageSize
  1395. }
  1396. return 0
  1397. }
  1398. type FindUserBuoyMsgRes struct {
  1399. state protoimpl.MessageState
  1400. sizeCache protoimpl.SizeCache
  1401. unknownFields protoimpl.UnknownFields
  1402. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` //状态码
  1403. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //响应消息
  1404. Data []*BuoyMessages `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"` //
  1405. }
  1406. func (x *FindUserBuoyMsgRes) Reset() {
  1407. *x = FindUserBuoyMsgRes{}
  1408. if protoimpl.UnsafeEnabled {
  1409. mi := &file_message_proto_msgTypes[22]
  1410. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1411. ms.StoreMessageInfo(mi)
  1412. }
  1413. }
  1414. func (x *FindUserBuoyMsgRes) String() string {
  1415. return protoimpl.X.MessageStringOf(x)
  1416. }
  1417. func (*FindUserBuoyMsgRes) ProtoMessage() {}
  1418. func (x *FindUserBuoyMsgRes) ProtoReflect() protoreflect.Message {
  1419. mi := &file_message_proto_msgTypes[22]
  1420. if protoimpl.UnsafeEnabled && x != nil {
  1421. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1422. if ms.LoadMessageInfo() == nil {
  1423. ms.StoreMessageInfo(mi)
  1424. }
  1425. return ms
  1426. }
  1427. return mi.MessageOf(x)
  1428. }
  1429. // Deprecated: Use FindUserBuoyMsgRes.ProtoReflect.Descriptor instead.
  1430. func (*FindUserBuoyMsgRes) Descriptor() ([]byte, []int) {
  1431. return file_message_proto_rawDescGZIP(), []int{22}
  1432. }
  1433. func (x *FindUserBuoyMsgRes) GetCode() int64 {
  1434. if x != nil {
  1435. return x.Code
  1436. }
  1437. return 0
  1438. }
  1439. func (x *FindUserBuoyMsgRes) GetMessage() string {
  1440. if x != nil {
  1441. return x.Message
  1442. }
  1443. return ""
  1444. }
  1445. func (x *FindUserBuoyMsgRes) GetData() []*BuoyMessages {
  1446. if x != nil {
  1447. return x.Data
  1448. }
  1449. return nil
  1450. }
  1451. type BuoyMessages struct {
  1452. state protoimpl.MessageState
  1453. sizeCache protoimpl.SizeCache
  1454. unknownFields protoimpl.UnknownFields
  1455. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` //消息id
  1456. BuoyDetail string `protobuf:"bytes,2,opt,name=buoy_detail,json=buoyDetail,proto3" json:"buoy_detail,omitempty"` //浮标内容
  1457. PcUrl string `protobuf:"bytes,3,opt,name=pcUrl,proto3" json:"pcUrl,omitempty"`
  1458. AndroidUrl string `protobuf:"bytes,4,opt,name=androidUrl,proto3" json:"androidUrl,omitempty"`
  1459. IosUrl string `protobuf:"bytes,5,opt,name=iosUrl,proto3" json:"iosUrl,omitempty"`
  1460. WeChatUrl string `protobuf:"bytes,6,opt,name=weChatUrl,proto3" json:"weChatUrl,omitempty"`
  1461. }
  1462. func (x *BuoyMessages) Reset() {
  1463. *x = BuoyMessages{}
  1464. if protoimpl.UnsafeEnabled {
  1465. mi := &file_message_proto_msgTypes[23]
  1466. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1467. ms.StoreMessageInfo(mi)
  1468. }
  1469. }
  1470. func (x *BuoyMessages) String() string {
  1471. return protoimpl.X.MessageStringOf(x)
  1472. }
  1473. func (*BuoyMessages) ProtoMessage() {}
  1474. func (x *BuoyMessages) ProtoReflect() protoreflect.Message {
  1475. mi := &file_message_proto_msgTypes[23]
  1476. if protoimpl.UnsafeEnabled && x != nil {
  1477. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1478. if ms.LoadMessageInfo() == nil {
  1479. ms.StoreMessageInfo(mi)
  1480. }
  1481. return ms
  1482. }
  1483. return mi.MessageOf(x)
  1484. }
  1485. // Deprecated: Use BuoyMessages.ProtoReflect.Descriptor instead.
  1486. func (*BuoyMessages) Descriptor() ([]byte, []int) {
  1487. return file_message_proto_rawDescGZIP(), []int{23}
  1488. }
  1489. func (x *BuoyMessages) GetId() string {
  1490. if x != nil {
  1491. return x.Id
  1492. }
  1493. return ""
  1494. }
  1495. func (x *BuoyMessages) GetBuoyDetail() string {
  1496. if x != nil {
  1497. return x.BuoyDetail
  1498. }
  1499. return ""
  1500. }
  1501. func (x *BuoyMessages) GetPcUrl() string {
  1502. if x != nil {
  1503. return x.PcUrl
  1504. }
  1505. return ""
  1506. }
  1507. func (x *BuoyMessages) GetAndroidUrl() string {
  1508. if x != nil {
  1509. return x.AndroidUrl
  1510. }
  1511. return ""
  1512. }
  1513. func (x *BuoyMessages) GetIosUrl() string {
  1514. if x != nil {
  1515. return x.IosUrl
  1516. }
  1517. return ""
  1518. }
  1519. func (x *BuoyMessages) GetWeChatUrl() string {
  1520. if x != nil {
  1521. return x.WeChatUrl
  1522. }
  1523. return ""
  1524. }
  1525. type ClearUnreadMsgReq struct {
  1526. state protoimpl.MessageState
  1527. sizeCache protoimpl.SizeCache
  1528. unknownFields protoimpl.UnknownFields
  1529. Userid string `protobuf:"bytes,1,opt,name=userid,proto3" json:"userid,omitempty"` //mgoId
  1530. EntId int64 `protobuf:"varint,2,opt,name=entId,proto3" json:"entId,omitempty"`
  1531. PositionId int64 `protobuf:"varint,3,opt,name=positionId,proto3" json:"positionId,omitempty"` //职位id
  1532. AppId string `protobuf:"bytes,4,opt,name=appId,proto3" json:"appId,omitempty"`
  1533. }
  1534. func (x *ClearUnreadMsgReq) Reset() {
  1535. *x = ClearUnreadMsgReq{}
  1536. if protoimpl.UnsafeEnabled {
  1537. mi := &file_message_proto_msgTypes[24]
  1538. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1539. ms.StoreMessageInfo(mi)
  1540. }
  1541. }
  1542. func (x *ClearUnreadMsgReq) String() string {
  1543. return protoimpl.X.MessageStringOf(x)
  1544. }
  1545. func (*ClearUnreadMsgReq) ProtoMessage() {}
  1546. func (x *ClearUnreadMsgReq) ProtoReflect() protoreflect.Message {
  1547. mi := &file_message_proto_msgTypes[24]
  1548. if protoimpl.UnsafeEnabled && x != nil {
  1549. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1550. if ms.LoadMessageInfo() == nil {
  1551. ms.StoreMessageInfo(mi)
  1552. }
  1553. return ms
  1554. }
  1555. return mi.MessageOf(x)
  1556. }
  1557. // Deprecated: Use ClearUnreadMsgReq.ProtoReflect.Descriptor instead.
  1558. func (*ClearUnreadMsgReq) Descriptor() ([]byte, []int) {
  1559. return file_message_proto_rawDescGZIP(), []int{24}
  1560. }
  1561. func (x *ClearUnreadMsgReq) GetUserid() string {
  1562. if x != nil {
  1563. return x.Userid
  1564. }
  1565. return ""
  1566. }
  1567. func (x *ClearUnreadMsgReq) GetEntId() int64 {
  1568. if x != nil {
  1569. return x.EntId
  1570. }
  1571. return 0
  1572. }
  1573. func (x *ClearUnreadMsgReq) GetPositionId() int64 {
  1574. if x != nil {
  1575. return x.PositionId
  1576. }
  1577. return 0
  1578. }
  1579. func (x *ClearUnreadMsgReq) GetAppId() string {
  1580. if x != nil {
  1581. return x.AppId
  1582. }
  1583. return ""
  1584. }
  1585. type UserMsgListReq struct {
  1586. state protoimpl.MessageState
  1587. sizeCache protoimpl.SizeCache
  1588. unknownFields protoimpl.UnknownFields
  1589. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"` //用户id
  1590. Appid string `protobuf:"bytes,3,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  1591. OffSet int64 `protobuf:"varint,4,opt,name=offSet,proto3" json:"offSet,omitempty"` //当前
  1592. PageSize int64 `protobuf:"varint,5,opt,name=pageSize,proto3" json:"pageSize,omitempty"` //大小
  1593. MsgType int64 `protobuf:"varint,6,opt,name=msgType,proto3" json:"msgType,omitempty"` //是否区分类型
  1594. Read int64 `protobuf:"varint,7,opt,name=read,proto3" json:"read,omitempty"` // 是否区分已读未读 -1 不区分已读未读 0 未读 1 已读
  1595. SortSize int64 `protobuf:"varint,8,opt,name=SortSize,proto3" json:"SortSize,omitempty"` //分类 每类数
  1596. IsColumn bool `protobuf:"varint,9,opt,name=IsColumn,proto3" json:"IsColumn,omitempty"` //是否需要获取栏目
  1597. IsColumnNewMsg bool `protobuf:"varint,10,opt,name=IsColumnNewMsg,proto3" json:"IsColumnNewMsg,omitempty"` //是否需各栏目获取最新消息
  1598. IsMsgList bool `protobuf:"varint,11,opt,name=IsMsgList,proto3" json:"IsMsgList,omitempty"` //是否需要列表信息
  1599. }
  1600. func (x *UserMsgListReq) Reset() {
  1601. *x = UserMsgListReq{}
  1602. if protoimpl.UnsafeEnabled {
  1603. mi := &file_message_proto_msgTypes[25]
  1604. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1605. ms.StoreMessageInfo(mi)
  1606. }
  1607. }
  1608. func (x *UserMsgListReq) String() string {
  1609. return protoimpl.X.MessageStringOf(x)
  1610. }
  1611. func (*UserMsgListReq) ProtoMessage() {}
  1612. func (x *UserMsgListReq) ProtoReflect() protoreflect.Message {
  1613. mi := &file_message_proto_msgTypes[25]
  1614. if protoimpl.UnsafeEnabled && x != nil {
  1615. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1616. if ms.LoadMessageInfo() == nil {
  1617. ms.StoreMessageInfo(mi)
  1618. }
  1619. return ms
  1620. }
  1621. return mi.MessageOf(x)
  1622. }
  1623. // Deprecated: Use UserMsgListReq.ProtoReflect.Descriptor instead.
  1624. func (*UserMsgListReq) Descriptor() ([]byte, []int) {
  1625. return file_message_proto_rawDescGZIP(), []int{25}
  1626. }
  1627. func (x *UserMsgListReq) GetUserId() string {
  1628. if x != nil {
  1629. return x.UserId
  1630. }
  1631. return ""
  1632. }
  1633. func (x *UserMsgListReq) GetAppid() string {
  1634. if x != nil {
  1635. return x.Appid
  1636. }
  1637. return ""
  1638. }
  1639. func (x *UserMsgListReq) GetOffSet() int64 {
  1640. if x != nil {
  1641. return x.OffSet
  1642. }
  1643. return 0
  1644. }
  1645. func (x *UserMsgListReq) GetPageSize() int64 {
  1646. if x != nil {
  1647. return x.PageSize
  1648. }
  1649. return 0
  1650. }
  1651. func (x *UserMsgListReq) GetMsgType() int64 {
  1652. if x != nil {
  1653. return x.MsgType
  1654. }
  1655. return 0
  1656. }
  1657. func (x *UserMsgListReq) GetRead() int64 {
  1658. if x != nil {
  1659. return x.Read
  1660. }
  1661. return 0
  1662. }
  1663. func (x *UserMsgListReq) GetSortSize() int64 {
  1664. if x != nil {
  1665. return x.SortSize
  1666. }
  1667. return 0
  1668. }
  1669. func (x *UserMsgListReq) GetIsColumn() bool {
  1670. if x != nil {
  1671. return x.IsColumn
  1672. }
  1673. return false
  1674. }
  1675. func (x *UserMsgListReq) GetIsColumnNewMsg() bool {
  1676. if x != nil {
  1677. return x.IsColumnNewMsg
  1678. }
  1679. return false
  1680. }
  1681. func (x *UserMsgListReq) GetIsMsgList() bool {
  1682. if x != nil {
  1683. return x.IsMsgList
  1684. }
  1685. return false
  1686. }
  1687. type UserMsgListRes struct {
  1688. state protoimpl.MessageState
  1689. sizeCache protoimpl.SizeCache
  1690. unknownFields protoimpl.UnknownFields
  1691. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` //状态码
  1692. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //响应消息
  1693. List []*Messages `protobuf:"bytes,3,rep,name=list,proto3" json:"list,omitempty"` //
  1694. Last *Messages `protobuf:"bytes,4,opt,name=last,proto3" json:"last,omitempty"` //
  1695. Column []*AllSortData `protobuf:"bytes,5,rep,name=column,proto3" json:"column,omitempty"` //
  1696. Count int64 `protobuf:"varint,6,opt,name=count,proto3" json:"count,omitempty"` //总数
  1697. Unread int64 `protobuf:"varint,7,opt,name=unread,proto3" json:"unread,omitempty"` //未读总数
  1698. }
  1699. func (x *UserMsgListRes) Reset() {
  1700. *x = UserMsgListRes{}
  1701. if protoimpl.UnsafeEnabled {
  1702. mi := &file_message_proto_msgTypes[26]
  1703. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1704. ms.StoreMessageInfo(mi)
  1705. }
  1706. }
  1707. func (x *UserMsgListRes) String() string {
  1708. return protoimpl.X.MessageStringOf(x)
  1709. }
  1710. func (*UserMsgListRes) ProtoMessage() {}
  1711. func (x *UserMsgListRes) ProtoReflect() protoreflect.Message {
  1712. mi := &file_message_proto_msgTypes[26]
  1713. if protoimpl.UnsafeEnabled && x != nil {
  1714. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1715. if ms.LoadMessageInfo() == nil {
  1716. ms.StoreMessageInfo(mi)
  1717. }
  1718. return ms
  1719. }
  1720. return mi.MessageOf(x)
  1721. }
  1722. // Deprecated: Use UserMsgListRes.ProtoReflect.Descriptor instead.
  1723. func (*UserMsgListRes) Descriptor() ([]byte, []int) {
  1724. return file_message_proto_rawDescGZIP(), []int{26}
  1725. }
  1726. func (x *UserMsgListRes) GetCode() int64 {
  1727. if x != nil {
  1728. return x.Code
  1729. }
  1730. return 0
  1731. }
  1732. func (x *UserMsgListRes) GetMessage() string {
  1733. if x != nil {
  1734. return x.Message
  1735. }
  1736. return ""
  1737. }
  1738. func (x *UserMsgListRes) GetList() []*Messages {
  1739. if x != nil {
  1740. return x.List
  1741. }
  1742. return nil
  1743. }
  1744. func (x *UserMsgListRes) GetLast() *Messages {
  1745. if x != nil {
  1746. return x.Last
  1747. }
  1748. return nil
  1749. }
  1750. func (x *UserMsgListRes) GetColumn() []*AllSortData {
  1751. if x != nil {
  1752. return x.Column
  1753. }
  1754. return nil
  1755. }
  1756. func (x *UserMsgListRes) GetCount() int64 {
  1757. if x != nil {
  1758. return x.Count
  1759. }
  1760. return 0
  1761. }
  1762. func (x *UserMsgListRes) GetUnread() int64 {
  1763. if x != nil {
  1764. return x.Unread
  1765. }
  1766. return 0
  1767. }
  1768. type UserMsgList struct {
  1769. state protoimpl.MessageState
  1770. sizeCache protoimpl.SizeCache
  1771. unknownFields protoimpl.UnknownFields
  1772. Data []*Messages `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"` //
  1773. SortData []*AllSortData `protobuf:"bytes,2,rep,name=sortData,proto3" json:"sortData,omitempty"` //
  1774. Count int64 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"` //总数
  1775. Unread int64 `protobuf:"varint,4,opt,name=unread,proto3" json:"unread,omitempty"` //未读总数
  1776. }
  1777. func (x *UserMsgList) Reset() {
  1778. *x = UserMsgList{}
  1779. if protoimpl.UnsafeEnabled {
  1780. mi := &file_message_proto_msgTypes[27]
  1781. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1782. ms.StoreMessageInfo(mi)
  1783. }
  1784. }
  1785. func (x *UserMsgList) String() string {
  1786. return protoimpl.X.MessageStringOf(x)
  1787. }
  1788. func (*UserMsgList) ProtoMessage() {}
  1789. func (x *UserMsgList) ProtoReflect() protoreflect.Message {
  1790. mi := &file_message_proto_msgTypes[27]
  1791. if protoimpl.UnsafeEnabled && x != nil {
  1792. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1793. if ms.LoadMessageInfo() == nil {
  1794. ms.StoreMessageInfo(mi)
  1795. }
  1796. return ms
  1797. }
  1798. return mi.MessageOf(x)
  1799. }
  1800. // Deprecated: Use UserMsgList.ProtoReflect.Descriptor instead.
  1801. func (*UserMsgList) Descriptor() ([]byte, []int) {
  1802. return file_message_proto_rawDescGZIP(), []int{27}
  1803. }
  1804. func (x *UserMsgList) GetData() []*Messages {
  1805. if x != nil {
  1806. return x.Data
  1807. }
  1808. return nil
  1809. }
  1810. func (x *UserMsgList) GetSortData() []*AllSortData {
  1811. if x != nil {
  1812. return x.SortData
  1813. }
  1814. return nil
  1815. }
  1816. func (x *UserMsgList) GetCount() int64 {
  1817. if x != nil {
  1818. return x.Count
  1819. }
  1820. return 0
  1821. }
  1822. func (x *UserMsgList) GetUnread() int64 {
  1823. if x != nil {
  1824. return x.Unread
  1825. }
  1826. return 0
  1827. }
  1828. // 发送微信模版消息
  1829. type WxTmplMsg struct {
  1830. state protoimpl.MessageState
  1831. sizeCache protoimpl.SizeCache
  1832. unknownFields protoimpl.UnknownFields
  1833. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  1834. UserIds string `protobuf:"bytes,2,opt,name=userIds,proto3" json:"userIds,omitempty"` //接受人 mongo_userId(多个用,分割)
  1835. OpenIds string `protobuf:"bytes,3,opt,name=openIds,proto3" json:"openIds,omitempty"` //接受人 openid(多个用,分割)
  1836. PositionIds string `protobuf:"bytes,4,opt,name=positionIds,proto3" json:"positionIds,omitempty"` //接受人 职位id
  1837. Url string `protobuf:"bytes,5,opt,name=url,proto3" json:"url,omitempty"` //消息跳转连接
  1838. MsgType int64 `protobuf:"varint,6,opt,name=msgType,proto3" json:"msgType,omitempty"` //信息类型 附件、图片、链接类型
  1839. TmplId string `protobuf:"bytes,7,opt,name=tmplId,proto3" json:"tmplId,omitempty"` //消息模版id 根据此字段判断发送模版
  1840. }
  1841. func (x *WxTmplMsg) Reset() {
  1842. *x = WxTmplMsg{}
  1843. if protoimpl.UnsafeEnabled {
  1844. mi := &file_message_proto_msgTypes[28]
  1845. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1846. ms.StoreMessageInfo(mi)
  1847. }
  1848. }
  1849. func (x *WxTmplMsg) String() string {
  1850. return protoimpl.X.MessageStringOf(x)
  1851. }
  1852. func (*WxTmplMsg) ProtoMessage() {}
  1853. func (x *WxTmplMsg) ProtoReflect() protoreflect.Message {
  1854. mi := &file_message_proto_msgTypes[28]
  1855. if protoimpl.UnsafeEnabled && x != nil {
  1856. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1857. if ms.LoadMessageInfo() == nil {
  1858. ms.StoreMessageInfo(mi)
  1859. }
  1860. return ms
  1861. }
  1862. return mi.MessageOf(x)
  1863. }
  1864. // Deprecated: Use WxTmplMsg.ProtoReflect.Descriptor instead.
  1865. func (*WxTmplMsg) Descriptor() ([]byte, []int) {
  1866. return file_message_proto_rawDescGZIP(), []int{28}
  1867. }
  1868. func (x *WxTmplMsg) GetAppid() string {
  1869. if x != nil {
  1870. return x.Appid
  1871. }
  1872. return ""
  1873. }
  1874. func (x *WxTmplMsg) GetUserIds() string {
  1875. if x != nil {
  1876. return x.UserIds
  1877. }
  1878. return ""
  1879. }
  1880. func (x *WxTmplMsg) GetOpenIds() string {
  1881. if x != nil {
  1882. return x.OpenIds
  1883. }
  1884. return ""
  1885. }
  1886. func (x *WxTmplMsg) GetPositionIds() string {
  1887. if x != nil {
  1888. return x.PositionIds
  1889. }
  1890. return ""
  1891. }
  1892. func (x *WxTmplMsg) GetUrl() string {
  1893. if x != nil {
  1894. return x.Url
  1895. }
  1896. return ""
  1897. }
  1898. func (x *WxTmplMsg) GetMsgType() int64 {
  1899. if x != nil {
  1900. return x.MsgType
  1901. }
  1902. return 0
  1903. }
  1904. func (x *WxTmplMsg) GetTmplId() string {
  1905. if x != nil {
  1906. return x.TmplId
  1907. }
  1908. return ""
  1909. }
  1910. type AllSortData struct {
  1911. state protoimpl.MessageState
  1912. sizeCache protoimpl.SizeCache
  1913. unknownFields protoimpl.UnknownFields
  1914. UnreadMessages int64 `protobuf:"varint,1,opt,name=unreadMessages,proto3" json:"unreadMessages,omitempty"`
  1915. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  1916. Img string `protobuf:"bytes,3,opt,name=img,proto3" json:"img,omitempty"`
  1917. MsgType int64 `protobuf:"varint,4,opt,name=msgType,proto3" json:"msgType,omitempty"` //是否区分类型;
  1918. Data []*Messages `protobuf:"bytes,5,rep,name=data,proto3" json:"data,omitempty"` //
  1919. }
  1920. func (x *AllSortData) Reset() {
  1921. *x = AllSortData{}
  1922. if protoimpl.UnsafeEnabled {
  1923. mi := &file_message_proto_msgTypes[29]
  1924. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1925. ms.StoreMessageInfo(mi)
  1926. }
  1927. }
  1928. func (x *AllSortData) String() string {
  1929. return protoimpl.X.MessageStringOf(x)
  1930. }
  1931. func (*AllSortData) ProtoMessage() {}
  1932. func (x *AllSortData) ProtoReflect() protoreflect.Message {
  1933. mi := &file_message_proto_msgTypes[29]
  1934. if protoimpl.UnsafeEnabled && x != nil {
  1935. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1936. if ms.LoadMessageInfo() == nil {
  1937. ms.StoreMessageInfo(mi)
  1938. }
  1939. return ms
  1940. }
  1941. return mi.MessageOf(x)
  1942. }
  1943. // Deprecated: Use AllSortData.ProtoReflect.Descriptor instead.
  1944. func (*AllSortData) Descriptor() ([]byte, []int) {
  1945. return file_message_proto_rawDescGZIP(), []int{29}
  1946. }
  1947. func (x *AllSortData) GetUnreadMessages() int64 {
  1948. if x != nil {
  1949. return x.UnreadMessages
  1950. }
  1951. return 0
  1952. }
  1953. func (x *AllSortData) GetName() string {
  1954. if x != nil {
  1955. return x.Name
  1956. }
  1957. return ""
  1958. }
  1959. func (x *AllSortData) GetImg() string {
  1960. if x != nil {
  1961. return x.Img
  1962. }
  1963. return ""
  1964. }
  1965. func (x *AllSortData) GetMsgType() int64 {
  1966. if x != nil {
  1967. return x.MsgType
  1968. }
  1969. return 0
  1970. }
  1971. func (x *AllSortData) GetData() []*Messages {
  1972. if x != nil {
  1973. return x.Data
  1974. }
  1975. return nil
  1976. }
  1977. type WxTmplResponse struct {
  1978. state protoimpl.MessageState
  1979. sizeCache protoimpl.SizeCache
  1980. unknownFields protoimpl.UnknownFields
  1981. SendTotal int64 `protobuf:"varint,1,opt,name=sendTotal,proto3" json:"sendTotal,omitempty"` //发送数量
  1982. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //信息
  1983. }
  1984. func (x *WxTmplResponse) Reset() {
  1985. *x = WxTmplResponse{}
  1986. if protoimpl.UnsafeEnabled {
  1987. mi := &file_message_proto_msgTypes[30]
  1988. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1989. ms.StoreMessageInfo(mi)
  1990. }
  1991. }
  1992. func (x *WxTmplResponse) String() string {
  1993. return protoimpl.X.MessageStringOf(x)
  1994. }
  1995. func (*WxTmplResponse) ProtoMessage() {}
  1996. func (x *WxTmplResponse) ProtoReflect() protoreflect.Message {
  1997. mi := &file_message_proto_msgTypes[30]
  1998. if protoimpl.UnsafeEnabled && x != nil {
  1999. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2000. if ms.LoadMessageInfo() == nil {
  2001. ms.StoreMessageInfo(mi)
  2002. }
  2003. return ms
  2004. }
  2005. return mi.MessageOf(x)
  2006. }
  2007. // Deprecated: Use WxTmplResponse.ProtoReflect.Descriptor instead.
  2008. func (*WxTmplResponse) Descriptor() ([]byte, []int) {
  2009. return file_message_proto_rawDescGZIP(), []int{30}
  2010. }
  2011. func (x *WxTmplResponse) GetSendTotal() int64 {
  2012. if x != nil {
  2013. return x.SendTotal
  2014. }
  2015. return 0
  2016. }
  2017. func (x *WxTmplResponse) GetMessage() string {
  2018. if x != nil {
  2019. return x.Message
  2020. }
  2021. return ""
  2022. }
  2023. type UserUnreadMsgListReq struct {
  2024. state protoimpl.MessageState
  2025. sizeCache protoimpl.SizeCache
  2026. unknownFields protoimpl.UnknownFields
  2027. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"` //用户id
  2028. Appid string `protobuf:"bytes,3,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  2029. OffSet int64 `protobuf:"varint,4,opt,name=offSet,proto3" json:"offSet,omitempty"` //当前
  2030. PageSize int64 `protobuf:"varint,5,opt,name=pageSize,proto3" json:"pageSize,omitempty"` //大小
  2031. }
  2032. func (x *UserUnreadMsgListReq) Reset() {
  2033. *x = UserUnreadMsgListReq{}
  2034. if protoimpl.UnsafeEnabled {
  2035. mi := &file_message_proto_msgTypes[31]
  2036. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2037. ms.StoreMessageInfo(mi)
  2038. }
  2039. }
  2040. func (x *UserUnreadMsgListReq) String() string {
  2041. return protoimpl.X.MessageStringOf(x)
  2042. }
  2043. func (*UserUnreadMsgListReq) ProtoMessage() {}
  2044. func (x *UserUnreadMsgListReq) ProtoReflect() protoreflect.Message {
  2045. mi := &file_message_proto_msgTypes[31]
  2046. if protoimpl.UnsafeEnabled && x != nil {
  2047. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2048. if ms.LoadMessageInfo() == nil {
  2049. ms.StoreMessageInfo(mi)
  2050. }
  2051. return ms
  2052. }
  2053. return mi.MessageOf(x)
  2054. }
  2055. // Deprecated: Use UserUnreadMsgListReq.ProtoReflect.Descriptor instead.
  2056. func (*UserUnreadMsgListReq) Descriptor() ([]byte, []int) {
  2057. return file_message_proto_rawDescGZIP(), []int{31}
  2058. }
  2059. func (x *UserUnreadMsgListReq) GetUserId() string {
  2060. if x != nil {
  2061. return x.UserId
  2062. }
  2063. return ""
  2064. }
  2065. func (x *UserUnreadMsgListReq) GetAppid() string {
  2066. if x != nil {
  2067. return x.Appid
  2068. }
  2069. return ""
  2070. }
  2071. func (x *UserUnreadMsgListReq) GetOffSet() int64 {
  2072. if x != nil {
  2073. return x.OffSet
  2074. }
  2075. return 0
  2076. }
  2077. func (x *UserUnreadMsgListReq) GetPageSize() int64 {
  2078. if x != nil {
  2079. return x.PageSize
  2080. }
  2081. return 0
  2082. }
  2083. type UserUnreadMsgListRes struct {
  2084. state protoimpl.MessageState
  2085. sizeCache protoimpl.SizeCache
  2086. unknownFields protoimpl.UnknownFields
  2087. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` //状态码
  2088. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //响应消息
  2089. List []*Messages `protobuf:"bytes,3,rep,name=list,proto3" json:"list,omitempty"`
  2090. Count int64 `protobuf:"varint,4,opt,name=count,proto3" json:"count,omitempty"` //总数
  2091. }
  2092. func (x *UserUnreadMsgListRes) Reset() {
  2093. *x = UserUnreadMsgListRes{}
  2094. if protoimpl.UnsafeEnabled {
  2095. mi := &file_message_proto_msgTypes[32]
  2096. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2097. ms.StoreMessageInfo(mi)
  2098. }
  2099. }
  2100. func (x *UserUnreadMsgListRes) String() string {
  2101. return protoimpl.X.MessageStringOf(x)
  2102. }
  2103. func (*UserUnreadMsgListRes) ProtoMessage() {}
  2104. func (x *UserUnreadMsgListRes) ProtoReflect() protoreflect.Message {
  2105. mi := &file_message_proto_msgTypes[32]
  2106. if protoimpl.UnsafeEnabled && x != nil {
  2107. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2108. if ms.LoadMessageInfo() == nil {
  2109. ms.StoreMessageInfo(mi)
  2110. }
  2111. return ms
  2112. }
  2113. return mi.MessageOf(x)
  2114. }
  2115. // Deprecated: Use UserUnreadMsgListRes.ProtoReflect.Descriptor instead.
  2116. func (*UserUnreadMsgListRes) Descriptor() ([]byte, []int) {
  2117. return file_message_proto_rawDescGZIP(), []int{32}
  2118. }
  2119. func (x *UserUnreadMsgListRes) GetCode() int64 {
  2120. if x != nil {
  2121. return x.Code
  2122. }
  2123. return 0
  2124. }
  2125. func (x *UserUnreadMsgListRes) GetMessage() string {
  2126. if x != nil {
  2127. return x.Message
  2128. }
  2129. return ""
  2130. }
  2131. func (x *UserUnreadMsgListRes) GetList() []*Messages {
  2132. if x != nil {
  2133. return x.List
  2134. }
  2135. return nil
  2136. }
  2137. func (x *UserUnreadMsgListRes) GetCount() int64 {
  2138. if x != nil {
  2139. return x.Count
  2140. }
  2141. return 0
  2142. }
  2143. var File_message_proto protoreflect.FileDescriptor
  2144. var file_message_proto_rawDesc = []byte{
  2145. 0x0a, 0x0d, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  2146. 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0xa0, 0x02, 0x0a, 0x0e, 0x53, 0x65, 0x6e,
  2147. 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x72,
  2148. 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  2149. 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49,
  2150. 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x4e, 0x61, 0x6d, 0x65,
  2151. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x4e,
  2152. 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x49,
  2153. 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65,
  2154. 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x18,
  2155. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12,
  2156. 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  2157. 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
  2158. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12,
  2159. 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03,
  2160. 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x6e,
  2161. 0x6b, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x12, 0x16, 0x0a,
  2162. 0x06, 0x63, 0x69, 0x74, 0x65, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63,
  2163. 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x0a,
  2164. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x22, 0x5b, 0x0a, 0x13, 0x43,
  2165. 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x65, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  2166. 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  2167. 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x72, 0x65, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  2168. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x72, 0x65, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74,
  2169. 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
  2170. 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x22, 0x3a, 0x0a, 0x08, 0x52, 0x65, 0x73, 0x43,
  2171. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18,
  2172. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14,
  2173. 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63,
  2174. 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x45, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x61,
  2175. 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
  2176. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
  2177. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x02,
  2178. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x22, 0x38, 0x0a, 0x08, 0x52,
  2179. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18,
  2180. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d,
  2181. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65,
  2182. 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x5c, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65,
  2183. 0x61, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  2184. 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63,
  2185. 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02,
  2186. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a,
  2187. 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f,
  2188. 0x75, 0x6e, 0x74, 0x22, 0xc6, 0x01, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72,
  2189. 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  2190. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x24,
  2191. 0x0a, 0x0d, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  2192. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x55, 0x73,
  2193. 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x03, 0x20,
  2194. 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66,
  2195. 0x66, 0x53, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x53,
  2196. 0x65, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x05,
  2197. 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x18,
  2198. 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52,
  2199. 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x65, 0x61, 0x64,
  2200. 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x72, 0x65, 0x61, 0x64, 0x22, 0xe4, 0x03, 0x0a,
  2201. 0x08, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x63,
  2202. 0x65, 0x69, 0x76, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2203. 0x52, 0x0d, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12,
  2204. 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  2205. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x4e, 0x61, 0x6d,
  2206. 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  2207. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x49,
  2208. 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20,
  2209. 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a,
  2210. 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69,
  2211. 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x06,
  2212. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x18, 0x0a,
  2213. 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07,
  2214. 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x18,
  2215. 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x12, 0x16, 0x0a, 0x06, 0x63,
  2216. 0x69, 0x74, 0x65, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x69, 0x74,
  2217. 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x18, 0x0a, 0x20,
  2218. 0x01, 0x28, 0x03, 0x52, 0x06, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63,
  2219. 0x72, 0x65, 0x61, 0x74, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52,
  2220. 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61,
  2221. 0x70, 0x70, 0x69, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69,
  2222. 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
  2223. 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x73, 0x67, 0x4c, 0x6f, 0x67, 0x49, 0x64, 0x18, 0x0e, 0x20,
  2224. 0x01, 0x28, 0x03, 0x52, 0x08, 0x6d, 0x73, 0x67, 0x4c, 0x6f, 0x67, 0x49, 0x64, 0x12, 0x2c, 0x0a,
  2225. 0x03, 0x75, 0x72, 0x6c, 0x18, 0x0f, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x6d, 0x65, 0x73,
  2226. 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x2e, 0x55, 0x72,
  2227. 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x1a, 0x36, 0x0a, 0x08, 0x55,
  2228. 0x72, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
  2229. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
  2230. 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
  2231. 0x02, 0x38, 0x01, 0x22, 0x7b, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4d,
  2232. 0x73, 0x67, 0x52, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20,
  2233. 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73,
  2234. 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73,
  2235. 0x61, 0x67, 0x65, 0x12, 0x25, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28,
  2236. 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73,
  2237. 0x61, 0x67, 0x65, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f,
  2238. 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  2239. 0x22, 0x60, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x55, 0x6e, 0x72, 0x65,
  2240. 0x61, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73,
  2241. 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
  2242. 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20,
  2243. 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05,
  2244. 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70,
  2245. 0x69, 0x64, 0x22, 0x22, 0x0a, 0x10, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x44, 0x65, 0x74,
  2246. 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  2247. 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x68, 0x0a, 0x11, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2248. 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x63,
  2249. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12,
  2250. 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2251. 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x25, 0x0a, 0x04, 0x64, 0x61, 0x74,
  2252. 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2253. 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61,
  2254. 0x22, 0x73, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x4c, 0x61, 0x73, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61,
  2255. 0x67, 0x65, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  2256. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a,
  2257. 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07,
  2258. 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64,
  2259. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x16, 0x0a,
  2260. 0x06, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x69,
  2261. 0x73, 0x52, 0x65, 0x61, 0x64, 0x22, 0x68, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x4c, 0x61, 0x73, 0x74,
  2262. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f,
  2263. 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18,
  2264. 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  2265. 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x25, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  2266. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2267. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22,
  2268. 0x60, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x43, 0x6c, 0x61, 0x73,
  2269. 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65,
  2270. 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
  2271. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2272. 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6e, 0x65, 0x65, 0x64, 0x4d,
  2273. 0x73, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x6e, 0x65, 0x65, 0x64, 0x4d, 0x73,
  2274. 0x67, 0x22, 0x94, 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x43,
  2275. 0x6c, 0x61, 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04,
  2276. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65,
  2277. 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2278. 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x25, 0x0a, 0x04, 0x64, 0x61,
  2279. 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2280. 0x67, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74,
  2281. 0x61, 0x12, 0x25, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32,
  2282. 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2283. 0x65, 0x73, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x3d, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x4d,
  2284. 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65,
  2285. 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
  2286. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2287. 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x22, 0x51, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x4d, 0x73,
  2288. 0x67, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65,
  2289. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07,
  2290. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d,
  2291. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03,
  2292. 0x20, 0x03, 0x28, 0x03, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3a, 0x0a, 0x04, 0x75, 0x73,
  2293. 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  2294. 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73,
  2295. 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73,
  2296. 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x90, 0x03, 0x0a, 0x12, 0x6d, 0x75, 0x6c, 0x74, 0x69,
  2297. 0x70, 0x6c, 0x65, 0x53, 0x61, 0x76, 0x65, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x12, 0x18, 0x0a,
  2298. 0x07, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2299. 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x4e,
  2300. 0x61, 0x6d, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x75, 0x73, 0x65, 0x72,
  2301. 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65,
  2302. 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x6e, 0x64, 0x55,
  2303. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d,
  2304. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d,
  2305. 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  2306. 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65,
  2307. 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
  2308. 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01,
  2309. 0x28, 0x03, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6c,
  2310. 0x69, 0x6e, 0x6b, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x12,
  2311. 0x16, 0x0a, 0x06, 0x63, 0x69, 0x74, 0x65, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52,
  2312. 0x06, 0x63, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64,
  2313. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1a, 0x0a,
  2314. 0x08, 0x6d, 0x73, 0x67, 0x4c, 0x6f, 0x67, 0x49, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52,
  2315. 0x08, 0x6d, 0x73, 0x67, 0x4c, 0x6f, 0x67, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x68, 0x6f,
  2316. 0x77, 0x42, 0x75, 0x6f, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, 0x68, 0x6f,
  2317. 0x77, 0x42, 0x75, 0x6f, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x73, 0x68, 0x6f, 0x77, 0x43, 0x6f, 0x6e,
  2318. 0x74, 0x65, 0x6e, 0x74, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x68, 0x6f, 0x77,
  2319. 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74,
  2320. 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x6f,
  2321. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x22, 0x5f, 0x0a, 0x13, 0x6d, 0x75, 0x6c,
  2322. 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x61, 0x76, 0x65, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x70,
  2323. 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04,
  2324. 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
  2325. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1a,
  2326. 0x0a, 0x08, 0x65, 0x72, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  2327. 0x52, 0x08, 0x65, 0x72, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x5e, 0x0a, 0x12, 0x46, 0x69,
  2328. 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x42, 0x75, 0x6f, 0x79, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71,
  2329. 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2330. 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69,
  2331. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1a,
  2332. 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  2333. 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x6d, 0x0a, 0x12, 0x46, 0x69,
  2334. 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x42, 0x75, 0x6f, 0x79, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x73,
  2335. 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04,
  2336. 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
  2337. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x29,
  2338. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d,
  2339. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x42, 0x75, 0x6f, 0x79, 0x4d, 0x65, 0x73, 0x73, 0x61,
  2340. 0x67, 0x65, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xab, 0x01, 0x0a, 0x0c, 0x42, 0x75,
  2341. 0x6f, 0x79, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  2342. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x62, 0x75,
  2343. 0x6f, 0x79, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  2344. 0x0a, 0x62, 0x75, 0x6f, 0x79, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x70,
  2345. 0x63, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x63, 0x55, 0x72,
  2346. 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x55, 0x72, 0x6c, 0x18,
  2347. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x55, 0x72,
  2348. 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x6f, 0x73, 0x55, 0x72, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28,
  2349. 0x09, 0x52, 0x06, 0x69, 0x6f, 0x73, 0x55, 0x72, 0x6c, 0x12, 0x1c, 0x0a, 0x09, 0x77, 0x65, 0x43,
  2350. 0x68, 0x61, 0x74, 0x55, 0x72, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x77, 0x65,
  2351. 0x43, 0x68, 0x61, 0x74, 0x55, 0x72, 0x6c, 0x22, 0x77, 0x0a, 0x11, 0x43, 0x6c, 0x65, 0x61, 0x72,
  2352. 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06,
  2353. 0x75, 0x73, 0x65, 0x72, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73,
  2354. 0x65, 0x72, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20,
  2355. 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f,
  2356. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  2357. 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70,
  2358. 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64,
  2359. 0x22, 0x9e, 0x02, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74,
  2360. 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20,
  2361. 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61,
  2362. 0x70, 0x70, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69,
  2363. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x53, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
  2364. 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x53, 0x65, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67,
  2365. 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67,
  2366. 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65,
  2367. 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12,
  2368. 0x12, 0x0a, 0x04, 0x72, 0x65, 0x61, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x72,
  2369. 0x65, 0x61, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x53, 0x6f, 0x72, 0x74, 0x53, 0x69, 0x7a, 0x65, 0x18,
  2370. 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x53, 0x6f, 0x72, 0x74, 0x53, 0x69, 0x7a, 0x65, 0x12,
  2371. 0x1a, 0x0a, 0x08, 0x49, 0x73, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28,
  2372. 0x08, 0x52, 0x08, 0x49, 0x73, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x49,
  2373. 0x73, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x4e, 0x65, 0x77, 0x4d, 0x73, 0x67, 0x18, 0x0a, 0x20,
  2374. 0x01, 0x28, 0x08, 0x52, 0x0e, 0x49, 0x73, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x4e, 0x65, 0x77,
  2375. 0x4d, 0x73, 0x67, 0x12, 0x1c, 0x0a, 0x09, 0x49, 0x73, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74,
  2376. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x49, 0x73, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73,
  2377. 0x74, 0x22, 0xe8, 0x01, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73,
  2378. 0x74, 0x52, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01,
  2379. 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73,
  2380. 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2381. 0x67, 0x65, 0x12, 0x25, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
  2382. 0x32, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  2383. 0x67, 0x65, 0x73, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x0a, 0x04, 0x6c, 0x61, 0x73,
  2384. 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2385. 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52, 0x04, 0x6c, 0x61, 0x73, 0x74,
  2386. 0x12, 0x2c, 0x0a, 0x06, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b,
  2387. 0x32, 0x14, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x41, 0x6c, 0x6c, 0x53, 0x6f,
  2388. 0x72, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x06, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12, 0x14,
  2389. 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63,
  2390. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x18, 0x07,
  2391. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x22, 0x94, 0x01, 0x0a,
  2392. 0x0b, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x0a, 0x04,
  2393. 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x65, 0x73,
  2394. 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52, 0x04, 0x64,
  2395. 0x61, 0x74, 0x61, 0x12, 0x30, 0x0a, 0x08, 0x73, 0x6f, 0x72, 0x74, 0x44, 0x61, 0x74, 0x61, 0x18,
  2396. 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e,
  2397. 0x41, 0x6c, 0x6c, 0x53, 0x6f, 0x72, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x08, 0x73, 0x6f, 0x72,
  2398. 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03,
  2399. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75,
  2400. 0x6e, 0x72, 0x65, 0x61, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x6e, 0x72,
  2401. 0x65, 0x61, 0x64, 0x22, 0xbb, 0x01, 0x0a, 0x09, 0x57, 0x78, 0x54, 0x6d, 0x70, 0x6c, 0x4d, 0x73,
  2402. 0x67, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2403. 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x49,
  2404. 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  2405. 0x73, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01,
  2406. 0x28, 0x09, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x73, 0x12, 0x20, 0x0a, 0x0b, 0x70,
  2407. 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2408. 0x52, 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x12, 0x10, 0x0a,
  2409. 0x03, 0x75, 0x72, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12,
  2410. 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03,
  2411. 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x6d, 0x70,
  2412. 0x6c, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x6c, 0x49,
  2413. 0x64, 0x22, 0x9c, 0x01, 0x0a, 0x0b, 0x41, 0x6c, 0x6c, 0x53, 0x6f, 0x72, 0x74, 0x44, 0x61, 0x74,
  2414. 0x61, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61,
  2415. 0x67, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x75, 0x6e, 0x72, 0x65, 0x61,
  2416. 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
  2417. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a,
  2418. 0x03, 0x69, 0x6d, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x69, 0x6d, 0x67, 0x12,
  2419. 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  2420. 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x25, 0x0a, 0x04, 0x64, 0x61, 0x74,
  2421. 0x61, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2422. 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61,
  2423. 0x22, 0x48, 0x0a, 0x0e, 0x57, 0x78, 0x54, 0x6d, 0x70, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  2424. 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x18,
  2425. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x6f, 0x74, 0x61, 0x6c,
  2426. 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2427. 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x78, 0x0a, 0x14, 0x55, 0x73,
  2428. 0x65, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2429. 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  2430. 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70,
  2431. 0x70, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64,
  2432. 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x53, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  2433. 0x52, 0x06, 0x6f, 0x66, 0x66, 0x53, 0x65, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65,
  2434. 0x53, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65,
  2435. 0x53, 0x69, 0x7a, 0x65, 0x22, 0x81, 0x01, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x72,
  2436. 0x65, 0x61, 0x64, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x12, 0x12, 0x0a,
  2437. 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64,
  2438. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01,
  2439. 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x25, 0x0a, 0x04, 0x6c,
  2440. 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73,
  2441. 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52, 0x04, 0x6c, 0x69,
  2442. 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
  2443. 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x32, 0xcb, 0x08, 0x0a, 0x07, 0x4d, 0x65, 0x73,
  2444. 0x73, 0x61, 0x67, 0x65, 0x12, 0x4c, 0x0a, 0x0f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65,
  2445. 0x53, 0x61, 0x76, 0x65, 0x4d, 0x73, 0x67, 0x12, 0x1b, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2446. 0x65, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x61, 0x76, 0x65, 0x4d, 0x73,
  2447. 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x6d,
  2448. 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x61, 0x76, 0x65, 0x4d, 0x73, 0x67, 0x52, 0x65,
  2449. 0x73, 0x70, 0x12, 0x43, 0x0a, 0x10, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x65, 0x61, 0x64,
  2450. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2451. 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x65, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75,
  2452. 0x73, 0x52, 0x65, 0x71, 0x1a, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x52,
  2453. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x39, 0x0a, 0x0b, 0x53, 0x65, 0x6e, 0x64, 0x55,
  2454. 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x17, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2455. 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2456. 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  2457. 0x73, 0x65, 0x12, 0x51, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x43,
  2458. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1e, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x47,
  2459. 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71,
  2460. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x47,
  2461. 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73,
  2462. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3f, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65,
  2463. 0x72, 0x4d, 0x73, 0x67, 0x12, 0x17, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x46,
  2464. 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e,
  2465. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72,
  2466. 0x4d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x12, 0x57, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x43, 0x6c, 0x61,
  2467. 0x73, 0x73, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1f, 0x2e,
  2468. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x6c, 0x61, 0x73, 0x73,
  2469. 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1f,
  2470. 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65,
  2471. 0x61, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  2472. 0x48, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x4c, 0x61, 0x73, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2473. 0x65, 0x12, 0x1a, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x4c,
  2474. 0x61, 0x73, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e,
  2475. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x4c, 0x61, 0x73, 0x74, 0x4d,
  2476. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x12, 0x4a, 0x0a, 0x11, 0x46, 0x69, 0x6e,
  2477. 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x19,
  2478. 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2479. 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x6d, 0x65, 0x73, 0x73,
  2480. 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69,
  2481. 0x6c, 0x52, 0x65, 0x73, 0x70, 0x12, 0x57, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65,
  2482. 0x61, 0x64, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1f, 0x2e, 0x6d,
  2483. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64,
  2484. 0x43, 0x6c, 0x61, 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e,
  2485. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x61,
  2486. 0x64, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x12, 0x3c,
  2487. 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x2e, 0x6d,
  2488. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x67, 0x54, 0x79, 0x70,
  2489. 0x65, 0x52, 0x65, 0x71, 0x1a, 0x16, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x47,
  2490. 0x65, 0x74, 0x4d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x73, 0x12, 0x4b, 0x0a, 0x0f,
  2491. 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x42, 0x75, 0x6f, 0x79, 0x4d, 0x73, 0x67, 0x12,
  2492. 0x1b, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73,
  2493. 0x65, 0x72, 0x42, 0x75, 0x6f, 0x79, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1b, 0x2e, 0x6d,
  2494. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x42,
  2495. 0x75, 0x6f, 0x79, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x12, 0x3f, 0x0a, 0x0e, 0x43, 0x6c, 0x65,
  2496. 0x61, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x73, 0x67, 0x12, 0x1a, 0x2e, 0x6d, 0x65,
  2497. 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61,
  2498. 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2499. 0x65, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3f, 0x0a, 0x0b, 0x55, 0x73,
  2500. 0x65, 0x72, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x17, 0x2e, 0x6d, 0x65, 0x73, 0x73,
  2501. 0x61, 0x67, 0x65, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2502. 0x65, 0x71, 0x1a, 0x17, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x55, 0x73, 0x65,
  2503. 0x72, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x12, 0x36, 0x0a, 0x0d, 0x53,
  2504. 0x65, 0x6e, 0x64, 0x57, 0x78, 0x54, 0x6d, 0x70, 0x6c, 0x4d, 0x73, 0x67, 0x12, 0x12, 0x2e, 0x6d,
  2505. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x57, 0x78, 0x54, 0x6d, 0x70, 0x6c, 0x4d, 0x73, 0x67,
  2506. 0x1a, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f,
  2507. 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61,
  2508. 0x64, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1d, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2509. 0x67, 0x65, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x73, 0x67,
  2510. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2511. 0x65, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x73, 0x67, 0x4c,
  2512. 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x42, 0x0a, 0x5a, 0x08, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2513. 0x65, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2514. }
  2515. var (
  2516. file_message_proto_rawDescOnce sync.Once
  2517. file_message_proto_rawDescData = file_message_proto_rawDesc
  2518. )
  2519. func file_message_proto_rawDescGZIP() []byte {
  2520. file_message_proto_rawDescOnce.Do(func() {
  2521. file_message_proto_rawDescData = protoimpl.X.CompressGZIP(file_message_proto_rawDescData)
  2522. })
  2523. return file_message_proto_rawDescData
  2524. }
  2525. var file_message_proto_msgTypes = make([]protoimpl.MessageInfo, 34)
  2526. var file_message_proto_goTypes = []interface{}{
  2527. (*SendMsgRequest)(nil), // 0: message.SendMsgRequest
  2528. (*ChangeReadStatusReq)(nil), // 1: message.ChangeReadStatusReq
  2529. (*ResCount)(nil), // 2: message.ResCount
  2530. (*GetUnreadCountRequest)(nil), // 3: message.GetUnreadCountRequest
  2531. (*Response)(nil), // 4: message.Response
  2532. (*GetUnreadCountResponse)(nil), // 5: message.GetUnreadCountResponse
  2533. (*FindUserMsgReq)(nil), // 6: message.FindUserMsgReq
  2534. (*Messages)(nil), // 7: message.Messages
  2535. (*FindUserMsgRes)(nil), // 8: message.FindUserMsgRes
  2536. (*GetClassUnreadCountReq)(nil), // 9: message.GetClassUnreadCountReq
  2537. (*MessageDetailReq)(nil), // 10: message.MessageDetailReq
  2538. (*MessageDetailResp)(nil), // 11: message.MessageDetailResp
  2539. (*GetLastMessageReq)(nil), // 12: message.GetLastMessageReq
  2540. (*GetLastMessageRes)(nil), // 13: message.GetLastMessageRes
  2541. (*GetUnreadClassCountReq)(nil), // 14: message.GetUnreadClassCountReq
  2542. (*GetUnreadClassCountRes)(nil), // 15: message.GetUnreadClassCountRes
  2543. (*GetMsgTypeReq)(nil), // 16: message.GetMsgTypeReq
  2544. (*GetMsgTypeRes)(nil), // 17: message.GetMsgTypeRes
  2545. (*User)(nil), // 18: message.user
  2546. (*MultipleSaveMsgReq)(nil), // 19: message.multipleSaveMsgReq
  2547. (*MultipleSaveMsgResp)(nil), // 20: message.multipleSaveMsgResp
  2548. (*FindUserBuoyMsgReq)(nil), // 21: message.FindUserBuoyMsgReq
  2549. (*FindUserBuoyMsgRes)(nil), // 22: message.FindUserBuoyMsgRes
  2550. (*BuoyMessages)(nil), // 23: message.BuoyMessages
  2551. (*ClearUnreadMsgReq)(nil), // 24: message.ClearUnreadMsgReq
  2552. (*UserMsgListReq)(nil), // 25: message.UserMsgListReq
  2553. (*UserMsgListRes)(nil), // 26: message.UserMsgListRes
  2554. (*UserMsgList)(nil), // 27: message.UserMsgList
  2555. (*WxTmplMsg)(nil), // 28: message.WxTmplMsg
  2556. (*AllSortData)(nil), // 29: message.AllSortData
  2557. (*WxTmplResponse)(nil), // 30: message.WxTmplResponse
  2558. (*UserUnreadMsgListReq)(nil), // 31: message.UserUnreadMsgListReq
  2559. (*UserUnreadMsgListRes)(nil), // 32: message.UserUnreadMsgListRes
  2560. nil, // 33: message.Messages.UrlEntry
  2561. }
  2562. var file_message_proto_depIdxs = []int32{
  2563. 33, // 0: message.Messages.url:type_name -> message.Messages.UrlEntry
  2564. 7, // 1: message.FindUserMsgRes.data:type_name -> message.Messages
  2565. 7, // 2: message.MessageDetailResp.data:type_name -> message.Messages
  2566. 7, // 3: message.GetLastMessageRes.data:type_name -> message.Messages
  2567. 2, // 4: message.GetUnreadClassCountRes.data:type_name -> message.ResCount
  2568. 7, // 5: message.GetUnreadClassCountRes.info:type_name -> message.Messages
  2569. 23, // 6: message.FindUserBuoyMsgRes.data:type_name -> message.BuoyMessages
  2570. 7, // 7: message.UserMsgListRes.list:type_name -> message.Messages
  2571. 7, // 8: message.UserMsgListRes.last:type_name -> message.Messages
  2572. 29, // 9: message.UserMsgListRes.column:type_name -> message.AllSortData
  2573. 7, // 10: message.UserMsgList.data:type_name -> message.Messages
  2574. 29, // 11: message.UserMsgList.sortData:type_name -> message.AllSortData
  2575. 7, // 12: message.AllSortData.data:type_name -> message.Messages
  2576. 7, // 13: message.UserUnreadMsgListRes.list:type_name -> message.Messages
  2577. 19, // 14: message.Message.multipleSaveMsg:input_type -> message.multipleSaveMsgReq
  2578. 1, // 15: message.Message.ChangeReadStatus:input_type -> message.ChangeReadStatusReq
  2579. 0, // 16: message.Message.SendUserMsg:input_type -> message.SendMsgRequest
  2580. 3, // 17: message.Message.GetUnreadCount:input_type -> message.GetUnreadCountRequest
  2581. 6, // 18: message.Message.FindUserMsg:input_type -> message.FindUserMsgReq
  2582. 9, // 19: message.Message.GetClassUnreadCount:input_type -> message.GetClassUnreadCountReq
  2583. 12, // 20: message.Message.GetLastMessage:input_type -> message.GetLastMessageReq
  2584. 10, // 21: message.Message.FindMessageDetail:input_type -> message.MessageDetailReq
  2585. 14, // 22: message.Message.GetUnreadClassCount:input_type -> message.GetUnreadClassCountReq
  2586. 16, // 23: message.Message.GetMsgType:input_type -> message.GetMsgTypeReq
  2587. 21, // 24: message.Message.FindUserBuoyMsg:input_type -> message.FindUserBuoyMsgReq
  2588. 24, // 25: message.Message.ClearUnreadMsg:input_type -> message.ClearUnreadMsgReq
  2589. 25, // 26: message.Message.UserMsgList:input_type -> message.UserMsgListReq
  2590. 28, // 27: message.Message.SendWxTmplMsg:input_type -> message.WxTmplMsg
  2591. 31, // 28: message.Message.UserUnreadMsgList:input_type -> message.UserUnreadMsgListReq
  2592. 20, // 29: message.Message.multipleSaveMsg:output_type -> message.multipleSaveMsgResp
  2593. 4, // 30: message.Message.ChangeReadStatus:output_type -> message.Response
  2594. 4, // 31: message.Message.SendUserMsg:output_type -> message.Response
  2595. 5, // 32: message.Message.GetUnreadCount:output_type -> message.GetUnreadCountResponse
  2596. 8, // 33: message.Message.FindUserMsg:output_type -> message.FindUserMsgRes
  2597. 5, // 34: message.Message.GetClassUnreadCount:output_type -> message.GetUnreadCountResponse
  2598. 13, // 35: message.Message.GetLastMessage:output_type -> message.GetLastMessageRes
  2599. 11, // 36: message.Message.FindMessageDetail:output_type -> message.MessageDetailResp
  2600. 15, // 37: message.Message.GetUnreadClassCount:output_type -> message.GetUnreadClassCountRes
  2601. 17, // 38: message.Message.GetMsgType:output_type -> message.GetMsgTypeRes
  2602. 22, // 39: message.Message.FindUserBuoyMsg:output_type -> message.FindUserBuoyMsgRes
  2603. 4, // 40: message.Message.ClearUnreadMsg:output_type -> message.Response
  2604. 26, // 41: message.Message.UserMsgList:output_type -> message.UserMsgListRes
  2605. 4, // 42: message.Message.SendWxTmplMsg:output_type -> message.Response
  2606. 32, // 43: message.Message.UserUnreadMsgList:output_type -> message.UserUnreadMsgListRes
  2607. 29, // [29:44] is the sub-list for method output_type
  2608. 14, // [14:29] is the sub-list for method input_type
  2609. 14, // [14:14] is the sub-list for extension type_name
  2610. 14, // [14:14] is the sub-list for extension extendee
  2611. 0, // [0:14] is the sub-list for field type_name
  2612. }
  2613. func init() { file_message_proto_init() }
  2614. func file_message_proto_init() {
  2615. if File_message_proto != nil {
  2616. return
  2617. }
  2618. if !protoimpl.UnsafeEnabled {
  2619. file_message_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2620. switch v := v.(*SendMsgRequest); i {
  2621. case 0:
  2622. return &v.state
  2623. case 1:
  2624. return &v.sizeCache
  2625. case 2:
  2626. return &v.unknownFields
  2627. default:
  2628. return nil
  2629. }
  2630. }
  2631. file_message_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2632. switch v := v.(*ChangeReadStatusReq); i {
  2633. case 0:
  2634. return &v.state
  2635. case 1:
  2636. return &v.sizeCache
  2637. case 2:
  2638. return &v.unknownFields
  2639. default:
  2640. return nil
  2641. }
  2642. }
  2643. file_message_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2644. switch v := v.(*ResCount); i {
  2645. case 0:
  2646. return &v.state
  2647. case 1:
  2648. return &v.sizeCache
  2649. case 2:
  2650. return &v.unknownFields
  2651. default:
  2652. return nil
  2653. }
  2654. }
  2655. file_message_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2656. switch v := v.(*GetUnreadCountRequest); i {
  2657. case 0:
  2658. return &v.state
  2659. case 1:
  2660. return &v.sizeCache
  2661. case 2:
  2662. return &v.unknownFields
  2663. default:
  2664. return nil
  2665. }
  2666. }
  2667. file_message_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2668. switch v := v.(*Response); i {
  2669. case 0:
  2670. return &v.state
  2671. case 1:
  2672. return &v.sizeCache
  2673. case 2:
  2674. return &v.unknownFields
  2675. default:
  2676. return nil
  2677. }
  2678. }
  2679. file_message_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2680. switch v := v.(*GetUnreadCountResponse); i {
  2681. case 0:
  2682. return &v.state
  2683. case 1:
  2684. return &v.sizeCache
  2685. case 2:
  2686. return &v.unknownFields
  2687. default:
  2688. return nil
  2689. }
  2690. }
  2691. file_message_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2692. switch v := v.(*FindUserMsgReq); i {
  2693. case 0:
  2694. return &v.state
  2695. case 1:
  2696. return &v.sizeCache
  2697. case 2:
  2698. return &v.unknownFields
  2699. default:
  2700. return nil
  2701. }
  2702. }
  2703. file_message_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2704. switch v := v.(*Messages); i {
  2705. case 0:
  2706. return &v.state
  2707. case 1:
  2708. return &v.sizeCache
  2709. case 2:
  2710. return &v.unknownFields
  2711. default:
  2712. return nil
  2713. }
  2714. }
  2715. file_message_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2716. switch v := v.(*FindUserMsgRes); i {
  2717. case 0:
  2718. return &v.state
  2719. case 1:
  2720. return &v.sizeCache
  2721. case 2:
  2722. return &v.unknownFields
  2723. default:
  2724. return nil
  2725. }
  2726. }
  2727. file_message_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2728. switch v := v.(*GetClassUnreadCountReq); i {
  2729. case 0:
  2730. return &v.state
  2731. case 1:
  2732. return &v.sizeCache
  2733. case 2:
  2734. return &v.unknownFields
  2735. default:
  2736. return nil
  2737. }
  2738. }
  2739. file_message_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2740. switch v := v.(*MessageDetailReq); i {
  2741. case 0:
  2742. return &v.state
  2743. case 1:
  2744. return &v.sizeCache
  2745. case 2:
  2746. return &v.unknownFields
  2747. default:
  2748. return nil
  2749. }
  2750. }
  2751. file_message_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2752. switch v := v.(*MessageDetailResp); i {
  2753. case 0:
  2754. return &v.state
  2755. case 1:
  2756. return &v.sizeCache
  2757. case 2:
  2758. return &v.unknownFields
  2759. default:
  2760. return nil
  2761. }
  2762. }
  2763. file_message_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2764. switch v := v.(*GetLastMessageReq); i {
  2765. case 0:
  2766. return &v.state
  2767. case 1:
  2768. return &v.sizeCache
  2769. case 2:
  2770. return &v.unknownFields
  2771. default:
  2772. return nil
  2773. }
  2774. }
  2775. file_message_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2776. switch v := v.(*GetLastMessageRes); i {
  2777. case 0:
  2778. return &v.state
  2779. case 1:
  2780. return &v.sizeCache
  2781. case 2:
  2782. return &v.unknownFields
  2783. default:
  2784. return nil
  2785. }
  2786. }
  2787. file_message_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2788. switch v := v.(*GetUnreadClassCountReq); i {
  2789. case 0:
  2790. return &v.state
  2791. case 1:
  2792. return &v.sizeCache
  2793. case 2:
  2794. return &v.unknownFields
  2795. default:
  2796. return nil
  2797. }
  2798. }
  2799. file_message_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2800. switch v := v.(*GetUnreadClassCountRes); i {
  2801. case 0:
  2802. return &v.state
  2803. case 1:
  2804. return &v.sizeCache
  2805. case 2:
  2806. return &v.unknownFields
  2807. default:
  2808. return nil
  2809. }
  2810. }
  2811. file_message_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2812. switch v := v.(*GetMsgTypeReq); i {
  2813. case 0:
  2814. return &v.state
  2815. case 1:
  2816. return &v.sizeCache
  2817. case 2:
  2818. return &v.unknownFields
  2819. default:
  2820. return nil
  2821. }
  2822. }
  2823. file_message_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2824. switch v := v.(*GetMsgTypeRes); i {
  2825. case 0:
  2826. return &v.state
  2827. case 1:
  2828. return &v.sizeCache
  2829. case 2:
  2830. return &v.unknownFields
  2831. default:
  2832. return nil
  2833. }
  2834. }
  2835. file_message_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2836. switch v := v.(*User); i {
  2837. case 0:
  2838. return &v.state
  2839. case 1:
  2840. return &v.sizeCache
  2841. case 2:
  2842. return &v.unknownFields
  2843. default:
  2844. return nil
  2845. }
  2846. }
  2847. file_message_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2848. switch v := v.(*MultipleSaveMsgReq); i {
  2849. case 0:
  2850. return &v.state
  2851. case 1:
  2852. return &v.sizeCache
  2853. case 2:
  2854. return &v.unknownFields
  2855. default:
  2856. return nil
  2857. }
  2858. }
  2859. file_message_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2860. switch v := v.(*MultipleSaveMsgResp); i {
  2861. case 0:
  2862. return &v.state
  2863. case 1:
  2864. return &v.sizeCache
  2865. case 2:
  2866. return &v.unknownFields
  2867. default:
  2868. return nil
  2869. }
  2870. }
  2871. file_message_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2872. switch v := v.(*FindUserBuoyMsgReq); i {
  2873. case 0:
  2874. return &v.state
  2875. case 1:
  2876. return &v.sizeCache
  2877. case 2:
  2878. return &v.unknownFields
  2879. default:
  2880. return nil
  2881. }
  2882. }
  2883. file_message_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2884. switch v := v.(*FindUserBuoyMsgRes); i {
  2885. case 0:
  2886. return &v.state
  2887. case 1:
  2888. return &v.sizeCache
  2889. case 2:
  2890. return &v.unknownFields
  2891. default:
  2892. return nil
  2893. }
  2894. }
  2895. file_message_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2896. switch v := v.(*BuoyMessages); i {
  2897. case 0:
  2898. return &v.state
  2899. case 1:
  2900. return &v.sizeCache
  2901. case 2:
  2902. return &v.unknownFields
  2903. default:
  2904. return nil
  2905. }
  2906. }
  2907. file_message_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2908. switch v := v.(*ClearUnreadMsgReq); i {
  2909. case 0:
  2910. return &v.state
  2911. case 1:
  2912. return &v.sizeCache
  2913. case 2:
  2914. return &v.unknownFields
  2915. default:
  2916. return nil
  2917. }
  2918. }
  2919. file_message_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2920. switch v := v.(*UserMsgListReq); i {
  2921. case 0:
  2922. return &v.state
  2923. case 1:
  2924. return &v.sizeCache
  2925. case 2:
  2926. return &v.unknownFields
  2927. default:
  2928. return nil
  2929. }
  2930. }
  2931. file_message_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  2932. switch v := v.(*UserMsgListRes); i {
  2933. case 0:
  2934. return &v.state
  2935. case 1:
  2936. return &v.sizeCache
  2937. case 2:
  2938. return &v.unknownFields
  2939. default:
  2940. return nil
  2941. }
  2942. }
  2943. file_message_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  2944. switch v := v.(*UserMsgList); i {
  2945. case 0:
  2946. return &v.state
  2947. case 1:
  2948. return &v.sizeCache
  2949. case 2:
  2950. return &v.unknownFields
  2951. default:
  2952. return nil
  2953. }
  2954. }
  2955. file_message_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  2956. switch v := v.(*WxTmplMsg); i {
  2957. case 0:
  2958. return &v.state
  2959. case 1:
  2960. return &v.sizeCache
  2961. case 2:
  2962. return &v.unknownFields
  2963. default:
  2964. return nil
  2965. }
  2966. }
  2967. file_message_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  2968. switch v := v.(*AllSortData); i {
  2969. case 0:
  2970. return &v.state
  2971. case 1:
  2972. return &v.sizeCache
  2973. case 2:
  2974. return &v.unknownFields
  2975. default:
  2976. return nil
  2977. }
  2978. }
  2979. file_message_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  2980. switch v := v.(*WxTmplResponse); i {
  2981. case 0:
  2982. return &v.state
  2983. case 1:
  2984. return &v.sizeCache
  2985. case 2:
  2986. return &v.unknownFields
  2987. default:
  2988. return nil
  2989. }
  2990. }
  2991. file_message_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  2992. switch v := v.(*UserUnreadMsgListReq); i {
  2993. case 0:
  2994. return &v.state
  2995. case 1:
  2996. return &v.sizeCache
  2997. case 2:
  2998. return &v.unknownFields
  2999. default:
  3000. return nil
  3001. }
  3002. }
  3003. file_message_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  3004. switch v := v.(*UserUnreadMsgListRes); i {
  3005. case 0:
  3006. return &v.state
  3007. case 1:
  3008. return &v.sizeCache
  3009. case 2:
  3010. return &v.unknownFields
  3011. default:
  3012. return nil
  3013. }
  3014. }
  3015. }
  3016. type x struct{}
  3017. out := protoimpl.TypeBuilder{
  3018. File: protoimpl.DescBuilder{
  3019. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3020. RawDescriptor: file_message_proto_rawDesc,
  3021. NumEnums: 0,
  3022. NumMessages: 34,
  3023. NumExtensions: 0,
  3024. NumServices: 1,
  3025. },
  3026. GoTypes: file_message_proto_goTypes,
  3027. DependencyIndexes: file_message_proto_depIdxs,
  3028. MessageInfos: file_message_proto_msgTypes,
  3029. }.Build()
  3030. File_message_proto = out.File
  3031. file_message_proto_rawDesc = nil
  3032. file_message_proto_goTypes = nil
  3033. file_message_proto_depIdxs = nil
  3034. }