userCenter.pb.go 208 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1
  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. //用户权益
  1559. type UserInfo struct {
  1560. state protoimpl.MessageState
  1561. sizeCache protoimpl.SizeCache
  1562. unknownFields protoimpl.UnknownFields
  1563. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone,omitempty"` //手机号
  1564. VipStatus int64 `protobuf:"varint,2,opt,name=vipStatus,proto3" json:"vipStatus,omitempty"` //超级订阅状态; >0有权限 <=0无权限
  1565. MemberStatus int64 `protobuf:"varint,3,opt,name=memberStatus,proto3" json:"memberStatus,omitempty"` //大会员状态; >0:有权限 <=0:无权限
  1566. EntnicheStatus int64 `protobuf:"varint,4,opt,name=entnicheStatus,proto3" json:"entnicheStatus,omitempty"` //商机管理权限状态; 1:有权限 -1:无权限
  1567. SubscribeType string `protobuf:"bytes,5,opt,name=subscribeType,proto3" json:"subscribeType,omitempty"` //订阅设置类型 f:免费订阅 v:超级订阅 m:大会员订阅 e:商机管理订阅
  1568. Data *Subscribe `protobuf:"bytes,6,opt,name=data,proto3" json:"data,omitempty"`
  1569. ErrorMsg string `protobuf:"bytes,7,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1570. ErrorCode int64 `protobuf:"varint,8,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1571. Nickname string `protobuf:"bytes,9,opt,name=nickname,proto3" json:"nickname,omitempty"`
  1572. Headimg string `protobuf:"bytes,10,opt,name=headimg,proto3" json:"headimg,omitempty"`
  1573. }
  1574. func (x *UserInfo) Reset() {
  1575. *x = UserInfo{}
  1576. if protoimpl.UnsafeEnabled {
  1577. mi := &file_userCenter_proto_msgTypes[23]
  1578. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1579. ms.StoreMessageInfo(mi)
  1580. }
  1581. }
  1582. func (x *UserInfo) String() string {
  1583. return protoimpl.X.MessageStringOf(x)
  1584. }
  1585. func (*UserInfo) ProtoMessage() {}
  1586. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  1587. mi := &file_userCenter_proto_msgTypes[23]
  1588. if protoimpl.UnsafeEnabled && x != nil {
  1589. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1590. if ms.LoadMessageInfo() == nil {
  1591. ms.StoreMessageInfo(mi)
  1592. }
  1593. return ms
  1594. }
  1595. return mi.MessageOf(x)
  1596. }
  1597. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  1598. func (*UserInfo) Descriptor() ([]byte, []int) {
  1599. return file_userCenter_proto_rawDescGZIP(), []int{23}
  1600. }
  1601. func (x *UserInfo) GetPhone() string {
  1602. if x != nil {
  1603. return x.Phone
  1604. }
  1605. return ""
  1606. }
  1607. func (x *UserInfo) GetVipStatus() int64 {
  1608. if x != nil {
  1609. return x.VipStatus
  1610. }
  1611. return 0
  1612. }
  1613. func (x *UserInfo) GetMemberStatus() int64 {
  1614. if x != nil {
  1615. return x.MemberStatus
  1616. }
  1617. return 0
  1618. }
  1619. func (x *UserInfo) GetEntnicheStatus() int64 {
  1620. if x != nil {
  1621. return x.EntnicheStatus
  1622. }
  1623. return 0
  1624. }
  1625. func (x *UserInfo) GetSubscribeType() string {
  1626. if x != nil {
  1627. return x.SubscribeType
  1628. }
  1629. return ""
  1630. }
  1631. func (x *UserInfo) GetData() *Subscribe {
  1632. if x != nil {
  1633. return x.Data
  1634. }
  1635. return nil
  1636. }
  1637. func (x *UserInfo) GetErrorMsg() string {
  1638. if x != nil {
  1639. return x.ErrorMsg
  1640. }
  1641. return ""
  1642. }
  1643. func (x *UserInfo) GetErrorCode() int64 {
  1644. if x != nil {
  1645. return x.ErrorCode
  1646. }
  1647. return 0
  1648. }
  1649. func (x *UserInfo) GetNickname() string {
  1650. if x != nil {
  1651. return x.Nickname
  1652. }
  1653. return ""
  1654. }
  1655. func (x *UserInfo) GetHeadimg() string {
  1656. if x != nil {
  1657. return x.Headimg
  1658. }
  1659. return ""
  1660. }
  1661. //订阅设置
  1662. type Subscribe struct {
  1663. state protoimpl.MessageState
  1664. sizeCache protoimpl.SizeCache
  1665. unknownFields protoimpl.UnknownFields
  1666. StartTime int64 `protobuf:"varint,1,opt,name=startTime,proto3" json:"startTime,omitempty"` //开始时间
  1667. EndTime int64 `protobuf:"varint,2,opt,name=endTime,proto3" json:"endTime,omitempty"` //结束时间
  1668. Area map[string]*List `protobuf:"bytes,3,rep,name=area,proto3" json:"area,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` //地区
  1669. Buyerclass []string `protobuf:"bytes,4,rep,name=buyerclass,proto3" json:"buyerclass,omitempty"` //采购单位类型
  1670. Infotype []string `protobuf:"bytes,5,rep,name=infotype,proto3" json:"infotype,omitempty"` //信息类型
  1671. Items []*Items `protobuf:"bytes,6,rep,name=items,proto3" json:"items,omitempty"` //关键词
  1672. Matchway int64 `protobuf:"varint,7,opt,name=matchway,proto3" json:"matchway,omitempty"` //匹配方式 1标题 2正文
  1673. Projectmatch int64 `protobuf:"varint,8,opt,name=projectmatch,proto3" json:"projectmatch,omitempty"` //项目匹配
  1674. }
  1675. func (x *Subscribe) Reset() {
  1676. *x = Subscribe{}
  1677. if protoimpl.UnsafeEnabled {
  1678. mi := &file_userCenter_proto_msgTypes[24]
  1679. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1680. ms.StoreMessageInfo(mi)
  1681. }
  1682. }
  1683. func (x *Subscribe) String() string {
  1684. return protoimpl.X.MessageStringOf(x)
  1685. }
  1686. func (*Subscribe) ProtoMessage() {}
  1687. func (x *Subscribe) ProtoReflect() protoreflect.Message {
  1688. mi := &file_userCenter_proto_msgTypes[24]
  1689. if protoimpl.UnsafeEnabled && x != nil {
  1690. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1691. if ms.LoadMessageInfo() == nil {
  1692. ms.StoreMessageInfo(mi)
  1693. }
  1694. return ms
  1695. }
  1696. return mi.MessageOf(x)
  1697. }
  1698. // Deprecated: Use Subscribe.ProtoReflect.Descriptor instead.
  1699. func (*Subscribe) Descriptor() ([]byte, []int) {
  1700. return file_userCenter_proto_rawDescGZIP(), []int{24}
  1701. }
  1702. func (x *Subscribe) GetStartTime() int64 {
  1703. if x != nil {
  1704. return x.StartTime
  1705. }
  1706. return 0
  1707. }
  1708. func (x *Subscribe) GetEndTime() int64 {
  1709. if x != nil {
  1710. return x.EndTime
  1711. }
  1712. return 0
  1713. }
  1714. func (x *Subscribe) GetArea() map[string]*List {
  1715. if x != nil {
  1716. return x.Area
  1717. }
  1718. return nil
  1719. }
  1720. func (x *Subscribe) GetBuyerclass() []string {
  1721. if x != nil {
  1722. return x.Buyerclass
  1723. }
  1724. return nil
  1725. }
  1726. func (x *Subscribe) GetInfotype() []string {
  1727. if x != nil {
  1728. return x.Infotype
  1729. }
  1730. return nil
  1731. }
  1732. func (x *Subscribe) GetItems() []*Items {
  1733. if x != nil {
  1734. return x.Items
  1735. }
  1736. return nil
  1737. }
  1738. func (x *Subscribe) GetMatchway() int64 {
  1739. if x != nil {
  1740. return x.Matchway
  1741. }
  1742. return 0
  1743. }
  1744. func (x *Subscribe) GetProjectmatch() int64 {
  1745. if x != nil {
  1746. return x.Projectmatch
  1747. }
  1748. return 0
  1749. }
  1750. type List struct {
  1751. state protoimpl.MessageState
  1752. sizeCache protoimpl.SizeCache
  1753. unknownFields protoimpl.UnknownFields
  1754. Value []string `protobuf:"bytes,1,rep,name=value,proto3" json:"value,omitempty"`
  1755. }
  1756. func (x *List) Reset() {
  1757. *x = List{}
  1758. if protoimpl.UnsafeEnabled {
  1759. mi := &file_userCenter_proto_msgTypes[25]
  1760. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1761. ms.StoreMessageInfo(mi)
  1762. }
  1763. }
  1764. func (x *List) String() string {
  1765. return protoimpl.X.MessageStringOf(x)
  1766. }
  1767. func (*List) ProtoMessage() {}
  1768. func (x *List) ProtoReflect() protoreflect.Message {
  1769. mi := &file_userCenter_proto_msgTypes[25]
  1770. if protoimpl.UnsafeEnabled && x != nil {
  1771. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1772. if ms.LoadMessageInfo() == nil {
  1773. ms.StoreMessageInfo(mi)
  1774. }
  1775. return ms
  1776. }
  1777. return mi.MessageOf(x)
  1778. }
  1779. // Deprecated: Use List.ProtoReflect.Descriptor instead.
  1780. func (*List) Descriptor() ([]byte, []int) {
  1781. return file_userCenter_proto_rawDescGZIP(), []int{25}
  1782. }
  1783. func (x *List) GetValue() []string {
  1784. if x != nil {
  1785. return x.Value
  1786. }
  1787. return nil
  1788. }
  1789. //分类
  1790. type Items struct {
  1791. state protoimpl.MessageState
  1792. sizeCache protoimpl.SizeCache
  1793. unknownFields protoimpl.UnknownFields
  1794. SItem string `protobuf:"bytes,1,opt,name=s_item,json=sItem,proto3" json:"s_item,omitempty"` //分类名称
  1795. UpdateTime int64 `protobuf:"varint,2,opt,name=updateTime,proto3" json:"updateTime,omitempty"`
  1796. AKey []*Keys `protobuf:"bytes,3,rep,name=a_key,json=aKey,proto3" json:"a_key,omitempty"`
  1797. }
  1798. func (x *Items) Reset() {
  1799. *x = Items{}
  1800. if protoimpl.UnsafeEnabled {
  1801. mi := &file_userCenter_proto_msgTypes[26]
  1802. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1803. ms.StoreMessageInfo(mi)
  1804. }
  1805. }
  1806. func (x *Items) String() string {
  1807. return protoimpl.X.MessageStringOf(x)
  1808. }
  1809. func (*Items) ProtoMessage() {}
  1810. func (x *Items) ProtoReflect() protoreflect.Message {
  1811. mi := &file_userCenter_proto_msgTypes[26]
  1812. if protoimpl.UnsafeEnabled && x != nil {
  1813. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1814. if ms.LoadMessageInfo() == nil {
  1815. ms.StoreMessageInfo(mi)
  1816. }
  1817. return ms
  1818. }
  1819. return mi.MessageOf(x)
  1820. }
  1821. // Deprecated: Use Items.ProtoReflect.Descriptor instead.
  1822. func (*Items) Descriptor() ([]byte, []int) {
  1823. return file_userCenter_proto_rawDescGZIP(), []int{26}
  1824. }
  1825. func (x *Items) GetSItem() string {
  1826. if x != nil {
  1827. return x.SItem
  1828. }
  1829. return ""
  1830. }
  1831. func (x *Items) GetUpdateTime() int64 {
  1832. if x != nil {
  1833. return x.UpdateTime
  1834. }
  1835. return 0
  1836. }
  1837. func (x *Items) GetAKey() []*Keys {
  1838. if x != nil {
  1839. return x.AKey
  1840. }
  1841. return nil
  1842. }
  1843. //关键词
  1844. type Keys struct {
  1845. state protoimpl.MessageState
  1846. sizeCache protoimpl.SizeCache
  1847. unknownFields protoimpl.UnknownFields
  1848. Key []string `protobuf:"bytes,1,rep,name=key,proto3" json:"key,omitempty"`
  1849. Notkey []string `protobuf:"bytes,2,rep,name=notkey,proto3" json:"notkey,omitempty"`
  1850. UpdateTime int64 `protobuf:"varint,3,opt,name=updateTime,proto3" json:"updateTime,omitempty"`
  1851. Matchway int64 `protobuf:"varint,4,opt,name=matchway,proto3" json:"matchway,omitempty"`
  1852. }
  1853. func (x *Keys) Reset() {
  1854. *x = Keys{}
  1855. if protoimpl.UnsafeEnabled {
  1856. mi := &file_userCenter_proto_msgTypes[27]
  1857. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1858. ms.StoreMessageInfo(mi)
  1859. }
  1860. }
  1861. func (x *Keys) String() string {
  1862. return protoimpl.X.MessageStringOf(x)
  1863. }
  1864. func (*Keys) ProtoMessage() {}
  1865. func (x *Keys) ProtoReflect() protoreflect.Message {
  1866. mi := &file_userCenter_proto_msgTypes[27]
  1867. if protoimpl.UnsafeEnabled && x != nil {
  1868. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1869. if ms.LoadMessageInfo() == nil {
  1870. ms.StoreMessageInfo(mi)
  1871. }
  1872. return ms
  1873. }
  1874. return mi.MessageOf(x)
  1875. }
  1876. // Deprecated: Use Keys.ProtoReflect.Descriptor instead.
  1877. func (*Keys) Descriptor() ([]byte, []int) {
  1878. return file_userCenter_proto_rawDescGZIP(), []int{27}
  1879. }
  1880. func (x *Keys) GetKey() []string {
  1881. if x != nil {
  1882. return x.Key
  1883. }
  1884. return nil
  1885. }
  1886. func (x *Keys) GetNotkey() []string {
  1887. if x != nil {
  1888. return x.Notkey
  1889. }
  1890. return nil
  1891. }
  1892. func (x *Keys) GetUpdateTime() int64 {
  1893. if x != nil {
  1894. return x.UpdateTime
  1895. }
  1896. return 0
  1897. }
  1898. func (x *Keys) GetMatchway() int64 {
  1899. if x != nil {
  1900. return x.Matchway
  1901. }
  1902. return 0
  1903. }
  1904. type UserReq struct {
  1905. state protoimpl.MessageState
  1906. sizeCache protoimpl.SizeCache
  1907. unknownFields protoimpl.UnknownFields
  1908. AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
  1909. UserId int64 `protobuf:"varint,2,opt,name=userId,proto3" json:"userId,omitempty"`
  1910. Types string `protobuf:"bytes,3,opt,name=types,proto3" json:"types,omitempty"` //类型,不传按默认规则获取 m大会员 e商机管理 v超级订阅 f免费订阅
  1911. }
  1912. func (x *UserReq) Reset() {
  1913. *x = UserReq{}
  1914. if protoimpl.UnsafeEnabled {
  1915. mi := &file_userCenter_proto_msgTypes[28]
  1916. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1917. ms.StoreMessageInfo(mi)
  1918. }
  1919. }
  1920. func (x *UserReq) String() string {
  1921. return protoimpl.X.MessageStringOf(x)
  1922. }
  1923. func (*UserReq) ProtoMessage() {}
  1924. func (x *UserReq) ProtoReflect() protoreflect.Message {
  1925. mi := &file_userCenter_proto_msgTypes[28]
  1926. if protoimpl.UnsafeEnabled && x != nil {
  1927. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1928. if ms.LoadMessageInfo() == nil {
  1929. ms.StoreMessageInfo(mi)
  1930. }
  1931. return ms
  1932. }
  1933. return mi.MessageOf(x)
  1934. }
  1935. // Deprecated: Use UserReq.ProtoReflect.Descriptor instead.
  1936. func (*UserReq) Descriptor() ([]byte, []int) {
  1937. return file_userCenter_proto_rawDescGZIP(), []int{28}
  1938. }
  1939. func (x *UserReq) GetAppId() string {
  1940. if x != nil {
  1941. return x.AppId
  1942. }
  1943. return ""
  1944. }
  1945. func (x *UserReq) GetUserId() int64 {
  1946. if x != nil {
  1947. return x.UserId
  1948. }
  1949. return 0
  1950. }
  1951. func (x *UserReq) GetTypes() string {
  1952. if x != nil {
  1953. return x.Types
  1954. }
  1955. return ""
  1956. }
  1957. type EntUserReq struct {
  1958. state protoimpl.MessageState
  1959. sizeCache protoimpl.SizeCache
  1960. unknownFields protoimpl.UnknownFields
  1961. AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
  1962. EntUserId int64 `protobuf:"varint,2,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  1963. EntId int64 `protobuf:"varint,3,opt,name=entId,proto3" json:"entId,omitempty"`
  1964. }
  1965. func (x *EntUserReq) Reset() {
  1966. *x = EntUserReq{}
  1967. if protoimpl.UnsafeEnabled {
  1968. mi := &file_userCenter_proto_msgTypes[29]
  1969. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1970. ms.StoreMessageInfo(mi)
  1971. }
  1972. }
  1973. func (x *EntUserReq) String() string {
  1974. return protoimpl.X.MessageStringOf(x)
  1975. }
  1976. func (*EntUserReq) ProtoMessage() {}
  1977. func (x *EntUserReq) ProtoReflect() protoreflect.Message {
  1978. mi := &file_userCenter_proto_msgTypes[29]
  1979. if protoimpl.UnsafeEnabled && x != nil {
  1980. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1981. if ms.LoadMessageInfo() == nil {
  1982. ms.StoreMessageInfo(mi)
  1983. }
  1984. return ms
  1985. }
  1986. return mi.MessageOf(x)
  1987. }
  1988. // Deprecated: Use EntUserReq.ProtoReflect.Descriptor instead.
  1989. func (*EntUserReq) Descriptor() ([]byte, []int) {
  1990. return file_userCenter_proto_rawDescGZIP(), []int{29}
  1991. }
  1992. func (x *EntUserReq) GetAppId() string {
  1993. if x != nil {
  1994. return x.AppId
  1995. }
  1996. return ""
  1997. }
  1998. func (x *EntUserReq) GetEntUserId() int64 {
  1999. if x != nil {
  2000. return x.EntUserId
  2001. }
  2002. return 0
  2003. }
  2004. func (x *EntUserReq) GetEntId() int64 {
  2005. if x != nil {
  2006. return x.EntId
  2007. }
  2008. return 0
  2009. }
  2010. type EntUserResp struct {
  2011. state protoimpl.MessageState
  2012. sizeCache protoimpl.SizeCache
  2013. unknownFields protoimpl.UnknownFields
  2014. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  2015. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  2016. Data *EntUser `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  2017. }
  2018. func (x *EntUserResp) Reset() {
  2019. *x = EntUserResp{}
  2020. if protoimpl.UnsafeEnabled {
  2021. mi := &file_userCenter_proto_msgTypes[30]
  2022. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2023. ms.StoreMessageInfo(mi)
  2024. }
  2025. }
  2026. func (x *EntUserResp) String() string {
  2027. return protoimpl.X.MessageStringOf(x)
  2028. }
  2029. func (*EntUserResp) ProtoMessage() {}
  2030. func (x *EntUserResp) ProtoReflect() protoreflect.Message {
  2031. mi := &file_userCenter_proto_msgTypes[30]
  2032. if protoimpl.UnsafeEnabled && x != nil {
  2033. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2034. if ms.LoadMessageInfo() == nil {
  2035. ms.StoreMessageInfo(mi)
  2036. }
  2037. return ms
  2038. }
  2039. return mi.MessageOf(x)
  2040. }
  2041. // Deprecated: Use EntUserResp.ProtoReflect.Descriptor instead.
  2042. func (*EntUserResp) Descriptor() ([]byte, []int) {
  2043. return file_userCenter_proto_rawDescGZIP(), []int{30}
  2044. }
  2045. func (x *EntUserResp) GetErrorCode() int64 {
  2046. if x != nil {
  2047. return x.ErrorCode
  2048. }
  2049. return 0
  2050. }
  2051. func (x *EntUserResp) GetErrorMsg() string {
  2052. if x != nil {
  2053. return x.ErrorMsg
  2054. }
  2055. return ""
  2056. }
  2057. func (x *EntUserResp) GetData() *EntUser {
  2058. if x != nil {
  2059. return x.Data
  2060. }
  2061. return nil
  2062. }
  2063. type EntUser struct {
  2064. state protoimpl.MessageState
  2065. sizeCache protoimpl.SizeCache
  2066. unknownFields protoimpl.UnknownFields
  2067. Name string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"` //员工名册
  2068. Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"` //员工手机号
  2069. Mail string `protobuf:"bytes,3,opt,name=mail,proto3" json:"mail,omitempty"` //邮箱
  2070. DeptName string `protobuf:"bytes,4,opt,name=deptName,proto3" json:"deptName,omitempty"` //部门名称
  2071. EntUserId int64 `protobuf:"varint,5,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  2072. }
  2073. func (x *EntUser) Reset() {
  2074. *x = EntUser{}
  2075. if protoimpl.UnsafeEnabled {
  2076. mi := &file_userCenter_proto_msgTypes[31]
  2077. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2078. ms.StoreMessageInfo(mi)
  2079. }
  2080. }
  2081. func (x *EntUser) String() string {
  2082. return protoimpl.X.MessageStringOf(x)
  2083. }
  2084. func (*EntUser) ProtoMessage() {}
  2085. func (x *EntUser) ProtoReflect() protoreflect.Message {
  2086. mi := &file_userCenter_proto_msgTypes[31]
  2087. if protoimpl.UnsafeEnabled && x != nil {
  2088. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2089. if ms.LoadMessageInfo() == nil {
  2090. ms.StoreMessageInfo(mi)
  2091. }
  2092. return ms
  2093. }
  2094. return mi.MessageOf(x)
  2095. }
  2096. // Deprecated: Use EntUser.ProtoReflect.Descriptor instead.
  2097. func (*EntUser) Descriptor() ([]byte, []int) {
  2098. return file_userCenter_proto_rawDescGZIP(), []int{31}
  2099. }
  2100. func (x *EntUser) GetName() string {
  2101. if x != nil {
  2102. return x.Name
  2103. }
  2104. return ""
  2105. }
  2106. func (x *EntUser) GetPhone() string {
  2107. if x != nil {
  2108. return x.Phone
  2109. }
  2110. return ""
  2111. }
  2112. func (x *EntUser) GetMail() string {
  2113. if x != nil {
  2114. return x.Mail
  2115. }
  2116. return ""
  2117. }
  2118. func (x *EntUser) GetDeptName() string {
  2119. if x != nil {
  2120. return x.DeptName
  2121. }
  2122. return ""
  2123. }
  2124. func (x *EntUser) GetEntUserId() int64 {
  2125. if x != nil {
  2126. return x.EntUserId
  2127. }
  2128. return 0
  2129. }
  2130. type EntUserListReq struct {
  2131. state protoimpl.MessageState
  2132. sizeCache protoimpl.SizeCache
  2133. unknownFields protoimpl.UnknownFields
  2134. AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
  2135. EntId int64 `protobuf:"varint,2,opt,name=entId,proto3" json:"entId,omitempty"`
  2136. DeptId int64 `protobuf:"varint,3,opt,name=deptId,proto3" json:"deptId,omitempty"`
  2137. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  2138. }
  2139. func (x *EntUserListReq) Reset() {
  2140. *x = EntUserListReq{}
  2141. if protoimpl.UnsafeEnabled {
  2142. mi := &file_userCenter_proto_msgTypes[32]
  2143. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2144. ms.StoreMessageInfo(mi)
  2145. }
  2146. }
  2147. func (x *EntUserListReq) String() string {
  2148. return protoimpl.X.MessageStringOf(x)
  2149. }
  2150. func (*EntUserListReq) ProtoMessage() {}
  2151. func (x *EntUserListReq) ProtoReflect() protoreflect.Message {
  2152. mi := &file_userCenter_proto_msgTypes[32]
  2153. if protoimpl.UnsafeEnabled && x != nil {
  2154. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2155. if ms.LoadMessageInfo() == nil {
  2156. ms.StoreMessageInfo(mi)
  2157. }
  2158. return ms
  2159. }
  2160. return mi.MessageOf(x)
  2161. }
  2162. // Deprecated: Use EntUserListReq.ProtoReflect.Descriptor instead.
  2163. func (*EntUserListReq) Descriptor() ([]byte, []int) {
  2164. return file_userCenter_proto_rawDescGZIP(), []int{32}
  2165. }
  2166. func (x *EntUserListReq) GetAppId() string {
  2167. if x != nil {
  2168. return x.AppId
  2169. }
  2170. return ""
  2171. }
  2172. func (x *EntUserListReq) GetEntId() int64 {
  2173. if x != nil {
  2174. return x.EntId
  2175. }
  2176. return 0
  2177. }
  2178. func (x *EntUserListReq) GetDeptId() int64 {
  2179. if x != nil {
  2180. return x.DeptId
  2181. }
  2182. return 0
  2183. }
  2184. func (x *EntUserListReq) GetName() string {
  2185. if x != nil {
  2186. return x.Name
  2187. }
  2188. return ""
  2189. }
  2190. type EntUserListResp struct {
  2191. state protoimpl.MessageState
  2192. sizeCache protoimpl.SizeCache
  2193. unknownFields protoimpl.UnknownFields
  2194. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  2195. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  2196. Data []*EntUserListData `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  2197. }
  2198. func (x *EntUserListResp) Reset() {
  2199. *x = EntUserListResp{}
  2200. if protoimpl.UnsafeEnabled {
  2201. mi := &file_userCenter_proto_msgTypes[33]
  2202. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2203. ms.StoreMessageInfo(mi)
  2204. }
  2205. }
  2206. func (x *EntUserListResp) String() string {
  2207. return protoimpl.X.MessageStringOf(x)
  2208. }
  2209. func (*EntUserListResp) ProtoMessage() {}
  2210. func (x *EntUserListResp) ProtoReflect() protoreflect.Message {
  2211. mi := &file_userCenter_proto_msgTypes[33]
  2212. if protoimpl.UnsafeEnabled && x != nil {
  2213. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2214. if ms.LoadMessageInfo() == nil {
  2215. ms.StoreMessageInfo(mi)
  2216. }
  2217. return ms
  2218. }
  2219. return mi.MessageOf(x)
  2220. }
  2221. // Deprecated: Use EntUserListResp.ProtoReflect.Descriptor instead.
  2222. func (*EntUserListResp) Descriptor() ([]byte, []int) {
  2223. return file_userCenter_proto_rawDescGZIP(), []int{33}
  2224. }
  2225. func (x *EntUserListResp) GetErrorCode() int64 {
  2226. if x != nil {
  2227. return x.ErrorCode
  2228. }
  2229. return 0
  2230. }
  2231. func (x *EntUserListResp) GetErrorMsg() string {
  2232. if x != nil {
  2233. return x.ErrorMsg
  2234. }
  2235. return ""
  2236. }
  2237. func (x *EntUserListResp) GetData() []*EntUserListData {
  2238. if x != nil {
  2239. return x.Data
  2240. }
  2241. return nil
  2242. }
  2243. type EntUserListData struct {
  2244. state protoimpl.MessageState
  2245. sizeCache protoimpl.SizeCache
  2246. unknownFields protoimpl.UnknownFields
  2247. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  2248. DeptId int64 `protobuf:"varint,2,opt,name=deptId,proto3" json:"deptId,omitempty"`
  2249. PId int64 `protobuf:"varint,3,opt,name=pId,proto3" json:"pId,omitempty"`
  2250. EntUserList []*EntUser `protobuf:"bytes,4,rep,name=entUserList,proto3" json:"entUserList,omitempty"`
  2251. DeptList []*EntUserListData `protobuf:"bytes,5,rep,name=deptList,proto3" json:"deptList,omitempty"`
  2252. }
  2253. func (x *EntUserListData) Reset() {
  2254. *x = EntUserListData{}
  2255. if protoimpl.UnsafeEnabled {
  2256. mi := &file_userCenter_proto_msgTypes[34]
  2257. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2258. ms.StoreMessageInfo(mi)
  2259. }
  2260. }
  2261. func (x *EntUserListData) String() string {
  2262. return protoimpl.X.MessageStringOf(x)
  2263. }
  2264. func (*EntUserListData) ProtoMessage() {}
  2265. func (x *EntUserListData) ProtoReflect() protoreflect.Message {
  2266. mi := &file_userCenter_proto_msgTypes[34]
  2267. if protoimpl.UnsafeEnabled && x != nil {
  2268. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2269. if ms.LoadMessageInfo() == nil {
  2270. ms.StoreMessageInfo(mi)
  2271. }
  2272. return ms
  2273. }
  2274. return mi.MessageOf(x)
  2275. }
  2276. // Deprecated: Use EntUserListData.ProtoReflect.Descriptor instead.
  2277. func (*EntUserListData) Descriptor() ([]byte, []int) {
  2278. return file_userCenter_proto_rawDescGZIP(), []int{34}
  2279. }
  2280. func (x *EntUserListData) GetName() string {
  2281. if x != nil {
  2282. return x.Name
  2283. }
  2284. return ""
  2285. }
  2286. func (x *EntUserListData) GetDeptId() int64 {
  2287. if x != nil {
  2288. return x.DeptId
  2289. }
  2290. return 0
  2291. }
  2292. func (x *EntUserListData) GetPId() int64 {
  2293. if x != nil {
  2294. return x.PId
  2295. }
  2296. return 0
  2297. }
  2298. func (x *EntUserListData) GetEntUserList() []*EntUser {
  2299. if x != nil {
  2300. return x.EntUserList
  2301. }
  2302. return nil
  2303. }
  2304. func (x *EntUserListData) GetDeptList() []*EntUserListData {
  2305. if x != nil {
  2306. return x.DeptList
  2307. }
  2308. return nil
  2309. }
  2310. type CheckIsEntAdminResp struct {
  2311. state protoimpl.MessageState
  2312. sizeCache protoimpl.SizeCache
  2313. unknownFields protoimpl.UnknownFields
  2314. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  2315. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  2316. Status int64 `protobuf:"varint,3,opt,name=status,proto3" json:"status,omitempty"` //1企业管理员 2部门管理员 3员工
  2317. }
  2318. func (x *CheckIsEntAdminResp) Reset() {
  2319. *x = CheckIsEntAdminResp{}
  2320. if protoimpl.UnsafeEnabled {
  2321. mi := &file_userCenter_proto_msgTypes[35]
  2322. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2323. ms.StoreMessageInfo(mi)
  2324. }
  2325. }
  2326. func (x *CheckIsEntAdminResp) String() string {
  2327. return protoimpl.X.MessageStringOf(x)
  2328. }
  2329. func (*CheckIsEntAdminResp) ProtoMessage() {}
  2330. func (x *CheckIsEntAdminResp) ProtoReflect() protoreflect.Message {
  2331. mi := &file_userCenter_proto_msgTypes[35]
  2332. if protoimpl.UnsafeEnabled && x != nil {
  2333. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2334. if ms.LoadMessageInfo() == nil {
  2335. ms.StoreMessageInfo(mi)
  2336. }
  2337. return ms
  2338. }
  2339. return mi.MessageOf(x)
  2340. }
  2341. // Deprecated: Use CheckIsEntAdminResp.ProtoReflect.Descriptor instead.
  2342. func (*CheckIsEntAdminResp) Descriptor() ([]byte, []int) {
  2343. return file_userCenter_proto_rawDescGZIP(), []int{35}
  2344. }
  2345. func (x *CheckIsEntAdminResp) GetErrorCode() int64 {
  2346. if x != nil {
  2347. return x.ErrorCode
  2348. }
  2349. return 0
  2350. }
  2351. func (x *CheckIsEntAdminResp) GetErrorMsg() string {
  2352. if x != nil {
  2353. return x.ErrorMsg
  2354. }
  2355. return ""
  2356. }
  2357. func (x *CheckIsEntAdminResp) GetStatus() int64 {
  2358. if x != nil {
  2359. return x.Status
  2360. }
  2361. return 0
  2362. }
  2363. type GetStatusByCode struct {
  2364. state protoimpl.MessageState
  2365. sizeCache protoimpl.SizeCache
  2366. unknownFields protoimpl.UnknownFields
  2367. AuthStatus int64 `protobuf:"varint,1,opt,name=authStatus,proto3" json:"authStatus,omitempty"` //企业是否认证 -1 未通过,0 未认证,1 已认证. -2 已到期 3待审核
  2368. IsInEnt bool `protobuf:"varint,2,opt,name=isInEnt,proto3" json:"isInEnt,omitempty"` //是否在该企业内
  2369. }
  2370. func (x *GetStatusByCode) Reset() {
  2371. *x = GetStatusByCode{}
  2372. if protoimpl.UnsafeEnabled {
  2373. mi := &file_userCenter_proto_msgTypes[36]
  2374. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2375. ms.StoreMessageInfo(mi)
  2376. }
  2377. }
  2378. func (x *GetStatusByCode) String() string {
  2379. return protoimpl.X.MessageStringOf(x)
  2380. }
  2381. func (*GetStatusByCode) ProtoMessage() {}
  2382. func (x *GetStatusByCode) ProtoReflect() protoreflect.Message {
  2383. mi := &file_userCenter_proto_msgTypes[36]
  2384. if protoimpl.UnsafeEnabled && x != nil {
  2385. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2386. if ms.LoadMessageInfo() == nil {
  2387. ms.StoreMessageInfo(mi)
  2388. }
  2389. return ms
  2390. }
  2391. return mi.MessageOf(x)
  2392. }
  2393. // Deprecated: Use GetStatusByCode.ProtoReflect.Descriptor instead.
  2394. func (*GetStatusByCode) Descriptor() ([]byte, []int) {
  2395. return file_userCenter_proto_rawDescGZIP(), []int{36}
  2396. }
  2397. func (x *GetStatusByCode) GetAuthStatus() int64 {
  2398. if x != nil {
  2399. return x.AuthStatus
  2400. }
  2401. return 0
  2402. }
  2403. func (x *GetStatusByCode) GetIsInEnt() bool {
  2404. if x != nil {
  2405. return x.IsInEnt
  2406. }
  2407. return false
  2408. }
  2409. type UserAddReq struct {
  2410. state protoimpl.MessageState
  2411. sizeCache protoimpl.SizeCache
  2412. unknownFields protoimpl.UnknownFields
  2413. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  2414. Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
  2415. Nickname string `protobuf:"bytes,3,opt,name=nickname,proto3" json:"nickname,omitempty"`
  2416. Headimg string `protobuf:"bytes,4,opt,name=headimg,proto3" json:"headimg,omitempty"`
  2417. Company string `protobuf:"bytes,5,opt,name=company,proto3" json:"company,omitempty"`
  2418. Position string `protobuf:"bytes,6,opt,name=position,proto3" json:"position,omitempty"`
  2419. Password string `protobuf:"bytes,7,opt,name=password,proto3" json:"password,omitempty"`
  2420. SOpenid string `protobuf:"bytes,8,opt,name=s_openid,json=sOpenid,proto3" json:"s_openid,omitempty"`
  2421. AOpenid string `protobuf:"bytes,9,opt,name=a_openid,json=aOpenid,proto3" json:"a_openid,omitempty"`
  2422. Unionid string `protobuf:"bytes,10,opt,name=unionid,proto3" json:"unionid,omitempty"`
  2423. IdCard string `protobuf:"bytes,11,opt,name=idCard,proto3" json:"idCard,omitempty"`
  2424. Address string `protobuf:"bytes,12,opt,name=address,proto3" json:"address,omitempty"`
  2425. Sex int64 `protobuf:"varint,13,opt,name=sex,proto3" json:"sex,omitempty"`
  2426. }
  2427. func (x *UserAddReq) Reset() {
  2428. *x = UserAddReq{}
  2429. if protoimpl.UnsafeEnabled {
  2430. mi := &file_userCenter_proto_msgTypes[37]
  2431. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2432. ms.StoreMessageInfo(mi)
  2433. }
  2434. }
  2435. func (x *UserAddReq) String() string {
  2436. return protoimpl.X.MessageStringOf(x)
  2437. }
  2438. func (*UserAddReq) ProtoMessage() {}
  2439. func (x *UserAddReq) ProtoReflect() protoreflect.Message {
  2440. mi := &file_userCenter_proto_msgTypes[37]
  2441. if protoimpl.UnsafeEnabled && x != nil {
  2442. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2443. if ms.LoadMessageInfo() == nil {
  2444. ms.StoreMessageInfo(mi)
  2445. }
  2446. return ms
  2447. }
  2448. return mi.MessageOf(x)
  2449. }
  2450. // Deprecated: Use UserAddReq.ProtoReflect.Descriptor instead.
  2451. func (*UserAddReq) Descriptor() ([]byte, []int) {
  2452. return file_userCenter_proto_rawDescGZIP(), []int{37}
  2453. }
  2454. func (x *UserAddReq) GetAppid() string {
  2455. if x != nil {
  2456. return x.Appid
  2457. }
  2458. return ""
  2459. }
  2460. func (x *UserAddReq) GetPhone() string {
  2461. if x != nil {
  2462. return x.Phone
  2463. }
  2464. return ""
  2465. }
  2466. func (x *UserAddReq) GetNickname() string {
  2467. if x != nil {
  2468. return x.Nickname
  2469. }
  2470. return ""
  2471. }
  2472. func (x *UserAddReq) GetHeadimg() string {
  2473. if x != nil {
  2474. return x.Headimg
  2475. }
  2476. return ""
  2477. }
  2478. func (x *UserAddReq) GetCompany() string {
  2479. if x != nil {
  2480. return x.Company
  2481. }
  2482. return ""
  2483. }
  2484. func (x *UserAddReq) GetPosition() string {
  2485. if x != nil {
  2486. return x.Position
  2487. }
  2488. return ""
  2489. }
  2490. func (x *UserAddReq) GetPassword() string {
  2491. if x != nil {
  2492. return x.Password
  2493. }
  2494. return ""
  2495. }
  2496. func (x *UserAddReq) GetSOpenid() string {
  2497. if x != nil {
  2498. return x.SOpenid
  2499. }
  2500. return ""
  2501. }
  2502. func (x *UserAddReq) GetAOpenid() string {
  2503. if x != nil {
  2504. return x.AOpenid
  2505. }
  2506. return ""
  2507. }
  2508. func (x *UserAddReq) GetUnionid() string {
  2509. if x != nil {
  2510. return x.Unionid
  2511. }
  2512. return ""
  2513. }
  2514. func (x *UserAddReq) GetIdCard() string {
  2515. if x != nil {
  2516. return x.IdCard
  2517. }
  2518. return ""
  2519. }
  2520. func (x *UserAddReq) GetAddress() string {
  2521. if x != nil {
  2522. return x.Address
  2523. }
  2524. return ""
  2525. }
  2526. func (x *UserAddReq) GetSex() int64 {
  2527. if x != nil {
  2528. return x.Sex
  2529. }
  2530. return 0
  2531. }
  2532. type UserAddResp struct {
  2533. state protoimpl.MessageState
  2534. sizeCache protoimpl.SizeCache
  2535. unknownFields protoimpl.UnknownFields
  2536. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  2537. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  2538. Data *UserAdds `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  2539. }
  2540. func (x *UserAddResp) Reset() {
  2541. *x = UserAddResp{}
  2542. if protoimpl.UnsafeEnabled {
  2543. mi := &file_userCenter_proto_msgTypes[38]
  2544. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2545. ms.StoreMessageInfo(mi)
  2546. }
  2547. }
  2548. func (x *UserAddResp) String() string {
  2549. return protoimpl.X.MessageStringOf(x)
  2550. }
  2551. func (*UserAddResp) ProtoMessage() {}
  2552. func (x *UserAddResp) ProtoReflect() protoreflect.Message {
  2553. mi := &file_userCenter_proto_msgTypes[38]
  2554. if protoimpl.UnsafeEnabled && x != nil {
  2555. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2556. if ms.LoadMessageInfo() == nil {
  2557. ms.StoreMessageInfo(mi)
  2558. }
  2559. return ms
  2560. }
  2561. return mi.MessageOf(x)
  2562. }
  2563. // Deprecated: Use UserAddResp.ProtoReflect.Descriptor instead.
  2564. func (*UserAddResp) Descriptor() ([]byte, []int) {
  2565. return file_userCenter_proto_rawDescGZIP(), []int{38}
  2566. }
  2567. func (x *UserAddResp) GetErrorCode() int64 {
  2568. if x != nil {
  2569. return x.ErrorCode
  2570. }
  2571. return 0
  2572. }
  2573. func (x *UserAddResp) GetErrorMsg() string {
  2574. if x != nil {
  2575. return x.ErrorMsg
  2576. }
  2577. return ""
  2578. }
  2579. func (x *UserAddResp) GetData() *UserAdds {
  2580. if x != nil {
  2581. return x.Data
  2582. }
  2583. return nil
  2584. }
  2585. type UserAdds struct {
  2586. state protoimpl.MessageState
  2587. sizeCache protoimpl.SizeCache
  2588. unknownFields protoimpl.UnknownFields
  2589. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  2590. Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
  2591. }
  2592. func (x *UserAdds) Reset() {
  2593. *x = UserAdds{}
  2594. if protoimpl.UnsafeEnabled {
  2595. mi := &file_userCenter_proto_msgTypes[39]
  2596. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2597. ms.StoreMessageInfo(mi)
  2598. }
  2599. }
  2600. func (x *UserAdds) String() string {
  2601. return protoimpl.X.MessageStringOf(x)
  2602. }
  2603. func (*UserAdds) ProtoMessage() {}
  2604. func (x *UserAdds) ProtoReflect() protoreflect.Message {
  2605. mi := &file_userCenter_proto_msgTypes[39]
  2606. if protoimpl.UnsafeEnabled && x != nil {
  2607. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2608. if ms.LoadMessageInfo() == nil {
  2609. ms.StoreMessageInfo(mi)
  2610. }
  2611. return ms
  2612. }
  2613. return mi.MessageOf(x)
  2614. }
  2615. // Deprecated: Use UserAdds.ProtoReflect.Descriptor instead.
  2616. func (*UserAdds) Descriptor() ([]byte, []int) {
  2617. return file_userCenter_proto_rawDescGZIP(), []int{39}
  2618. }
  2619. func (x *UserAdds) GetStatus() int64 {
  2620. if x != nil {
  2621. return x.Status
  2622. }
  2623. return 0
  2624. }
  2625. func (x *UserAdds) GetId() int64 {
  2626. if x != nil {
  2627. return x.Id
  2628. }
  2629. return 0
  2630. }
  2631. type UserIdReq struct {
  2632. state protoimpl.MessageState
  2633. sizeCache protoimpl.SizeCache
  2634. unknownFields protoimpl.UnknownFields
  2635. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  2636. Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
  2637. Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone,omitempty"`
  2638. Nickname string `protobuf:"bytes,4,opt,name=nickname,proto3" json:"nickname,omitempty"`
  2639. Headimg string `protobuf:"bytes,5,opt,name=headimg,proto3" json:"headimg,omitempty"`
  2640. Company string `protobuf:"bytes,6,opt,name=company,proto3" json:"company,omitempty"`
  2641. Position string `protobuf:"bytes,7,opt,name=position,proto3" json:"position,omitempty"`
  2642. Password string `protobuf:"bytes,8,opt,name=password,proto3" json:"password,omitempty"`
  2643. SOpenid string `protobuf:"bytes,9,opt,name=s_openid,json=sOpenid,proto3" json:"s_openid,omitempty"`
  2644. AOpenid string `protobuf:"bytes,10,opt,name=a_openid,json=aOpenid,proto3" json:"a_openid,omitempty"`
  2645. Unionid string `protobuf:"bytes,11,opt,name=unionid,proto3" json:"unionid,omitempty"`
  2646. }
  2647. func (x *UserIdReq) Reset() {
  2648. *x = UserIdReq{}
  2649. if protoimpl.UnsafeEnabled {
  2650. mi := &file_userCenter_proto_msgTypes[40]
  2651. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2652. ms.StoreMessageInfo(mi)
  2653. }
  2654. }
  2655. func (x *UserIdReq) String() string {
  2656. return protoimpl.X.MessageStringOf(x)
  2657. }
  2658. func (*UserIdReq) ProtoMessage() {}
  2659. func (x *UserIdReq) ProtoReflect() protoreflect.Message {
  2660. mi := &file_userCenter_proto_msgTypes[40]
  2661. if protoimpl.UnsafeEnabled && x != nil {
  2662. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2663. if ms.LoadMessageInfo() == nil {
  2664. ms.StoreMessageInfo(mi)
  2665. }
  2666. return ms
  2667. }
  2668. return mi.MessageOf(x)
  2669. }
  2670. // Deprecated: Use UserIdReq.ProtoReflect.Descriptor instead.
  2671. func (*UserIdReq) Descriptor() ([]byte, []int) {
  2672. return file_userCenter_proto_rawDescGZIP(), []int{40}
  2673. }
  2674. func (x *UserIdReq) GetAppid() string {
  2675. if x != nil {
  2676. return x.Appid
  2677. }
  2678. return ""
  2679. }
  2680. func (x *UserIdReq) GetId() int64 {
  2681. if x != nil {
  2682. return x.Id
  2683. }
  2684. return 0
  2685. }
  2686. func (x *UserIdReq) GetPhone() string {
  2687. if x != nil {
  2688. return x.Phone
  2689. }
  2690. return ""
  2691. }
  2692. func (x *UserIdReq) GetNickname() string {
  2693. if x != nil {
  2694. return x.Nickname
  2695. }
  2696. return ""
  2697. }
  2698. func (x *UserIdReq) GetHeadimg() string {
  2699. if x != nil {
  2700. return x.Headimg
  2701. }
  2702. return ""
  2703. }
  2704. func (x *UserIdReq) GetCompany() string {
  2705. if x != nil {
  2706. return x.Company
  2707. }
  2708. return ""
  2709. }
  2710. func (x *UserIdReq) GetPosition() string {
  2711. if x != nil {
  2712. return x.Position
  2713. }
  2714. return ""
  2715. }
  2716. func (x *UserIdReq) GetPassword() string {
  2717. if x != nil {
  2718. return x.Password
  2719. }
  2720. return ""
  2721. }
  2722. func (x *UserIdReq) GetSOpenid() string {
  2723. if x != nil {
  2724. return x.SOpenid
  2725. }
  2726. return ""
  2727. }
  2728. func (x *UserIdReq) GetAOpenid() string {
  2729. if x != nil {
  2730. return x.AOpenid
  2731. }
  2732. return ""
  2733. }
  2734. func (x *UserIdReq) GetUnionid() string {
  2735. if x != nil {
  2736. return x.Unionid
  2737. }
  2738. return ""
  2739. }
  2740. //工作桌面
  2741. type WorkDesktopMenuInfoReq struct {
  2742. state protoimpl.MessageState
  2743. sizeCache protoimpl.SizeCache
  2744. unknownFields protoimpl.UnknownFields
  2745. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
  2746. AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"`
  2747. Platform string `protobuf:"bytes,3,opt,name=platform,proto3" json:"platform,omitempty"`
  2748. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone,omitempty"`
  2749. NewUserId string `protobuf:"bytes,5,opt,name=newUserId,proto3" json:"newUserId,omitempty"`
  2750. EntId string `protobuf:"bytes,6,opt,name=entId,proto3" json:"entId,omitempty"`
  2751. EntUserId string `protobuf:"bytes,7,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  2752. IntranetBool bool `protobuf:"varint,8,opt,name=intranetBool,proto3" json:"intranetBool,omitempty"`
  2753. WorkStatus int64 `protobuf:"varint,9,opt,name=workStatus,proto3" json:"workStatus,omitempty"`
  2754. AccountId string `protobuf:"bytes,10,opt,name=accountId,proto3" json:"accountId,omitempty"`
  2755. PositionType string `protobuf:"bytes,11,opt,name=positionType,proto3" json:"positionType,omitempty"`
  2756. PositionId string `protobuf:"bytes,12,opt,name=positionId,proto3" json:"positionId,omitempty"`
  2757. MgoUserId string `protobuf:"bytes,13,opt,name=mgoUserId,proto3" json:"mgoUserId,omitempty"`
  2758. EntAccountId string `protobuf:"bytes,14,opt,name=entAccountId,proto3" json:"entAccountId,omitempty"`
  2759. }
  2760. func (x *WorkDesktopMenuInfoReq) Reset() {
  2761. *x = WorkDesktopMenuInfoReq{}
  2762. if protoimpl.UnsafeEnabled {
  2763. mi := &file_userCenter_proto_msgTypes[41]
  2764. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2765. ms.StoreMessageInfo(mi)
  2766. }
  2767. }
  2768. func (x *WorkDesktopMenuInfoReq) String() string {
  2769. return protoimpl.X.MessageStringOf(x)
  2770. }
  2771. func (*WorkDesktopMenuInfoReq) ProtoMessage() {}
  2772. func (x *WorkDesktopMenuInfoReq) ProtoReflect() protoreflect.Message {
  2773. mi := &file_userCenter_proto_msgTypes[41]
  2774. if protoimpl.UnsafeEnabled && x != nil {
  2775. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2776. if ms.LoadMessageInfo() == nil {
  2777. ms.StoreMessageInfo(mi)
  2778. }
  2779. return ms
  2780. }
  2781. return mi.MessageOf(x)
  2782. }
  2783. // Deprecated: Use WorkDesktopMenuInfoReq.ProtoReflect.Descriptor instead.
  2784. func (*WorkDesktopMenuInfoReq) Descriptor() ([]byte, []int) {
  2785. return file_userCenter_proto_rawDescGZIP(), []int{41}
  2786. }
  2787. func (x *WorkDesktopMenuInfoReq) GetUserId() string {
  2788. if x != nil {
  2789. return x.UserId
  2790. }
  2791. return ""
  2792. }
  2793. func (x *WorkDesktopMenuInfoReq) GetAppId() string {
  2794. if x != nil {
  2795. return x.AppId
  2796. }
  2797. return ""
  2798. }
  2799. func (x *WorkDesktopMenuInfoReq) GetPlatform() string {
  2800. if x != nil {
  2801. return x.Platform
  2802. }
  2803. return ""
  2804. }
  2805. func (x *WorkDesktopMenuInfoReq) GetPhone() string {
  2806. if x != nil {
  2807. return x.Phone
  2808. }
  2809. return ""
  2810. }
  2811. func (x *WorkDesktopMenuInfoReq) GetNewUserId() string {
  2812. if x != nil {
  2813. return x.NewUserId
  2814. }
  2815. return ""
  2816. }
  2817. func (x *WorkDesktopMenuInfoReq) GetEntId() string {
  2818. if x != nil {
  2819. return x.EntId
  2820. }
  2821. return ""
  2822. }
  2823. func (x *WorkDesktopMenuInfoReq) GetEntUserId() string {
  2824. if x != nil {
  2825. return x.EntUserId
  2826. }
  2827. return ""
  2828. }
  2829. func (x *WorkDesktopMenuInfoReq) GetIntranetBool() bool {
  2830. if x != nil {
  2831. return x.IntranetBool
  2832. }
  2833. return false
  2834. }
  2835. func (x *WorkDesktopMenuInfoReq) GetWorkStatus() int64 {
  2836. if x != nil {
  2837. return x.WorkStatus
  2838. }
  2839. return 0
  2840. }
  2841. func (x *WorkDesktopMenuInfoReq) GetAccountId() string {
  2842. if x != nil {
  2843. return x.AccountId
  2844. }
  2845. return ""
  2846. }
  2847. func (x *WorkDesktopMenuInfoReq) GetPositionType() string {
  2848. if x != nil {
  2849. return x.PositionType
  2850. }
  2851. return ""
  2852. }
  2853. func (x *WorkDesktopMenuInfoReq) GetPositionId() string {
  2854. if x != nil {
  2855. return x.PositionId
  2856. }
  2857. return ""
  2858. }
  2859. func (x *WorkDesktopMenuInfoReq) GetMgoUserId() string {
  2860. if x != nil {
  2861. return x.MgoUserId
  2862. }
  2863. return ""
  2864. }
  2865. func (x *WorkDesktopMenuInfoReq) GetEntAccountId() string {
  2866. if x != nil {
  2867. return x.EntAccountId
  2868. }
  2869. return ""
  2870. }
  2871. //工作桌面-返回数据
  2872. type WorkDesktopMenuInfoResp struct {
  2873. state protoimpl.MessageState
  2874. sizeCache protoimpl.SizeCache
  2875. unknownFields protoimpl.UnknownFields
  2876. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  2877. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  2878. Data *MenuData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  2879. }
  2880. func (x *WorkDesktopMenuInfoResp) Reset() {
  2881. *x = WorkDesktopMenuInfoResp{}
  2882. if protoimpl.UnsafeEnabled {
  2883. mi := &file_userCenter_proto_msgTypes[42]
  2884. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2885. ms.StoreMessageInfo(mi)
  2886. }
  2887. }
  2888. func (x *WorkDesktopMenuInfoResp) String() string {
  2889. return protoimpl.X.MessageStringOf(x)
  2890. }
  2891. func (*WorkDesktopMenuInfoResp) ProtoMessage() {}
  2892. func (x *WorkDesktopMenuInfoResp) ProtoReflect() protoreflect.Message {
  2893. mi := &file_userCenter_proto_msgTypes[42]
  2894. if protoimpl.UnsafeEnabled && x != nil {
  2895. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2896. if ms.LoadMessageInfo() == nil {
  2897. ms.StoreMessageInfo(mi)
  2898. }
  2899. return ms
  2900. }
  2901. return mi.MessageOf(x)
  2902. }
  2903. // Deprecated: Use WorkDesktopMenuInfoResp.ProtoReflect.Descriptor instead.
  2904. func (*WorkDesktopMenuInfoResp) Descriptor() ([]byte, []int) {
  2905. return file_userCenter_proto_rawDescGZIP(), []int{42}
  2906. }
  2907. func (x *WorkDesktopMenuInfoResp) GetErrorCode() int64 {
  2908. if x != nil {
  2909. return x.ErrorCode
  2910. }
  2911. return 0
  2912. }
  2913. func (x *WorkDesktopMenuInfoResp) GetErrorMsg() string {
  2914. if x != nil {
  2915. return x.ErrorMsg
  2916. }
  2917. return ""
  2918. }
  2919. func (x *WorkDesktopMenuInfoResp) GetData() *MenuData {
  2920. if x != nil {
  2921. return x.Data
  2922. }
  2923. return nil
  2924. }
  2925. type MenuData struct {
  2926. state protoimpl.MessageState
  2927. sizeCache protoimpl.SizeCache
  2928. unknownFields protoimpl.UnknownFields
  2929. MenuType string `protobuf:"bytes,1,opt,name=menuType,proto3" json:"menuType,omitempty"`
  2930. MenuList []*MenuList `protobuf:"bytes,2,rep,name=menuList,proto3" json:"menuList,omitempty"`
  2931. }
  2932. func (x *MenuData) Reset() {
  2933. *x = MenuData{}
  2934. if protoimpl.UnsafeEnabled {
  2935. mi := &file_userCenter_proto_msgTypes[43]
  2936. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2937. ms.StoreMessageInfo(mi)
  2938. }
  2939. }
  2940. func (x *MenuData) String() string {
  2941. return protoimpl.X.MessageStringOf(x)
  2942. }
  2943. func (*MenuData) ProtoMessage() {}
  2944. func (x *MenuData) ProtoReflect() protoreflect.Message {
  2945. mi := &file_userCenter_proto_msgTypes[43]
  2946. if protoimpl.UnsafeEnabled && x != nil {
  2947. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2948. if ms.LoadMessageInfo() == nil {
  2949. ms.StoreMessageInfo(mi)
  2950. }
  2951. return ms
  2952. }
  2953. return mi.MessageOf(x)
  2954. }
  2955. // Deprecated: Use MenuData.ProtoReflect.Descriptor instead.
  2956. func (*MenuData) Descriptor() ([]byte, []int) {
  2957. return file_userCenter_proto_rawDescGZIP(), []int{43}
  2958. }
  2959. func (x *MenuData) GetMenuType() string {
  2960. if x != nil {
  2961. return x.MenuType
  2962. }
  2963. return ""
  2964. }
  2965. func (x *MenuData) GetMenuList() []*MenuList {
  2966. if x != nil {
  2967. return x.MenuList
  2968. }
  2969. return nil
  2970. }
  2971. type MenuList struct {
  2972. state protoimpl.MessageState
  2973. sizeCache protoimpl.SizeCache
  2974. unknownFields protoimpl.UnknownFields
  2975. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  2976. Icon string `protobuf:"bytes,2,opt,name=icon,proto3" json:"icon,omitempty"`
  2977. Url string `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
  2978. Usable bool `protobuf:"varint,4,opt,name=usable,proto3" json:"usable,omitempty"`
  2979. Id string `protobuf:"bytes,5,opt,name=id,proto3" json:"id,omitempty"`
  2980. AppType string `protobuf:"bytes,6,opt,name=appType,proto3" json:"appType,omitempty"`
  2981. OpenType string `protobuf:"bytes,7,opt,name=openType,proto3" json:"openType,omitempty"`
  2982. TipInfo *TipInfo `protobuf:"bytes,8,opt,name=tipInfo,proto3" json:"tipInfo,omitempty"`
  2983. Child []*SecondLevelMenu `protobuf:"bytes,9,rep,name=child,proto3" json:"child,omitempty"`
  2984. Match []string `protobuf:"bytes,10,rep,name=match,proto3" json:"match,omitempty"`
  2985. }
  2986. func (x *MenuList) Reset() {
  2987. *x = MenuList{}
  2988. if protoimpl.UnsafeEnabled {
  2989. mi := &file_userCenter_proto_msgTypes[44]
  2990. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2991. ms.StoreMessageInfo(mi)
  2992. }
  2993. }
  2994. func (x *MenuList) String() string {
  2995. return protoimpl.X.MessageStringOf(x)
  2996. }
  2997. func (*MenuList) ProtoMessage() {}
  2998. func (x *MenuList) ProtoReflect() protoreflect.Message {
  2999. mi := &file_userCenter_proto_msgTypes[44]
  3000. if protoimpl.UnsafeEnabled && x != nil {
  3001. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3002. if ms.LoadMessageInfo() == nil {
  3003. ms.StoreMessageInfo(mi)
  3004. }
  3005. return ms
  3006. }
  3007. return mi.MessageOf(x)
  3008. }
  3009. // Deprecated: Use MenuList.ProtoReflect.Descriptor instead.
  3010. func (*MenuList) Descriptor() ([]byte, []int) {
  3011. return file_userCenter_proto_rawDescGZIP(), []int{44}
  3012. }
  3013. func (x *MenuList) GetName() string {
  3014. if x != nil {
  3015. return x.Name
  3016. }
  3017. return ""
  3018. }
  3019. func (x *MenuList) GetIcon() string {
  3020. if x != nil {
  3021. return x.Icon
  3022. }
  3023. return ""
  3024. }
  3025. func (x *MenuList) GetUrl() string {
  3026. if x != nil {
  3027. return x.Url
  3028. }
  3029. return ""
  3030. }
  3031. func (x *MenuList) GetUsable() bool {
  3032. if x != nil {
  3033. return x.Usable
  3034. }
  3035. return false
  3036. }
  3037. func (x *MenuList) GetId() string {
  3038. if x != nil {
  3039. return x.Id
  3040. }
  3041. return ""
  3042. }
  3043. func (x *MenuList) GetAppType() string {
  3044. if x != nil {
  3045. return x.AppType
  3046. }
  3047. return ""
  3048. }
  3049. func (x *MenuList) GetOpenType() string {
  3050. if x != nil {
  3051. return x.OpenType
  3052. }
  3053. return ""
  3054. }
  3055. func (x *MenuList) GetTipInfo() *TipInfo {
  3056. if x != nil {
  3057. return x.TipInfo
  3058. }
  3059. return nil
  3060. }
  3061. func (x *MenuList) GetChild() []*SecondLevelMenu {
  3062. if x != nil {
  3063. return x.Child
  3064. }
  3065. return nil
  3066. }
  3067. func (x *MenuList) GetMatch() []string {
  3068. if x != nil {
  3069. return x.Match
  3070. }
  3071. return nil
  3072. }
  3073. type SecondLevelMenu struct {
  3074. state protoimpl.MessageState
  3075. sizeCache protoimpl.SizeCache
  3076. unknownFields protoimpl.UnknownFields
  3077. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  3078. Icon string `protobuf:"bytes,2,opt,name=icon,proto3" json:"icon,omitempty"`
  3079. Url string `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
  3080. Usable bool `protobuf:"varint,4,opt,name=usable,proto3" json:"usable,omitempty"`
  3081. Id string `protobuf:"bytes,5,opt,name=id,proto3" json:"id,omitempty"`
  3082. AppType string `protobuf:"bytes,6,opt,name=appType,proto3" json:"appType,omitempty"`
  3083. OpenType string `protobuf:"bytes,7,opt,name=openType,proto3" json:"openType,omitempty"`
  3084. TipInfo *TipInfo `protobuf:"bytes,8,opt,name=tipInfo,proto3" json:"tipInfo,omitempty"`
  3085. Child []*ThreeLevelMenu `protobuf:"bytes,9,rep,name=child,proto3" json:"child,omitempty"`
  3086. Match []string `protobuf:"bytes,10,rep,name=match,proto3" json:"match,omitempty"`
  3087. }
  3088. func (x *SecondLevelMenu) Reset() {
  3089. *x = SecondLevelMenu{}
  3090. if protoimpl.UnsafeEnabled {
  3091. mi := &file_userCenter_proto_msgTypes[45]
  3092. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3093. ms.StoreMessageInfo(mi)
  3094. }
  3095. }
  3096. func (x *SecondLevelMenu) String() string {
  3097. return protoimpl.X.MessageStringOf(x)
  3098. }
  3099. func (*SecondLevelMenu) ProtoMessage() {}
  3100. func (x *SecondLevelMenu) ProtoReflect() protoreflect.Message {
  3101. mi := &file_userCenter_proto_msgTypes[45]
  3102. if protoimpl.UnsafeEnabled && x != nil {
  3103. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3104. if ms.LoadMessageInfo() == nil {
  3105. ms.StoreMessageInfo(mi)
  3106. }
  3107. return ms
  3108. }
  3109. return mi.MessageOf(x)
  3110. }
  3111. // Deprecated: Use SecondLevelMenu.ProtoReflect.Descriptor instead.
  3112. func (*SecondLevelMenu) Descriptor() ([]byte, []int) {
  3113. return file_userCenter_proto_rawDescGZIP(), []int{45}
  3114. }
  3115. func (x *SecondLevelMenu) GetName() string {
  3116. if x != nil {
  3117. return x.Name
  3118. }
  3119. return ""
  3120. }
  3121. func (x *SecondLevelMenu) GetIcon() string {
  3122. if x != nil {
  3123. return x.Icon
  3124. }
  3125. return ""
  3126. }
  3127. func (x *SecondLevelMenu) GetUrl() string {
  3128. if x != nil {
  3129. return x.Url
  3130. }
  3131. return ""
  3132. }
  3133. func (x *SecondLevelMenu) GetUsable() bool {
  3134. if x != nil {
  3135. return x.Usable
  3136. }
  3137. return false
  3138. }
  3139. func (x *SecondLevelMenu) GetId() string {
  3140. if x != nil {
  3141. return x.Id
  3142. }
  3143. return ""
  3144. }
  3145. func (x *SecondLevelMenu) GetAppType() string {
  3146. if x != nil {
  3147. return x.AppType
  3148. }
  3149. return ""
  3150. }
  3151. func (x *SecondLevelMenu) GetOpenType() string {
  3152. if x != nil {
  3153. return x.OpenType
  3154. }
  3155. return ""
  3156. }
  3157. func (x *SecondLevelMenu) GetTipInfo() *TipInfo {
  3158. if x != nil {
  3159. return x.TipInfo
  3160. }
  3161. return nil
  3162. }
  3163. func (x *SecondLevelMenu) GetChild() []*ThreeLevelMenu {
  3164. if x != nil {
  3165. return x.Child
  3166. }
  3167. return nil
  3168. }
  3169. func (x *SecondLevelMenu) GetMatch() []string {
  3170. if x != nil {
  3171. return x.Match
  3172. }
  3173. return nil
  3174. }
  3175. type ThreeLevelMenu struct {
  3176. state protoimpl.MessageState
  3177. sizeCache protoimpl.SizeCache
  3178. unknownFields protoimpl.UnknownFields
  3179. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  3180. Icon string `protobuf:"bytes,2,opt,name=icon,proto3" json:"icon,omitempty"`
  3181. Url string `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
  3182. Usable bool `protobuf:"varint,4,opt,name=usable,proto3" json:"usable,omitempty"`
  3183. Id string `protobuf:"bytes,5,opt,name=id,proto3" json:"id,omitempty"`
  3184. AppType string `protobuf:"bytes,6,opt,name=appType,proto3" json:"appType,omitempty"`
  3185. OpenType string `protobuf:"bytes,7,opt,name=openType,proto3" json:"openType,omitempty"`
  3186. TipInfo *TipInfo `protobuf:"bytes,8,opt,name=tipInfo,proto3" json:"tipInfo,omitempty"`
  3187. Match []string `protobuf:"bytes,10,rep,name=match,proto3" json:"match,omitempty"`
  3188. GroupName string `protobuf:"bytes,11,opt,name=groupName,proto3" json:"groupName,omitempty"`
  3189. }
  3190. func (x *ThreeLevelMenu) Reset() {
  3191. *x = ThreeLevelMenu{}
  3192. if protoimpl.UnsafeEnabled {
  3193. mi := &file_userCenter_proto_msgTypes[46]
  3194. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3195. ms.StoreMessageInfo(mi)
  3196. }
  3197. }
  3198. func (x *ThreeLevelMenu) String() string {
  3199. return protoimpl.X.MessageStringOf(x)
  3200. }
  3201. func (*ThreeLevelMenu) ProtoMessage() {}
  3202. func (x *ThreeLevelMenu) ProtoReflect() protoreflect.Message {
  3203. mi := &file_userCenter_proto_msgTypes[46]
  3204. if protoimpl.UnsafeEnabled && x != nil {
  3205. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3206. if ms.LoadMessageInfo() == nil {
  3207. ms.StoreMessageInfo(mi)
  3208. }
  3209. return ms
  3210. }
  3211. return mi.MessageOf(x)
  3212. }
  3213. // Deprecated: Use ThreeLevelMenu.ProtoReflect.Descriptor instead.
  3214. func (*ThreeLevelMenu) Descriptor() ([]byte, []int) {
  3215. return file_userCenter_proto_rawDescGZIP(), []int{46}
  3216. }
  3217. func (x *ThreeLevelMenu) GetName() string {
  3218. if x != nil {
  3219. return x.Name
  3220. }
  3221. return ""
  3222. }
  3223. func (x *ThreeLevelMenu) GetIcon() string {
  3224. if x != nil {
  3225. return x.Icon
  3226. }
  3227. return ""
  3228. }
  3229. func (x *ThreeLevelMenu) GetUrl() string {
  3230. if x != nil {
  3231. return x.Url
  3232. }
  3233. return ""
  3234. }
  3235. func (x *ThreeLevelMenu) GetUsable() bool {
  3236. if x != nil {
  3237. return x.Usable
  3238. }
  3239. return false
  3240. }
  3241. func (x *ThreeLevelMenu) GetId() string {
  3242. if x != nil {
  3243. return x.Id
  3244. }
  3245. return ""
  3246. }
  3247. func (x *ThreeLevelMenu) GetAppType() string {
  3248. if x != nil {
  3249. return x.AppType
  3250. }
  3251. return ""
  3252. }
  3253. func (x *ThreeLevelMenu) GetOpenType() string {
  3254. if x != nil {
  3255. return x.OpenType
  3256. }
  3257. return ""
  3258. }
  3259. func (x *ThreeLevelMenu) GetTipInfo() *TipInfo {
  3260. if x != nil {
  3261. return x.TipInfo
  3262. }
  3263. return nil
  3264. }
  3265. func (x *ThreeLevelMenu) GetMatch() []string {
  3266. if x != nil {
  3267. return x.Match
  3268. }
  3269. return nil
  3270. }
  3271. func (x *ThreeLevelMenu) GetGroupName() string {
  3272. if x != nil {
  3273. return x.GroupName
  3274. }
  3275. return ""
  3276. }
  3277. type TipInfo struct {
  3278. state protoimpl.MessageState
  3279. sizeCache protoimpl.SizeCache
  3280. unknownFields protoimpl.UnknownFields
  3281. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  3282. Content string `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
  3283. ConfirmUrl string `protobuf:"bytes,3,opt,name=confirmUrl,proto3" json:"confirmUrl,omitempty"`
  3284. ConfirmText string `protobuf:"bytes,4,opt,name=confirmText,proto3" json:"confirmText,omitempty"`
  3285. IsShowCancel bool `protobuf:"varint,5,opt,name=isShowCancel,proto3" json:"isShowCancel,omitempty"`
  3286. AppType string `protobuf:"bytes,6,opt,name=appType,proto3" json:"appType,omitempty"`
  3287. OpenType string `protobuf:"bytes,7,opt,name=openType,proto3" json:"openType,omitempty"`
  3288. }
  3289. func (x *TipInfo) Reset() {
  3290. *x = TipInfo{}
  3291. if protoimpl.UnsafeEnabled {
  3292. mi := &file_userCenter_proto_msgTypes[47]
  3293. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3294. ms.StoreMessageInfo(mi)
  3295. }
  3296. }
  3297. func (x *TipInfo) String() string {
  3298. return protoimpl.X.MessageStringOf(x)
  3299. }
  3300. func (*TipInfo) ProtoMessage() {}
  3301. func (x *TipInfo) ProtoReflect() protoreflect.Message {
  3302. mi := &file_userCenter_proto_msgTypes[47]
  3303. if protoimpl.UnsafeEnabled && x != nil {
  3304. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3305. if ms.LoadMessageInfo() == nil {
  3306. ms.StoreMessageInfo(mi)
  3307. }
  3308. return ms
  3309. }
  3310. return mi.MessageOf(x)
  3311. }
  3312. // Deprecated: Use TipInfo.ProtoReflect.Descriptor instead.
  3313. func (*TipInfo) Descriptor() ([]byte, []int) {
  3314. return file_userCenter_proto_rawDescGZIP(), []int{47}
  3315. }
  3316. func (x *TipInfo) GetTitle() string {
  3317. if x != nil {
  3318. return x.Title
  3319. }
  3320. return ""
  3321. }
  3322. func (x *TipInfo) GetContent() string {
  3323. if x != nil {
  3324. return x.Content
  3325. }
  3326. return ""
  3327. }
  3328. func (x *TipInfo) GetConfirmUrl() string {
  3329. if x != nil {
  3330. return x.ConfirmUrl
  3331. }
  3332. return ""
  3333. }
  3334. func (x *TipInfo) GetConfirmText() string {
  3335. if x != nil {
  3336. return x.ConfirmText
  3337. }
  3338. return ""
  3339. }
  3340. func (x *TipInfo) GetIsShowCancel() bool {
  3341. if x != nil {
  3342. return x.IsShowCancel
  3343. }
  3344. return false
  3345. }
  3346. func (x *TipInfo) GetAppType() string {
  3347. if x != nil {
  3348. return x.AppType
  3349. }
  3350. return ""
  3351. }
  3352. func (x *TipInfo) GetOpenType() string {
  3353. if x != nil {
  3354. return x.OpenType
  3355. }
  3356. return ""
  3357. }
  3358. //工作桌面 菜单选择类型 全部/可用
  3359. //工作桌面 常用功能更新
  3360. type WorkDesktopComprehensiveReq struct {
  3361. state protoimpl.MessageState
  3362. sizeCache protoimpl.SizeCache
  3363. unknownFields protoimpl.UnknownFields
  3364. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
  3365. AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"`
  3366. Platform string `protobuf:"bytes,3,opt,name=platform,proto3" json:"platform,omitempty"`
  3367. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone,omitempty"`
  3368. ActionMode string `protobuf:"bytes,5,opt,name=actionMode,proto3" json:"actionMode,omitempty"`
  3369. MenuMode string `protobuf:"bytes,6,opt,name=menuMode,proto3" json:"menuMode,omitempty"`
  3370. MenuIds string `protobuf:"bytes,7,opt,name=menuIds,proto3" json:"menuIds,omitempty"`
  3371. NewUserId string `protobuf:"bytes,8,opt,name=newUserId,proto3" json:"newUserId,omitempty"`
  3372. EntId string `protobuf:"bytes,9,opt,name=entId,proto3" json:"entId,omitempty"`
  3373. EntUserId string `protobuf:"bytes,10,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  3374. AccountId string `protobuf:"bytes,11,opt,name=accountId,proto3" json:"accountId,omitempty"`
  3375. PositionType string `protobuf:"bytes,12,opt,name=positionType,proto3" json:"positionType,omitempty"`
  3376. PositionId string `protobuf:"bytes,13,opt,name=positionId,proto3" json:"positionId,omitempty"`
  3377. IntranetBool bool `protobuf:"varint,14,opt,name=intranetBool,proto3" json:"intranetBool,omitempty"`
  3378. MgoUserId string `protobuf:"bytes,15,opt,name=mgoUserId,proto3" json:"mgoUserId,omitempty"`
  3379. EntAccountId string `protobuf:"bytes,16,opt,name=entAccountId,proto3" json:"entAccountId,omitempty"`
  3380. }
  3381. func (x *WorkDesktopComprehensiveReq) Reset() {
  3382. *x = WorkDesktopComprehensiveReq{}
  3383. if protoimpl.UnsafeEnabled {
  3384. mi := &file_userCenter_proto_msgTypes[48]
  3385. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3386. ms.StoreMessageInfo(mi)
  3387. }
  3388. }
  3389. func (x *WorkDesktopComprehensiveReq) String() string {
  3390. return protoimpl.X.MessageStringOf(x)
  3391. }
  3392. func (*WorkDesktopComprehensiveReq) ProtoMessage() {}
  3393. func (x *WorkDesktopComprehensiveReq) ProtoReflect() protoreflect.Message {
  3394. mi := &file_userCenter_proto_msgTypes[48]
  3395. if protoimpl.UnsafeEnabled && x != nil {
  3396. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3397. if ms.LoadMessageInfo() == nil {
  3398. ms.StoreMessageInfo(mi)
  3399. }
  3400. return ms
  3401. }
  3402. return mi.MessageOf(x)
  3403. }
  3404. // Deprecated: Use WorkDesktopComprehensiveReq.ProtoReflect.Descriptor instead.
  3405. func (*WorkDesktopComprehensiveReq) Descriptor() ([]byte, []int) {
  3406. return file_userCenter_proto_rawDescGZIP(), []int{48}
  3407. }
  3408. func (x *WorkDesktopComprehensiveReq) GetUserId() string {
  3409. if x != nil {
  3410. return x.UserId
  3411. }
  3412. return ""
  3413. }
  3414. func (x *WorkDesktopComprehensiveReq) GetAppId() string {
  3415. if x != nil {
  3416. return x.AppId
  3417. }
  3418. return ""
  3419. }
  3420. func (x *WorkDesktopComprehensiveReq) GetPlatform() string {
  3421. if x != nil {
  3422. return x.Platform
  3423. }
  3424. return ""
  3425. }
  3426. func (x *WorkDesktopComprehensiveReq) GetPhone() string {
  3427. if x != nil {
  3428. return x.Phone
  3429. }
  3430. return ""
  3431. }
  3432. func (x *WorkDesktopComprehensiveReq) GetActionMode() string {
  3433. if x != nil {
  3434. return x.ActionMode
  3435. }
  3436. return ""
  3437. }
  3438. func (x *WorkDesktopComprehensiveReq) GetMenuMode() string {
  3439. if x != nil {
  3440. return x.MenuMode
  3441. }
  3442. return ""
  3443. }
  3444. func (x *WorkDesktopComprehensiveReq) GetMenuIds() string {
  3445. if x != nil {
  3446. return x.MenuIds
  3447. }
  3448. return ""
  3449. }
  3450. func (x *WorkDesktopComprehensiveReq) GetNewUserId() string {
  3451. if x != nil {
  3452. return x.NewUserId
  3453. }
  3454. return ""
  3455. }
  3456. func (x *WorkDesktopComprehensiveReq) GetEntId() string {
  3457. if x != nil {
  3458. return x.EntId
  3459. }
  3460. return ""
  3461. }
  3462. func (x *WorkDesktopComprehensiveReq) GetEntUserId() string {
  3463. if x != nil {
  3464. return x.EntUserId
  3465. }
  3466. return ""
  3467. }
  3468. func (x *WorkDesktopComprehensiveReq) GetAccountId() string {
  3469. if x != nil {
  3470. return x.AccountId
  3471. }
  3472. return ""
  3473. }
  3474. func (x *WorkDesktopComprehensiveReq) GetPositionType() string {
  3475. if x != nil {
  3476. return x.PositionType
  3477. }
  3478. return ""
  3479. }
  3480. func (x *WorkDesktopComprehensiveReq) GetPositionId() string {
  3481. if x != nil {
  3482. return x.PositionId
  3483. }
  3484. return ""
  3485. }
  3486. func (x *WorkDesktopComprehensiveReq) GetIntranetBool() bool {
  3487. if x != nil {
  3488. return x.IntranetBool
  3489. }
  3490. return false
  3491. }
  3492. func (x *WorkDesktopComprehensiveReq) GetMgoUserId() string {
  3493. if x != nil {
  3494. return x.MgoUserId
  3495. }
  3496. return ""
  3497. }
  3498. func (x *WorkDesktopComprehensiveReq) GetEntAccountId() string {
  3499. if x != nil {
  3500. return x.EntAccountId
  3501. }
  3502. return ""
  3503. }
  3504. //工作桌面 综合功能-返回数据
  3505. type WorkDesktopComprehensiveResp struct {
  3506. state protoimpl.MessageState
  3507. sizeCache protoimpl.SizeCache
  3508. unknownFields protoimpl.UnknownFields
  3509. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  3510. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  3511. Data []*ThreeLevelMenu `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  3512. }
  3513. func (x *WorkDesktopComprehensiveResp) Reset() {
  3514. *x = WorkDesktopComprehensiveResp{}
  3515. if protoimpl.UnsafeEnabled {
  3516. mi := &file_userCenter_proto_msgTypes[49]
  3517. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3518. ms.StoreMessageInfo(mi)
  3519. }
  3520. }
  3521. func (x *WorkDesktopComprehensiveResp) String() string {
  3522. return protoimpl.X.MessageStringOf(x)
  3523. }
  3524. func (*WorkDesktopComprehensiveResp) ProtoMessage() {}
  3525. func (x *WorkDesktopComprehensiveResp) ProtoReflect() protoreflect.Message {
  3526. mi := &file_userCenter_proto_msgTypes[49]
  3527. if protoimpl.UnsafeEnabled && x != nil {
  3528. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3529. if ms.LoadMessageInfo() == nil {
  3530. ms.StoreMessageInfo(mi)
  3531. }
  3532. return ms
  3533. }
  3534. return mi.MessageOf(x)
  3535. }
  3536. // Deprecated: Use WorkDesktopComprehensiveResp.ProtoReflect.Descriptor instead.
  3537. func (*WorkDesktopComprehensiveResp) Descriptor() ([]byte, []int) {
  3538. return file_userCenter_proto_rawDescGZIP(), []int{49}
  3539. }
  3540. func (x *WorkDesktopComprehensiveResp) GetErrorCode() int64 {
  3541. if x != nil {
  3542. return x.ErrorCode
  3543. }
  3544. return 0
  3545. }
  3546. func (x *WorkDesktopComprehensiveResp) GetErrorMsg() string {
  3547. if x != nil {
  3548. return x.ErrorMsg
  3549. }
  3550. return ""
  3551. }
  3552. func (x *WorkDesktopComprehensiveResp) GetData() []*ThreeLevelMenu {
  3553. if x != nil {
  3554. return x.Data
  3555. }
  3556. return nil
  3557. }
  3558. //清除用户功能相关内存信息
  3559. type WorkDesktopClearUserInfoReq struct {
  3560. state protoimpl.MessageState
  3561. sizeCache protoimpl.SizeCache
  3562. unknownFields protoimpl.UnknownFields
  3563. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
  3564. AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"`
  3565. PositionId string `protobuf:"bytes,3,opt,name=positionId,proto3" json:"positionId,omitempty"`
  3566. Platform string `protobuf:"bytes,4,opt,name=platform,proto3" json:"platform,omitempty"`
  3567. }
  3568. func (x *WorkDesktopClearUserInfoReq) Reset() {
  3569. *x = WorkDesktopClearUserInfoReq{}
  3570. if protoimpl.UnsafeEnabled {
  3571. mi := &file_userCenter_proto_msgTypes[50]
  3572. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3573. ms.StoreMessageInfo(mi)
  3574. }
  3575. }
  3576. func (x *WorkDesktopClearUserInfoReq) String() string {
  3577. return protoimpl.X.MessageStringOf(x)
  3578. }
  3579. func (*WorkDesktopClearUserInfoReq) ProtoMessage() {}
  3580. func (x *WorkDesktopClearUserInfoReq) ProtoReflect() protoreflect.Message {
  3581. mi := &file_userCenter_proto_msgTypes[50]
  3582. if protoimpl.UnsafeEnabled && x != nil {
  3583. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3584. if ms.LoadMessageInfo() == nil {
  3585. ms.StoreMessageInfo(mi)
  3586. }
  3587. return ms
  3588. }
  3589. return mi.MessageOf(x)
  3590. }
  3591. // Deprecated: Use WorkDesktopClearUserInfoReq.ProtoReflect.Descriptor instead.
  3592. func (*WorkDesktopClearUserInfoReq) Descriptor() ([]byte, []int) {
  3593. return file_userCenter_proto_rawDescGZIP(), []int{50}
  3594. }
  3595. func (x *WorkDesktopClearUserInfoReq) GetUserId() string {
  3596. if x != nil {
  3597. return x.UserId
  3598. }
  3599. return ""
  3600. }
  3601. func (x *WorkDesktopClearUserInfoReq) GetAppId() string {
  3602. if x != nil {
  3603. return x.AppId
  3604. }
  3605. return ""
  3606. }
  3607. func (x *WorkDesktopClearUserInfoReq) GetPositionId() string {
  3608. if x != nil {
  3609. return x.PositionId
  3610. }
  3611. return ""
  3612. }
  3613. func (x *WorkDesktopClearUserInfoReq) GetPlatform() string {
  3614. if x != nil {
  3615. return x.Platform
  3616. }
  3617. return ""
  3618. }
  3619. //清除用户菜单缓存结果
  3620. type WorkDesktopClearUserInfoResp struct {
  3621. state protoimpl.MessageState
  3622. sizeCache protoimpl.SizeCache
  3623. unknownFields protoimpl.UnknownFields
  3624. B bool `protobuf:"varint,1,opt,name=b,proto3" json:"b,omitempty"`
  3625. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  3626. }
  3627. func (x *WorkDesktopClearUserInfoResp) Reset() {
  3628. *x = WorkDesktopClearUserInfoResp{}
  3629. if protoimpl.UnsafeEnabled {
  3630. mi := &file_userCenter_proto_msgTypes[51]
  3631. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3632. ms.StoreMessageInfo(mi)
  3633. }
  3634. }
  3635. func (x *WorkDesktopClearUserInfoResp) String() string {
  3636. return protoimpl.X.MessageStringOf(x)
  3637. }
  3638. func (*WorkDesktopClearUserInfoResp) ProtoMessage() {}
  3639. func (x *WorkDesktopClearUserInfoResp) ProtoReflect() protoreflect.Message {
  3640. mi := &file_userCenter_proto_msgTypes[51]
  3641. if protoimpl.UnsafeEnabled && x != nil {
  3642. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3643. if ms.LoadMessageInfo() == nil {
  3644. ms.StoreMessageInfo(mi)
  3645. }
  3646. return ms
  3647. }
  3648. return mi.MessageOf(x)
  3649. }
  3650. // Deprecated: Use WorkDesktopClearUserInfoResp.ProtoReflect.Descriptor instead.
  3651. func (*WorkDesktopClearUserInfoResp) Descriptor() ([]byte, []int) {
  3652. return file_userCenter_proto_rawDescGZIP(), []int{51}
  3653. }
  3654. func (x *WorkDesktopClearUserInfoResp) GetB() bool {
  3655. if x != nil {
  3656. return x.B
  3657. }
  3658. return false
  3659. }
  3660. func (x *WorkDesktopClearUserInfoResp) GetMsg() string {
  3661. if x != nil {
  3662. return x.Msg
  3663. }
  3664. return ""
  3665. }
  3666. //
  3667. type IdentityReq struct {
  3668. state protoimpl.MessageState
  3669. sizeCache protoimpl.SizeCache
  3670. unknownFields protoimpl.UnknownFields
  3671. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  3672. }
  3673. func (x *IdentityReq) Reset() {
  3674. *x = IdentityReq{}
  3675. if protoimpl.UnsafeEnabled {
  3676. mi := &file_userCenter_proto_msgTypes[52]
  3677. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3678. ms.StoreMessageInfo(mi)
  3679. }
  3680. }
  3681. func (x *IdentityReq) String() string {
  3682. return protoimpl.X.MessageStringOf(x)
  3683. }
  3684. func (*IdentityReq) ProtoMessage() {}
  3685. func (x *IdentityReq) ProtoReflect() protoreflect.Message {
  3686. mi := &file_userCenter_proto_msgTypes[52]
  3687. if protoimpl.UnsafeEnabled && x != nil {
  3688. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3689. if ms.LoadMessageInfo() == nil {
  3690. ms.StoreMessageInfo(mi)
  3691. }
  3692. return ms
  3693. }
  3694. return mi.MessageOf(x)
  3695. }
  3696. // Deprecated: Use IdentityReq.ProtoReflect.Descriptor instead.
  3697. func (*IdentityReq) Descriptor() ([]byte, []int) {
  3698. return file_userCenter_proto_rawDescGZIP(), []int{52}
  3699. }
  3700. func (x *IdentityReq) GetId() int64 {
  3701. if x != nil {
  3702. return x.Id
  3703. }
  3704. return 0
  3705. }
  3706. type Identity struct {
  3707. state protoimpl.MessageState
  3708. sizeCache protoimpl.SizeCache
  3709. unknownFields protoimpl.UnknownFields
  3710. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  3711. PersonId int64 `protobuf:"varint,2,opt,name=personId,proto3" json:"personId,omitempty"`
  3712. UserName string `protobuf:"bytes,3,opt,name=userName,proto3" json:"userName,omitempty"`
  3713. AccountId int64 `protobuf:"varint,4,opt,name=accountId,proto3" json:"accountId,omitempty"`
  3714. EntAccountId int64 `protobuf:"varint,5,opt,name=entAccountId,proto3" json:"entAccountId,omitempty"`
  3715. PositionId int64 `protobuf:"varint,6,opt,name=positionId,proto3" json:"positionId,omitempty"`
  3716. PositionType int64 `protobuf:"varint,7,opt,name=positionType,proto3" json:"positionType,omitempty"`
  3717. EntId int64 `protobuf:"varint,8,opt,name=entId,proto3" json:"entId,omitempty"`
  3718. EntUserId int64 `protobuf:"varint,9,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  3719. EntUserName string `protobuf:"bytes,10,opt,name=entUserName,proto3" json:"entUserName,omitempty"`
  3720. UserId int64 `protobuf:"varint,11,opt,name=userId,proto3" json:"userId,omitempty"`
  3721. }
  3722. func (x *Identity) Reset() {
  3723. *x = Identity{}
  3724. if protoimpl.UnsafeEnabled {
  3725. mi := &file_userCenter_proto_msgTypes[53]
  3726. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3727. ms.StoreMessageInfo(mi)
  3728. }
  3729. }
  3730. func (x *Identity) String() string {
  3731. return protoimpl.X.MessageStringOf(x)
  3732. }
  3733. func (*Identity) ProtoMessage() {}
  3734. func (x *Identity) ProtoReflect() protoreflect.Message {
  3735. mi := &file_userCenter_proto_msgTypes[53]
  3736. if protoimpl.UnsafeEnabled && x != nil {
  3737. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3738. if ms.LoadMessageInfo() == nil {
  3739. ms.StoreMessageInfo(mi)
  3740. }
  3741. return ms
  3742. }
  3743. return mi.MessageOf(x)
  3744. }
  3745. // Deprecated: Use Identity.ProtoReflect.Descriptor instead.
  3746. func (*Identity) Descriptor() ([]byte, []int) {
  3747. return file_userCenter_proto_rawDescGZIP(), []int{53}
  3748. }
  3749. func (x *Identity) GetName() string {
  3750. if x != nil {
  3751. return x.Name
  3752. }
  3753. return ""
  3754. }
  3755. func (x *Identity) GetPersonId() int64 {
  3756. if x != nil {
  3757. return x.PersonId
  3758. }
  3759. return 0
  3760. }
  3761. func (x *Identity) GetUserName() string {
  3762. if x != nil {
  3763. return x.UserName
  3764. }
  3765. return ""
  3766. }
  3767. func (x *Identity) GetAccountId() int64 {
  3768. if x != nil {
  3769. return x.AccountId
  3770. }
  3771. return 0
  3772. }
  3773. func (x *Identity) GetEntAccountId() int64 {
  3774. if x != nil {
  3775. return x.EntAccountId
  3776. }
  3777. return 0
  3778. }
  3779. func (x *Identity) GetPositionId() int64 {
  3780. if x != nil {
  3781. return x.PositionId
  3782. }
  3783. return 0
  3784. }
  3785. func (x *Identity) GetPositionType() int64 {
  3786. if x != nil {
  3787. return x.PositionType
  3788. }
  3789. return 0
  3790. }
  3791. func (x *Identity) GetEntId() int64 {
  3792. if x != nil {
  3793. return x.EntId
  3794. }
  3795. return 0
  3796. }
  3797. func (x *Identity) GetEntUserId() int64 {
  3798. if x != nil {
  3799. return x.EntUserId
  3800. }
  3801. return 0
  3802. }
  3803. func (x *Identity) GetEntUserName() string {
  3804. if x != nil {
  3805. return x.EntUserName
  3806. }
  3807. return ""
  3808. }
  3809. func (x *Identity) GetUserId() int64 {
  3810. if x != nil {
  3811. return x.UserId
  3812. }
  3813. return 0
  3814. }
  3815. type IdentityResp struct {
  3816. state protoimpl.MessageState
  3817. sizeCache protoimpl.SizeCache
  3818. unknownFields protoimpl.UnknownFields
  3819. Identitys []*Identity `protobuf:"bytes,1,rep,name=identitys,proto3" json:"identitys,omitempty"`
  3820. }
  3821. func (x *IdentityResp) Reset() {
  3822. *x = IdentityResp{}
  3823. if protoimpl.UnsafeEnabled {
  3824. mi := &file_userCenter_proto_msgTypes[54]
  3825. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3826. ms.StoreMessageInfo(mi)
  3827. }
  3828. }
  3829. func (x *IdentityResp) String() string {
  3830. return protoimpl.X.MessageStringOf(x)
  3831. }
  3832. func (*IdentityResp) ProtoMessage() {}
  3833. func (x *IdentityResp) ProtoReflect() protoreflect.Message {
  3834. mi := &file_userCenter_proto_msgTypes[54]
  3835. if protoimpl.UnsafeEnabled && x != nil {
  3836. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3837. if ms.LoadMessageInfo() == nil {
  3838. ms.StoreMessageInfo(mi)
  3839. }
  3840. return ms
  3841. }
  3842. return mi.MessageOf(x)
  3843. }
  3844. // Deprecated: Use IdentityResp.ProtoReflect.Descriptor instead.
  3845. func (*IdentityResp) Descriptor() ([]byte, []int) {
  3846. return file_userCenter_proto_rawDescGZIP(), []int{54}
  3847. }
  3848. func (x *IdentityResp) GetIdentitys() []*Identity {
  3849. if x != nil {
  3850. return x.Identitys
  3851. }
  3852. return nil
  3853. }
  3854. type UserIdentityReq struct {
  3855. state protoimpl.MessageState
  3856. sizeCache protoimpl.SizeCache
  3857. unknownFields protoimpl.UnknownFields
  3858. AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
  3859. BaseUserId int64 `protobuf:"varint,2,opt,name=baseUserId,proto3" json:"baseUserId,omitempty"`
  3860. EntId int64 `protobuf:"varint,3,opt,name=entId,proto3" json:"entId,omitempty"`
  3861. }
  3862. func (x *UserIdentityReq) Reset() {
  3863. *x = UserIdentityReq{}
  3864. if protoimpl.UnsafeEnabled {
  3865. mi := &file_userCenter_proto_msgTypes[55]
  3866. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3867. ms.StoreMessageInfo(mi)
  3868. }
  3869. }
  3870. func (x *UserIdentityReq) String() string {
  3871. return protoimpl.X.MessageStringOf(x)
  3872. }
  3873. func (*UserIdentityReq) ProtoMessage() {}
  3874. func (x *UserIdentityReq) ProtoReflect() protoreflect.Message {
  3875. mi := &file_userCenter_proto_msgTypes[55]
  3876. if protoimpl.UnsafeEnabled && x != nil {
  3877. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3878. if ms.LoadMessageInfo() == nil {
  3879. ms.StoreMessageInfo(mi)
  3880. }
  3881. return ms
  3882. }
  3883. return mi.MessageOf(x)
  3884. }
  3885. // Deprecated: Use UserIdentityReq.ProtoReflect.Descriptor instead.
  3886. func (*UserIdentityReq) Descriptor() ([]byte, []int) {
  3887. return file_userCenter_proto_rawDescGZIP(), []int{55}
  3888. }
  3889. func (x *UserIdentityReq) GetAppId() string {
  3890. if x != nil {
  3891. return x.AppId
  3892. }
  3893. return ""
  3894. }
  3895. func (x *UserIdentityReq) GetBaseUserId() int64 {
  3896. if x != nil {
  3897. return x.BaseUserId
  3898. }
  3899. return 0
  3900. }
  3901. func (x *UserIdentityReq) GetEntId() int64 {
  3902. if x != nil {
  3903. return x.EntId
  3904. }
  3905. return 0
  3906. }
  3907. type UserIdentityResp struct {
  3908. state protoimpl.MessageState
  3909. sizeCache protoimpl.SizeCache
  3910. unknownFields protoimpl.UnknownFields
  3911. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  3912. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  3913. PersonId int64 `protobuf:"varint,3,opt,name=personId,proto3" json:"personId,omitempty"` //自然人id
  3914. UserAccountId int64 `protobuf:"varint,4,opt,name=userAccountId,proto3" json:"userAccountId,omitempty"` //个人账户id
  3915. EntAccountId int64 `protobuf:"varint,5,opt,name=entAccountId,proto3" json:"entAccountId,omitempty"` //企业账户id
  3916. EntUserAccountId int64 `protobuf:"varint,6,opt,name=entUserAccountId,proto3" json:"entUserAccountId,omitempty"` //企业雇员账户id
  3917. UserPositionId int64 `protobuf:"varint,7,opt,name=userPositionId,proto3" json:"userPositionId,omitempty"` // 个人职位id
  3918. EntUserPositionId int64 `protobuf:"varint,8,opt,name=entUserPositionId,proto3" json:"entUserPositionId,omitempty"` // 企业雇员职位id
  3919. UserName string `protobuf:"bytes,9,opt,name=userName,proto3" json:"userName,omitempty"` //昵称
  3920. }
  3921. func (x *UserIdentityResp) Reset() {
  3922. *x = UserIdentityResp{}
  3923. if protoimpl.UnsafeEnabled {
  3924. mi := &file_userCenter_proto_msgTypes[56]
  3925. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3926. ms.StoreMessageInfo(mi)
  3927. }
  3928. }
  3929. func (x *UserIdentityResp) String() string {
  3930. return protoimpl.X.MessageStringOf(x)
  3931. }
  3932. func (*UserIdentityResp) ProtoMessage() {}
  3933. func (x *UserIdentityResp) ProtoReflect() protoreflect.Message {
  3934. mi := &file_userCenter_proto_msgTypes[56]
  3935. if protoimpl.UnsafeEnabled && x != nil {
  3936. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3937. if ms.LoadMessageInfo() == nil {
  3938. ms.StoreMessageInfo(mi)
  3939. }
  3940. return ms
  3941. }
  3942. return mi.MessageOf(x)
  3943. }
  3944. // Deprecated: Use UserIdentityResp.ProtoReflect.Descriptor instead.
  3945. func (*UserIdentityResp) Descriptor() ([]byte, []int) {
  3946. return file_userCenter_proto_rawDescGZIP(), []int{56}
  3947. }
  3948. func (x *UserIdentityResp) GetErrorCode() int64 {
  3949. if x != nil {
  3950. return x.ErrorCode
  3951. }
  3952. return 0
  3953. }
  3954. func (x *UserIdentityResp) GetErrorMsg() string {
  3955. if x != nil {
  3956. return x.ErrorMsg
  3957. }
  3958. return ""
  3959. }
  3960. func (x *UserIdentityResp) GetPersonId() int64 {
  3961. if x != nil {
  3962. return x.PersonId
  3963. }
  3964. return 0
  3965. }
  3966. func (x *UserIdentityResp) GetUserAccountId() int64 {
  3967. if x != nil {
  3968. return x.UserAccountId
  3969. }
  3970. return 0
  3971. }
  3972. func (x *UserIdentityResp) GetEntAccountId() int64 {
  3973. if x != nil {
  3974. return x.EntAccountId
  3975. }
  3976. return 0
  3977. }
  3978. func (x *UserIdentityResp) GetEntUserAccountId() int64 {
  3979. if x != nil {
  3980. return x.EntUserAccountId
  3981. }
  3982. return 0
  3983. }
  3984. func (x *UserIdentityResp) GetUserPositionId() int64 {
  3985. if x != nil {
  3986. return x.UserPositionId
  3987. }
  3988. return 0
  3989. }
  3990. func (x *UserIdentityResp) GetEntUserPositionId() int64 {
  3991. if x != nil {
  3992. return x.EntUserPositionId
  3993. }
  3994. return 0
  3995. }
  3996. func (x *UserIdentityResp) GetUserName() string {
  3997. if x != nil {
  3998. return x.UserName
  3999. }
  4000. return ""
  4001. }
  4002. var File_userCenter_proto protoreflect.FileDescriptor
  4003. var file_userCenter_proto_rawDesc = []byte{
  4004. 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f,
  4005. 0x74, 0x6f, 0x22, 0xd8, 0x02, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65,
  4006. 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  4007. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43,
  4008. 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69,
  4009. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d,
  4010. 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e,
  4011. 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73,
  4012. 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73,
  4013. 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74,
  4014. 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63,
  4015. 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x72, 0x67,
  4016. 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20,
  4017. 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  4018. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79,
  4019. 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50,
  4020. 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x4e,
  4021. 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x4e,
  4022. 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  4023. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e,
  4024. 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  4025. 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64,
  4026. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x6b, 0x0a,
  4027. 0x0b, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a,
  4028. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  4029. 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65,
  4030. 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  4031. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  4032. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68,
  4033. 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3b, 0x0a, 0x0b, 0x45, 0x6e,
  4034. 0x74, 0x41, 0x75, 0x74, 0x68, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61,
  4035. 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
  4036. 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  4037. 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x92, 0x01, 0x0a, 0x0a, 0x45, 0x78, 0x61, 0x6d,
  4038. 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x45, 0x6e, 0x74, 0x49, 0x64, 0x18,
  4039. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x45, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08,
  4040. 0x41, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  4041. 0x41, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x61, 0x73,
  4042. 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e,
  4043. 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x75, 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x18, 0x04, 0x20,
  4044. 0x01, 0x28, 0x09, 0x52, 0x09, 0x41, 0x75, 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1c,
  4045. 0x0a, 0x09, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28,
  4046. 0x09, 0x52, 0x09, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x6b, 0x0a, 0x0b,
  4047. 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65,
  4048. 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  4049. 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72,
  4050. 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65,
  4051. 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
  4052. 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x44,
  4053. 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x25, 0x0a, 0x0b, 0x45, 0x78, 0x61,
  4054. 0x6d, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74,
  4055. 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  4056. 0x22, 0x90, 0x03, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12,
  4057. 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
  4058. 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x02,
  4059. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a,
  4060. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  4061. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65,
  4062. 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63,
  4063. 0x72, 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x63, 0x72, 0x65,
  4064. 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01,
  4065. 0x28, 0x09, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54,
  4066. 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x64,
  4067. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x72, 0x65, 0x61,
  4068. 0x74, 0x65, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74,
  4069. 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61,
  4070. 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x76, 0x61, 0x6c,
  4071. 0x69, 0x64, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
  4072. 0x09, 0x52, 0x0e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d,
  4073. 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d,
  4074. 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x45, 0x6e,
  4075. 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53,
  4076. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x66, 0x72, 0x6f,
  4077. 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67,
  4078. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67,
  4079. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f,
  4080. 0x6e, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68,
  4081. 0x6f, 0x6e, 0x65, 0x22, 0x67, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  4082. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  4083. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  4084. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  4085. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1c,
  4086. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45,
  4087. 0x6e, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x59, 0x0a, 0x07,
  4088. 0x45, 0x6e, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  4089. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a,
  4090. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  4091. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1c, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  4092. 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73,
  4093. 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xfd, 0x01, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x4c,
  4094. 0x69, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  4095. 0x02, 0x69, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54, 0x79,
  4096. 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e,
  4097. 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20,
  4098. 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x72, 0x67,
  4099. 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20,
  4100. 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  4101. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x74,
  4102. 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
  4103. 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x69,
  4104. 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54,
  4105. 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75,
  4106. 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61,
  4107. 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61,
  4108. 0x74, 0x75, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65,
  4109. 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xf8, 0x01, 0x0a, 0x0e, 0x45, 0x78, 0x61, 0x6d,
  4110. 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
  4111. 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c,
  4112. 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  4113. 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  4114. 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  4115. 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68,
  4116. 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68,
  4117. 0x54, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x72,
  4118. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x75, 0x74,
  4119. 0x68, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x75,
  4120. 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  4121. 0x0b, 0x61, 0x75, 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07,
  4122. 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70,
  4123. 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
  4124. 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
  4125. 0x7a, 0x65, 0x22, 0x73, 0x0a, 0x0f, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73,
  4126. 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63,
  4127. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  4128. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73,
  4129. 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73,
  4130. 0x67, 0x12, 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
  4131. 0x10, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74,
  4132. 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x65, 0x0a, 0x0f, 0x45, 0x78, 0x61, 0x6d, 0x69,
  4133. 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f,
  4134. 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  4135. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01,
  4136. 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x20, 0x0a, 0x04,
  4137. 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x78, 0x61,
  4138. 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xfd,
  4139. 0x01, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e,
  4140. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14,
  4141. 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65,
  4142. 0x6e, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54,
  4143. 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61,
  4144. 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04,
  4145. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72,
  4146. 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  4147. 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75,
  4148. 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
  4149. 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x6c,
  4150. 0x79, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x70, 0x70,
  4151. 0x6c, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79,
  4152. 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79,
  4153. 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x09,
  4154. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x23,
  4155. 0x0a, 0x0b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a,
  4156. 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e,
  4157. 0x74, 0x49, 0x64, 0x22, 0x6a, 0x0a, 0x0c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52,
  4158. 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64,
  4159. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f,
  4160. 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18,
  4161. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12,
  4162. 0x1e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e,
  4163. 0x63, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22,
  4164. 0x4f, 0x0a, 0x09, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1e, 0x0a, 0x0a,
  4165. 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  4166. 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c,
  4167. 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01,
  4168. 0x28, 0x03, 0x52, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  4169. 0x22, 0x6b, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12,
  4170. 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20,
  4171. 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b,
  4172. 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28,
  4173. 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64,
  4174. 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49,
  4175. 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xd5, 0x05,
  4176. 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a,
  4177. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
  4178. 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18,
  4179. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d, 0x62, 0x65,
  4180. 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x50, 0x65, 0x72, 0x73,
  4181. 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63,
  4182. 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x61,
  4183. 0x63, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63,
  4184. 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61,
  4185. 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  4186. 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x64,
  4187. 0x75, 0x73, 0x74, 0x72, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x64,
  4188. 0x75, 0x73, 0x74, 0x72, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79,
  4189. 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x70,
  4190. 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69,
  4191. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65,
  4192. 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x65, 0x67, 0x61, 0x6c,
  4193. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x65,
  4194. 0x67, 0x61, 0x6c, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x73,
  4195. 0x69, 0x6e, 0x65, 0x73, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x75, 0x73,
  4196. 0x69, 0x6e, 0x65, 0x73, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61,
  4197. 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f,
  4198. 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a,
  4199. 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70,
  4200. 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
  4201. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74,
  4202. 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x61, 0x75, 0x74,
  4203. 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x6f, 0x72, 0x7a, 0x65, 0x6e, 0x53,
  4204. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x66, 0x6f, 0x72,
  4205. 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x64,
  4206. 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75,
  4207. 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x64, 0x69, 0x74,
  4208. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x64, 0x69,
  4209. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54,
  4210. 0x69, 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
  4211. 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61,
  4212. 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x75,
  4213. 0x74, 0x68, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61,
  4214. 0x75, 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09,
  4215. 0x52, 0x0b, 0x61, 0x75, 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a,
  4216. 0x0a, 0x61, 0x75, 0x74, 0x68, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28,
  4217. 0x09, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x1a, 0x0a,
  4218. 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52,
  4219. 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67,
  4220. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67,
  4221. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x44, 0x0a, 0x0c, 0x45, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61,
  4222. 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01,
  4223. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x75,
  4224. 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  4225. 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x22, 0x2f, 0x0a, 0x0f, 0x43,
  4226. 0x68, 0x65, 0x63, 0x6b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1c,
  4227. 0x0a, 0x09, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  4228. 0x03, 0x52, 0x09, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x3e, 0x0a, 0x12,
  4229. 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
  4230. 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  4231. 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18,
  4232. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x77, 0x0a, 0x13,
  4233. 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
  4234. 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64,
  4235. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f,
  4236. 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18,
  4237. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12,
  4238. 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e,
  4239. 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
  4240. 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xc2, 0x02, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
  4241. 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  4242. 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x76, 0x69, 0x70, 0x53,
  4243. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x76, 0x69, 0x70,
  4244. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72,
  4245. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d, 0x65,
  4246. 0x6d, 0x62, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x65, 0x6e,
  4247. 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01,
  4248. 0x28, 0x03, 0x52, 0x0e, 0x65, 0x6e, 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65, 0x53, 0x74, 0x61, 0x74,
  4249. 0x75, 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54,
  4250. 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x75, 0x62, 0x73, 0x63,
  4251. 0x72, 0x69, 0x62, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  4252. 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  4253. 0x62, 0x65, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f,
  4254. 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72,
  4255. 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63,
  4256. 0x6f, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  4257. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  4258. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  4259. 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x69, 0x6d, 0x67, 0x18, 0x0a, 0x20, 0x01, 0x28,
  4260. 0x09, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x69, 0x6d, 0x67, 0x22, 0xc7, 0x02, 0x0a, 0x09, 0x53,
  4261. 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72,
  4262. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x73, 0x74, 0x61,
  4263. 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d,
  4264. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
  4265. 0x12, 0x28, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14,
  4266. 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e, 0x41, 0x72, 0x65, 0x61, 0x45,
  4267. 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x1e, 0x0a, 0x0a, 0x62, 0x75,
  4268. 0x79, 0x65, 0x72, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a,
  4269. 0x62, 0x75, 0x79, 0x65, 0x72, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e,
  4270. 0x66, 0x6f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e,
  4271. 0x66, 0x6f, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18,
  4272. 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x52, 0x05, 0x69,
  4273. 0x74, 0x65, 0x6d, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79,
  4274. 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79,
  4275. 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x6d, 0x61, 0x74, 0x63, 0x68,
  4276. 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x6d,
  4277. 0x61, 0x74, 0x63, 0x68, 0x1a, 0x3e, 0x0a, 0x09, 0x41, 0x72, 0x65, 0x61, 0x45, 0x6e, 0x74, 0x72,
  4278. 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  4279. 0x6b, 0x65, 0x79, 0x12, 0x1b, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
  4280. 0x28, 0x0b, 0x32, 0x05, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  4281. 0x3a, 0x02, 0x38, 0x01, 0x22, 0x1c, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05,
  4282. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c,
  4283. 0x75, 0x65, 0x22, 0x5a, 0x0a, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x73,
  4284. 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x49, 0x74,
  4285. 0x65, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
  4286. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69,
  4287. 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x05, 0x61, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x03, 0x28,
  4288. 0x0b, 0x32, 0x05, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x52, 0x04, 0x61, 0x4b, 0x65, 0x79, 0x22, 0x6c,
  4289. 0x0a, 0x04, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
  4290. 0x03, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x74, 0x6b,
  4291. 0x65, 0x79, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x6f, 0x74, 0x6b, 0x65, 0x79,
  4292. 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03,
  4293. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
  4294. 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79, 0x18, 0x04, 0x20, 0x01,
  4295. 0x28, 0x03, 0x52, 0x08, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79, 0x22, 0x4d, 0x0a, 0x07,
  4296. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64,
  4297. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x16, 0x0a,
  4298. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75,
  4299. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x03,
  4300. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x79, 0x70, 0x65, 0x73, 0x22, 0x56, 0x0a, 0x0a, 0x45,
  4301. 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70,
  4302. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12,
  4303. 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01,
  4304. 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a,
  4305. 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e,
  4306. 0x74, 0x49, 0x64, 0x22, 0x67, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  4307. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  4308. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  4309. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  4310. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1c,
  4311. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45,
  4312. 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x81, 0x01, 0x0a,
  4313. 0x07, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x4e, 0x61, 0x6d, 0x65,
  4314. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05,
  4315. 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f,
  4316. 0x6e, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  4317. 0x52, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4e, 0x61,
  4318. 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4e, 0x61,
  4319. 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  4320. 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
  4321. 0x22, 0x68, 0x0a, 0x0e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52,
  4322. 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  4323. 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49,
  4324. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x16,
  4325. 0x0a, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  4326. 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04,
  4327. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x73, 0x0a, 0x0f, 0x45, 0x6e,
  4328. 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a,
  4329. 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  4330. 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  4331. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  4332. 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74,
  4333. 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65,
  4334. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22,
  4335. 0xa9, 0x01, 0x0a, 0x0f, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44,
  4336. 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  4337. 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49,
  4338. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x12,
  4339. 0x10, 0x0a, 0x03, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x70, 0x49,
  4340. 0x64, 0x12, 0x2a, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  4341. 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
  4342. 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2c, 0x0a,
  4343. 0x08, 0x64, 0x65, 0x70, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32,
  4344. 0x10, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74,
  4345. 0x61, 0x52, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x69, 0x0a, 0x13, 0x43,
  4346. 0x68, 0x65, 0x63, 0x6b, 0x49, 0x73, 0x45, 0x6e, 0x74, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65,
  4347. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  4348. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  4349. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  4350. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x16,
  4351. 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  4352. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x4b, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61,
  4353. 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74,
  4354. 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x61,
  4355. 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x49,
  4356. 0x6e, 0x45, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x49, 0x6e,
  4357. 0x45, 0x6e, 0x74, 0x22, 0xd4, 0x02, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x52,
  4358. 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  4359. 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e,
  4360. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a,
  4361. 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  4362. 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65,
  4363. 0x61, 0x64, 0x69, 0x6d, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x61,
  4364. 0x64, 0x69, 0x6d, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x18,
  4365. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x12, 0x1a,
  4366. 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  4367. 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61,
  4368. 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61,
  4369. 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x5f, 0x6f, 0x70, 0x65, 0x6e,
  4370. 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x69,
  4371. 0x64, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x18, 0x09, 0x20,
  4372. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x4f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07,
  4373. 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75,
  4374. 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x64, 0x43, 0x61, 0x72, 0x64,
  4375. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x69, 0x64, 0x43, 0x61, 0x72, 0x64, 0x12, 0x18,
  4376. 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52,
  4377. 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18,
  4378. 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x68, 0x0a, 0x0b, 0x55, 0x73,
  4379. 0x65, 0x72, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72,
  4380. 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65,
  4381. 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f,
  4382. 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72,
  4383. 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20,
  4384. 0x01, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x73, 0x52, 0x04,
  4385. 0x64, 0x61, 0x74, 0x61, 0x22, 0x32, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x73,
  4386. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  4387. 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02,
  4388. 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x22, 0x9f, 0x02, 0x0a, 0x09, 0x55, 0x73, 0x65,
  4389. 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18,
  4390. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x0e, 0x0a, 0x02,
  4391. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05,
  4392. 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f,
  4393. 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04,
  4394. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18,
  4395. 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x69, 0x6d, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  4396. 0x07, 0x68, 0x65, 0x61, 0x64, 0x69, 0x6d, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x70,
  4397. 0x61, 0x6e, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61,
  4398. 0x6e, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07,
  4399. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a,
  4400. 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09,
  4401. 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x5f,
  4402. 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x4f,
  4403. 0x70, 0x65, 0x6e, 0x69, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x69,
  4404. 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x4f, 0x70, 0x65, 0x6e, 0x69, 0x64,
  4405. 0x12, 0x18, 0x0a, 0x07, 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28,
  4406. 0x09, 0x52, 0x07, 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x22, 0xb2, 0x03, 0x0a, 0x16, 0x57,
  4407. 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e,
  4408. 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  4409. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a,
  4410. 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70,
  4411. 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18,
  4412. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12,
  4413. 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  4414. 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72,
  4415. 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65,
  4416. 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01,
  4417. 0x28, 0x09, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74,
  4418. 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x6e,
  4419. 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e, 0x74, 0x72, 0x61,
  4420. 0x6e, 0x65, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69,
  4421. 0x6e, 0x74, 0x72, 0x61, 0x6e, 0x65, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x77,
  4422. 0x6f, 0x72, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52,
  4423. 0x0a, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x61,
  4424. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  4425. 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x6f, 0x73,
  4426. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52,
  4427. 0x0c, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a,
  4428. 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28,
  4429. 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a,
  4430. 0x09, 0x6d, 0x67, 0x6f, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09,
  4431. 0x52, 0x09, 0x6d, 0x67, 0x6f, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x65,
  4432. 0x6e, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28,
  4433. 0x09, 0x52, 0x0c, 0x65, 0x6e, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x22,
  4434. 0x74, 0x0a, 0x17, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65,
  4435. 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72,
  4436. 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  4437. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72,
  4438. 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72,
  4439. 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03,
  4440. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x4d, 0x65, 0x6e, 0x75, 0x44, 0x61, 0x74, 0x61, 0x52,
  4441. 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x4d, 0x0a, 0x08, 0x4d, 0x65, 0x6e, 0x75, 0x44, 0x61, 0x74,
  4442. 0x61, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20,
  4443. 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x54, 0x79, 0x70, 0x65, 0x12, 0x25, 0x0a,
  4444. 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
  4445. 0x09, 0x2e, 0x4d, 0x65, 0x6e, 0x75, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x08, 0x6d, 0x65, 0x6e, 0x75,
  4446. 0x4c, 0x69, 0x73, 0x74, 0x22, 0x84, 0x02, 0x0a, 0x08, 0x4d, 0x65, 0x6e, 0x75, 0x4c, 0x69, 0x73,
  4447. 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  4448. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18, 0x02, 0x20,
  4449. 0x01, 0x28, 0x09, 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c,
  4450. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x75,
  4451. 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x75, 0x73, 0x61,
  4452. 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  4453. 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06,
  4454. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a,
  4455. 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
  4456. 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x07, 0x74, 0x69, 0x70,
  4457. 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x54, 0x69, 0x70,
  4458. 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x26, 0x0a,
  4459. 0x05, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x53,
  4460. 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x52, 0x05,
  4461. 0x63, 0x68, 0x69, 0x6c, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x18, 0x0a,
  4462. 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x22, 0x8a, 0x02, 0x0a, 0x0f,
  4463. 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x12,
  4464. 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
  4465. 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
  4466. 0x09, 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x03,
  4467. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x61,
  4468. 0x62, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c,
  4469. 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
  4470. 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01,
  4471. 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f,
  4472. 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f,
  4473. 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e,
  4474. 0x66, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x54, 0x69, 0x70, 0x49, 0x6e,
  4475. 0x66, 0x6f, 0x52, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x25, 0x0a, 0x05, 0x63,
  4476. 0x68, 0x69, 0x6c, 0x64, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x54, 0x68, 0x72,
  4477. 0x65, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x52, 0x05, 0x63, 0x68, 0x69,
  4478. 0x6c, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x18, 0x0a, 0x20, 0x03, 0x28,
  4479. 0x09, 0x52, 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x22, 0x80, 0x02, 0x0a, 0x0e, 0x54, 0x68, 0x72,
  4480. 0x65, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x12, 0x12, 0x0a, 0x04, 0x6e,
  4481. 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  4482. 0x12, 0x0a, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x69,
  4483. 0x63, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  4484. 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18,
  4485. 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a,
  4486. 0x02, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a,
  4487. 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  4488. 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54,
  4489. 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54,
  4490. 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x08,
  4491. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x54, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07,
  4492. 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68,
  4493. 0x18, 0x0a, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x12, 0x1c, 0x0a,
  4494. 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09,
  4495. 0x52, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xd5, 0x01, 0x0a, 0x07,
  4496. 0x54, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65,
  4497. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a,
  4498. 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  4499. 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69,
  4500. 0x72, 0x6d, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e,
  4501. 0x66, 0x69, 0x72, 0x6d, 0x55, 0x72, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x66, 0x69,
  4502. 0x72, 0x6d, 0x54, 0x65, 0x78, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f,
  4503. 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x65, 0x78, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x73, 0x53,
  4504. 0x68, 0x6f, 0x77, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52,
  4505. 0x0c, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x12, 0x18, 0x0a,
  4506. 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  4507. 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54,
  4508. 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54,
  4509. 0x79, 0x70, 0x65, 0x22, 0xed, 0x03, 0x0a, 0x1b, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b,
  4510. 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65,
  4511. 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20,
  4512. 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61,
  4513. 0x70, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49,
  4514. 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x03, 0x20,
  4515. 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x14, 0x0a,
  4516. 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68,
  4517. 0x6f, 0x6e, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64,
  4518. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4d,
  4519. 0x6f, 0x64, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4d, 0x6f, 0x64, 0x65, 0x18,
  4520. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4d, 0x6f, 0x64, 0x65, 0x12,
  4521. 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x6e, 0x75, 0x49, 0x64, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  4522. 0x52, 0x07, 0x6d, 0x65, 0x6e, 0x75, 0x49, 0x64, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x65, 0x77,
  4523. 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x65,
  4524. 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64,
  4525. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1c, 0x0a,
  4526. 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  4527. 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x61,
  4528. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  4529. 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x6f, 0x73,
  4530. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52,
  4531. 0x0c, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a,
  4532. 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28,
  4533. 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a,
  4534. 0x0c, 0x69, 0x6e, 0x74, 0x72, 0x61, 0x6e, 0x65, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x18, 0x0e, 0x20,
  4535. 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x6e, 0x74, 0x72, 0x61, 0x6e, 0x65, 0x74, 0x42, 0x6f, 0x6f,
  4536. 0x6c, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x67, 0x6f, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0f,
  4537. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6d, 0x67, 0x6f, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12,
  4538. 0x22, 0x0a, 0x0c, 0x65, 0x6e, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18,
  4539. 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x65, 0x6e, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  4540. 0x74, 0x49, 0x64, 0x22, 0x7f, 0x0a, 0x1c, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74,
  4541. 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52,
  4542. 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64,
  4543. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f,
  4544. 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18,
  4545. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12,
  4546. 0x23, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  4547. 0x54, 0x68, 0x72, 0x65, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x52, 0x04,
  4548. 0x64, 0x61, 0x74, 0x61, 0x22, 0x87, 0x01, 0x0a, 0x1b, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73,
  4549. 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66,
  4550. 0x6f, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01,
  4551. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05,
  4552. 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70,
  4553. 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64,
  4554. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  4555. 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x04,
  4556. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x22, 0x3e,
  4557. 0x0a, 0x1c, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x65,
  4558. 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x0c,
  4559. 0x0a, 0x01, 0x62, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x01, 0x62, 0x12, 0x10, 0x0a, 0x03,
  4560. 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x22, 0x1d,
  4561. 0x0a, 0x0b, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a,
  4562. 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x22, 0xca, 0x02,
  4563. 0x0a, 0x08, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
  4564. 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a,
  4565. 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  4566. 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73,
  4567. 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73,
  4568. 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  4569. 0x74, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75,
  4570. 0x6e, 0x74, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x65, 0x6e, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75,
  4571. 0x6e, 0x74, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x65, 0x6e, 0x74, 0x41,
  4572. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69,
  4573. 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f,
  4574. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x6f, 0x73, 0x69,
  4575. 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c,
  4576. 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05,
  4577. 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74,
  4578. 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  4579. 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
  4580. 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18,
  4581. 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61,
  4582. 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0b, 0x20, 0x01,
  4583. 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x37, 0x0a, 0x0c, 0x49, 0x64,
  4584. 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x09, 0x69, 0x64,
  4585. 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09, 0x2e,
  4586. 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x09, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69,
  4587. 0x74, 0x79, 0x73, 0x22, 0x5d, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74,
  4588. 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18,
  4589. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a,
  4590. 0x62, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  4591. 0x52, 0x0a, 0x62, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05,
  4592. 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74,
  4593. 0x49, 0x64, 0x22, 0xd2, 0x02, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74,
  4594. 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72,
  4595. 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72,
  4596. 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f,
  4597. 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72,
  4598. 0x4d, 0x73, 0x67, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18,
  4599. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12,
  4600. 0x24, 0x0a, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
  4601. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f,
  4602. 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x65, 0x6e, 0x74, 0x41, 0x63, 0x63, 0x6f,
  4603. 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x65, 0x6e, 0x74,
  4604. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x10, 0x65, 0x6e, 0x74,
  4605. 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x06, 0x20,
  4606. 0x01, 0x28, 0x03, 0x52, 0x10, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f,
  4607. 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x50, 0x6f, 0x73,
  4608. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x75,
  4609. 0x73, 0x65, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x2c, 0x0a,
  4610. 0x11, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  4611. 0x49, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65,
  4612. 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x75,
  4613. 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75,
  4614. 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x32, 0xe1, 0x09, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72,
  4615. 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74,
  4616. 0x68, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x0c,
  4617. 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x0a,
  4618. 0x45, 0x6e, 0x74, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x12, 0x0b, 0x2e, 0x45, 0x78, 0x61,
  4619. 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
  4620. 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x24, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74,
  4621. 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e,
  4622. 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x30, 0x0a, 0x0b, 0x45,
  4623. 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x45, 0x78, 0x61,
  4624. 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x45, 0x78,
  4625. 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a,
  4626. 0x08, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x12, 0x0c, 0x2e, 0x43, 0x68, 0x65, 0x63,
  4627. 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0d, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45,
  4628. 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x25, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66,
  4629. 0x6f, 0x12, 0x0c, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x1a,
  4630. 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x28, 0x0a,
  4631. 0x09, 0x45, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x0d, 0x2e, 0x45, 0x6e, 0x74,
  4632. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d,
  4633. 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69,
  4634. 0x6e, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x10, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x78,
  4635. 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49, 0x6e,
  4636. 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3c, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61,
  4637. 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x13, 0x2e, 0x47, 0x65, 0x74, 0x53,
  4638. 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x14,
  4639. 0x2e, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65,
  4640. 0x52, 0x65, 0x73, 0x70, 0x12, 0x24, 0x0a, 0x07, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12,
  4641. 0x0b, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x55,
  4642. 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x26, 0x0a, 0x0a, 0x55, 0x73,
  4643. 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x0a, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49,
  4644. 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65,
  4645. 0x73, 0x70, 0x12, 0x23, 0x0a, 0x07, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x12, 0x0a, 0x2e,
  4646. 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d,
  4647. 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x48, 0x0a, 0x13, 0x57, 0x6f, 0x72, 0x6b, 0x44,
  4648. 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17,
  4649. 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75,
  4650. 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65,
  4651. 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73,
  4652. 0x70, 0x12, 0x57, 0x0a, 0x18, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70,
  4653. 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x12, 0x1c, 0x2e,
  4654. 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72,
  4655. 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x57, 0x6f,
  4656. 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x68,
  4657. 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x57, 0x0a, 0x18, 0x57, 0x6f,
  4658. 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x73,
  4659. 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73,
  4660. 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66,
  4661. 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74,
  4662. 0x6f, 0x70, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  4663. 0x65, 0x73, 0x70, 0x12, 0x22, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
  4664. 0x66, 0x6f, 0x12, 0x08, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x09, 0x2e, 0x55,
  4665. 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2b, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x45, 0x6e,
  4666. 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x55,
  4667. 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
  4668. 0x52, 0x65, 0x73, 0x70, 0x12, 0x33, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x55, 0x73,
  4669. 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
  4670. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65,
  4671. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x34, 0x0a, 0x0f, 0x43, 0x68, 0x65,
  4672. 0x63, 0x6b, 0x49, 0x73, 0x45, 0x6e, 0x74, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x12, 0x0b, 0x2e, 0x45,
  4673. 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x14, 0x2e, 0x43, 0x68, 0x65, 0x63,
  4674. 0x6b, 0x49, 0x73, 0x45, 0x6e, 0x74, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12,
  4675. 0x2b, 0x0a, 0x0c, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x12,
  4676. 0x0c, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x1a, 0x0d, 0x2e,
  4677. 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2b, 0x0a, 0x10,
  4678. 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x42, 0x79, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
  4679. 0x12, 0x0c, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x1a, 0x09,
  4680. 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x2f, 0x0a, 0x14, 0x49, 0x64, 0x65,
  4681. 0x6e, 0x74, 0x69, 0x74, 0x79, 0x42, 0x79, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49,
  4682. 0x64, 0x12, 0x0c, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x1a,
  4683. 0x09, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x2e, 0x0a, 0x13, 0x49, 0x64,
  4684. 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x42, 0x79, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49,
  4685. 0x64, 0x12, 0x0c, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x1a,
  4686. 0x09, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x2a, 0x0a, 0x0f, 0x49, 0x64,
  4687. 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x42, 0x79, 0x45, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x0c, 0x2e,
  4688. 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x1a, 0x09, 0x2e, 0x49, 0x64,
  4689. 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x33, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
  4690. 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x10, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65,
  4691. 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x1a, 0x11, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49,
  4692. 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x42, 0x06, 0x5a, 0x04, 0x2e,
  4693. 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  4694. }
  4695. var (
  4696. file_userCenter_proto_rawDescOnce sync.Once
  4697. file_userCenter_proto_rawDescData = file_userCenter_proto_rawDesc
  4698. )
  4699. func file_userCenter_proto_rawDescGZIP() []byte {
  4700. file_userCenter_proto_rawDescOnce.Do(func() {
  4701. file_userCenter_proto_rawDescData = protoimpl.X.CompressGZIP(file_userCenter_proto_rawDescData)
  4702. })
  4703. return file_userCenter_proto_rawDescData
  4704. }
  4705. var file_userCenter_proto_msgTypes = make([]protoimpl.MessageInfo, 58)
  4706. var file_userCenter_proto_goTypes = []interface{}{
  4707. (*EntAuthReq)(nil), // 0: EntAuthReq
  4708. (*EntAuthResp)(nil), // 1: EntAuthResp
  4709. (*EntAuthData)(nil), // 2: EntAuthData
  4710. (*ExamineReq)(nil), // 3: ExamineReq
  4711. (*ExamineResp)(nil), // 4: ExamineResp
  4712. (*ExamineData)(nil), // 5: ExamineData
  4713. (*EntListReq)(nil), // 6: EntListReq
  4714. (*EntListResp)(nil), // 7: EntListResp
  4715. (*EntData)(nil), // 8: EntData
  4716. (*EntList)(nil), // 9: EntList
  4717. (*ExamineListReq)(nil), // 10: ExamineListReq
  4718. (*ExamineListResp)(nil), // 11: ExamineListResp
  4719. (*ExamineListData)(nil), // 12: ExamineListData
  4720. (*ExamineList)(nil), // 13: ExamineList
  4721. (*CheckEntReq)(nil), // 14: CheckEntReq
  4722. (*CheckEntResp)(nil), // 15: CheckEntResp
  4723. (*CheckData)(nil), // 16: checkData
  4724. (*EntInfoResp)(nil), // 17: EntInfoResp
  4725. (*EntInfoData)(nil), // 18: EntInfoData
  4726. (*EntUpdateReq)(nil), // 19: EntUpdateReq
  4727. (*CheckExamineReq)(nil), // 20: CheckExamineReq
  4728. (*GetStatusByCodeReq)(nil), // 21: GetStatusByCodeReq
  4729. (*GetStatusByCodeResp)(nil), // 22: GetStatusByCodeResp
  4730. (*UserInfo)(nil), // 23: UserInfo
  4731. (*Subscribe)(nil), // 24: Subscribe
  4732. (*List)(nil), // 25: List
  4733. (*Items)(nil), // 26: Items
  4734. (*Keys)(nil), // 27: Keys
  4735. (*UserReq)(nil), // 28: UserReq
  4736. (*EntUserReq)(nil), // 29: EntUserReq
  4737. (*EntUserResp)(nil), // 30: EntUserResp
  4738. (*EntUser)(nil), // 31: EntUser
  4739. (*EntUserListReq)(nil), // 32: EntUserListReq
  4740. (*EntUserListResp)(nil), // 33: EntUserListResp
  4741. (*EntUserListData)(nil), // 34: EntUserListData
  4742. (*CheckIsEntAdminResp)(nil), // 35: CheckIsEntAdminResp
  4743. (*GetStatusByCode)(nil), // 36: GetStatusByCode
  4744. (*UserAddReq)(nil), // 37: UserAddReq
  4745. (*UserAddResp)(nil), // 38: UserAddResp
  4746. (*UserAdds)(nil), // 39: UserAdds
  4747. (*UserIdReq)(nil), // 40: UserIdReq
  4748. (*WorkDesktopMenuInfoReq)(nil), // 41: WorkDesktopMenuInfoReq
  4749. (*WorkDesktopMenuInfoResp)(nil), // 42: WorkDesktopMenuInfoResp
  4750. (*MenuData)(nil), // 43: MenuData
  4751. (*MenuList)(nil), // 44: MenuList
  4752. (*SecondLevelMenu)(nil), // 45: SecondLevelMenu
  4753. (*ThreeLevelMenu)(nil), // 46: ThreeLevelMenu
  4754. (*TipInfo)(nil), // 47: TipInfo
  4755. (*WorkDesktopComprehensiveReq)(nil), // 48: WorkDesktopComprehensiveReq
  4756. (*WorkDesktopComprehensiveResp)(nil), // 49: WorkDesktopComprehensiveResp
  4757. (*WorkDesktopClearUserInfoReq)(nil), // 50: WorkDesktopClearUserInfoReq
  4758. (*WorkDesktopClearUserInfoResp)(nil), // 51: WorkDesktopClearUserInfoResp
  4759. (*IdentityReq)(nil), // 52: IdentityReq
  4760. (*Identity)(nil), // 53: Identity
  4761. (*IdentityResp)(nil), // 54: IdentityResp
  4762. (*UserIdentityReq)(nil), // 55: UserIdentityReq
  4763. (*UserIdentityResp)(nil), // 56: UserIdentityResp
  4764. nil, // 57: Subscribe.AreaEntry
  4765. }
  4766. var file_userCenter_proto_depIdxs = []int32{
  4767. 2, // 0: EntAuthResp.data:type_name -> EntAuthData
  4768. 5, // 1: ExamineResp.data:type_name -> ExamineData
  4769. 8, // 2: EntListResp.data:type_name -> EntData
  4770. 9, // 3: EntData.list:type_name -> EntList
  4771. 12, // 4: ExamineListResp.data:type_name -> ExamineListData
  4772. 13, // 5: ExamineListData.list:type_name -> ExamineList
  4773. 16, // 6: CheckEntResp.data:type_name -> checkData
  4774. 18, // 7: EntInfoResp.data:type_name -> EntInfoData
  4775. 36, // 8: GetStatusByCodeResp.data:type_name -> GetStatusByCode
  4776. 24, // 9: UserInfo.data:type_name -> Subscribe
  4777. 57, // 10: Subscribe.area:type_name -> Subscribe.AreaEntry
  4778. 26, // 11: Subscribe.items:type_name -> Items
  4779. 27, // 12: Items.a_key:type_name -> Keys
  4780. 31, // 13: EntUserResp.data:type_name -> EntUser
  4781. 34, // 14: EntUserListResp.data:type_name -> EntUserListData
  4782. 31, // 15: EntUserListData.entUserList:type_name -> EntUser
  4783. 34, // 16: EntUserListData.deptList:type_name -> EntUserListData
  4784. 39, // 17: UserAddResp.data:type_name -> UserAdds
  4785. 43, // 18: WorkDesktopMenuInfoResp.data:type_name -> MenuData
  4786. 44, // 19: MenuData.menuList:type_name -> MenuList
  4787. 47, // 20: MenuList.tipInfo:type_name -> TipInfo
  4788. 45, // 21: MenuList.child:type_name -> SecondLevelMenu
  4789. 47, // 22: SecondLevelMenu.tipInfo:type_name -> TipInfo
  4790. 46, // 23: SecondLevelMenu.child:type_name -> ThreeLevelMenu
  4791. 47, // 24: ThreeLevelMenu.tipInfo:type_name -> TipInfo
  4792. 46, // 25: WorkDesktopComprehensiveResp.data:type_name -> ThreeLevelMenu
  4793. 53, // 26: IdentityResp.identitys:type_name -> Identity
  4794. 25, // 27: Subscribe.AreaEntry.value:type_name -> List
  4795. 0, // 28: UserCenter.EntAuth:input_type -> EntAuthReq
  4796. 3, // 29: UserCenter.EntExamine:input_type -> ExamineReq
  4797. 6, // 30: UserCenter.EntList:input_type -> EntListReq
  4798. 10, // 31: UserCenter.ExamineList:input_type -> ExamineListReq
  4799. 14, // 32: UserCenter.CheckEnt:input_type -> CheckEntReq
  4800. 14, // 33: UserCenter.EntInfo:input_type -> CheckEntReq
  4801. 19, // 34: UserCenter.EntUpdate:input_type -> EntUpdateReq
  4802. 20, // 35: UserCenter.ExamineInfo:input_type -> CheckExamineReq
  4803. 21, // 36: UserCenter.GetStatusByCode:input_type -> GetStatusByCodeReq
  4804. 37, // 37: UserCenter.UserAdd:input_type -> UserAddReq
  4805. 40, // 38: UserCenter.UserUpdate:input_type -> UserIdReq
  4806. 40, // 39: UserCenter.UserDel:input_type -> UserIdReq
  4807. 41, // 40: UserCenter.WorkDesktopMenuInfo:input_type -> WorkDesktopMenuInfoReq
  4808. 48, // 41: UserCenter.WorkDesktopComprehensive:input_type -> WorkDesktopComprehensiveReq
  4809. 50, // 42: UserCenter.WorkDesktopClearUserInfo:input_type -> WorkDesktopClearUserInfoReq
  4810. 28, // 43: UserCenter.GetUserInfo:input_type -> UserReq
  4811. 29, // 44: UserCenter.GetEntUserInfo:input_type -> EntUserReq
  4812. 32, // 45: UserCenter.GetEntUserList:input_type -> EntUserListReq
  4813. 29, // 46: UserCenter.CheckIsEntAdmin:input_type -> EntUserReq
  4814. 52, // 47: UserCenter.IdentityList:input_type -> IdentityReq
  4815. 52, // 48: UserCenter.IdentityByUserId:input_type -> IdentityReq
  4816. 52, // 49: UserCenter.IdentityByPositionId:input_type -> IdentityReq
  4817. 52, // 50: UserCenter.IdentityByEntUserId:input_type -> IdentityReq
  4818. 52, // 51: UserCenter.IdentityByEntId:input_type -> IdentityReq
  4819. 55, // 52: UserCenter.UserIdentity:input_type -> UserIdentityReq
  4820. 1, // 53: UserCenter.EntAuth:output_type -> EntAuthResp
  4821. 4, // 54: UserCenter.EntExamine:output_type -> ExamineResp
  4822. 7, // 55: UserCenter.EntList:output_type -> EntListResp
  4823. 11, // 56: UserCenter.ExamineList:output_type -> ExamineListResp
  4824. 15, // 57: UserCenter.CheckEnt:output_type -> CheckEntResp
  4825. 17, // 58: UserCenter.EntInfo:output_type -> EntInfoResp
  4826. 4, // 59: UserCenter.EntUpdate:output_type -> ExamineResp
  4827. 17, // 60: UserCenter.ExamineInfo:output_type -> EntInfoResp
  4828. 22, // 61: UserCenter.GetStatusByCode:output_type -> GetStatusByCodeResp
  4829. 38, // 62: UserCenter.UserAdd:output_type -> UserAddResp
  4830. 4, // 63: UserCenter.UserUpdate:output_type -> ExamineResp
  4831. 4, // 64: UserCenter.UserDel:output_type -> ExamineResp
  4832. 42, // 65: UserCenter.WorkDesktopMenuInfo:output_type -> WorkDesktopMenuInfoResp
  4833. 49, // 66: UserCenter.WorkDesktopComprehensive:output_type -> WorkDesktopComprehensiveResp
  4834. 51, // 67: UserCenter.WorkDesktopClearUserInfo:output_type -> WorkDesktopClearUserInfoResp
  4835. 23, // 68: UserCenter.GetUserInfo:output_type -> UserInfo
  4836. 30, // 69: UserCenter.GetEntUserInfo:output_type -> EntUserResp
  4837. 33, // 70: UserCenter.GetEntUserList:output_type -> EntUserListResp
  4838. 35, // 71: UserCenter.CheckIsEntAdmin:output_type -> CheckIsEntAdminResp
  4839. 54, // 72: UserCenter.IdentityList:output_type -> IdentityResp
  4840. 53, // 73: UserCenter.IdentityByUserId:output_type -> Identity
  4841. 53, // 74: UserCenter.IdentityByPositionId:output_type -> Identity
  4842. 53, // 75: UserCenter.IdentityByEntUserId:output_type -> Identity
  4843. 53, // 76: UserCenter.IdentityByEntId:output_type -> Identity
  4844. 56, // 77: UserCenter.UserIdentity:output_type -> UserIdentityResp
  4845. 53, // [53:78] is the sub-list for method output_type
  4846. 28, // [28:53] is the sub-list for method input_type
  4847. 28, // [28:28] is the sub-list for extension type_name
  4848. 28, // [28:28] is the sub-list for extension extendee
  4849. 0, // [0:28] is the sub-list for field type_name
  4850. }
  4851. func init() { file_userCenter_proto_init() }
  4852. func file_userCenter_proto_init() {
  4853. if File_userCenter_proto != nil {
  4854. return
  4855. }
  4856. if !protoimpl.UnsafeEnabled {
  4857. file_userCenter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  4858. switch v := v.(*EntAuthReq); i {
  4859. case 0:
  4860. return &v.state
  4861. case 1:
  4862. return &v.sizeCache
  4863. case 2:
  4864. return &v.unknownFields
  4865. default:
  4866. return nil
  4867. }
  4868. }
  4869. file_userCenter_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  4870. switch v := v.(*EntAuthResp); i {
  4871. case 0:
  4872. return &v.state
  4873. case 1:
  4874. return &v.sizeCache
  4875. case 2:
  4876. return &v.unknownFields
  4877. default:
  4878. return nil
  4879. }
  4880. }
  4881. file_userCenter_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  4882. switch v := v.(*EntAuthData); i {
  4883. case 0:
  4884. return &v.state
  4885. case 1:
  4886. return &v.sizeCache
  4887. case 2:
  4888. return &v.unknownFields
  4889. default:
  4890. return nil
  4891. }
  4892. }
  4893. file_userCenter_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  4894. switch v := v.(*ExamineReq); i {
  4895. case 0:
  4896. return &v.state
  4897. case 1:
  4898. return &v.sizeCache
  4899. case 2:
  4900. return &v.unknownFields
  4901. default:
  4902. return nil
  4903. }
  4904. }
  4905. file_userCenter_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  4906. switch v := v.(*ExamineResp); i {
  4907. case 0:
  4908. return &v.state
  4909. case 1:
  4910. return &v.sizeCache
  4911. case 2:
  4912. return &v.unknownFields
  4913. default:
  4914. return nil
  4915. }
  4916. }
  4917. file_userCenter_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  4918. switch v := v.(*ExamineData); i {
  4919. case 0:
  4920. return &v.state
  4921. case 1:
  4922. return &v.sizeCache
  4923. case 2:
  4924. return &v.unknownFields
  4925. default:
  4926. return nil
  4927. }
  4928. }
  4929. file_userCenter_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  4930. switch v := v.(*EntListReq); i {
  4931. case 0:
  4932. return &v.state
  4933. case 1:
  4934. return &v.sizeCache
  4935. case 2:
  4936. return &v.unknownFields
  4937. default:
  4938. return nil
  4939. }
  4940. }
  4941. file_userCenter_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  4942. switch v := v.(*EntListResp); i {
  4943. case 0:
  4944. return &v.state
  4945. case 1:
  4946. return &v.sizeCache
  4947. case 2:
  4948. return &v.unknownFields
  4949. default:
  4950. return nil
  4951. }
  4952. }
  4953. file_userCenter_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  4954. switch v := v.(*EntData); i {
  4955. case 0:
  4956. return &v.state
  4957. case 1:
  4958. return &v.sizeCache
  4959. case 2:
  4960. return &v.unknownFields
  4961. default:
  4962. return nil
  4963. }
  4964. }
  4965. file_userCenter_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  4966. switch v := v.(*EntList); i {
  4967. case 0:
  4968. return &v.state
  4969. case 1:
  4970. return &v.sizeCache
  4971. case 2:
  4972. return &v.unknownFields
  4973. default:
  4974. return nil
  4975. }
  4976. }
  4977. file_userCenter_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  4978. switch v := v.(*ExamineListReq); i {
  4979. case 0:
  4980. return &v.state
  4981. case 1:
  4982. return &v.sizeCache
  4983. case 2:
  4984. return &v.unknownFields
  4985. default:
  4986. return nil
  4987. }
  4988. }
  4989. file_userCenter_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  4990. switch v := v.(*ExamineListResp); i {
  4991. case 0:
  4992. return &v.state
  4993. case 1:
  4994. return &v.sizeCache
  4995. case 2:
  4996. return &v.unknownFields
  4997. default:
  4998. return nil
  4999. }
  5000. }
  5001. file_userCenter_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  5002. switch v := v.(*ExamineListData); i {
  5003. case 0:
  5004. return &v.state
  5005. case 1:
  5006. return &v.sizeCache
  5007. case 2:
  5008. return &v.unknownFields
  5009. default:
  5010. return nil
  5011. }
  5012. }
  5013. file_userCenter_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  5014. switch v := v.(*ExamineList); i {
  5015. case 0:
  5016. return &v.state
  5017. case 1:
  5018. return &v.sizeCache
  5019. case 2:
  5020. return &v.unknownFields
  5021. default:
  5022. return nil
  5023. }
  5024. }
  5025. file_userCenter_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  5026. switch v := v.(*CheckEntReq); i {
  5027. case 0:
  5028. return &v.state
  5029. case 1:
  5030. return &v.sizeCache
  5031. case 2:
  5032. return &v.unknownFields
  5033. default:
  5034. return nil
  5035. }
  5036. }
  5037. file_userCenter_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  5038. switch v := v.(*CheckEntResp); i {
  5039. case 0:
  5040. return &v.state
  5041. case 1:
  5042. return &v.sizeCache
  5043. case 2:
  5044. return &v.unknownFields
  5045. default:
  5046. return nil
  5047. }
  5048. }
  5049. file_userCenter_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  5050. switch v := v.(*CheckData); i {
  5051. case 0:
  5052. return &v.state
  5053. case 1:
  5054. return &v.sizeCache
  5055. case 2:
  5056. return &v.unknownFields
  5057. default:
  5058. return nil
  5059. }
  5060. }
  5061. file_userCenter_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  5062. switch v := v.(*EntInfoResp); i {
  5063. case 0:
  5064. return &v.state
  5065. case 1:
  5066. return &v.sizeCache
  5067. case 2:
  5068. return &v.unknownFields
  5069. default:
  5070. return nil
  5071. }
  5072. }
  5073. file_userCenter_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  5074. switch v := v.(*EntInfoData); i {
  5075. case 0:
  5076. return &v.state
  5077. case 1:
  5078. return &v.sizeCache
  5079. case 2:
  5080. return &v.unknownFields
  5081. default:
  5082. return nil
  5083. }
  5084. }
  5085. file_userCenter_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  5086. switch v := v.(*EntUpdateReq); i {
  5087. case 0:
  5088. return &v.state
  5089. case 1:
  5090. return &v.sizeCache
  5091. case 2:
  5092. return &v.unknownFields
  5093. default:
  5094. return nil
  5095. }
  5096. }
  5097. file_userCenter_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  5098. switch v := v.(*CheckExamineReq); i {
  5099. case 0:
  5100. return &v.state
  5101. case 1:
  5102. return &v.sizeCache
  5103. case 2:
  5104. return &v.unknownFields
  5105. default:
  5106. return nil
  5107. }
  5108. }
  5109. file_userCenter_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  5110. switch v := v.(*GetStatusByCodeReq); i {
  5111. case 0:
  5112. return &v.state
  5113. case 1:
  5114. return &v.sizeCache
  5115. case 2:
  5116. return &v.unknownFields
  5117. default:
  5118. return nil
  5119. }
  5120. }
  5121. file_userCenter_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  5122. switch v := v.(*GetStatusByCodeResp); i {
  5123. case 0:
  5124. return &v.state
  5125. case 1:
  5126. return &v.sizeCache
  5127. case 2:
  5128. return &v.unknownFields
  5129. default:
  5130. return nil
  5131. }
  5132. }
  5133. file_userCenter_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  5134. switch v := v.(*UserInfo); i {
  5135. case 0:
  5136. return &v.state
  5137. case 1:
  5138. return &v.sizeCache
  5139. case 2:
  5140. return &v.unknownFields
  5141. default:
  5142. return nil
  5143. }
  5144. }
  5145. file_userCenter_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  5146. switch v := v.(*Subscribe); i {
  5147. case 0:
  5148. return &v.state
  5149. case 1:
  5150. return &v.sizeCache
  5151. case 2:
  5152. return &v.unknownFields
  5153. default:
  5154. return nil
  5155. }
  5156. }
  5157. file_userCenter_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  5158. switch v := v.(*List); i {
  5159. case 0:
  5160. return &v.state
  5161. case 1:
  5162. return &v.sizeCache
  5163. case 2:
  5164. return &v.unknownFields
  5165. default:
  5166. return nil
  5167. }
  5168. }
  5169. file_userCenter_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  5170. switch v := v.(*Items); i {
  5171. case 0:
  5172. return &v.state
  5173. case 1:
  5174. return &v.sizeCache
  5175. case 2:
  5176. return &v.unknownFields
  5177. default:
  5178. return nil
  5179. }
  5180. }
  5181. file_userCenter_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  5182. switch v := v.(*Keys); i {
  5183. case 0:
  5184. return &v.state
  5185. case 1:
  5186. return &v.sizeCache
  5187. case 2:
  5188. return &v.unknownFields
  5189. default:
  5190. return nil
  5191. }
  5192. }
  5193. file_userCenter_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  5194. switch v := v.(*UserReq); i {
  5195. case 0:
  5196. return &v.state
  5197. case 1:
  5198. return &v.sizeCache
  5199. case 2:
  5200. return &v.unknownFields
  5201. default:
  5202. return nil
  5203. }
  5204. }
  5205. file_userCenter_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  5206. switch v := v.(*EntUserReq); i {
  5207. case 0:
  5208. return &v.state
  5209. case 1:
  5210. return &v.sizeCache
  5211. case 2:
  5212. return &v.unknownFields
  5213. default:
  5214. return nil
  5215. }
  5216. }
  5217. file_userCenter_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  5218. switch v := v.(*EntUserResp); i {
  5219. case 0:
  5220. return &v.state
  5221. case 1:
  5222. return &v.sizeCache
  5223. case 2:
  5224. return &v.unknownFields
  5225. default:
  5226. return nil
  5227. }
  5228. }
  5229. file_userCenter_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  5230. switch v := v.(*EntUser); i {
  5231. case 0:
  5232. return &v.state
  5233. case 1:
  5234. return &v.sizeCache
  5235. case 2:
  5236. return &v.unknownFields
  5237. default:
  5238. return nil
  5239. }
  5240. }
  5241. file_userCenter_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  5242. switch v := v.(*EntUserListReq); i {
  5243. case 0:
  5244. return &v.state
  5245. case 1:
  5246. return &v.sizeCache
  5247. case 2:
  5248. return &v.unknownFields
  5249. default:
  5250. return nil
  5251. }
  5252. }
  5253. file_userCenter_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  5254. switch v := v.(*EntUserListResp); i {
  5255. case 0:
  5256. return &v.state
  5257. case 1:
  5258. return &v.sizeCache
  5259. case 2:
  5260. return &v.unknownFields
  5261. default:
  5262. return nil
  5263. }
  5264. }
  5265. file_userCenter_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  5266. switch v := v.(*EntUserListData); i {
  5267. case 0:
  5268. return &v.state
  5269. case 1:
  5270. return &v.sizeCache
  5271. case 2:
  5272. return &v.unknownFields
  5273. default:
  5274. return nil
  5275. }
  5276. }
  5277. file_userCenter_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  5278. switch v := v.(*CheckIsEntAdminResp); i {
  5279. case 0:
  5280. return &v.state
  5281. case 1:
  5282. return &v.sizeCache
  5283. case 2:
  5284. return &v.unknownFields
  5285. default:
  5286. return nil
  5287. }
  5288. }
  5289. file_userCenter_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  5290. switch v := v.(*GetStatusByCode); i {
  5291. case 0:
  5292. return &v.state
  5293. case 1:
  5294. return &v.sizeCache
  5295. case 2:
  5296. return &v.unknownFields
  5297. default:
  5298. return nil
  5299. }
  5300. }
  5301. file_userCenter_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  5302. switch v := v.(*UserAddReq); i {
  5303. case 0:
  5304. return &v.state
  5305. case 1:
  5306. return &v.sizeCache
  5307. case 2:
  5308. return &v.unknownFields
  5309. default:
  5310. return nil
  5311. }
  5312. }
  5313. file_userCenter_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  5314. switch v := v.(*UserAddResp); i {
  5315. case 0:
  5316. return &v.state
  5317. case 1:
  5318. return &v.sizeCache
  5319. case 2:
  5320. return &v.unknownFields
  5321. default:
  5322. return nil
  5323. }
  5324. }
  5325. file_userCenter_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  5326. switch v := v.(*UserAdds); i {
  5327. case 0:
  5328. return &v.state
  5329. case 1:
  5330. return &v.sizeCache
  5331. case 2:
  5332. return &v.unknownFields
  5333. default:
  5334. return nil
  5335. }
  5336. }
  5337. file_userCenter_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  5338. switch v := v.(*UserIdReq); i {
  5339. case 0:
  5340. return &v.state
  5341. case 1:
  5342. return &v.sizeCache
  5343. case 2:
  5344. return &v.unknownFields
  5345. default:
  5346. return nil
  5347. }
  5348. }
  5349. file_userCenter_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  5350. switch v := v.(*WorkDesktopMenuInfoReq); i {
  5351. case 0:
  5352. return &v.state
  5353. case 1:
  5354. return &v.sizeCache
  5355. case 2:
  5356. return &v.unknownFields
  5357. default:
  5358. return nil
  5359. }
  5360. }
  5361. file_userCenter_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  5362. switch v := v.(*WorkDesktopMenuInfoResp); i {
  5363. case 0:
  5364. return &v.state
  5365. case 1:
  5366. return &v.sizeCache
  5367. case 2:
  5368. return &v.unknownFields
  5369. default:
  5370. return nil
  5371. }
  5372. }
  5373. file_userCenter_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  5374. switch v := v.(*MenuData); i {
  5375. case 0:
  5376. return &v.state
  5377. case 1:
  5378. return &v.sizeCache
  5379. case 2:
  5380. return &v.unknownFields
  5381. default:
  5382. return nil
  5383. }
  5384. }
  5385. file_userCenter_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  5386. switch v := v.(*MenuList); i {
  5387. case 0:
  5388. return &v.state
  5389. case 1:
  5390. return &v.sizeCache
  5391. case 2:
  5392. return &v.unknownFields
  5393. default:
  5394. return nil
  5395. }
  5396. }
  5397. file_userCenter_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  5398. switch v := v.(*SecondLevelMenu); i {
  5399. case 0:
  5400. return &v.state
  5401. case 1:
  5402. return &v.sizeCache
  5403. case 2:
  5404. return &v.unknownFields
  5405. default:
  5406. return nil
  5407. }
  5408. }
  5409. file_userCenter_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  5410. switch v := v.(*ThreeLevelMenu); i {
  5411. case 0:
  5412. return &v.state
  5413. case 1:
  5414. return &v.sizeCache
  5415. case 2:
  5416. return &v.unknownFields
  5417. default:
  5418. return nil
  5419. }
  5420. }
  5421. file_userCenter_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  5422. switch v := v.(*TipInfo); i {
  5423. case 0:
  5424. return &v.state
  5425. case 1:
  5426. return &v.sizeCache
  5427. case 2:
  5428. return &v.unknownFields
  5429. default:
  5430. return nil
  5431. }
  5432. }
  5433. file_userCenter_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  5434. switch v := v.(*WorkDesktopComprehensiveReq); i {
  5435. case 0:
  5436. return &v.state
  5437. case 1:
  5438. return &v.sizeCache
  5439. case 2:
  5440. return &v.unknownFields
  5441. default:
  5442. return nil
  5443. }
  5444. }
  5445. file_userCenter_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  5446. switch v := v.(*WorkDesktopComprehensiveResp); i {
  5447. case 0:
  5448. return &v.state
  5449. case 1:
  5450. return &v.sizeCache
  5451. case 2:
  5452. return &v.unknownFields
  5453. default:
  5454. return nil
  5455. }
  5456. }
  5457. file_userCenter_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  5458. switch v := v.(*WorkDesktopClearUserInfoReq); i {
  5459. case 0:
  5460. return &v.state
  5461. case 1:
  5462. return &v.sizeCache
  5463. case 2:
  5464. return &v.unknownFields
  5465. default:
  5466. return nil
  5467. }
  5468. }
  5469. file_userCenter_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  5470. switch v := v.(*WorkDesktopClearUserInfoResp); i {
  5471. case 0:
  5472. return &v.state
  5473. case 1:
  5474. return &v.sizeCache
  5475. case 2:
  5476. return &v.unknownFields
  5477. default:
  5478. return nil
  5479. }
  5480. }
  5481. file_userCenter_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  5482. switch v := v.(*IdentityReq); i {
  5483. case 0:
  5484. return &v.state
  5485. case 1:
  5486. return &v.sizeCache
  5487. case 2:
  5488. return &v.unknownFields
  5489. default:
  5490. return nil
  5491. }
  5492. }
  5493. file_userCenter_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  5494. switch v := v.(*Identity); i {
  5495. case 0:
  5496. return &v.state
  5497. case 1:
  5498. return &v.sizeCache
  5499. case 2:
  5500. return &v.unknownFields
  5501. default:
  5502. return nil
  5503. }
  5504. }
  5505. file_userCenter_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  5506. switch v := v.(*IdentityResp); i {
  5507. case 0:
  5508. return &v.state
  5509. case 1:
  5510. return &v.sizeCache
  5511. case 2:
  5512. return &v.unknownFields
  5513. default:
  5514. return nil
  5515. }
  5516. }
  5517. file_userCenter_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  5518. switch v := v.(*UserIdentityReq); i {
  5519. case 0:
  5520. return &v.state
  5521. case 1:
  5522. return &v.sizeCache
  5523. case 2:
  5524. return &v.unknownFields
  5525. default:
  5526. return nil
  5527. }
  5528. }
  5529. file_userCenter_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  5530. switch v := v.(*UserIdentityResp); i {
  5531. case 0:
  5532. return &v.state
  5533. case 1:
  5534. return &v.sizeCache
  5535. case 2:
  5536. return &v.unknownFields
  5537. default:
  5538. return nil
  5539. }
  5540. }
  5541. }
  5542. type x struct{}
  5543. out := protoimpl.TypeBuilder{
  5544. File: protoimpl.DescBuilder{
  5545. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  5546. RawDescriptor: file_userCenter_proto_rawDesc,
  5547. NumEnums: 0,
  5548. NumMessages: 58,
  5549. NumExtensions: 0,
  5550. NumServices: 1,
  5551. },
  5552. GoTypes: file_userCenter_proto_goTypes,
  5553. DependencyIndexes: file_userCenter_proto_depIdxs,
  5554. MessageInfos: file_userCenter_proto_msgTypes,
  5555. }.Build()
  5556. File_userCenter_proto = out.File
  5557. file_userCenter_proto_rawDesc = nil
  5558. file_userCenter_proto_goTypes = nil
  5559. file_userCenter_proto_depIdxs = nil
  5560. }