userCenter.pb.go 138 KB

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