message.pb.go 114 KB

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