message.pb.go 111 KB

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