message.pb.go 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399
  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. NewUserId int64 `protobuf:"varint,5,opt,name=NewUserId,proto3" json:"NewUserId,omitempty"` //私信相关
  1399. }
  1400. func (x *ClearUnreadMsgReq) Reset() {
  1401. *x = ClearUnreadMsgReq{}
  1402. if protoimpl.UnsafeEnabled {
  1403. mi := &file_message_proto_msgTypes[22]
  1404. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1405. ms.StoreMessageInfo(mi)
  1406. }
  1407. }
  1408. func (x *ClearUnreadMsgReq) String() string {
  1409. return protoimpl.X.MessageStringOf(x)
  1410. }
  1411. func (*ClearUnreadMsgReq) ProtoMessage() {}
  1412. func (x *ClearUnreadMsgReq) ProtoReflect() protoreflect.Message {
  1413. mi := &file_message_proto_msgTypes[22]
  1414. if protoimpl.UnsafeEnabled && x != nil {
  1415. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1416. if ms.LoadMessageInfo() == nil {
  1417. ms.StoreMessageInfo(mi)
  1418. }
  1419. return ms
  1420. }
  1421. return mi.MessageOf(x)
  1422. }
  1423. // Deprecated: Use ClearUnreadMsgReq.ProtoReflect.Descriptor instead.
  1424. func (*ClearUnreadMsgReq) Descriptor() ([]byte, []int) {
  1425. return file_message_proto_rawDescGZIP(), []int{22}
  1426. }
  1427. func (x *ClearUnreadMsgReq) GetUserid() string {
  1428. if x != nil {
  1429. return x.Userid
  1430. }
  1431. return ""
  1432. }
  1433. func (x *ClearUnreadMsgReq) GetEntId() int64 {
  1434. if x != nil {
  1435. return x.EntId
  1436. }
  1437. return 0
  1438. }
  1439. func (x *ClearUnreadMsgReq) GetPositionId() int64 {
  1440. if x != nil {
  1441. return x.PositionId
  1442. }
  1443. return 0
  1444. }
  1445. func (x *ClearUnreadMsgReq) GetAppId() string {
  1446. if x != nil {
  1447. return x.AppId
  1448. }
  1449. return ""
  1450. }
  1451. func (x *ClearUnreadMsgReq) GetNewUserId() int64 {
  1452. if x != nil {
  1453. return x.NewUserId
  1454. }
  1455. return 0
  1456. }
  1457. type UserMsgListReq struct {
  1458. state protoimpl.MessageState
  1459. sizeCache protoimpl.SizeCache
  1460. unknownFields protoimpl.UnknownFields
  1461. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"` //用户id
  1462. Appid string `protobuf:"bytes,3,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  1463. OffSet int64 `protobuf:"varint,4,opt,name=offSet,proto3" json:"offSet,omitempty"` //当前
  1464. PageSize int64 `protobuf:"varint,5,opt,name=pageSize,proto3" json:"pageSize,omitempty"` //大小
  1465. MsgType int64 `protobuf:"varint,6,opt,name=msgType,proto3" json:"msgType,omitempty"` //是否区分类型
  1466. Read int64 `protobuf:"varint,7,opt,name=read,proto3" json:"read,omitempty"` // 是否区分已读未读 -1 不区分已读未读 0 未读 1 已读
  1467. SortSize int64 `protobuf:"varint,8,opt,name=SortSize,proto3" json:"SortSize,omitempty"` //分类 每类数
  1468. IsColumn bool `protobuf:"varint,9,opt,name=isColumn,proto3" json:"isColumn,omitempty"` //是否需要获取栏目
  1469. IsColumnNewMsg bool `protobuf:"varint,10,opt,name=isColumnNewMsg,proto3" json:"isColumnNewMsg,omitempty"` //是否需各栏目获取最新消息
  1470. IsMsgList bool `protobuf:"varint,11,opt,name=isMsgList,proto3" json:"isMsgList,omitempty"` //是否需要列表信息
  1471. NewUserId int64 `protobuf:"varint,12,opt,name=NewUserId,proto3" json:"NewUserId,omitempty"` //私信相关
  1472. PositionId int64 `protobuf:"varint,13,opt,name=PositionId,proto3" json:"PositionId,omitempty"` //私信相关
  1473. }
  1474. func (x *UserMsgListReq) Reset() {
  1475. *x = UserMsgListReq{}
  1476. if protoimpl.UnsafeEnabled {
  1477. mi := &file_message_proto_msgTypes[23]
  1478. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1479. ms.StoreMessageInfo(mi)
  1480. }
  1481. }
  1482. func (x *UserMsgListReq) String() string {
  1483. return protoimpl.X.MessageStringOf(x)
  1484. }
  1485. func (*UserMsgListReq) ProtoMessage() {}
  1486. func (x *UserMsgListReq) ProtoReflect() protoreflect.Message {
  1487. mi := &file_message_proto_msgTypes[23]
  1488. if protoimpl.UnsafeEnabled && x != nil {
  1489. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1490. if ms.LoadMessageInfo() == nil {
  1491. ms.StoreMessageInfo(mi)
  1492. }
  1493. return ms
  1494. }
  1495. return mi.MessageOf(x)
  1496. }
  1497. // Deprecated: Use UserMsgListReq.ProtoReflect.Descriptor instead.
  1498. func (*UserMsgListReq) Descriptor() ([]byte, []int) {
  1499. return file_message_proto_rawDescGZIP(), []int{23}
  1500. }
  1501. func (x *UserMsgListReq) GetUserId() string {
  1502. if x != nil {
  1503. return x.UserId
  1504. }
  1505. return ""
  1506. }
  1507. func (x *UserMsgListReq) GetAppid() string {
  1508. if x != nil {
  1509. return x.Appid
  1510. }
  1511. return ""
  1512. }
  1513. func (x *UserMsgListReq) GetOffSet() int64 {
  1514. if x != nil {
  1515. return x.OffSet
  1516. }
  1517. return 0
  1518. }
  1519. func (x *UserMsgListReq) GetPageSize() int64 {
  1520. if x != nil {
  1521. return x.PageSize
  1522. }
  1523. return 0
  1524. }
  1525. func (x *UserMsgListReq) GetMsgType() int64 {
  1526. if x != nil {
  1527. return x.MsgType
  1528. }
  1529. return 0
  1530. }
  1531. func (x *UserMsgListReq) GetRead() int64 {
  1532. if x != nil {
  1533. return x.Read
  1534. }
  1535. return 0
  1536. }
  1537. func (x *UserMsgListReq) GetSortSize() int64 {
  1538. if x != nil {
  1539. return x.SortSize
  1540. }
  1541. return 0
  1542. }
  1543. func (x *UserMsgListReq) GetIsColumn() bool {
  1544. if x != nil {
  1545. return x.IsColumn
  1546. }
  1547. return false
  1548. }
  1549. func (x *UserMsgListReq) GetIsColumnNewMsg() bool {
  1550. if x != nil {
  1551. return x.IsColumnNewMsg
  1552. }
  1553. return false
  1554. }
  1555. func (x *UserMsgListReq) GetIsMsgList() bool {
  1556. if x != nil {
  1557. return x.IsMsgList
  1558. }
  1559. return false
  1560. }
  1561. func (x *UserMsgListReq) GetNewUserId() int64 {
  1562. if x != nil {
  1563. return x.NewUserId
  1564. }
  1565. return 0
  1566. }
  1567. func (x *UserMsgListReq) GetPositionId() int64 {
  1568. if x != nil {
  1569. return x.PositionId
  1570. }
  1571. return 0
  1572. }
  1573. type UserMsgListRes struct {
  1574. state protoimpl.MessageState
  1575. sizeCache protoimpl.SizeCache
  1576. unknownFields protoimpl.UnknownFields
  1577. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` //状态码
  1578. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //响应消息
  1579. List []*Messages `protobuf:"bytes,3,rep,name=list,proto3" json:"list,omitempty"` //
  1580. Last *Messages `protobuf:"bytes,4,opt,name=last,proto3" json:"last,omitempty"` //
  1581. Column []*AllSortData `protobuf:"bytes,5,rep,name=column,proto3" json:"column,omitempty"` //
  1582. Count int64 `protobuf:"varint,6,opt,name=count,proto3" json:"count,omitempty"` //总数
  1583. Unread int64 `protobuf:"varint,7,opt,name=unread,proto3" json:"unread,omitempty"` //未读总数
  1584. }
  1585. func (x *UserMsgListRes) Reset() {
  1586. *x = UserMsgListRes{}
  1587. if protoimpl.UnsafeEnabled {
  1588. mi := &file_message_proto_msgTypes[24]
  1589. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1590. ms.StoreMessageInfo(mi)
  1591. }
  1592. }
  1593. func (x *UserMsgListRes) String() string {
  1594. return protoimpl.X.MessageStringOf(x)
  1595. }
  1596. func (*UserMsgListRes) ProtoMessage() {}
  1597. func (x *UserMsgListRes) ProtoReflect() protoreflect.Message {
  1598. mi := &file_message_proto_msgTypes[24]
  1599. if protoimpl.UnsafeEnabled && x != nil {
  1600. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1601. if ms.LoadMessageInfo() == nil {
  1602. ms.StoreMessageInfo(mi)
  1603. }
  1604. return ms
  1605. }
  1606. return mi.MessageOf(x)
  1607. }
  1608. // Deprecated: Use UserMsgListRes.ProtoReflect.Descriptor instead.
  1609. func (*UserMsgListRes) Descriptor() ([]byte, []int) {
  1610. return file_message_proto_rawDescGZIP(), []int{24}
  1611. }
  1612. func (x *UserMsgListRes) GetCode() int64 {
  1613. if x != nil {
  1614. return x.Code
  1615. }
  1616. return 0
  1617. }
  1618. func (x *UserMsgListRes) GetMessage() string {
  1619. if x != nil {
  1620. return x.Message
  1621. }
  1622. return ""
  1623. }
  1624. func (x *UserMsgListRes) GetList() []*Messages {
  1625. if x != nil {
  1626. return x.List
  1627. }
  1628. return nil
  1629. }
  1630. func (x *UserMsgListRes) GetLast() *Messages {
  1631. if x != nil {
  1632. return x.Last
  1633. }
  1634. return nil
  1635. }
  1636. func (x *UserMsgListRes) GetColumn() []*AllSortData {
  1637. if x != nil {
  1638. return x.Column
  1639. }
  1640. return nil
  1641. }
  1642. func (x *UserMsgListRes) GetCount() int64 {
  1643. if x != nil {
  1644. return x.Count
  1645. }
  1646. return 0
  1647. }
  1648. func (x *UserMsgListRes) GetUnread() int64 {
  1649. if x != nil {
  1650. return x.Unread
  1651. }
  1652. return 0
  1653. }
  1654. type UserMsgList struct {
  1655. state protoimpl.MessageState
  1656. sizeCache protoimpl.SizeCache
  1657. unknownFields protoimpl.UnknownFields
  1658. Data []*Messages `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"` //
  1659. SortData []*AllSortData `protobuf:"bytes,2,rep,name=sortData,proto3" json:"sortData,omitempty"` //
  1660. Count int64 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"` //总数
  1661. Unread int64 `protobuf:"varint,4,opt,name=unread,proto3" json:"unread,omitempty"` //未读总数
  1662. }
  1663. func (x *UserMsgList) Reset() {
  1664. *x = UserMsgList{}
  1665. if protoimpl.UnsafeEnabled {
  1666. mi := &file_message_proto_msgTypes[25]
  1667. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1668. ms.StoreMessageInfo(mi)
  1669. }
  1670. }
  1671. func (x *UserMsgList) String() string {
  1672. return protoimpl.X.MessageStringOf(x)
  1673. }
  1674. func (*UserMsgList) ProtoMessage() {}
  1675. func (x *UserMsgList) ProtoReflect() protoreflect.Message {
  1676. mi := &file_message_proto_msgTypes[25]
  1677. if protoimpl.UnsafeEnabled && x != nil {
  1678. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1679. if ms.LoadMessageInfo() == nil {
  1680. ms.StoreMessageInfo(mi)
  1681. }
  1682. return ms
  1683. }
  1684. return mi.MessageOf(x)
  1685. }
  1686. // Deprecated: Use UserMsgList.ProtoReflect.Descriptor instead.
  1687. func (*UserMsgList) Descriptor() ([]byte, []int) {
  1688. return file_message_proto_rawDescGZIP(), []int{25}
  1689. }
  1690. func (x *UserMsgList) GetData() []*Messages {
  1691. if x != nil {
  1692. return x.Data
  1693. }
  1694. return nil
  1695. }
  1696. func (x *UserMsgList) GetSortData() []*AllSortData {
  1697. if x != nil {
  1698. return x.SortData
  1699. }
  1700. return nil
  1701. }
  1702. func (x *UserMsgList) GetCount() int64 {
  1703. if x != nil {
  1704. return x.Count
  1705. }
  1706. return 0
  1707. }
  1708. func (x *UserMsgList) GetUnread() int64 {
  1709. if x != nil {
  1710. return x.Unread
  1711. }
  1712. return 0
  1713. }
  1714. type AllSortData struct {
  1715. state protoimpl.MessageState
  1716. sizeCache protoimpl.SizeCache
  1717. unknownFields protoimpl.UnknownFields
  1718. UnreadMessages int64 `protobuf:"varint,1,opt,name=unreadMessages,proto3" json:"unreadMessages,omitempty"`
  1719. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  1720. Img string `protobuf:"bytes,3,opt,name=img,proto3" json:"img,omitempty"`
  1721. MsgType int64 `protobuf:"varint,4,opt,name=msgType,proto3" json:"msgType,omitempty"` //是否区分类型;
  1722. Data []*Messages `protobuf:"bytes,5,rep,name=data,proto3" json:"data,omitempty"` //
  1723. }
  1724. func (x *AllSortData) Reset() {
  1725. *x = AllSortData{}
  1726. if protoimpl.UnsafeEnabled {
  1727. mi := &file_message_proto_msgTypes[26]
  1728. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1729. ms.StoreMessageInfo(mi)
  1730. }
  1731. }
  1732. func (x *AllSortData) String() string {
  1733. return protoimpl.X.MessageStringOf(x)
  1734. }
  1735. func (*AllSortData) ProtoMessage() {}
  1736. func (x *AllSortData) ProtoReflect() protoreflect.Message {
  1737. mi := &file_message_proto_msgTypes[26]
  1738. if protoimpl.UnsafeEnabled && x != nil {
  1739. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1740. if ms.LoadMessageInfo() == nil {
  1741. ms.StoreMessageInfo(mi)
  1742. }
  1743. return ms
  1744. }
  1745. return mi.MessageOf(x)
  1746. }
  1747. // Deprecated: Use AllSortData.ProtoReflect.Descriptor instead.
  1748. func (*AllSortData) Descriptor() ([]byte, []int) {
  1749. return file_message_proto_rawDescGZIP(), []int{26}
  1750. }
  1751. func (x *AllSortData) GetUnreadMessages() int64 {
  1752. if x != nil {
  1753. return x.UnreadMessages
  1754. }
  1755. return 0
  1756. }
  1757. func (x *AllSortData) GetName() string {
  1758. if x != nil {
  1759. return x.Name
  1760. }
  1761. return ""
  1762. }
  1763. func (x *AllSortData) GetImg() string {
  1764. if x != nil {
  1765. return x.Img
  1766. }
  1767. return ""
  1768. }
  1769. func (x *AllSortData) GetMsgType() int64 {
  1770. if x != nil {
  1771. return x.MsgType
  1772. }
  1773. return 0
  1774. }
  1775. func (x *AllSortData) GetData() []*Messages {
  1776. if x != nil {
  1777. return x.Data
  1778. }
  1779. return nil
  1780. }
  1781. type WxTmplResponse struct {
  1782. state protoimpl.MessageState
  1783. sizeCache protoimpl.SizeCache
  1784. unknownFields protoimpl.UnknownFields
  1785. SendTotal int64 `protobuf:"varint,1,opt,name=sendTotal,proto3" json:"sendTotal,omitempty"` //发送数量
  1786. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //信息
  1787. }
  1788. func (x *WxTmplResponse) Reset() {
  1789. *x = WxTmplResponse{}
  1790. if protoimpl.UnsafeEnabled {
  1791. mi := &file_message_proto_msgTypes[27]
  1792. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1793. ms.StoreMessageInfo(mi)
  1794. }
  1795. }
  1796. func (x *WxTmplResponse) String() string {
  1797. return protoimpl.X.MessageStringOf(x)
  1798. }
  1799. func (*WxTmplResponse) ProtoMessage() {}
  1800. func (x *WxTmplResponse) ProtoReflect() protoreflect.Message {
  1801. mi := &file_message_proto_msgTypes[27]
  1802. if protoimpl.UnsafeEnabled && x != nil {
  1803. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1804. if ms.LoadMessageInfo() == nil {
  1805. ms.StoreMessageInfo(mi)
  1806. }
  1807. return ms
  1808. }
  1809. return mi.MessageOf(x)
  1810. }
  1811. // Deprecated: Use WxTmplResponse.ProtoReflect.Descriptor instead.
  1812. func (*WxTmplResponse) Descriptor() ([]byte, []int) {
  1813. return file_message_proto_rawDescGZIP(), []int{27}
  1814. }
  1815. func (x *WxTmplResponse) GetSendTotal() int64 {
  1816. if x != nil {
  1817. return x.SendTotal
  1818. }
  1819. return 0
  1820. }
  1821. func (x *WxTmplResponse) GetMessage() string {
  1822. if x != nil {
  1823. return x.Message
  1824. }
  1825. return ""
  1826. }
  1827. type UserUnreadMsgListReq struct {
  1828. state protoimpl.MessageState
  1829. sizeCache protoimpl.SizeCache
  1830. unknownFields protoimpl.UnknownFields
  1831. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"` //用户id
  1832. Appid string `protobuf:"bytes,3,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
  1833. OffSet int64 `protobuf:"varint,4,opt,name=offSet,proto3" json:"offSet,omitempty"` //当前
  1834. PageSize int64 `protobuf:"varint,5,opt,name=pageSize,proto3" json:"pageSize,omitempty"` //大小
  1835. IsNeedData int64 `protobuf:"varint,6,opt,name=isNeedData,proto3" json:"isNeedData,omitempty"` //是否需要未读的消息数据,0 不需要 1需要
  1836. }
  1837. func (x *UserUnreadMsgListReq) Reset() {
  1838. *x = UserUnreadMsgListReq{}
  1839. if protoimpl.UnsafeEnabled {
  1840. mi := &file_message_proto_msgTypes[28]
  1841. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1842. ms.StoreMessageInfo(mi)
  1843. }
  1844. }
  1845. func (x *UserUnreadMsgListReq) String() string {
  1846. return protoimpl.X.MessageStringOf(x)
  1847. }
  1848. func (*UserUnreadMsgListReq) ProtoMessage() {}
  1849. func (x *UserUnreadMsgListReq) ProtoReflect() protoreflect.Message {
  1850. mi := &file_message_proto_msgTypes[28]
  1851. if protoimpl.UnsafeEnabled && x != nil {
  1852. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1853. if ms.LoadMessageInfo() == nil {
  1854. ms.StoreMessageInfo(mi)
  1855. }
  1856. return ms
  1857. }
  1858. return mi.MessageOf(x)
  1859. }
  1860. // Deprecated: Use UserUnreadMsgListReq.ProtoReflect.Descriptor instead.
  1861. func (*UserUnreadMsgListReq) Descriptor() ([]byte, []int) {
  1862. return file_message_proto_rawDescGZIP(), []int{28}
  1863. }
  1864. func (x *UserUnreadMsgListReq) GetUserId() string {
  1865. if x != nil {
  1866. return x.UserId
  1867. }
  1868. return ""
  1869. }
  1870. func (x *UserUnreadMsgListReq) GetAppid() string {
  1871. if x != nil {
  1872. return x.Appid
  1873. }
  1874. return ""
  1875. }
  1876. func (x *UserUnreadMsgListReq) GetOffSet() int64 {
  1877. if x != nil {
  1878. return x.OffSet
  1879. }
  1880. return 0
  1881. }
  1882. func (x *UserUnreadMsgListReq) GetPageSize() int64 {
  1883. if x != nil {
  1884. return x.PageSize
  1885. }
  1886. return 0
  1887. }
  1888. func (x *UserUnreadMsgListReq) GetIsNeedData() int64 {
  1889. if x != nil {
  1890. return x.IsNeedData
  1891. }
  1892. return 0
  1893. }
  1894. type UserUnreadMsgListRes struct {
  1895. state protoimpl.MessageState
  1896. sizeCache protoimpl.SizeCache
  1897. unknownFields protoimpl.UnknownFields
  1898. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` //状态码
  1899. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //响应消息
  1900. List []*Messages `protobuf:"bytes,3,rep,name=list,proto3" json:"list,omitempty"`
  1901. Count int64 `protobuf:"varint,4,opt,name=count,proto3" json:"count,omitempty"` //总数
  1902. }
  1903. func (x *UserUnreadMsgListRes) Reset() {
  1904. *x = UserUnreadMsgListRes{}
  1905. if protoimpl.UnsafeEnabled {
  1906. mi := &file_message_proto_msgTypes[29]
  1907. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1908. ms.StoreMessageInfo(mi)
  1909. }
  1910. }
  1911. func (x *UserUnreadMsgListRes) String() string {
  1912. return protoimpl.X.MessageStringOf(x)
  1913. }
  1914. func (*UserUnreadMsgListRes) ProtoMessage() {}
  1915. func (x *UserUnreadMsgListRes) ProtoReflect() protoreflect.Message {
  1916. mi := &file_message_proto_msgTypes[29]
  1917. if protoimpl.UnsafeEnabled && x != nil {
  1918. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1919. if ms.LoadMessageInfo() == nil {
  1920. ms.StoreMessageInfo(mi)
  1921. }
  1922. return ms
  1923. }
  1924. return mi.MessageOf(x)
  1925. }
  1926. // Deprecated: Use UserUnreadMsgListRes.ProtoReflect.Descriptor instead.
  1927. func (*UserUnreadMsgListRes) Descriptor() ([]byte, []int) {
  1928. return file_message_proto_rawDescGZIP(), []int{29}
  1929. }
  1930. func (x *UserUnreadMsgListRes) GetCode() int64 {
  1931. if x != nil {
  1932. return x.Code
  1933. }
  1934. return 0
  1935. }
  1936. func (x *UserUnreadMsgListRes) GetMessage() string {
  1937. if x != nil {
  1938. return x.Message
  1939. }
  1940. return ""
  1941. }
  1942. func (x *UserUnreadMsgListRes) GetList() []*Messages {
  1943. if x != nil {
  1944. return x.List
  1945. }
  1946. return nil
  1947. }
  1948. func (x *UserUnreadMsgListRes) GetCount() int64 {
  1949. if x != nil {
  1950. return x.Count
  1951. }
  1952. return 0
  1953. }
  1954. // 剑鱼系统通用模版
  1955. type WxTmplMsgRequest struct {
  1956. state protoimpl.MessageState
  1957. sizeCache protoimpl.SizeCache
  1958. unknownFields protoimpl.UnknownFields
  1959. UserIds string `protobuf:"bytes,1,opt,name=userIds,proto3" json:"userIds,omitempty"` //接受人 mongo_userId(多个用,分割)
  1960. PositionIds string `protobuf:"bytes,2,opt,name=positionIds,proto3" json:"positionIds,omitempty"` //接受人 职位id(多个用,分割)
  1961. MessageClass string `protobuf:"bytes,3,opt,name=messageClass,proto3" json:"messageClass,omitempty"` //数据库中switch字段
  1962. Title string `protobuf:"bytes,4,opt,name=title,proto3" json:"title,omitempty"` //课程名称
  1963. Detail string `protobuf:"bytes,5,opt,name=detail,proto3" json:"detail,omitempty"` //课程时间
  1964. Date string `protobuf:"bytes,6,opt,name=date,proto3" json:"date,omitempty"` //课程地点
  1965. Url string `protobuf:"bytes,7,opt,name=url,proto3" json:"url,omitempty"` //消息跳转连接
  1966. }
  1967. func (x *WxTmplMsgRequest) Reset() {
  1968. *x = WxTmplMsgRequest{}
  1969. if protoimpl.UnsafeEnabled {
  1970. mi := &file_message_proto_msgTypes[30]
  1971. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1972. ms.StoreMessageInfo(mi)
  1973. }
  1974. }
  1975. func (x *WxTmplMsgRequest) String() string {
  1976. return protoimpl.X.MessageStringOf(x)
  1977. }
  1978. func (*WxTmplMsgRequest) ProtoMessage() {}
  1979. func (x *WxTmplMsgRequest) ProtoReflect() protoreflect.Message {
  1980. mi := &file_message_proto_msgTypes[30]
  1981. if protoimpl.UnsafeEnabled && x != nil {
  1982. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1983. if ms.LoadMessageInfo() == nil {
  1984. ms.StoreMessageInfo(mi)
  1985. }
  1986. return ms
  1987. }
  1988. return mi.MessageOf(x)
  1989. }
  1990. // Deprecated: Use WxTmplMsgRequest.ProtoReflect.Descriptor instead.
  1991. func (*WxTmplMsgRequest) Descriptor() ([]byte, []int) {
  1992. return file_message_proto_rawDescGZIP(), []int{30}
  1993. }
  1994. func (x *WxTmplMsgRequest) GetUserIds() string {
  1995. if x != nil {
  1996. return x.UserIds
  1997. }
  1998. return ""
  1999. }
  2000. func (x *WxTmplMsgRequest) GetPositionIds() string {
  2001. if x != nil {
  2002. return x.PositionIds
  2003. }
  2004. return ""
  2005. }
  2006. func (x *WxTmplMsgRequest) GetMessageClass() string {
  2007. if x != nil {
  2008. return x.MessageClass
  2009. }
  2010. return ""
  2011. }
  2012. func (x *WxTmplMsgRequest) GetTitle() string {
  2013. if x != nil {
  2014. return x.Title
  2015. }
  2016. return ""
  2017. }
  2018. func (x *WxTmplMsgRequest) GetDetail() string {
  2019. if x != nil {
  2020. return x.Detail
  2021. }
  2022. return ""
  2023. }
  2024. func (x *WxTmplMsgRequest) GetDate() string {
  2025. if x != nil {
  2026. return x.Date
  2027. }
  2028. return ""
  2029. }
  2030. func (x *WxTmplMsgRequest) GetUrl() string {
  2031. if x != nil {
  2032. return x.Url
  2033. }
  2034. return ""
  2035. }
  2036. type SendMsgResponse struct {
  2037. state protoimpl.MessageState
  2038. sizeCache protoimpl.SizeCache
  2039. unknownFields protoimpl.UnknownFields
  2040. Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"` //发送数量
  2041. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` //响应消息
  2042. }
  2043. func (x *SendMsgResponse) Reset() {
  2044. *x = SendMsgResponse{}
  2045. if protoimpl.UnsafeEnabled {
  2046. mi := &file_message_proto_msgTypes[31]
  2047. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2048. ms.StoreMessageInfo(mi)
  2049. }
  2050. }
  2051. func (x *SendMsgResponse) String() string {
  2052. return protoimpl.X.MessageStringOf(x)
  2053. }
  2054. func (*SendMsgResponse) ProtoMessage() {}
  2055. func (x *SendMsgResponse) ProtoReflect() protoreflect.Message {
  2056. mi := &file_message_proto_msgTypes[31]
  2057. if protoimpl.UnsafeEnabled && x != nil {
  2058. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2059. if ms.LoadMessageInfo() == nil {
  2060. ms.StoreMessageInfo(mi)
  2061. }
  2062. return ms
  2063. }
  2064. return mi.MessageOf(x)
  2065. }
  2066. // Deprecated: Use SendMsgResponse.ProtoReflect.Descriptor instead.
  2067. func (*SendMsgResponse) Descriptor() ([]byte, []int) {
  2068. return file_message_proto_rawDescGZIP(), []int{31}
  2069. }
  2070. func (x *SendMsgResponse) GetTotal() int64 {
  2071. if x != nil {
  2072. return x.Total
  2073. }
  2074. return 0
  2075. }
  2076. func (x *SendMsgResponse) GetMessage() string {
  2077. if x != nil {
  2078. return x.Message
  2079. }
  2080. return ""
  2081. }
  2082. type MsgOpenLogReq struct {
  2083. state protoimpl.MessageState
  2084. sizeCache protoimpl.SizeCache
  2085. unknownFields protoimpl.UnknownFields
  2086. MsgLogId int64 `protobuf:"varint,1,opt,name=msgLogId,proto3" json:"msgLogId,omitempty"`
  2087. Platform int64 `protobuf:"varint,2,opt,name=platform,proto3" json:"platform,omitempty"`
  2088. UserId string `protobuf:"bytes,3,opt,name=userId,proto3" json:"userId,omitempty"`
  2089. AppId string `protobuf:"bytes,4,opt,name=appId,proto3" json:"appId,omitempty"`
  2090. }
  2091. func (x *MsgOpenLogReq) Reset() {
  2092. *x = MsgOpenLogReq{}
  2093. if protoimpl.UnsafeEnabled {
  2094. mi := &file_message_proto_msgTypes[32]
  2095. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2096. ms.StoreMessageInfo(mi)
  2097. }
  2098. }
  2099. func (x *MsgOpenLogReq) String() string {
  2100. return protoimpl.X.MessageStringOf(x)
  2101. }
  2102. func (*MsgOpenLogReq) ProtoMessage() {}
  2103. func (x *MsgOpenLogReq) ProtoReflect() protoreflect.Message {
  2104. mi := &file_message_proto_msgTypes[32]
  2105. if protoimpl.UnsafeEnabled && x != nil {
  2106. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2107. if ms.LoadMessageInfo() == nil {
  2108. ms.StoreMessageInfo(mi)
  2109. }
  2110. return ms
  2111. }
  2112. return mi.MessageOf(x)
  2113. }
  2114. // Deprecated: Use MsgOpenLogReq.ProtoReflect.Descriptor instead.
  2115. func (*MsgOpenLogReq) Descriptor() ([]byte, []int) {
  2116. return file_message_proto_rawDescGZIP(), []int{32}
  2117. }
  2118. func (x *MsgOpenLogReq) GetMsgLogId() int64 {
  2119. if x != nil {
  2120. return x.MsgLogId
  2121. }
  2122. return 0
  2123. }
  2124. func (x *MsgOpenLogReq) GetPlatform() int64 {
  2125. if x != nil {
  2126. return x.Platform
  2127. }
  2128. return 0
  2129. }
  2130. func (x *MsgOpenLogReq) GetUserId() string {
  2131. if x != nil {
  2132. return x.UserId
  2133. }
  2134. return ""
  2135. }
  2136. func (x *MsgOpenLogReq) GetAppId() string {
  2137. if x != nil {
  2138. return x.AppId
  2139. }
  2140. return ""
  2141. }
  2142. var File_message_proto protoreflect.FileDescriptor
  2143. var file_message_proto_rawDesc = []byte{
  2144. 0x0a, 0x0d, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  2145. 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x5b, 0x0a, 0x13, 0x43, 0x68, 0x61, 0x6e,
  2146. 0x67, 0x65, 0x52, 0x65, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x12,
  2147. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12,
  2148. 0x1e, 0x0a, 0x0a, 0x72, 0x65, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20,
  2149. 0x01, 0x28, 0x03, 0x52, 0x0a, 0x72, 0x65, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  2150. 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  2151. 0x61, 0x70, 0x70, 0x69, 0x64, 0x22, 0x3a, 0x0a, 0x08, 0x52, 0x65, 0x73, 0x43, 0x6f, 0x75, 0x6e,
  2152. 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
  2153. 0x28, 0x03, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63,
  2154. 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e,
  2155. 0x74, 0x22, 0x38, 0x0a, 0x08, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a,
  2156. 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64,
  2157. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01,
  2158. 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0xc6, 0x01, 0x0a, 0x0e,
  2159. 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x12, 0x16,
  2160. 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  2161. 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76,
  2162. 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72,
  2163. 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05,
  2164. 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70,
  2165. 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x53, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01,
  2166. 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x53, 0x65, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61,
  2167. 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61,
  2168. 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70,
  2169. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65,
  2170. 0x12, 0x12, 0x0a, 0x04, 0x72, 0x65, 0x61, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04,
  2171. 0x72, 0x65, 0x61, 0x64, 0x22, 0xe4, 0x03, 0x0a, 0x08, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2172. 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x55, 0x73, 0x65, 0x72,
  2173. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76,
  2174. 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x63, 0x65, 0x69,
  2175. 0x76, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65,
  2176. 0x63, 0x65, 0x69, 0x76, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6e,
  2177. 0x64, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73,
  2178. 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6e,
  2179. 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x65, 0x6e,
  2180. 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x05,
  2181. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63,
  2182. 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f,
  2183. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65,
  2184. 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12,
  2185. 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6c,
  2186. 0x69, 0x6e, 0x6b, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x69, 0x74, 0x65, 0x49, 0x64, 0x18, 0x09, 0x20,
  2187. 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69,
  2188. 0x73, 0x52, 0x65, 0x61, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x69, 0x73, 0x52,
  2189. 0x65, 0x61, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x74, 0x69, 0x6d,
  2190. 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x74,
  2191. 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x0c, 0x20, 0x01,
  2192. 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  2193. 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x73, 0x67,
  2194. 0x4c, 0x6f, 0x67, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6d, 0x73, 0x67,
  2195. 0x4c, 0x6f, 0x67, 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x0f, 0x20, 0x03,
  2196. 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73,
  2197. 0x73, 0x61, 0x67, 0x65, 0x73, 0x2e, 0x55, 0x72, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x03,
  2198. 0x75, 0x72, 0x6c, 0x1a, 0x36, 0x0a, 0x08, 0x55, 0x72, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,
  2199. 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,
  2200. 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2201. 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x7b, 0x0a, 0x0e, 0x46,
  2202. 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x12, 0x12, 0x0a,
  2203. 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64,
  2204. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01,
  2205. 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x25, 0x0a, 0x04, 0x64,
  2206. 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73,
  2207. 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52, 0x04, 0x64, 0x61,
  2208. 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
  2209. 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x60, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x43,
  2210. 0x6c, 0x61, 0x73, 0x73, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52,
  2211. 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  2212. 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73,
  2213. 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x73, 0x67,
  2214. 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x03, 0x20,
  2215. 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x22, 0x22, 0x0a, 0x10, 0x4d, 0x65,
  2216. 0x73, 0x73, 0x61, 0x67, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x12, 0x0e,
  2217. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x22, 0x68,
  2218. 0x0a, 0x11, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52,
  2219. 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  2220. 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2221. 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2222. 0x65, 0x12, 0x25, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
  2223. 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2224. 0x65, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x73, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x4c,
  2225. 0x61, 0x73, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a,
  2226. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
  2227. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65,
  2228. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12,
  2229. 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  2230. 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x18,
  2231. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x22, 0x68, 0x0a,
  2232. 0x11, 0x47, 0x65, 0x74, 0x4c, 0x61, 0x73, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52,
  2233. 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  2234. 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2235. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2236. 0x12, 0x25, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11,
  2237. 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2238. 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x60, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x55, 0x6e,
  2239. 0x72, 0x65, 0x61, 0x64, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
  2240. 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  2241. 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70,
  2242. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12,
  2243. 0x18, 0x0a, 0x07, 0x6e, 0x65, 0x65, 0x64, 0x4d, 0x73, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08,
  2244. 0x52, 0x07, 0x6e, 0x65, 0x65, 0x64, 0x4d, 0x73, 0x67, 0x22, 0x94, 0x01, 0x0a, 0x16, 0x47, 0x65,
  2245. 0x74, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e,
  2246. 0x74, 0x52, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01,
  2247. 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73,
  2248. 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2249. 0x67, 0x65, 0x12, 0x25, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
  2250. 0x32, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x43, 0x6f,
  2251. 0x75, 0x6e, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x25, 0x0a, 0x04, 0x69, 0x6e, 0x66,
  2252. 0x6f, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2253. 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f,
  2254. 0x22, 0x3d, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65,
  2255. 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  2256. 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70,
  2257. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x22,
  2258. 0x88, 0x01, 0x0a, 0x08, 0x4d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x18, 0x0a, 0x07,
  2259. 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d,
  2260. 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x6d, 0x67, 0x18, 0x02, 0x20,
  2261. 0x01, 0x28, 0x09, 0x52, 0x03, 0x69, 0x6d, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  2262. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04,
  2263. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65,
  2264. 0x12, 0x28, 0x0a, 0x0f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x50, 0x6c, 0x61, 0x74, 0x66,
  2265. 0x6f, 0x72, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x64, 0x69, 0x73, 0x70, 0x6c,
  2266. 0x61, 0x79, 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x22, 0x64, 0x0a, 0x0d, 0x47, 0x65,
  2267. 0x74, 0x4d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x63,
  2268. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12,
  2269. 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2270. 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x25, 0x0a, 0x04, 0x64, 0x61, 0x74,
  2271. 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2272. 0x65, 0x2e, 0x4d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61,
  2273. 0x22, 0x3a, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72,
  2274. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  2275. 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
  2276. 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x90, 0x03, 0x0a,
  2277. 0x12, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x61, 0x76, 0x65, 0x4d, 0x73, 0x67,
  2278. 0x52, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x18, 0x01,
  2279. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x12, 0x1c, 0x0a,
  2280. 0x09, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2281. 0x52, 0x09, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x73,
  2282. 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  2283. 0x0a, 0x73, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73,
  2284. 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73,
  2285. 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65,
  2286. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a,
  2287. 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2288. 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79,
  2289. 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70,
  2290. 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52,
  2291. 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x69, 0x74, 0x65, 0x49, 0x64, 0x18,
  2292. 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x14, 0x0a,
  2293. 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70,
  2294. 0x70, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x73, 0x67, 0x4c, 0x6f, 0x67, 0x49, 0x64, 0x18,
  2295. 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6d, 0x73, 0x67, 0x4c, 0x6f, 0x67, 0x49, 0x64, 0x12,
  2296. 0x1a, 0x0a, 0x08, 0x73, 0x68, 0x6f, 0x77, 0x42, 0x75, 0x6f, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28,
  2297. 0x03, 0x52, 0x08, 0x73, 0x68, 0x6f, 0x77, 0x42, 0x75, 0x6f, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x73,
  2298. 0x68, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09,
  2299. 0x52, 0x0b, 0x73, 0x68, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x20, 0x0a,
  2300. 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x0e, 0x20, 0x01,
  2301. 0x28, 0x09, 0x52, 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x22,
  2302. 0x5f, 0x0a, 0x13, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x61, 0x76, 0x65, 0x4d,
  2303. 0x73, 0x67, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
  2304. 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65,
  2305. 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73,
  2306. 0x73, 0x61, 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x65, 0x72, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74,
  2307. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x65, 0x72, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74,
  2308. 0x22, 0x5e, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x42, 0x75, 0x6f, 0x79,
  2309. 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  2310. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14,
  2311. 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61,
  2312. 0x70, 0x70, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65,
  2313. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65,
  2314. 0x22, 0x6d, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x42, 0x75, 0x6f, 0x79,
  2315. 0x4d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
  2316. 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65,
  2317. 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73,
  2318. 0x73, 0x61, 0x67, 0x65, 0x12, 0x29, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03,
  2319. 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x42, 0x75, 0x6f,
  2320. 0x79, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22,
  2321. 0xab, 0x01, 0x0a, 0x0c, 0x42, 0x75, 0x6f, 0x79, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73,
  2322. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
  2323. 0x12, 0x1f, 0x0a, 0x0b, 0x62, 0x75, 0x6f, 0x79, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x18,
  2324. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x6f, 0x79, 0x44, 0x65, 0x74, 0x61, 0x69,
  2325. 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x63, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  2326. 0x52, 0x05, 0x70, 0x63, 0x55, 0x72, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x6e, 0x64, 0x72, 0x6f,
  2327. 0x69, 0x64, 0x55, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x6e, 0x64,
  2328. 0x72, 0x6f, 0x69, 0x64, 0x55, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x6f, 0x73, 0x55, 0x72,
  2329. 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x69, 0x6f, 0x73, 0x55, 0x72, 0x6c, 0x12,
  2330. 0x1c, 0x0a, 0x09, 0x77, 0x65, 0x43, 0x68, 0x61, 0x74, 0x55, 0x72, 0x6c, 0x18, 0x06, 0x20, 0x01,
  2331. 0x28, 0x09, 0x52, 0x09, 0x77, 0x65, 0x43, 0x68, 0x61, 0x74, 0x55, 0x72, 0x6c, 0x22, 0x95, 0x01,
  2332. 0x0a, 0x11, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x73, 0x67,
  2333. 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x69, 0x64, 0x18, 0x01, 0x20,
  2334. 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65,
  2335. 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49,
  2336. 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18,
  2337. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49,
  2338. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2339. 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x4e, 0x65, 0x77, 0x55, 0x73,
  2340. 0x65, 0x72, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x4e, 0x65, 0x77, 0x55,
  2341. 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0xdc, 0x02, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73,
  2342. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72,
  2343. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  2344. 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  2345. 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x53, 0x65, 0x74,
  2346. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x53, 0x65, 0x74, 0x12, 0x1a,
  2347. 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  2348. 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73,
  2349. 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x73, 0x67,
  2350. 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x65, 0x61, 0x64, 0x18, 0x07, 0x20, 0x01,
  2351. 0x28, 0x03, 0x52, 0x04, 0x72, 0x65, 0x61, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x53, 0x6f, 0x72, 0x74,
  2352. 0x53, 0x69, 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x53, 0x6f, 0x72, 0x74,
  2353. 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x73, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
  2354. 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
  2355. 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x4e, 0x65, 0x77, 0x4d,
  2356. 0x73, 0x67, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73, 0x43, 0x6f, 0x6c, 0x75,
  2357. 0x6d, 0x6e, 0x4e, 0x65, 0x77, 0x4d, 0x73, 0x67, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x73, 0x4d, 0x73,
  2358. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x4d,
  2359. 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x4e, 0x65, 0x77, 0x55, 0x73, 0x65,
  2360. 0x72, 0x49, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x4e, 0x65, 0x77, 0x55, 0x73,
  2361. 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  2362. 0x49, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69,
  2363. 0x6f, 0x6e, 0x49, 0x64, 0x22, 0xe8, 0x01, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67,
  2364. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18,
  2365. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d,
  2366. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65,
  2367. 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x25, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20,
  2368. 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65,
  2369. 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x0a, 0x04,
  2370. 0x6c, 0x61, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x65, 0x73,
  2371. 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52, 0x04, 0x6c,
  2372. 0x61, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x06, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x18, 0x05, 0x20,
  2373. 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x41, 0x6c,
  2374. 0x6c, 0x53, 0x6f, 0x72, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x06, 0x63, 0x6f, 0x6c, 0x75, 0x6d,
  2375. 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03,
  2376. 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x6e, 0x72, 0x65, 0x61,
  2377. 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x22,
  2378. 0x94, 0x01, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12,
  2379. 0x25, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e,
  2380. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73,
  2381. 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x30, 0x0a, 0x08, 0x73, 0x6f, 0x72, 0x74, 0x44, 0x61,
  2382. 0x74, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2383. 0x67, 0x65, 0x2e, 0x41, 0x6c, 0x6c, 0x53, 0x6f, 0x72, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x08,
  2384. 0x73, 0x6f, 0x72, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e,
  2385. 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x16,
  2386. 0x0a, 0x06, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  2387. 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x22, 0x9c, 0x01, 0x0a, 0x0b, 0x41, 0x6c, 0x6c, 0x53, 0x6f,
  2388. 0x72, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64,
  2389. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e,
  2390. 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x12, 0x12,
  2391. 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
  2392. 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x6d, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  2393. 0x03, 0x69, 0x6d, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18,
  2394. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x25,
  2395. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d,
  2396. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x52,
  2397. 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x48, 0x0a, 0x0e, 0x57, 0x78, 0x54, 0x6d, 0x70, 0x6c, 0x52,
  2398. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x65, 0x6e, 0x64, 0x54,
  2399. 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x73, 0x65, 0x6e, 0x64,
  2400. 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2401. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22,
  2402. 0x98, 0x01, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x73,
  2403. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72,
  2404. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  2405. 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  2406. 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x53, 0x65, 0x74,
  2407. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x53, 0x65, 0x74, 0x12, 0x1a,
  2408. 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  2409. 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73,
  2410. 0x4e, 0x65, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  2411. 0x69, 0x73, 0x4e, 0x65, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x22, 0x81, 0x01, 0x0a, 0x14, 0x55,
  2412. 0x73, 0x65, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74,
  2413. 0x52, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  2414. 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2415. 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2416. 0x65, 0x12, 0x25, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
  2417. 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2418. 0x65, 0x73, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e,
  2419. 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xc6,
  2420. 0x01, 0x0a, 0x10, 0x57, 0x78, 0x54, 0x6d, 0x70, 0x6c, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75,
  2421. 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x18, 0x01,
  2422. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x12, 0x20, 0x0a,
  2423. 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01,
  2424. 0x28, 0x09, 0x52, 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x12,
  2425. 0x22, 0x0a, 0x0c, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x18,
  2426. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x43, 0x6c,
  2427. 0x61, 0x73, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01,
  2428. 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x65, 0x74,
  2429. 0x61, 0x69, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x65, 0x74, 0x61, 0x69,
  2430. 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  2431. 0x04, 0x64, 0x61, 0x74, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x07, 0x20, 0x01,
  2432. 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0x41, 0x0a, 0x0f, 0x53, 0x65, 0x6e, 0x64, 0x4d,
  2433. 0x73, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f,
  2434. 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c,
  2435. 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2436. 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x75, 0x0a, 0x0d, 0x4d, 0x73,
  2437. 0x67, 0x4f, 0x70, 0x65, 0x6e, 0x4c, 0x6f, 0x67, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x6d,
  2438. 0x73, 0x67, 0x4c, 0x6f, 0x67, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6d,
  2439. 0x73, 0x67, 0x4c, 0x6f, 0x67, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66,
  2440. 0x6f, 0x72, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66,
  2441. 0x6f, 0x72, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20,
  2442. 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61,
  2443. 0x70, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49,
  2444. 0x64, 0x32, 0x88, 0x06, 0x0a, 0x07, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x4c, 0x0a,
  2445. 0x0f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x61, 0x76, 0x65, 0x4d, 0x73, 0x67,
  2446. 0x12, 0x1b, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
  2447. 0x70, 0x6c, 0x65, 0x53, 0x61, 0x76, 0x65, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e,
  2448. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65,
  2449. 0x53, 0x61, 0x76, 0x65, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x70, 0x12, 0x43, 0x0a, 0x10, 0x43,
  2450. 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x65, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  2451. 0x1c, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65,
  2452. 0x52, 0x65, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x11, 0x2e,
  2453. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  2454. 0x12, 0x3f, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x12,
  2455. 0x17, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73,
  2456. 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2457. 0x67, 0x65, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65,
  2458. 0x73, 0x12, 0x4a, 0x0a, 0x11, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2459. 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x19, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2460. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65,
  2461. 0x71, 0x1a, 0x1a, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73,
  2462. 0x61, 0x67, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3c, 0x0a,
  2463. 0x0a, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x2e, 0x6d, 0x65,
  2464. 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65,
  2465. 0x52, 0x65, 0x71, 0x1a, 0x16, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x47, 0x65,
  2466. 0x74, 0x4d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x73, 0x12, 0x4b, 0x0a, 0x0f, 0x46,
  2467. 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x42, 0x75, 0x6f, 0x79, 0x4d, 0x73, 0x67, 0x12, 0x1b,
  2468. 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65,
  2469. 0x72, 0x42, 0x75, 0x6f, 0x79, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1b, 0x2e, 0x6d, 0x65,
  2470. 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x42, 0x75,
  2471. 0x6f, 0x79, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x12, 0x3f, 0x0a, 0x0e, 0x43, 0x6c, 0x65, 0x61,
  2472. 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x73, 0x67, 0x12, 0x1a, 0x2e, 0x6d, 0x65, 0x73,
  2473. 0x73, 0x61, 0x67, 0x65, 0x2e, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64,
  2474. 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2475. 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3f, 0x0a, 0x0b, 0x55, 0x73, 0x65,
  2476. 0x72, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x17, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2477. 0x67, 0x65, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  2478. 0x71, 0x1a, 0x17, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x55, 0x73, 0x65, 0x72,
  2479. 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x12, 0x44, 0x0a, 0x0d, 0x53, 0x65,
  2480. 0x6e, 0x64, 0x57, 0x78, 0x54, 0x6d, 0x70, 0x6c, 0x4d, 0x73, 0x67, 0x12, 0x19, 0x2e, 0x6d, 0x65,
  2481. 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x57, 0x78, 0x54, 0x6d, 0x70, 0x6c, 0x4d, 0x73, 0x67, 0x52,
  2482. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2483. 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  2484. 0x12, 0x51, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x73,
  2485. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1d, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e,
  2486. 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73,
  2487. 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x55,
  2488. 0x73, 0x65, 0x72, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74,
  2489. 0x52, 0x65, 0x73, 0x12, 0x37, 0x0a, 0x0a, 0x4d, 0x73, 0x67, 0x4f, 0x70, 0x65, 0x6e, 0x4c, 0x6f,
  2490. 0x67, 0x12, 0x16, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x73, 0x67, 0x4f,
  2491. 0x70, 0x65, 0x6e, 0x4c, 0x6f, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x11, 0x2e, 0x6d, 0x65, 0x73, 0x73,
  2492. 0x61, 0x67, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x0a, 0x5a, 0x08,
  2493. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2494. }
  2495. var (
  2496. file_message_proto_rawDescOnce sync.Once
  2497. file_message_proto_rawDescData = file_message_proto_rawDesc
  2498. )
  2499. func file_message_proto_rawDescGZIP() []byte {
  2500. file_message_proto_rawDescOnce.Do(func() {
  2501. file_message_proto_rawDescData = protoimpl.X.CompressGZIP(file_message_proto_rawDescData)
  2502. })
  2503. return file_message_proto_rawDescData
  2504. }
  2505. var file_message_proto_msgTypes = make([]protoimpl.MessageInfo, 34)
  2506. var file_message_proto_goTypes = []interface{}{
  2507. (*ChangeReadStatusReq)(nil), // 0: message.ChangeReadStatusReq
  2508. (*ResCount)(nil), // 1: message.ResCount
  2509. (*Response)(nil), // 2: message.Response
  2510. (*FindUserMsgReq)(nil), // 3: message.FindUserMsgReq
  2511. (*Messages)(nil), // 4: message.Messages
  2512. (*FindUserMsgRes)(nil), // 5: message.FindUserMsgRes
  2513. (*GetClassUnreadCountReq)(nil), // 6: message.GetClassUnreadCountReq
  2514. (*MessageDetailReq)(nil), // 7: message.MessageDetailReq
  2515. (*MessageDetailResp)(nil), // 8: message.MessageDetailResp
  2516. (*GetLastMessageReq)(nil), // 9: message.GetLastMessageReq
  2517. (*GetLastMessageRes)(nil), // 10: message.GetLastMessageRes
  2518. (*GetUnreadClassCountReq)(nil), // 11: message.GetUnreadClassCountReq
  2519. (*GetUnreadClassCountRes)(nil), // 12: message.GetUnreadClassCountRes
  2520. (*GetMsgTypeReq)(nil), // 13: message.GetMsgTypeReq
  2521. (*MsgTypes)(nil), // 14: message.MsgTypes
  2522. (*GetMsgTypeRes)(nil), // 15: message.GetMsgTypeRes
  2523. (*User)(nil), // 16: message.user
  2524. (*MultipleSaveMsgReq)(nil), // 17: message.multipleSaveMsgReq
  2525. (*MultipleSaveMsgResp)(nil), // 18: message.multipleSaveMsgResp
  2526. (*FindUserBuoyMsgReq)(nil), // 19: message.FindUserBuoyMsgReq
  2527. (*FindUserBuoyMsgRes)(nil), // 20: message.FindUserBuoyMsgRes
  2528. (*BuoyMessages)(nil), // 21: message.BuoyMessages
  2529. (*ClearUnreadMsgReq)(nil), // 22: message.ClearUnreadMsgReq
  2530. (*UserMsgListReq)(nil), // 23: message.UserMsgListReq
  2531. (*UserMsgListRes)(nil), // 24: message.UserMsgListRes
  2532. (*UserMsgList)(nil), // 25: message.UserMsgList
  2533. (*AllSortData)(nil), // 26: message.AllSortData
  2534. (*WxTmplResponse)(nil), // 27: message.WxTmplResponse
  2535. (*UserUnreadMsgListReq)(nil), // 28: message.UserUnreadMsgListReq
  2536. (*UserUnreadMsgListRes)(nil), // 29: message.UserUnreadMsgListRes
  2537. (*WxTmplMsgRequest)(nil), // 30: message.WxTmplMsgRequest
  2538. (*SendMsgResponse)(nil), // 31: message.SendMsgResponse
  2539. (*MsgOpenLogReq)(nil), // 32: message.MsgOpenLogReq
  2540. nil, // 33: message.Messages.UrlEntry
  2541. }
  2542. var file_message_proto_depIdxs = []int32{
  2543. 33, // 0: message.Messages.url:type_name -> message.Messages.UrlEntry
  2544. 4, // 1: message.FindUserMsgRes.data:type_name -> message.Messages
  2545. 4, // 2: message.MessageDetailResp.data:type_name -> message.Messages
  2546. 4, // 3: message.GetLastMessageRes.data:type_name -> message.Messages
  2547. 1, // 4: message.GetUnreadClassCountRes.data:type_name -> message.ResCount
  2548. 4, // 5: message.GetUnreadClassCountRes.info:type_name -> message.Messages
  2549. 14, // 6: message.GetMsgTypeRes.data:type_name -> message.MsgTypes
  2550. 21, // 7: message.FindUserBuoyMsgRes.data:type_name -> message.BuoyMessages
  2551. 4, // 8: message.UserMsgListRes.list:type_name -> message.Messages
  2552. 4, // 9: message.UserMsgListRes.last:type_name -> message.Messages
  2553. 26, // 10: message.UserMsgListRes.column:type_name -> message.AllSortData
  2554. 4, // 11: message.UserMsgList.data:type_name -> message.Messages
  2555. 26, // 12: message.UserMsgList.sortData:type_name -> message.AllSortData
  2556. 4, // 13: message.AllSortData.data:type_name -> message.Messages
  2557. 4, // 14: message.UserUnreadMsgListRes.list:type_name -> message.Messages
  2558. 17, // 15: message.Message.multipleSaveMsg:input_type -> message.multipleSaveMsgReq
  2559. 0, // 16: message.Message.ChangeReadStatus:input_type -> message.ChangeReadStatusReq
  2560. 3, // 17: message.Message.FindUserMsg:input_type -> message.FindUserMsgReq
  2561. 7, // 18: message.Message.FindMessageDetail:input_type -> message.MessageDetailReq
  2562. 13, // 19: message.Message.GetMsgType:input_type -> message.GetMsgTypeReq
  2563. 19, // 20: message.Message.FindUserBuoyMsg:input_type -> message.FindUserBuoyMsgReq
  2564. 22, // 21: message.Message.ClearUnreadMsg:input_type -> message.ClearUnreadMsgReq
  2565. 23, // 22: message.Message.UserMsgList:input_type -> message.UserMsgListReq
  2566. 30, // 23: message.Message.SendWxTmplMsg:input_type -> message.WxTmplMsgRequest
  2567. 28, // 24: message.Message.UserUnreadMsgList:input_type -> message.UserUnreadMsgListReq
  2568. 32, // 25: message.Message.MsgOpenLog:input_type -> message.MsgOpenLogReq
  2569. 18, // 26: message.Message.multipleSaveMsg:output_type -> message.multipleSaveMsgResp
  2570. 2, // 27: message.Message.ChangeReadStatus:output_type -> message.Response
  2571. 5, // 28: message.Message.FindUserMsg:output_type -> message.FindUserMsgRes
  2572. 8, // 29: message.Message.FindMessageDetail:output_type -> message.MessageDetailResp
  2573. 15, // 30: message.Message.GetMsgType:output_type -> message.GetMsgTypeRes
  2574. 20, // 31: message.Message.FindUserBuoyMsg:output_type -> message.FindUserBuoyMsgRes
  2575. 2, // 32: message.Message.ClearUnreadMsg:output_type -> message.Response
  2576. 24, // 33: message.Message.UserMsgList:output_type -> message.UserMsgListRes
  2577. 31, // 34: message.Message.SendWxTmplMsg:output_type -> message.SendMsgResponse
  2578. 29, // 35: message.Message.UserUnreadMsgList:output_type -> message.UserUnreadMsgListRes
  2579. 2, // 36: message.Message.MsgOpenLog:output_type -> message.Response
  2580. 26, // [26:37] is the sub-list for method output_type
  2581. 15, // [15:26] is the sub-list for method input_type
  2582. 15, // [15:15] is the sub-list for extension type_name
  2583. 15, // [15:15] is the sub-list for extension extendee
  2584. 0, // [0:15] is the sub-list for field type_name
  2585. }
  2586. func init() { file_message_proto_init() }
  2587. func file_message_proto_init() {
  2588. if File_message_proto != nil {
  2589. return
  2590. }
  2591. if !protoimpl.UnsafeEnabled {
  2592. file_message_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2593. switch v := v.(*ChangeReadStatusReq); i {
  2594. case 0:
  2595. return &v.state
  2596. case 1:
  2597. return &v.sizeCache
  2598. case 2:
  2599. return &v.unknownFields
  2600. default:
  2601. return nil
  2602. }
  2603. }
  2604. file_message_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2605. switch v := v.(*ResCount); i {
  2606. case 0:
  2607. return &v.state
  2608. case 1:
  2609. return &v.sizeCache
  2610. case 2:
  2611. return &v.unknownFields
  2612. default:
  2613. return nil
  2614. }
  2615. }
  2616. file_message_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2617. switch v := v.(*Response); i {
  2618. case 0:
  2619. return &v.state
  2620. case 1:
  2621. return &v.sizeCache
  2622. case 2:
  2623. return &v.unknownFields
  2624. default:
  2625. return nil
  2626. }
  2627. }
  2628. file_message_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2629. switch v := v.(*FindUserMsgReq); i {
  2630. case 0:
  2631. return &v.state
  2632. case 1:
  2633. return &v.sizeCache
  2634. case 2:
  2635. return &v.unknownFields
  2636. default:
  2637. return nil
  2638. }
  2639. }
  2640. file_message_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2641. switch v := v.(*Messages); i {
  2642. case 0:
  2643. return &v.state
  2644. case 1:
  2645. return &v.sizeCache
  2646. case 2:
  2647. return &v.unknownFields
  2648. default:
  2649. return nil
  2650. }
  2651. }
  2652. file_message_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2653. switch v := v.(*FindUserMsgRes); i {
  2654. case 0:
  2655. return &v.state
  2656. case 1:
  2657. return &v.sizeCache
  2658. case 2:
  2659. return &v.unknownFields
  2660. default:
  2661. return nil
  2662. }
  2663. }
  2664. file_message_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2665. switch v := v.(*GetClassUnreadCountReq); i {
  2666. case 0:
  2667. return &v.state
  2668. case 1:
  2669. return &v.sizeCache
  2670. case 2:
  2671. return &v.unknownFields
  2672. default:
  2673. return nil
  2674. }
  2675. }
  2676. file_message_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2677. switch v := v.(*MessageDetailReq); i {
  2678. case 0:
  2679. return &v.state
  2680. case 1:
  2681. return &v.sizeCache
  2682. case 2:
  2683. return &v.unknownFields
  2684. default:
  2685. return nil
  2686. }
  2687. }
  2688. file_message_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2689. switch v := v.(*MessageDetailResp); i {
  2690. case 0:
  2691. return &v.state
  2692. case 1:
  2693. return &v.sizeCache
  2694. case 2:
  2695. return &v.unknownFields
  2696. default:
  2697. return nil
  2698. }
  2699. }
  2700. file_message_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2701. switch v := v.(*GetLastMessageReq); i {
  2702. case 0:
  2703. return &v.state
  2704. case 1:
  2705. return &v.sizeCache
  2706. case 2:
  2707. return &v.unknownFields
  2708. default:
  2709. return nil
  2710. }
  2711. }
  2712. file_message_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2713. switch v := v.(*GetLastMessageRes); i {
  2714. case 0:
  2715. return &v.state
  2716. case 1:
  2717. return &v.sizeCache
  2718. case 2:
  2719. return &v.unknownFields
  2720. default:
  2721. return nil
  2722. }
  2723. }
  2724. file_message_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2725. switch v := v.(*GetUnreadClassCountReq); i {
  2726. case 0:
  2727. return &v.state
  2728. case 1:
  2729. return &v.sizeCache
  2730. case 2:
  2731. return &v.unknownFields
  2732. default:
  2733. return nil
  2734. }
  2735. }
  2736. file_message_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2737. switch v := v.(*GetUnreadClassCountRes); i {
  2738. case 0:
  2739. return &v.state
  2740. case 1:
  2741. return &v.sizeCache
  2742. case 2:
  2743. return &v.unknownFields
  2744. default:
  2745. return nil
  2746. }
  2747. }
  2748. file_message_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2749. switch v := v.(*GetMsgTypeReq); i {
  2750. case 0:
  2751. return &v.state
  2752. case 1:
  2753. return &v.sizeCache
  2754. case 2:
  2755. return &v.unknownFields
  2756. default:
  2757. return nil
  2758. }
  2759. }
  2760. file_message_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2761. switch v := v.(*MsgTypes); i {
  2762. case 0:
  2763. return &v.state
  2764. case 1:
  2765. return &v.sizeCache
  2766. case 2:
  2767. return &v.unknownFields
  2768. default:
  2769. return nil
  2770. }
  2771. }
  2772. file_message_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2773. switch v := v.(*GetMsgTypeRes); i {
  2774. case 0:
  2775. return &v.state
  2776. case 1:
  2777. return &v.sizeCache
  2778. case 2:
  2779. return &v.unknownFields
  2780. default:
  2781. return nil
  2782. }
  2783. }
  2784. file_message_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2785. switch v := v.(*User); i {
  2786. case 0:
  2787. return &v.state
  2788. case 1:
  2789. return &v.sizeCache
  2790. case 2:
  2791. return &v.unknownFields
  2792. default:
  2793. return nil
  2794. }
  2795. }
  2796. file_message_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2797. switch v := v.(*MultipleSaveMsgReq); i {
  2798. case 0:
  2799. return &v.state
  2800. case 1:
  2801. return &v.sizeCache
  2802. case 2:
  2803. return &v.unknownFields
  2804. default:
  2805. return nil
  2806. }
  2807. }
  2808. file_message_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2809. switch v := v.(*MultipleSaveMsgResp); i {
  2810. case 0:
  2811. return &v.state
  2812. case 1:
  2813. return &v.sizeCache
  2814. case 2:
  2815. return &v.unknownFields
  2816. default:
  2817. return nil
  2818. }
  2819. }
  2820. file_message_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2821. switch v := v.(*FindUserBuoyMsgReq); i {
  2822. case 0:
  2823. return &v.state
  2824. case 1:
  2825. return &v.sizeCache
  2826. case 2:
  2827. return &v.unknownFields
  2828. default:
  2829. return nil
  2830. }
  2831. }
  2832. file_message_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2833. switch v := v.(*FindUserBuoyMsgRes); i {
  2834. case 0:
  2835. return &v.state
  2836. case 1:
  2837. return &v.sizeCache
  2838. case 2:
  2839. return &v.unknownFields
  2840. default:
  2841. return nil
  2842. }
  2843. }
  2844. file_message_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2845. switch v := v.(*BuoyMessages); i {
  2846. case 0:
  2847. return &v.state
  2848. case 1:
  2849. return &v.sizeCache
  2850. case 2:
  2851. return &v.unknownFields
  2852. default:
  2853. return nil
  2854. }
  2855. }
  2856. file_message_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2857. switch v := v.(*ClearUnreadMsgReq); i {
  2858. case 0:
  2859. return &v.state
  2860. case 1:
  2861. return &v.sizeCache
  2862. case 2:
  2863. return &v.unknownFields
  2864. default:
  2865. return nil
  2866. }
  2867. }
  2868. file_message_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2869. switch v := v.(*UserMsgListReq); i {
  2870. case 0:
  2871. return &v.state
  2872. case 1:
  2873. return &v.sizeCache
  2874. case 2:
  2875. return &v.unknownFields
  2876. default:
  2877. return nil
  2878. }
  2879. }
  2880. file_message_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2881. switch v := v.(*UserMsgListRes); i {
  2882. case 0:
  2883. return &v.state
  2884. case 1:
  2885. return &v.sizeCache
  2886. case 2:
  2887. return &v.unknownFields
  2888. default:
  2889. return nil
  2890. }
  2891. }
  2892. file_message_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2893. switch v := v.(*UserMsgList); i {
  2894. case 0:
  2895. return &v.state
  2896. case 1:
  2897. return &v.sizeCache
  2898. case 2:
  2899. return &v.unknownFields
  2900. default:
  2901. return nil
  2902. }
  2903. }
  2904. file_message_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  2905. switch v := v.(*AllSortData); i {
  2906. case 0:
  2907. return &v.state
  2908. case 1:
  2909. return &v.sizeCache
  2910. case 2:
  2911. return &v.unknownFields
  2912. default:
  2913. return nil
  2914. }
  2915. }
  2916. file_message_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  2917. switch v := v.(*WxTmplResponse); i {
  2918. case 0:
  2919. return &v.state
  2920. case 1:
  2921. return &v.sizeCache
  2922. case 2:
  2923. return &v.unknownFields
  2924. default:
  2925. return nil
  2926. }
  2927. }
  2928. file_message_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  2929. switch v := v.(*UserUnreadMsgListReq); i {
  2930. case 0:
  2931. return &v.state
  2932. case 1:
  2933. return &v.sizeCache
  2934. case 2:
  2935. return &v.unknownFields
  2936. default:
  2937. return nil
  2938. }
  2939. }
  2940. file_message_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  2941. switch v := v.(*UserUnreadMsgListRes); i {
  2942. case 0:
  2943. return &v.state
  2944. case 1:
  2945. return &v.sizeCache
  2946. case 2:
  2947. return &v.unknownFields
  2948. default:
  2949. return nil
  2950. }
  2951. }
  2952. file_message_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  2953. switch v := v.(*WxTmplMsgRequest); i {
  2954. case 0:
  2955. return &v.state
  2956. case 1:
  2957. return &v.sizeCache
  2958. case 2:
  2959. return &v.unknownFields
  2960. default:
  2961. return nil
  2962. }
  2963. }
  2964. file_message_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  2965. switch v := v.(*SendMsgResponse); i {
  2966. case 0:
  2967. return &v.state
  2968. case 1:
  2969. return &v.sizeCache
  2970. case 2:
  2971. return &v.unknownFields
  2972. default:
  2973. return nil
  2974. }
  2975. }
  2976. file_message_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  2977. switch v := v.(*MsgOpenLogReq); i {
  2978. case 0:
  2979. return &v.state
  2980. case 1:
  2981. return &v.sizeCache
  2982. case 2:
  2983. return &v.unknownFields
  2984. default:
  2985. return nil
  2986. }
  2987. }
  2988. }
  2989. type x struct{}
  2990. out := protoimpl.TypeBuilder{
  2991. File: protoimpl.DescBuilder{
  2992. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2993. RawDescriptor: file_message_proto_rawDesc,
  2994. NumEnums: 0,
  2995. NumMessages: 34,
  2996. NumExtensions: 0,
  2997. NumServices: 1,
  2998. },
  2999. GoTypes: file_message_proto_goTypes,
  3000. DependencyIndexes: file_message_proto_depIdxs,
  3001. MessageInfos: file_message_proto_msgTypes,
  3002. }.Build()
  3003. File_message_proto = out.File
  3004. file_message_proto_rawDesc = nil
  3005. file_message_proto_goTypes = nil
  3006. file_message_proto_depIdxs = nil
  3007. }