userCenter.pb.go 214 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.0
  4. // protoc v3.15.5
  5. // source: userCenter.proto
  6. package pb
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. //机构认证 入参
  20. type EntAuthReq struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` //机构/企业名称
  25. CreditCode string `protobuf:"bytes,2,opt,name=creditCode,proto3" json:"creditCode,omitempty"` //统一社会信用代码
  26. AreaNumber string `protobuf:"bytes,3,opt,name=areaNumber,proto3" json:"areaNumber,omitempty"` //省市(行政区划代码)
  27. Business string `protobuf:"bytes,4,opt,name=business,proto3" json:"business,omitempty"` //营业执照
  28. OfficialLetter string `protobuf:"bytes,5,opt,name=officialLetter,proto3" json:"officialLetter,omitempty"` //认证公函
  29. OrganizationType string `protobuf:"bytes,6,opt,name=organizationType,proto3" json:"organizationType,omitempty"` //机构类型 1投标企业 2招标采购单位 3厂商 4招标代理机构 5经销商 6服务提供商 7其他
  30. ComPanyType string `protobuf:"bytes,7,opt,name=comPanyType,proto3" json:"comPanyType,omitempty"` //机构性质 1企业 2党政机关事业单位及其他
  31. AuthName string `protobuf:"bytes,8,opt,name=authName,proto3" json:"authName,omitempty"` //联系人姓名
  32. AuthPhone string `protobuf:"bytes,9,opt,name=authPhone,proto3" json:"authPhone,omitempty"` //联系人手机号
  33. Phone string `protobuf:"bytes,10,opt,name=phone,proto3" json:"phone,omitempty"` //注册手机号
  34. EntId int64 `protobuf:"varint,11,opt,name=entId,proto3" json:"entId,omitempty"` //企业id
  35. Referer string `protobuf:"bytes,12,opt,name=referer,proto3" json:"referer,omitempty"`
  36. }
  37. func (x *EntAuthReq) Reset() {
  38. *x = EntAuthReq{}
  39. if protoimpl.UnsafeEnabled {
  40. mi := &file_userCenter_proto_msgTypes[0]
  41. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  42. ms.StoreMessageInfo(mi)
  43. }
  44. }
  45. func (x *EntAuthReq) String() string {
  46. return protoimpl.X.MessageStringOf(x)
  47. }
  48. func (*EntAuthReq) ProtoMessage() {}
  49. func (x *EntAuthReq) ProtoReflect() protoreflect.Message {
  50. mi := &file_userCenter_proto_msgTypes[0]
  51. if protoimpl.UnsafeEnabled && x != nil {
  52. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  53. if ms.LoadMessageInfo() == nil {
  54. ms.StoreMessageInfo(mi)
  55. }
  56. return ms
  57. }
  58. return mi.MessageOf(x)
  59. }
  60. // Deprecated: Use EntAuthReq.ProtoReflect.Descriptor instead.
  61. func (*EntAuthReq) Descriptor() ([]byte, []int) {
  62. return file_userCenter_proto_rawDescGZIP(), []int{0}
  63. }
  64. func (x *EntAuthReq) GetName() string {
  65. if x != nil {
  66. return x.Name
  67. }
  68. return ""
  69. }
  70. func (x *EntAuthReq) GetCreditCode() string {
  71. if x != nil {
  72. return x.CreditCode
  73. }
  74. return ""
  75. }
  76. func (x *EntAuthReq) GetAreaNumber() string {
  77. if x != nil {
  78. return x.AreaNumber
  79. }
  80. return ""
  81. }
  82. func (x *EntAuthReq) GetBusiness() string {
  83. if x != nil {
  84. return x.Business
  85. }
  86. return ""
  87. }
  88. func (x *EntAuthReq) GetOfficialLetter() string {
  89. if x != nil {
  90. return x.OfficialLetter
  91. }
  92. return ""
  93. }
  94. func (x *EntAuthReq) GetOrganizationType() string {
  95. if x != nil {
  96. return x.OrganizationType
  97. }
  98. return ""
  99. }
  100. func (x *EntAuthReq) GetComPanyType() string {
  101. if x != nil {
  102. return x.ComPanyType
  103. }
  104. return ""
  105. }
  106. func (x *EntAuthReq) GetAuthName() string {
  107. if x != nil {
  108. return x.AuthName
  109. }
  110. return ""
  111. }
  112. func (x *EntAuthReq) GetAuthPhone() string {
  113. if x != nil {
  114. return x.AuthPhone
  115. }
  116. return ""
  117. }
  118. func (x *EntAuthReq) GetPhone() string {
  119. if x != nil {
  120. return x.Phone
  121. }
  122. return ""
  123. }
  124. func (x *EntAuthReq) GetEntId() int64 {
  125. if x != nil {
  126. return x.EntId
  127. }
  128. return 0
  129. }
  130. func (x *EntAuthReq) GetReferer() string {
  131. if x != nil {
  132. return x.Referer
  133. }
  134. return ""
  135. }
  136. //机构认证出参
  137. type EntAuthResp struct {
  138. state protoimpl.MessageState
  139. sizeCache protoimpl.SizeCache
  140. unknownFields protoimpl.UnknownFields
  141. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  142. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  143. Data *EntAuthData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  144. }
  145. func (x *EntAuthResp) Reset() {
  146. *x = EntAuthResp{}
  147. if protoimpl.UnsafeEnabled {
  148. mi := &file_userCenter_proto_msgTypes[1]
  149. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  150. ms.StoreMessageInfo(mi)
  151. }
  152. }
  153. func (x *EntAuthResp) String() string {
  154. return protoimpl.X.MessageStringOf(x)
  155. }
  156. func (*EntAuthResp) ProtoMessage() {}
  157. func (x *EntAuthResp) ProtoReflect() protoreflect.Message {
  158. mi := &file_userCenter_proto_msgTypes[1]
  159. if protoimpl.UnsafeEnabled && x != nil {
  160. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  161. if ms.LoadMessageInfo() == nil {
  162. ms.StoreMessageInfo(mi)
  163. }
  164. return ms
  165. }
  166. return mi.MessageOf(x)
  167. }
  168. // Deprecated: Use EntAuthResp.ProtoReflect.Descriptor instead.
  169. func (*EntAuthResp) Descriptor() ([]byte, []int) {
  170. return file_userCenter_proto_rawDescGZIP(), []int{1}
  171. }
  172. func (x *EntAuthResp) GetErrorCode() int64 {
  173. if x != nil {
  174. return x.ErrorCode
  175. }
  176. return 0
  177. }
  178. func (x *EntAuthResp) GetErrorMsg() string {
  179. if x != nil {
  180. return x.ErrorMsg
  181. }
  182. return ""
  183. }
  184. func (x *EntAuthResp) GetData() *EntAuthData {
  185. if x != nil {
  186. return x.Data
  187. }
  188. return nil
  189. }
  190. //机构认证出参
  191. type EntAuthData struct {
  192. state protoimpl.MessageState
  193. sizeCache protoimpl.SizeCache
  194. unknownFields protoimpl.UnknownFields
  195. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  196. EntId string `protobuf:"bytes,2,opt,name=entId,proto3" json:"entId,omitempty"` //加密的entid
  197. }
  198. func (x *EntAuthData) Reset() {
  199. *x = EntAuthData{}
  200. if protoimpl.UnsafeEnabled {
  201. mi := &file_userCenter_proto_msgTypes[2]
  202. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  203. ms.StoreMessageInfo(mi)
  204. }
  205. }
  206. func (x *EntAuthData) String() string {
  207. return protoimpl.X.MessageStringOf(x)
  208. }
  209. func (*EntAuthData) ProtoMessage() {}
  210. func (x *EntAuthData) ProtoReflect() protoreflect.Message {
  211. mi := &file_userCenter_proto_msgTypes[2]
  212. if protoimpl.UnsafeEnabled && x != nil {
  213. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  214. if ms.LoadMessageInfo() == nil {
  215. ms.StoreMessageInfo(mi)
  216. }
  217. return ms
  218. }
  219. return mi.MessageOf(x)
  220. }
  221. // Deprecated: Use EntAuthData.ProtoReflect.Descriptor instead.
  222. func (*EntAuthData) Descriptor() ([]byte, []int) {
  223. return file_userCenter_proto_rawDescGZIP(), []int{2}
  224. }
  225. func (x *EntAuthData) GetStatus() int64 {
  226. if x != nil {
  227. return x.Status
  228. }
  229. return 0
  230. }
  231. func (x *EntAuthData) GetEntId() string {
  232. if x != nil {
  233. return x.EntId
  234. }
  235. return ""
  236. }
  237. //机构审核入参
  238. type ExamineReq struct {
  239. state protoimpl.MessageState
  240. sizeCache protoimpl.SizeCache
  241. unknownFields protoimpl.UnknownFields
  242. EntId int64 `protobuf:"varint,1,opt,name=EntId,proto3" json:"EntId,omitempty"` //企业id
  243. AuthType string `protobuf:"bytes,2,opt,name=AuthType,proto3" json:"AuthType,omitempty"` //审核状态 2审核通过 3审核不通过
  244. Reason string `protobuf:"bytes,3,opt,name=Reason,proto3" json:"Reason,omitempty"` //不通过原因
  245. AuditUser string `protobuf:"bytes,4,opt,name=AuditUser,proto3" json:"AuditUser,omitempty"` //审核人
  246. ExamineId string `protobuf:"bytes,5,opt,name=ExamineId,proto3" json:"ExamineId,omitempty"` //审核id 认证记录表主键id
  247. }
  248. func (x *ExamineReq) Reset() {
  249. *x = ExamineReq{}
  250. if protoimpl.UnsafeEnabled {
  251. mi := &file_userCenter_proto_msgTypes[3]
  252. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  253. ms.StoreMessageInfo(mi)
  254. }
  255. }
  256. func (x *ExamineReq) String() string {
  257. return protoimpl.X.MessageStringOf(x)
  258. }
  259. func (*ExamineReq) ProtoMessage() {}
  260. func (x *ExamineReq) ProtoReflect() protoreflect.Message {
  261. mi := &file_userCenter_proto_msgTypes[3]
  262. if protoimpl.UnsafeEnabled && x != nil {
  263. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  264. if ms.LoadMessageInfo() == nil {
  265. ms.StoreMessageInfo(mi)
  266. }
  267. return ms
  268. }
  269. return mi.MessageOf(x)
  270. }
  271. // Deprecated: Use ExamineReq.ProtoReflect.Descriptor instead.
  272. func (*ExamineReq) Descriptor() ([]byte, []int) {
  273. return file_userCenter_proto_rawDescGZIP(), []int{3}
  274. }
  275. func (x *ExamineReq) GetEntId() int64 {
  276. if x != nil {
  277. return x.EntId
  278. }
  279. return 0
  280. }
  281. func (x *ExamineReq) GetAuthType() string {
  282. if x != nil {
  283. return x.AuthType
  284. }
  285. return ""
  286. }
  287. func (x *ExamineReq) GetReason() string {
  288. if x != nil {
  289. return x.Reason
  290. }
  291. return ""
  292. }
  293. func (x *ExamineReq) GetAuditUser() string {
  294. if x != nil {
  295. return x.AuditUser
  296. }
  297. return ""
  298. }
  299. func (x *ExamineReq) GetExamineId() string {
  300. if x != nil {
  301. return x.ExamineId
  302. }
  303. return ""
  304. }
  305. //机构审核出参
  306. type ExamineResp struct {
  307. state protoimpl.MessageState
  308. sizeCache protoimpl.SizeCache
  309. unknownFields protoimpl.UnknownFields
  310. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  311. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  312. Data *ExamineData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  313. }
  314. func (x *ExamineResp) Reset() {
  315. *x = ExamineResp{}
  316. if protoimpl.UnsafeEnabled {
  317. mi := &file_userCenter_proto_msgTypes[4]
  318. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  319. ms.StoreMessageInfo(mi)
  320. }
  321. }
  322. func (x *ExamineResp) String() string {
  323. return protoimpl.X.MessageStringOf(x)
  324. }
  325. func (*ExamineResp) ProtoMessage() {}
  326. func (x *ExamineResp) ProtoReflect() protoreflect.Message {
  327. mi := &file_userCenter_proto_msgTypes[4]
  328. if protoimpl.UnsafeEnabled && x != nil {
  329. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  330. if ms.LoadMessageInfo() == nil {
  331. ms.StoreMessageInfo(mi)
  332. }
  333. return ms
  334. }
  335. return mi.MessageOf(x)
  336. }
  337. // Deprecated: Use ExamineResp.ProtoReflect.Descriptor instead.
  338. func (*ExamineResp) Descriptor() ([]byte, []int) {
  339. return file_userCenter_proto_rawDescGZIP(), []int{4}
  340. }
  341. func (x *ExamineResp) GetErrorCode() int64 {
  342. if x != nil {
  343. return x.ErrorCode
  344. }
  345. return 0
  346. }
  347. func (x *ExamineResp) GetErrorMsg() string {
  348. if x != nil {
  349. return x.ErrorMsg
  350. }
  351. return ""
  352. }
  353. func (x *ExamineResp) GetData() *ExamineData {
  354. if x != nil {
  355. return x.Data
  356. }
  357. return nil
  358. }
  359. type ExamineData struct {
  360. state protoimpl.MessageState
  361. sizeCache protoimpl.SizeCache
  362. unknownFields protoimpl.UnknownFields
  363. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  364. }
  365. func (x *ExamineData) Reset() {
  366. *x = ExamineData{}
  367. if protoimpl.UnsafeEnabled {
  368. mi := &file_userCenter_proto_msgTypes[5]
  369. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  370. ms.StoreMessageInfo(mi)
  371. }
  372. }
  373. func (x *ExamineData) String() string {
  374. return protoimpl.X.MessageStringOf(x)
  375. }
  376. func (*ExamineData) ProtoMessage() {}
  377. func (x *ExamineData) ProtoReflect() protoreflect.Message {
  378. mi := &file_userCenter_proto_msgTypes[5]
  379. if protoimpl.UnsafeEnabled && x != nil {
  380. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  381. if ms.LoadMessageInfo() == nil {
  382. ms.StoreMessageInfo(mi)
  383. }
  384. return ms
  385. }
  386. return mi.MessageOf(x)
  387. }
  388. // Deprecated: Use ExamineData.ProtoReflect.Descriptor instead.
  389. func (*ExamineData) Descriptor() ([]byte, []int) {
  390. return file_userCenter_proto_rawDescGZIP(), []int{5}
  391. }
  392. func (x *ExamineData) GetStatus() int64 {
  393. if x != nil {
  394. return x.Status
  395. }
  396. return 0
  397. }
  398. //企业列表入参
  399. type EntListReq struct {
  400. state protoimpl.MessageState
  401. sizeCache protoimpl.SizeCache
  402. unknownFields protoimpl.UnknownFields
  403. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` //企业名称
  404. PageNum string `protobuf:"bytes,2,opt,name=pageNum,proto3" json:"pageNum,omitempty"` //页码,不传默认第一页 第一页为0
  405. PageSize string `protobuf:"bytes,3,opt,name=pageSize,proto3" json:"pageSize,omitempty"` //每页显示条数,不传默认为10
  406. CreditCode string `protobuf:"bytes,4,opt,name=creditCode,proto3" json:"creditCode,omitempty"` //统一社会信用代码
  407. CreateStartTime string `protobuf:"bytes,5,opt,name=createStartTime,proto3" json:"createStartTime,omitempty"` //创建开始时间戳
  408. CreateEndTime string `protobuf:"bytes,6,opt,name=createEndTime,proto3" json:"createEndTime,omitempty"` //创建结束时间戳
  409. AuthStatus string `protobuf:"bytes,7,opt,name=authStatus,proto3" json:"authStatus,omitempty"` //认证状态 0未认证 1已认证
  410. ValidStartTime string `protobuf:"bytes,8,opt,name=validStartTime,proto3" json:"validStartTime,omitempty"` //有效截至开始时间戳
  411. ValidEndTime string `protobuf:"bytes,9,opt,name=validEndTime,proto3" json:"validEndTime,omitempty"` //有效截止时间戳
  412. FrozenStatus string `protobuf:"bytes,10,opt,name=frozenStatus,proto3" json:"frozenStatus,omitempty"` //冻结状态 1正常 0冻结
  413. RegPhone string `protobuf:"bytes,11,opt,name=regPhone,proto3" json:"regPhone,omitempty"` //注册人手机号 即管理员手机号
  414. AuthPhone string `protobuf:"bytes,12,opt,name=authPhone,proto3" json:"authPhone,omitempty"` //联系人手机号
  415. }
  416. func (x *EntListReq) Reset() {
  417. *x = EntListReq{}
  418. if protoimpl.UnsafeEnabled {
  419. mi := &file_userCenter_proto_msgTypes[6]
  420. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  421. ms.StoreMessageInfo(mi)
  422. }
  423. }
  424. func (x *EntListReq) String() string {
  425. return protoimpl.X.MessageStringOf(x)
  426. }
  427. func (*EntListReq) ProtoMessage() {}
  428. func (x *EntListReq) ProtoReflect() protoreflect.Message {
  429. mi := &file_userCenter_proto_msgTypes[6]
  430. if protoimpl.UnsafeEnabled && x != nil {
  431. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  432. if ms.LoadMessageInfo() == nil {
  433. ms.StoreMessageInfo(mi)
  434. }
  435. return ms
  436. }
  437. return mi.MessageOf(x)
  438. }
  439. // Deprecated: Use EntListReq.ProtoReflect.Descriptor instead.
  440. func (*EntListReq) Descriptor() ([]byte, []int) {
  441. return file_userCenter_proto_rawDescGZIP(), []int{6}
  442. }
  443. func (x *EntListReq) GetName() string {
  444. if x != nil {
  445. return x.Name
  446. }
  447. return ""
  448. }
  449. func (x *EntListReq) GetPageNum() string {
  450. if x != nil {
  451. return x.PageNum
  452. }
  453. return ""
  454. }
  455. func (x *EntListReq) GetPageSize() string {
  456. if x != nil {
  457. return x.PageSize
  458. }
  459. return ""
  460. }
  461. func (x *EntListReq) GetCreditCode() string {
  462. if x != nil {
  463. return x.CreditCode
  464. }
  465. return ""
  466. }
  467. func (x *EntListReq) GetCreateStartTime() string {
  468. if x != nil {
  469. return x.CreateStartTime
  470. }
  471. return ""
  472. }
  473. func (x *EntListReq) GetCreateEndTime() string {
  474. if x != nil {
  475. return x.CreateEndTime
  476. }
  477. return ""
  478. }
  479. func (x *EntListReq) GetAuthStatus() string {
  480. if x != nil {
  481. return x.AuthStatus
  482. }
  483. return ""
  484. }
  485. func (x *EntListReq) GetValidStartTime() string {
  486. if x != nil {
  487. return x.ValidStartTime
  488. }
  489. return ""
  490. }
  491. func (x *EntListReq) GetValidEndTime() string {
  492. if x != nil {
  493. return x.ValidEndTime
  494. }
  495. return ""
  496. }
  497. func (x *EntListReq) GetFrozenStatus() string {
  498. if x != nil {
  499. return x.FrozenStatus
  500. }
  501. return ""
  502. }
  503. func (x *EntListReq) GetRegPhone() string {
  504. if x != nil {
  505. return x.RegPhone
  506. }
  507. return ""
  508. }
  509. func (x *EntListReq) GetAuthPhone() string {
  510. if x != nil {
  511. return x.AuthPhone
  512. }
  513. return ""
  514. }
  515. //企业列表出参
  516. type EntListResp struct {
  517. state protoimpl.MessageState
  518. sizeCache protoimpl.SizeCache
  519. unknownFields protoimpl.UnknownFields
  520. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  521. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  522. Data *EntData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` //列表
  523. }
  524. func (x *EntListResp) Reset() {
  525. *x = EntListResp{}
  526. if protoimpl.UnsafeEnabled {
  527. mi := &file_userCenter_proto_msgTypes[7]
  528. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  529. ms.StoreMessageInfo(mi)
  530. }
  531. }
  532. func (x *EntListResp) String() string {
  533. return protoimpl.X.MessageStringOf(x)
  534. }
  535. func (*EntListResp) ProtoMessage() {}
  536. func (x *EntListResp) ProtoReflect() protoreflect.Message {
  537. mi := &file_userCenter_proto_msgTypes[7]
  538. if protoimpl.UnsafeEnabled && x != nil {
  539. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  540. if ms.LoadMessageInfo() == nil {
  541. ms.StoreMessageInfo(mi)
  542. }
  543. return ms
  544. }
  545. return mi.MessageOf(x)
  546. }
  547. // Deprecated: Use EntListResp.ProtoReflect.Descriptor instead.
  548. func (*EntListResp) Descriptor() ([]byte, []int) {
  549. return file_userCenter_proto_rawDescGZIP(), []int{7}
  550. }
  551. func (x *EntListResp) GetErrorCode() int64 {
  552. if x != nil {
  553. return x.ErrorCode
  554. }
  555. return 0
  556. }
  557. func (x *EntListResp) GetErrorMsg() string {
  558. if x != nil {
  559. return x.ErrorMsg
  560. }
  561. return ""
  562. }
  563. func (x *EntListResp) GetData() *EntData {
  564. if x != nil {
  565. return x.Data
  566. }
  567. return nil
  568. }
  569. type EntData struct {
  570. state protoimpl.MessageState
  571. sizeCache protoimpl.SizeCache
  572. unknownFields protoimpl.UnknownFields
  573. Count int64 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
  574. PageSize int64 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
  575. List []*EntList `protobuf:"bytes,3,rep,name=list,proto3" json:"list,omitempty"`
  576. }
  577. func (x *EntData) Reset() {
  578. *x = EntData{}
  579. if protoimpl.UnsafeEnabled {
  580. mi := &file_userCenter_proto_msgTypes[8]
  581. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  582. ms.StoreMessageInfo(mi)
  583. }
  584. }
  585. func (x *EntData) String() string {
  586. return protoimpl.X.MessageStringOf(x)
  587. }
  588. func (*EntData) ProtoMessage() {}
  589. func (x *EntData) ProtoReflect() protoreflect.Message {
  590. mi := &file_userCenter_proto_msgTypes[8]
  591. if protoimpl.UnsafeEnabled && x != nil {
  592. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  593. if ms.LoadMessageInfo() == nil {
  594. ms.StoreMessageInfo(mi)
  595. }
  596. return ms
  597. }
  598. return mi.MessageOf(x)
  599. }
  600. // Deprecated: Use EntData.ProtoReflect.Descriptor instead.
  601. func (*EntData) Descriptor() ([]byte, []int) {
  602. return file_userCenter_proto_rawDescGZIP(), []int{8}
  603. }
  604. func (x *EntData) GetCount() int64 {
  605. if x != nil {
  606. return x.Count
  607. }
  608. return 0
  609. }
  610. func (x *EntData) GetPageSize() int64 {
  611. if x != nil {
  612. return x.PageSize
  613. }
  614. return 0
  615. }
  616. func (x *EntData) GetList() []*EntList {
  617. if x != nil {
  618. return x.List
  619. }
  620. return nil
  621. }
  622. type EntList struct {
  623. state protoimpl.MessageState
  624. sizeCache protoimpl.SizeCache
  625. unknownFields protoimpl.UnknownFields
  626. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` //机构id
  627. ComPanyType int64 `protobuf:"varint,2,opt,name=comPanyType,proto3" json:"comPanyType,omitempty"` // 机构性质 1企业 2党政机关事业单位及其他
  628. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` //机构名称
  629. OrganizationType string `protobuf:"bytes,4,opt,name=organizationType,proto3" json:"organizationType,omitempty"` //机构类型 1企业 2党政机关事业单位及其他
  630. Createtime string `protobuf:"bytes,5,opt,name=createtime,proto3" json:"createtime,omitempty"` //创建时间
  631. ValidTime string `protobuf:"bytes,6,opt,name=validTime,proto3" json:"validTime,omitempty"` //有效截至日期
  632. AuthStatus int64 `protobuf:"varint,7,opt,name=authStatus,proto3" json:"authStatus,omitempty"` //认证状态
  633. FrozenStatus int64 `protobuf:"varint,8,opt,name=frozenStatus,proto3" json:"frozenStatus,omitempty"` //冻结状态 1冻结 0未冻结
  634. }
  635. func (x *EntList) Reset() {
  636. *x = EntList{}
  637. if protoimpl.UnsafeEnabled {
  638. mi := &file_userCenter_proto_msgTypes[9]
  639. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  640. ms.StoreMessageInfo(mi)
  641. }
  642. }
  643. func (x *EntList) String() string {
  644. return protoimpl.X.MessageStringOf(x)
  645. }
  646. func (*EntList) ProtoMessage() {}
  647. func (x *EntList) ProtoReflect() protoreflect.Message {
  648. mi := &file_userCenter_proto_msgTypes[9]
  649. if protoimpl.UnsafeEnabled && x != nil {
  650. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  651. if ms.LoadMessageInfo() == nil {
  652. ms.StoreMessageInfo(mi)
  653. }
  654. return ms
  655. }
  656. return mi.MessageOf(x)
  657. }
  658. // Deprecated: Use EntList.ProtoReflect.Descriptor instead.
  659. func (*EntList) Descriptor() ([]byte, []int) {
  660. return file_userCenter_proto_rawDescGZIP(), []int{9}
  661. }
  662. func (x *EntList) GetId() int64 {
  663. if x != nil {
  664. return x.Id
  665. }
  666. return 0
  667. }
  668. func (x *EntList) GetComPanyType() int64 {
  669. if x != nil {
  670. return x.ComPanyType
  671. }
  672. return 0
  673. }
  674. func (x *EntList) GetName() string {
  675. if x != nil {
  676. return x.Name
  677. }
  678. return ""
  679. }
  680. func (x *EntList) GetOrganizationType() string {
  681. if x != nil {
  682. return x.OrganizationType
  683. }
  684. return ""
  685. }
  686. func (x *EntList) GetCreatetime() string {
  687. if x != nil {
  688. return x.Createtime
  689. }
  690. return ""
  691. }
  692. func (x *EntList) GetValidTime() string {
  693. if x != nil {
  694. return x.ValidTime
  695. }
  696. return ""
  697. }
  698. func (x *EntList) GetAuthStatus() int64 {
  699. if x != nil {
  700. return x.AuthStatus
  701. }
  702. return 0
  703. }
  704. func (x *EntList) GetFrozenStatus() int64 {
  705. if x != nil {
  706. return x.FrozenStatus
  707. }
  708. return 0
  709. }
  710. //审核列表入参
  711. type ExamineListReq struct {
  712. state protoimpl.MessageState
  713. sizeCache protoimpl.SizeCache
  714. unknownFields protoimpl.UnknownFields
  715. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` //机构名称
  716. AuthPhone string `protobuf:"bytes,2,opt,name=authPhone,proto3" json:"authPhone,omitempty"` //联系人手机号
  717. RegPhone string `protobuf:"bytes,3,opt,name=regPhone,proto3" json:"regPhone,omitempty"` //注册人手机号
  718. AuthType string `protobuf:"bytes,4,opt,name=authType,proto3" json:"authType,omitempty"` //审核状态 1:待审核 2:审核通过 3:审核不通过
  719. AuthStartTime string `protobuf:"bytes,5,opt,name=authStartTime,proto3" json:"authStartTime,omitempty"` //申请开始时间
  720. AuthEndTime string `protobuf:"bytes,6,opt,name=authEndTime,proto3" json:"authEndTime,omitempty"` //申请结束时间
  721. PageNum string `protobuf:"bytes,7,opt,name=pageNum,proto3" json:"pageNum,omitempty"` //页码
  722. PageSize string `protobuf:"bytes,8,opt,name=pageSize,proto3" json:"pageSize,omitempty"` //每页展示条数
  723. }
  724. func (x *ExamineListReq) Reset() {
  725. *x = ExamineListReq{}
  726. if protoimpl.UnsafeEnabled {
  727. mi := &file_userCenter_proto_msgTypes[10]
  728. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  729. ms.StoreMessageInfo(mi)
  730. }
  731. }
  732. func (x *ExamineListReq) String() string {
  733. return protoimpl.X.MessageStringOf(x)
  734. }
  735. func (*ExamineListReq) ProtoMessage() {}
  736. func (x *ExamineListReq) ProtoReflect() protoreflect.Message {
  737. mi := &file_userCenter_proto_msgTypes[10]
  738. if protoimpl.UnsafeEnabled && x != nil {
  739. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  740. if ms.LoadMessageInfo() == nil {
  741. ms.StoreMessageInfo(mi)
  742. }
  743. return ms
  744. }
  745. return mi.MessageOf(x)
  746. }
  747. // Deprecated: Use ExamineListReq.ProtoReflect.Descriptor instead.
  748. func (*ExamineListReq) Descriptor() ([]byte, []int) {
  749. return file_userCenter_proto_rawDescGZIP(), []int{10}
  750. }
  751. func (x *ExamineListReq) GetName() string {
  752. if x != nil {
  753. return x.Name
  754. }
  755. return ""
  756. }
  757. func (x *ExamineListReq) GetAuthPhone() string {
  758. if x != nil {
  759. return x.AuthPhone
  760. }
  761. return ""
  762. }
  763. func (x *ExamineListReq) GetRegPhone() string {
  764. if x != nil {
  765. return x.RegPhone
  766. }
  767. return ""
  768. }
  769. func (x *ExamineListReq) GetAuthType() string {
  770. if x != nil {
  771. return x.AuthType
  772. }
  773. return ""
  774. }
  775. func (x *ExamineListReq) GetAuthStartTime() string {
  776. if x != nil {
  777. return x.AuthStartTime
  778. }
  779. return ""
  780. }
  781. func (x *ExamineListReq) GetAuthEndTime() string {
  782. if x != nil {
  783. return x.AuthEndTime
  784. }
  785. return ""
  786. }
  787. func (x *ExamineListReq) GetPageNum() string {
  788. if x != nil {
  789. return x.PageNum
  790. }
  791. return ""
  792. }
  793. func (x *ExamineListReq) GetPageSize() string {
  794. if x != nil {
  795. return x.PageSize
  796. }
  797. return ""
  798. }
  799. //审核列表出参
  800. type ExamineListResp struct {
  801. state protoimpl.MessageState
  802. sizeCache protoimpl.SizeCache
  803. unknownFields protoimpl.UnknownFields
  804. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  805. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  806. Data *ExamineListData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` //列表
  807. }
  808. func (x *ExamineListResp) Reset() {
  809. *x = ExamineListResp{}
  810. if protoimpl.UnsafeEnabled {
  811. mi := &file_userCenter_proto_msgTypes[11]
  812. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  813. ms.StoreMessageInfo(mi)
  814. }
  815. }
  816. func (x *ExamineListResp) String() string {
  817. return protoimpl.X.MessageStringOf(x)
  818. }
  819. func (*ExamineListResp) ProtoMessage() {}
  820. func (x *ExamineListResp) ProtoReflect() protoreflect.Message {
  821. mi := &file_userCenter_proto_msgTypes[11]
  822. if protoimpl.UnsafeEnabled && x != nil {
  823. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  824. if ms.LoadMessageInfo() == nil {
  825. ms.StoreMessageInfo(mi)
  826. }
  827. return ms
  828. }
  829. return mi.MessageOf(x)
  830. }
  831. // Deprecated: Use ExamineListResp.ProtoReflect.Descriptor instead.
  832. func (*ExamineListResp) Descriptor() ([]byte, []int) {
  833. return file_userCenter_proto_rawDescGZIP(), []int{11}
  834. }
  835. func (x *ExamineListResp) GetErrorCode() int64 {
  836. if x != nil {
  837. return x.ErrorCode
  838. }
  839. return 0
  840. }
  841. func (x *ExamineListResp) GetErrorMsg() string {
  842. if x != nil {
  843. return x.ErrorMsg
  844. }
  845. return ""
  846. }
  847. func (x *ExamineListResp) GetData() *ExamineListData {
  848. if x != nil {
  849. return x.Data
  850. }
  851. return nil
  852. }
  853. type ExamineListData struct {
  854. state protoimpl.MessageState
  855. sizeCache protoimpl.SizeCache
  856. unknownFields protoimpl.UnknownFields
  857. Count int64 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
  858. PageSize int64 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
  859. List []*ExamineList `protobuf:"bytes,3,rep,name=list,proto3" json:"list,omitempty"`
  860. }
  861. func (x *ExamineListData) Reset() {
  862. *x = ExamineListData{}
  863. if protoimpl.UnsafeEnabled {
  864. mi := &file_userCenter_proto_msgTypes[12]
  865. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  866. ms.StoreMessageInfo(mi)
  867. }
  868. }
  869. func (x *ExamineListData) String() string {
  870. return protoimpl.X.MessageStringOf(x)
  871. }
  872. func (*ExamineListData) ProtoMessage() {}
  873. func (x *ExamineListData) ProtoReflect() protoreflect.Message {
  874. mi := &file_userCenter_proto_msgTypes[12]
  875. if protoimpl.UnsafeEnabled && x != nil {
  876. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  877. if ms.LoadMessageInfo() == nil {
  878. ms.StoreMessageInfo(mi)
  879. }
  880. return ms
  881. }
  882. return mi.MessageOf(x)
  883. }
  884. // Deprecated: Use ExamineListData.ProtoReflect.Descriptor instead.
  885. func (*ExamineListData) Descriptor() ([]byte, []int) {
  886. return file_userCenter_proto_rawDescGZIP(), []int{12}
  887. }
  888. func (x *ExamineListData) GetCount() int64 {
  889. if x != nil {
  890. return x.Count
  891. }
  892. return 0
  893. }
  894. func (x *ExamineListData) GetPageSize() int64 {
  895. if x != nil {
  896. return x.PageSize
  897. }
  898. return 0
  899. }
  900. func (x *ExamineListData) GetList() []*ExamineList {
  901. if x != nil {
  902. return x.List
  903. }
  904. return nil
  905. }
  906. type ExamineList struct {
  907. state protoimpl.MessageState
  908. sizeCache protoimpl.SizeCache
  909. unknownFields protoimpl.UnknownFields
  910. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` //机构id
  911. EntId int64 `protobuf:"varint,2,opt,name=entId,proto3" json:"entId,omitempty"` //企业id
  912. ComPanyType int64 `protobuf:"varint,3,opt,name=comPanyType,proto3" json:"comPanyType,omitempty"` // 机构性质 1企业 2党政机关事业单位及其他
  913. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"` //机构名称
  914. CreditCode string `protobuf:"bytes,5,opt,name=creditCode,proto3" json:"creditCode,omitempty"` //统一社会信用代码
  915. AuthPhone string `protobuf:"bytes,6,opt,name=authPhone,proto3" json:"authPhone,omitempty"` //联系人手机号
  916. ApplyTime string `protobuf:"bytes,7,opt,name=applyTime,proto3" json:"applyTime,omitempty"` //申请时间戳
  917. AuthType int64 `protobuf:"varint,8,opt,name=authType,proto3" json:"authType,omitempty"` //审核状态 1:待审核 2:审核通过 3:审核不通过
  918. RegPhone string `protobuf:"bytes,9,opt,name=regPhone,proto3" json:"regPhone,omitempty"` //注册人手机号
  919. }
  920. func (x *ExamineList) Reset() {
  921. *x = ExamineList{}
  922. if protoimpl.UnsafeEnabled {
  923. mi := &file_userCenter_proto_msgTypes[13]
  924. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  925. ms.StoreMessageInfo(mi)
  926. }
  927. }
  928. func (x *ExamineList) String() string {
  929. return protoimpl.X.MessageStringOf(x)
  930. }
  931. func (*ExamineList) ProtoMessage() {}
  932. func (x *ExamineList) ProtoReflect() protoreflect.Message {
  933. mi := &file_userCenter_proto_msgTypes[13]
  934. if protoimpl.UnsafeEnabled && x != nil {
  935. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  936. if ms.LoadMessageInfo() == nil {
  937. ms.StoreMessageInfo(mi)
  938. }
  939. return ms
  940. }
  941. return mi.MessageOf(x)
  942. }
  943. // Deprecated: Use ExamineList.ProtoReflect.Descriptor instead.
  944. func (*ExamineList) Descriptor() ([]byte, []int) {
  945. return file_userCenter_proto_rawDescGZIP(), []int{13}
  946. }
  947. func (x *ExamineList) GetId() int64 {
  948. if x != nil {
  949. return x.Id
  950. }
  951. return 0
  952. }
  953. func (x *ExamineList) GetEntId() int64 {
  954. if x != nil {
  955. return x.EntId
  956. }
  957. return 0
  958. }
  959. func (x *ExamineList) GetComPanyType() int64 {
  960. if x != nil {
  961. return x.ComPanyType
  962. }
  963. return 0
  964. }
  965. func (x *ExamineList) GetName() string {
  966. if x != nil {
  967. return x.Name
  968. }
  969. return ""
  970. }
  971. func (x *ExamineList) GetCreditCode() string {
  972. if x != nil {
  973. return x.CreditCode
  974. }
  975. return ""
  976. }
  977. func (x *ExamineList) GetAuthPhone() string {
  978. if x != nil {
  979. return x.AuthPhone
  980. }
  981. return ""
  982. }
  983. func (x *ExamineList) GetApplyTime() string {
  984. if x != nil {
  985. return x.ApplyTime
  986. }
  987. return ""
  988. }
  989. func (x *ExamineList) GetAuthType() int64 {
  990. if x != nil {
  991. return x.AuthType
  992. }
  993. return 0
  994. }
  995. func (x *ExamineList) GetRegPhone() string {
  996. if x != nil {
  997. return x.RegPhone
  998. }
  999. return ""
  1000. }
  1001. //查看企业状态入参
  1002. type CheckEntReq struct {
  1003. state protoimpl.MessageState
  1004. sizeCache protoimpl.SizeCache
  1005. unknownFields protoimpl.UnknownFields
  1006. EntId int64 `protobuf:"varint,1,opt,name=entId,proto3" json:"entId,omitempty"` //企业id
  1007. }
  1008. func (x *CheckEntReq) Reset() {
  1009. *x = CheckEntReq{}
  1010. if protoimpl.UnsafeEnabled {
  1011. mi := &file_userCenter_proto_msgTypes[14]
  1012. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1013. ms.StoreMessageInfo(mi)
  1014. }
  1015. }
  1016. func (x *CheckEntReq) String() string {
  1017. return protoimpl.X.MessageStringOf(x)
  1018. }
  1019. func (*CheckEntReq) ProtoMessage() {}
  1020. func (x *CheckEntReq) ProtoReflect() protoreflect.Message {
  1021. mi := &file_userCenter_proto_msgTypes[14]
  1022. if protoimpl.UnsafeEnabled && x != nil {
  1023. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1024. if ms.LoadMessageInfo() == nil {
  1025. ms.StoreMessageInfo(mi)
  1026. }
  1027. return ms
  1028. }
  1029. return mi.MessageOf(x)
  1030. }
  1031. // Deprecated: Use CheckEntReq.ProtoReflect.Descriptor instead.
  1032. func (*CheckEntReq) Descriptor() ([]byte, []int) {
  1033. return file_userCenter_proto_rawDescGZIP(), []int{14}
  1034. }
  1035. func (x *CheckEntReq) GetEntId() int64 {
  1036. if x != nil {
  1037. return x.EntId
  1038. }
  1039. return 0
  1040. }
  1041. //查看企业状态出参
  1042. type CheckEntResp struct {
  1043. state protoimpl.MessageState
  1044. sizeCache protoimpl.SizeCache
  1045. unknownFields protoimpl.UnknownFields
  1046. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1047. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1048. Data *CheckData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1049. }
  1050. func (x *CheckEntResp) Reset() {
  1051. *x = CheckEntResp{}
  1052. if protoimpl.UnsafeEnabled {
  1053. mi := &file_userCenter_proto_msgTypes[15]
  1054. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1055. ms.StoreMessageInfo(mi)
  1056. }
  1057. }
  1058. func (x *CheckEntResp) String() string {
  1059. return protoimpl.X.MessageStringOf(x)
  1060. }
  1061. func (*CheckEntResp) ProtoMessage() {}
  1062. func (x *CheckEntResp) ProtoReflect() protoreflect.Message {
  1063. mi := &file_userCenter_proto_msgTypes[15]
  1064. if protoimpl.UnsafeEnabled && x != nil {
  1065. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1066. if ms.LoadMessageInfo() == nil {
  1067. ms.StoreMessageInfo(mi)
  1068. }
  1069. return ms
  1070. }
  1071. return mi.MessageOf(x)
  1072. }
  1073. // Deprecated: Use CheckEntResp.ProtoReflect.Descriptor instead.
  1074. func (*CheckEntResp) Descriptor() ([]byte, []int) {
  1075. return file_userCenter_proto_rawDescGZIP(), []int{15}
  1076. }
  1077. func (x *CheckEntResp) GetErrorCode() int64 {
  1078. if x != nil {
  1079. return x.ErrorCode
  1080. }
  1081. return 0
  1082. }
  1083. func (x *CheckEntResp) GetErrorMsg() string {
  1084. if x != nil {
  1085. return x.ErrorMsg
  1086. }
  1087. return ""
  1088. }
  1089. func (x *CheckEntResp) GetData() *CheckData {
  1090. if x != nil {
  1091. return x.Data
  1092. }
  1093. return nil
  1094. }
  1095. type CheckData struct {
  1096. state protoimpl.MessageState
  1097. sizeCache protoimpl.SizeCache
  1098. unknownFields protoimpl.UnknownFields
  1099. AuthStatus int64 `protobuf:"varint,1,opt,name=authStatus,proto3" json:"authStatus,omitempty"` //企业是否认证 -1 未通过,0 未认证,1 已认证. -2 已到期 3待审核
  1100. FrozenStatus int64 `protobuf:"varint,2,opt,name=frozenStatus,proto3" json:"frozenStatus,omitempty"` //冻结 1正常 0冻结
  1101. }
  1102. func (x *CheckData) Reset() {
  1103. *x = CheckData{}
  1104. if protoimpl.UnsafeEnabled {
  1105. mi := &file_userCenter_proto_msgTypes[16]
  1106. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1107. ms.StoreMessageInfo(mi)
  1108. }
  1109. }
  1110. func (x *CheckData) String() string {
  1111. return protoimpl.X.MessageStringOf(x)
  1112. }
  1113. func (*CheckData) ProtoMessage() {}
  1114. func (x *CheckData) ProtoReflect() protoreflect.Message {
  1115. mi := &file_userCenter_proto_msgTypes[16]
  1116. if protoimpl.UnsafeEnabled && x != nil {
  1117. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1118. if ms.LoadMessageInfo() == nil {
  1119. ms.StoreMessageInfo(mi)
  1120. }
  1121. return ms
  1122. }
  1123. return mi.MessageOf(x)
  1124. }
  1125. // Deprecated: Use CheckData.ProtoReflect.Descriptor instead.
  1126. func (*CheckData) Descriptor() ([]byte, []int) {
  1127. return file_userCenter_proto_rawDescGZIP(), []int{16}
  1128. }
  1129. func (x *CheckData) GetAuthStatus() int64 {
  1130. if x != nil {
  1131. return x.AuthStatus
  1132. }
  1133. return 0
  1134. }
  1135. func (x *CheckData) GetFrozenStatus() int64 {
  1136. if x != nil {
  1137. return x.FrozenStatus
  1138. }
  1139. return 0
  1140. }
  1141. type EntInfoResp struct {
  1142. state protoimpl.MessageState
  1143. sizeCache protoimpl.SizeCache
  1144. unknownFields protoimpl.UnknownFields
  1145. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1146. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1147. Data *EntInfoData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` //列表
  1148. }
  1149. func (x *EntInfoResp) Reset() {
  1150. *x = EntInfoResp{}
  1151. if protoimpl.UnsafeEnabled {
  1152. mi := &file_userCenter_proto_msgTypes[17]
  1153. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1154. ms.StoreMessageInfo(mi)
  1155. }
  1156. }
  1157. func (x *EntInfoResp) String() string {
  1158. return protoimpl.X.MessageStringOf(x)
  1159. }
  1160. func (*EntInfoResp) ProtoMessage() {}
  1161. func (x *EntInfoResp) ProtoReflect() protoreflect.Message {
  1162. mi := &file_userCenter_proto_msgTypes[17]
  1163. if protoimpl.UnsafeEnabled && x != nil {
  1164. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1165. if ms.LoadMessageInfo() == nil {
  1166. ms.StoreMessageInfo(mi)
  1167. }
  1168. return ms
  1169. }
  1170. return mi.MessageOf(x)
  1171. }
  1172. // Deprecated: Use EntInfoResp.ProtoReflect.Descriptor instead.
  1173. func (*EntInfoResp) Descriptor() ([]byte, []int) {
  1174. return file_userCenter_proto_rawDescGZIP(), []int{17}
  1175. }
  1176. func (x *EntInfoResp) GetErrorCode() int64 {
  1177. if x != nil {
  1178. return x.ErrorCode
  1179. }
  1180. return 0
  1181. }
  1182. func (x *EntInfoResp) GetErrorMsg() string {
  1183. if x != nil {
  1184. return x.ErrorMsg
  1185. }
  1186. return ""
  1187. }
  1188. func (x *EntInfoResp) GetData() *EntInfoData {
  1189. if x != nil {
  1190. return x.Data
  1191. }
  1192. return nil
  1193. }
  1194. type EntInfoData struct {
  1195. state protoimpl.MessageState
  1196. sizeCache protoimpl.SizeCache
  1197. unknownFields protoimpl.UnknownFields
  1198. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` //名称
  1199. AreaNumber string `protobuf:"bytes,2,opt,name=areaNumber,proto3" json:"areaNumber,omitempty"` //区域代码
  1200. ContactPerson string `protobuf:"bytes,3,opt,name=contactPerson,proto3" json:"contactPerson,omitempty"` //联系人
  1201. ContactPhone string `protobuf:"bytes,4,opt,name=contactPhone,proto3" json:"contactPhone,omitempty"` //联系电话
  1202. AuthState int64 `protobuf:"varint,5,opt,name=authState,proto3" json:"authState,omitempty"` //0未认证 1已认证
  1203. Industry string `protobuf:"bytes,6,opt,name=industry,proto3" json:"industry,omitempty"` //行业
  1204. CompanyType int64 `protobuf:"varint,7,opt,name=companyType,proto3" json:"companyType,omitempty"` //1-事业单位 0-企业
  1205. CreditCode string `protobuf:"bytes,8,opt,name=creditCode,proto3" json:"creditCode,omitempty"` //统一社会信用代码
  1206. LegalPerson string `protobuf:"bytes,9,opt,name=legalPerson,proto3" json:"legalPerson,omitempty"` //法人姓名
  1207. Business string `protobuf:"bytes,10,opt,name=business,proto3" json:"business,omitempty"` //营业执照
  1208. OfficialLetter string `protobuf:"bytes,11,opt,name=officialLetter,proto3" json:"officialLetter,omitempty"` //认证公函
  1209. OrganizationType string `protobuf:"bytes,12,opt,name=organizationType,proto3" json:"organizationType,omitempty"` //机构类型 1投标企业 2招标采购单位 3厂商 4招标代理机构 5经销商 6服务提供商 7其他, 多个,隔开
  1210. AuthType int64 `protobuf:"varint,13,opt,name=authType,proto3" json:"authType,omitempty"` //1待审核 2审核通过 3审核不通过
  1211. ForzenStatus int64 `protobuf:"varint,14,opt,name=forzenStatus,proto3" json:"forzenStatus,omitempty"` //1冻结 0未冻结
  1212. AuditUser string `protobuf:"bytes,15,opt,name=auditUser,proto3" json:"auditUser,omitempty"` //审核人
  1213. AuditTime string `protobuf:"bytes,16,opt,name=auditTime,proto3" json:"auditTime,omitempty"` //审核时间
  1214. CreateTime string `protobuf:"bytes,17,opt,name=createTime,proto3" json:"createTime,omitempty"` //创建时间
  1215. AuthStartTime string `protobuf:"bytes,18,opt,name=authStartTime,proto3" json:"authStartTime,omitempty"` //认证开始时间
  1216. AuthEndTime string `protobuf:"bytes,19,opt,name=authEndTime,proto3" json:"authEndTime,omitempty"` //认证截止时间
  1217. AuthReason string `protobuf:"bytes,20,opt,name=authReason,proto3" json:"authReason,omitempty"` //审核原因
  1218. AuthTime string `protobuf:"bytes,21,opt,name=authTime,proto3" json:"authTime,omitempty"` //申请时间
  1219. RegPhone string `protobuf:"bytes,22,opt,name=regPhone,proto3" json:"regPhone,omitempty"` //注册人手机号
  1220. }
  1221. func (x *EntInfoData) Reset() {
  1222. *x = EntInfoData{}
  1223. if protoimpl.UnsafeEnabled {
  1224. mi := &file_userCenter_proto_msgTypes[18]
  1225. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1226. ms.StoreMessageInfo(mi)
  1227. }
  1228. }
  1229. func (x *EntInfoData) String() string {
  1230. return protoimpl.X.MessageStringOf(x)
  1231. }
  1232. func (*EntInfoData) ProtoMessage() {}
  1233. func (x *EntInfoData) ProtoReflect() protoreflect.Message {
  1234. mi := &file_userCenter_proto_msgTypes[18]
  1235. if protoimpl.UnsafeEnabled && x != nil {
  1236. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1237. if ms.LoadMessageInfo() == nil {
  1238. ms.StoreMessageInfo(mi)
  1239. }
  1240. return ms
  1241. }
  1242. return mi.MessageOf(x)
  1243. }
  1244. // Deprecated: Use EntInfoData.ProtoReflect.Descriptor instead.
  1245. func (*EntInfoData) Descriptor() ([]byte, []int) {
  1246. return file_userCenter_proto_rawDescGZIP(), []int{18}
  1247. }
  1248. func (x *EntInfoData) GetName() string {
  1249. if x != nil {
  1250. return x.Name
  1251. }
  1252. return ""
  1253. }
  1254. func (x *EntInfoData) GetAreaNumber() string {
  1255. if x != nil {
  1256. return x.AreaNumber
  1257. }
  1258. return ""
  1259. }
  1260. func (x *EntInfoData) GetContactPerson() string {
  1261. if x != nil {
  1262. return x.ContactPerson
  1263. }
  1264. return ""
  1265. }
  1266. func (x *EntInfoData) GetContactPhone() string {
  1267. if x != nil {
  1268. return x.ContactPhone
  1269. }
  1270. return ""
  1271. }
  1272. func (x *EntInfoData) GetAuthState() int64 {
  1273. if x != nil {
  1274. return x.AuthState
  1275. }
  1276. return 0
  1277. }
  1278. func (x *EntInfoData) GetIndustry() string {
  1279. if x != nil {
  1280. return x.Industry
  1281. }
  1282. return ""
  1283. }
  1284. func (x *EntInfoData) GetCompanyType() int64 {
  1285. if x != nil {
  1286. return x.CompanyType
  1287. }
  1288. return 0
  1289. }
  1290. func (x *EntInfoData) GetCreditCode() string {
  1291. if x != nil {
  1292. return x.CreditCode
  1293. }
  1294. return ""
  1295. }
  1296. func (x *EntInfoData) GetLegalPerson() string {
  1297. if x != nil {
  1298. return x.LegalPerson
  1299. }
  1300. return ""
  1301. }
  1302. func (x *EntInfoData) GetBusiness() string {
  1303. if x != nil {
  1304. return x.Business
  1305. }
  1306. return ""
  1307. }
  1308. func (x *EntInfoData) GetOfficialLetter() string {
  1309. if x != nil {
  1310. return x.OfficialLetter
  1311. }
  1312. return ""
  1313. }
  1314. func (x *EntInfoData) GetOrganizationType() string {
  1315. if x != nil {
  1316. return x.OrganizationType
  1317. }
  1318. return ""
  1319. }
  1320. func (x *EntInfoData) GetAuthType() int64 {
  1321. if x != nil {
  1322. return x.AuthType
  1323. }
  1324. return 0
  1325. }
  1326. func (x *EntInfoData) GetForzenStatus() int64 {
  1327. if x != nil {
  1328. return x.ForzenStatus
  1329. }
  1330. return 0
  1331. }
  1332. func (x *EntInfoData) GetAuditUser() string {
  1333. if x != nil {
  1334. return x.AuditUser
  1335. }
  1336. return ""
  1337. }
  1338. func (x *EntInfoData) GetAuditTime() string {
  1339. if x != nil {
  1340. return x.AuditTime
  1341. }
  1342. return ""
  1343. }
  1344. func (x *EntInfoData) GetCreateTime() string {
  1345. if x != nil {
  1346. return x.CreateTime
  1347. }
  1348. return ""
  1349. }
  1350. func (x *EntInfoData) GetAuthStartTime() string {
  1351. if x != nil {
  1352. return x.AuthStartTime
  1353. }
  1354. return ""
  1355. }
  1356. func (x *EntInfoData) GetAuthEndTime() string {
  1357. if x != nil {
  1358. return x.AuthEndTime
  1359. }
  1360. return ""
  1361. }
  1362. func (x *EntInfoData) GetAuthReason() string {
  1363. if x != nil {
  1364. return x.AuthReason
  1365. }
  1366. return ""
  1367. }
  1368. func (x *EntInfoData) GetAuthTime() string {
  1369. if x != nil {
  1370. return x.AuthTime
  1371. }
  1372. return ""
  1373. }
  1374. func (x *EntInfoData) GetRegPhone() string {
  1375. if x != nil {
  1376. return x.RegPhone
  1377. }
  1378. return ""
  1379. }
  1380. type EntUpdateReq struct {
  1381. state protoimpl.MessageState
  1382. sizeCache protoimpl.SizeCache
  1383. unknownFields protoimpl.UnknownFields
  1384. EntId int64 `protobuf:"varint,1,opt,name=entId,proto3" json:"entId,omitempty"` //企业id
  1385. UpdateType int64 `protobuf:"varint,2,opt,name=updateType,proto3" json:"updateType,omitempty"` //1-冻结 2-解冻
  1386. }
  1387. func (x *EntUpdateReq) Reset() {
  1388. *x = EntUpdateReq{}
  1389. if protoimpl.UnsafeEnabled {
  1390. mi := &file_userCenter_proto_msgTypes[19]
  1391. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1392. ms.StoreMessageInfo(mi)
  1393. }
  1394. }
  1395. func (x *EntUpdateReq) String() string {
  1396. return protoimpl.X.MessageStringOf(x)
  1397. }
  1398. func (*EntUpdateReq) ProtoMessage() {}
  1399. func (x *EntUpdateReq) ProtoReflect() protoreflect.Message {
  1400. mi := &file_userCenter_proto_msgTypes[19]
  1401. if protoimpl.UnsafeEnabled && x != nil {
  1402. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1403. if ms.LoadMessageInfo() == nil {
  1404. ms.StoreMessageInfo(mi)
  1405. }
  1406. return ms
  1407. }
  1408. return mi.MessageOf(x)
  1409. }
  1410. // Deprecated: Use EntUpdateReq.ProtoReflect.Descriptor instead.
  1411. func (*EntUpdateReq) Descriptor() ([]byte, []int) {
  1412. return file_userCenter_proto_rawDescGZIP(), []int{19}
  1413. }
  1414. func (x *EntUpdateReq) GetEntId() int64 {
  1415. if x != nil {
  1416. return x.EntId
  1417. }
  1418. return 0
  1419. }
  1420. func (x *EntUpdateReq) GetUpdateType() int64 {
  1421. if x != nil {
  1422. return x.UpdateType
  1423. }
  1424. return 0
  1425. }
  1426. //审核详情入参
  1427. type CheckExamineReq struct {
  1428. state protoimpl.MessageState
  1429. sizeCache protoimpl.SizeCache
  1430. unknownFields protoimpl.UnknownFields
  1431. ExamineId int64 `protobuf:"varint,1,opt,name=examineId,proto3" json:"examineId,omitempty"` //审核id
  1432. }
  1433. func (x *CheckExamineReq) Reset() {
  1434. *x = CheckExamineReq{}
  1435. if protoimpl.UnsafeEnabled {
  1436. mi := &file_userCenter_proto_msgTypes[20]
  1437. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1438. ms.StoreMessageInfo(mi)
  1439. }
  1440. }
  1441. func (x *CheckExamineReq) String() string {
  1442. return protoimpl.X.MessageStringOf(x)
  1443. }
  1444. func (*CheckExamineReq) ProtoMessage() {}
  1445. func (x *CheckExamineReq) ProtoReflect() protoreflect.Message {
  1446. mi := &file_userCenter_proto_msgTypes[20]
  1447. if protoimpl.UnsafeEnabled && x != nil {
  1448. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1449. if ms.LoadMessageInfo() == nil {
  1450. ms.StoreMessageInfo(mi)
  1451. }
  1452. return ms
  1453. }
  1454. return mi.MessageOf(x)
  1455. }
  1456. // Deprecated: Use CheckExamineReq.ProtoReflect.Descriptor instead.
  1457. func (*CheckExamineReq) Descriptor() ([]byte, []int) {
  1458. return file_userCenter_proto_rawDescGZIP(), []int{20}
  1459. }
  1460. func (x *CheckExamineReq) GetExamineId() int64 {
  1461. if x != nil {
  1462. return x.ExamineId
  1463. }
  1464. return 0
  1465. }
  1466. type GetStatusByCodeReq struct {
  1467. state protoimpl.MessageState
  1468. sizeCache protoimpl.SizeCache
  1469. unknownFields protoimpl.UnknownFields
  1470. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"` //统一社会信用代码
  1471. Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"` //注册手机号
  1472. }
  1473. func (x *GetStatusByCodeReq) Reset() {
  1474. *x = GetStatusByCodeReq{}
  1475. if protoimpl.UnsafeEnabled {
  1476. mi := &file_userCenter_proto_msgTypes[21]
  1477. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1478. ms.StoreMessageInfo(mi)
  1479. }
  1480. }
  1481. func (x *GetStatusByCodeReq) String() string {
  1482. return protoimpl.X.MessageStringOf(x)
  1483. }
  1484. func (*GetStatusByCodeReq) ProtoMessage() {}
  1485. func (x *GetStatusByCodeReq) ProtoReflect() protoreflect.Message {
  1486. mi := &file_userCenter_proto_msgTypes[21]
  1487. if protoimpl.UnsafeEnabled && x != nil {
  1488. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1489. if ms.LoadMessageInfo() == nil {
  1490. ms.StoreMessageInfo(mi)
  1491. }
  1492. return ms
  1493. }
  1494. return mi.MessageOf(x)
  1495. }
  1496. // Deprecated: Use GetStatusByCodeReq.ProtoReflect.Descriptor instead.
  1497. func (*GetStatusByCodeReq) Descriptor() ([]byte, []int) {
  1498. return file_userCenter_proto_rawDescGZIP(), []int{21}
  1499. }
  1500. func (x *GetStatusByCodeReq) GetCode() string {
  1501. if x != nil {
  1502. return x.Code
  1503. }
  1504. return ""
  1505. }
  1506. func (x *GetStatusByCodeReq) GetPhone() string {
  1507. if x != nil {
  1508. return x.Phone
  1509. }
  1510. return ""
  1511. }
  1512. type GetStatusByCodeResp struct {
  1513. state protoimpl.MessageState
  1514. sizeCache protoimpl.SizeCache
  1515. unknownFields protoimpl.UnknownFields
  1516. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1517. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1518. Data *GetStatusByCode `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` //详情
  1519. }
  1520. func (x *GetStatusByCodeResp) Reset() {
  1521. *x = GetStatusByCodeResp{}
  1522. if protoimpl.UnsafeEnabled {
  1523. mi := &file_userCenter_proto_msgTypes[22]
  1524. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1525. ms.StoreMessageInfo(mi)
  1526. }
  1527. }
  1528. func (x *GetStatusByCodeResp) String() string {
  1529. return protoimpl.X.MessageStringOf(x)
  1530. }
  1531. func (*GetStatusByCodeResp) ProtoMessage() {}
  1532. func (x *GetStatusByCodeResp) ProtoReflect() protoreflect.Message {
  1533. mi := &file_userCenter_proto_msgTypes[22]
  1534. if protoimpl.UnsafeEnabled && x != nil {
  1535. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1536. if ms.LoadMessageInfo() == nil {
  1537. ms.StoreMessageInfo(mi)
  1538. }
  1539. return ms
  1540. }
  1541. return mi.MessageOf(x)
  1542. }
  1543. // Deprecated: Use GetStatusByCodeResp.ProtoReflect.Descriptor instead.
  1544. func (*GetStatusByCodeResp) Descriptor() ([]byte, []int) {
  1545. return file_userCenter_proto_rawDescGZIP(), []int{22}
  1546. }
  1547. func (x *GetStatusByCodeResp) GetErrorCode() int64 {
  1548. if x != nil {
  1549. return x.ErrorCode
  1550. }
  1551. return 0
  1552. }
  1553. func (x *GetStatusByCodeResp) GetErrorMsg() string {
  1554. if x != nil {
  1555. return x.ErrorMsg
  1556. }
  1557. return ""
  1558. }
  1559. func (x *GetStatusByCodeResp) GetData() *GetStatusByCode {
  1560. if x != nil {
  1561. return x.Data
  1562. }
  1563. return nil
  1564. }
  1565. //用户权益
  1566. type UserInfo struct {
  1567. state protoimpl.MessageState
  1568. sizeCache protoimpl.SizeCache
  1569. unknownFields protoimpl.UnknownFields
  1570. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone,omitempty"` //手机号
  1571. VipStatus int64 `protobuf:"varint,2,opt,name=vipStatus,proto3" json:"vipStatus,omitempty"` //超级订阅状态; >0有权限 <=0无权限
  1572. MemberStatus int64 `protobuf:"varint,3,opt,name=memberStatus,proto3" json:"memberStatus,omitempty"` //大会员状态; >0:有权限 <=0:无权限
  1573. EntnicheStatus int64 `protobuf:"varint,4,opt,name=entnicheStatus,proto3" json:"entnicheStatus,omitempty"` //商机管理权限状态; 1:有权限 -1:无权限
  1574. SubscribeType string `protobuf:"bytes,5,opt,name=subscribeType,proto3" json:"subscribeType,omitempty"` //订阅设置类型 f:免费订阅 v:超级订阅 m:大会员订阅 e:商机管理订阅
  1575. Data *Subscribe `protobuf:"bytes,6,opt,name=data,proto3" json:"data,omitempty"`
  1576. ErrorMsg string `protobuf:"bytes,7,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1577. ErrorCode int64 `protobuf:"varint,8,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1578. Nickname string `protobuf:"bytes,9,opt,name=nickname,proto3" json:"nickname,omitempty"`
  1579. Headimg string `protobuf:"bytes,10,opt,name=headimg,proto3" json:"headimg,omitempty"`
  1580. IsTourist int64 `protobuf:"varint,11,opt,name=isTourist,proto3" json:"isTourist,omitempty"`
  1581. }
  1582. func (x *UserInfo) Reset() {
  1583. *x = UserInfo{}
  1584. if protoimpl.UnsafeEnabled {
  1585. mi := &file_userCenter_proto_msgTypes[23]
  1586. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1587. ms.StoreMessageInfo(mi)
  1588. }
  1589. }
  1590. func (x *UserInfo) String() string {
  1591. return protoimpl.X.MessageStringOf(x)
  1592. }
  1593. func (*UserInfo) ProtoMessage() {}
  1594. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  1595. mi := &file_userCenter_proto_msgTypes[23]
  1596. if protoimpl.UnsafeEnabled && x != nil {
  1597. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1598. if ms.LoadMessageInfo() == nil {
  1599. ms.StoreMessageInfo(mi)
  1600. }
  1601. return ms
  1602. }
  1603. return mi.MessageOf(x)
  1604. }
  1605. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  1606. func (*UserInfo) Descriptor() ([]byte, []int) {
  1607. return file_userCenter_proto_rawDescGZIP(), []int{23}
  1608. }
  1609. func (x *UserInfo) GetPhone() string {
  1610. if x != nil {
  1611. return x.Phone
  1612. }
  1613. return ""
  1614. }
  1615. func (x *UserInfo) GetVipStatus() int64 {
  1616. if x != nil {
  1617. return x.VipStatus
  1618. }
  1619. return 0
  1620. }
  1621. func (x *UserInfo) GetMemberStatus() int64 {
  1622. if x != nil {
  1623. return x.MemberStatus
  1624. }
  1625. return 0
  1626. }
  1627. func (x *UserInfo) GetEntnicheStatus() int64 {
  1628. if x != nil {
  1629. return x.EntnicheStatus
  1630. }
  1631. return 0
  1632. }
  1633. func (x *UserInfo) GetSubscribeType() string {
  1634. if x != nil {
  1635. return x.SubscribeType
  1636. }
  1637. return ""
  1638. }
  1639. func (x *UserInfo) GetData() *Subscribe {
  1640. if x != nil {
  1641. return x.Data
  1642. }
  1643. return nil
  1644. }
  1645. func (x *UserInfo) GetErrorMsg() string {
  1646. if x != nil {
  1647. return x.ErrorMsg
  1648. }
  1649. return ""
  1650. }
  1651. func (x *UserInfo) GetErrorCode() int64 {
  1652. if x != nil {
  1653. return x.ErrorCode
  1654. }
  1655. return 0
  1656. }
  1657. func (x *UserInfo) GetNickname() string {
  1658. if x != nil {
  1659. return x.Nickname
  1660. }
  1661. return ""
  1662. }
  1663. func (x *UserInfo) GetHeadimg() string {
  1664. if x != nil {
  1665. return x.Headimg
  1666. }
  1667. return ""
  1668. }
  1669. func (x *UserInfo) GetIsTourist() int64 {
  1670. if x != nil {
  1671. return x.IsTourist
  1672. }
  1673. return 0
  1674. }
  1675. //订阅设置
  1676. type Subscribe struct {
  1677. state protoimpl.MessageState
  1678. sizeCache protoimpl.SizeCache
  1679. unknownFields protoimpl.UnknownFields
  1680. StartTime int64 `protobuf:"varint,1,opt,name=startTime,proto3" json:"startTime,omitempty"` //开始时间
  1681. EndTime int64 `protobuf:"varint,2,opt,name=endTime,proto3" json:"endTime,omitempty"` //结束时间
  1682. 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"` //地区
  1683. Buyerclass []string `protobuf:"bytes,4,rep,name=buyerclass,proto3" json:"buyerclass,omitempty"` //采购单位类型
  1684. Infotype []string `protobuf:"bytes,5,rep,name=infotype,proto3" json:"infotype,omitempty"` //信息类型
  1685. Items []*Items `protobuf:"bytes,6,rep,name=items,proto3" json:"items,omitempty"` //关键词
  1686. Matchway int64 `protobuf:"varint,7,opt,name=matchway,proto3" json:"matchway,omitempty"` //匹配方式 1标题 2正文
  1687. Projectmatch int64 `protobuf:"varint,8,opt,name=projectmatch,proto3" json:"projectmatch,omitempty"` //项目匹配
  1688. }
  1689. func (x *Subscribe) Reset() {
  1690. *x = Subscribe{}
  1691. if protoimpl.UnsafeEnabled {
  1692. mi := &file_userCenter_proto_msgTypes[24]
  1693. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1694. ms.StoreMessageInfo(mi)
  1695. }
  1696. }
  1697. func (x *Subscribe) String() string {
  1698. return protoimpl.X.MessageStringOf(x)
  1699. }
  1700. func (*Subscribe) ProtoMessage() {}
  1701. func (x *Subscribe) ProtoReflect() protoreflect.Message {
  1702. mi := &file_userCenter_proto_msgTypes[24]
  1703. if protoimpl.UnsafeEnabled && x != nil {
  1704. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1705. if ms.LoadMessageInfo() == nil {
  1706. ms.StoreMessageInfo(mi)
  1707. }
  1708. return ms
  1709. }
  1710. return mi.MessageOf(x)
  1711. }
  1712. // Deprecated: Use Subscribe.ProtoReflect.Descriptor instead.
  1713. func (*Subscribe) Descriptor() ([]byte, []int) {
  1714. return file_userCenter_proto_rawDescGZIP(), []int{24}
  1715. }
  1716. func (x *Subscribe) GetStartTime() int64 {
  1717. if x != nil {
  1718. return x.StartTime
  1719. }
  1720. return 0
  1721. }
  1722. func (x *Subscribe) GetEndTime() int64 {
  1723. if x != nil {
  1724. return x.EndTime
  1725. }
  1726. return 0
  1727. }
  1728. func (x *Subscribe) GetArea() map[string]*List {
  1729. if x != nil {
  1730. return x.Area
  1731. }
  1732. return nil
  1733. }
  1734. func (x *Subscribe) GetBuyerclass() []string {
  1735. if x != nil {
  1736. return x.Buyerclass
  1737. }
  1738. return nil
  1739. }
  1740. func (x *Subscribe) GetInfotype() []string {
  1741. if x != nil {
  1742. return x.Infotype
  1743. }
  1744. return nil
  1745. }
  1746. func (x *Subscribe) GetItems() []*Items {
  1747. if x != nil {
  1748. return x.Items
  1749. }
  1750. return nil
  1751. }
  1752. func (x *Subscribe) GetMatchway() int64 {
  1753. if x != nil {
  1754. return x.Matchway
  1755. }
  1756. return 0
  1757. }
  1758. func (x *Subscribe) GetProjectmatch() int64 {
  1759. if x != nil {
  1760. return x.Projectmatch
  1761. }
  1762. return 0
  1763. }
  1764. type List struct {
  1765. state protoimpl.MessageState
  1766. sizeCache protoimpl.SizeCache
  1767. unknownFields protoimpl.UnknownFields
  1768. Value []string `protobuf:"bytes,1,rep,name=value,proto3" json:"value,omitempty"`
  1769. }
  1770. func (x *List) Reset() {
  1771. *x = List{}
  1772. if protoimpl.UnsafeEnabled {
  1773. mi := &file_userCenter_proto_msgTypes[25]
  1774. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1775. ms.StoreMessageInfo(mi)
  1776. }
  1777. }
  1778. func (x *List) String() string {
  1779. return protoimpl.X.MessageStringOf(x)
  1780. }
  1781. func (*List) ProtoMessage() {}
  1782. func (x *List) ProtoReflect() protoreflect.Message {
  1783. mi := &file_userCenter_proto_msgTypes[25]
  1784. if protoimpl.UnsafeEnabled && x != nil {
  1785. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1786. if ms.LoadMessageInfo() == nil {
  1787. ms.StoreMessageInfo(mi)
  1788. }
  1789. return ms
  1790. }
  1791. return mi.MessageOf(x)
  1792. }
  1793. // Deprecated: Use List.ProtoReflect.Descriptor instead.
  1794. func (*List) Descriptor() ([]byte, []int) {
  1795. return file_userCenter_proto_rawDescGZIP(), []int{25}
  1796. }
  1797. func (x *List) GetValue() []string {
  1798. if x != nil {
  1799. return x.Value
  1800. }
  1801. return nil
  1802. }
  1803. //分类
  1804. type Items struct {
  1805. state protoimpl.MessageState
  1806. sizeCache protoimpl.SizeCache
  1807. unknownFields protoimpl.UnknownFields
  1808. SItem string `protobuf:"bytes,1,opt,name=s_item,json=sItem,proto3" json:"s_item,omitempty"` //分类名称
  1809. UpdateTime int64 `protobuf:"varint,2,opt,name=updateTime,proto3" json:"updateTime,omitempty"`
  1810. AKey []*Keys `protobuf:"bytes,3,rep,name=a_key,json=aKey,proto3" json:"a_key,omitempty"`
  1811. }
  1812. func (x *Items) Reset() {
  1813. *x = Items{}
  1814. if protoimpl.UnsafeEnabled {
  1815. mi := &file_userCenter_proto_msgTypes[26]
  1816. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1817. ms.StoreMessageInfo(mi)
  1818. }
  1819. }
  1820. func (x *Items) String() string {
  1821. return protoimpl.X.MessageStringOf(x)
  1822. }
  1823. func (*Items) ProtoMessage() {}
  1824. func (x *Items) ProtoReflect() protoreflect.Message {
  1825. mi := &file_userCenter_proto_msgTypes[26]
  1826. if protoimpl.UnsafeEnabled && x != nil {
  1827. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1828. if ms.LoadMessageInfo() == nil {
  1829. ms.StoreMessageInfo(mi)
  1830. }
  1831. return ms
  1832. }
  1833. return mi.MessageOf(x)
  1834. }
  1835. // Deprecated: Use Items.ProtoReflect.Descriptor instead.
  1836. func (*Items) Descriptor() ([]byte, []int) {
  1837. return file_userCenter_proto_rawDescGZIP(), []int{26}
  1838. }
  1839. func (x *Items) GetSItem() string {
  1840. if x != nil {
  1841. return x.SItem
  1842. }
  1843. return ""
  1844. }
  1845. func (x *Items) GetUpdateTime() int64 {
  1846. if x != nil {
  1847. return x.UpdateTime
  1848. }
  1849. return 0
  1850. }
  1851. func (x *Items) GetAKey() []*Keys {
  1852. if x != nil {
  1853. return x.AKey
  1854. }
  1855. return nil
  1856. }
  1857. //关键词
  1858. type Keys struct {
  1859. state protoimpl.MessageState
  1860. sizeCache protoimpl.SizeCache
  1861. unknownFields protoimpl.UnknownFields
  1862. Key []string `protobuf:"bytes,1,rep,name=key,proto3" json:"key,omitempty"`
  1863. Notkey []string `protobuf:"bytes,2,rep,name=notkey,proto3" json:"notkey,omitempty"`
  1864. UpdateTime int64 `protobuf:"varint,3,opt,name=updateTime,proto3" json:"updateTime,omitempty"`
  1865. Matchway int64 `protobuf:"varint,4,opt,name=matchway,proto3" json:"matchway,omitempty"`
  1866. }
  1867. func (x *Keys) Reset() {
  1868. *x = Keys{}
  1869. if protoimpl.UnsafeEnabled {
  1870. mi := &file_userCenter_proto_msgTypes[27]
  1871. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1872. ms.StoreMessageInfo(mi)
  1873. }
  1874. }
  1875. func (x *Keys) String() string {
  1876. return protoimpl.X.MessageStringOf(x)
  1877. }
  1878. func (*Keys) ProtoMessage() {}
  1879. func (x *Keys) ProtoReflect() protoreflect.Message {
  1880. mi := &file_userCenter_proto_msgTypes[27]
  1881. if protoimpl.UnsafeEnabled && x != nil {
  1882. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1883. if ms.LoadMessageInfo() == nil {
  1884. ms.StoreMessageInfo(mi)
  1885. }
  1886. return ms
  1887. }
  1888. return mi.MessageOf(x)
  1889. }
  1890. // Deprecated: Use Keys.ProtoReflect.Descriptor instead.
  1891. func (*Keys) Descriptor() ([]byte, []int) {
  1892. return file_userCenter_proto_rawDescGZIP(), []int{27}
  1893. }
  1894. func (x *Keys) GetKey() []string {
  1895. if x != nil {
  1896. return x.Key
  1897. }
  1898. return nil
  1899. }
  1900. func (x *Keys) GetNotkey() []string {
  1901. if x != nil {
  1902. return x.Notkey
  1903. }
  1904. return nil
  1905. }
  1906. func (x *Keys) GetUpdateTime() int64 {
  1907. if x != nil {
  1908. return x.UpdateTime
  1909. }
  1910. return 0
  1911. }
  1912. func (x *Keys) GetMatchway() int64 {
  1913. if x != nil {
  1914. return x.Matchway
  1915. }
  1916. return 0
  1917. }
  1918. type UserReq struct {
  1919. state protoimpl.MessageState
  1920. sizeCache protoimpl.SizeCache
  1921. unknownFields protoimpl.UnknownFields
  1922. AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
  1923. UserId int64 `protobuf:"varint,2,opt,name=userId,proto3" json:"userId,omitempty"`
  1924. Types string `protobuf:"bytes,3,opt,name=types,proto3" json:"types,omitempty"` //类型,不传按默认规则获取 m大会员 e商机管理 v超级订阅 f免费订阅
  1925. }
  1926. func (x *UserReq) Reset() {
  1927. *x = UserReq{}
  1928. if protoimpl.UnsafeEnabled {
  1929. mi := &file_userCenter_proto_msgTypes[28]
  1930. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1931. ms.StoreMessageInfo(mi)
  1932. }
  1933. }
  1934. func (x *UserReq) String() string {
  1935. return protoimpl.X.MessageStringOf(x)
  1936. }
  1937. func (*UserReq) ProtoMessage() {}
  1938. func (x *UserReq) ProtoReflect() protoreflect.Message {
  1939. mi := &file_userCenter_proto_msgTypes[28]
  1940. if protoimpl.UnsafeEnabled && x != nil {
  1941. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1942. if ms.LoadMessageInfo() == nil {
  1943. ms.StoreMessageInfo(mi)
  1944. }
  1945. return ms
  1946. }
  1947. return mi.MessageOf(x)
  1948. }
  1949. // Deprecated: Use UserReq.ProtoReflect.Descriptor instead.
  1950. func (*UserReq) Descriptor() ([]byte, []int) {
  1951. return file_userCenter_proto_rawDescGZIP(), []int{28}
  1952. }
  1953. func (x *UserReq) GetAppId() string {
  1954. if x != nil {
  1955. return x.AppId
  1956. }
  1957. return ""
  1958. }
  1959. func (x *UserReq) GetUserId() int64 {
  1960. if x != nil {
  1961. return x.UserId
  1962. }
  1963. return 0
  1964. }
  1965. func (x *UserReq) GetTypes() string {
  1966. if x != nil {
  1967. return x.Types
  1968. }
  1969. return ""
  1970. }
  1971. type EntUserReq struct {
  1972. state protoimpl.MessageState
  1973. sizeCache protoimpl.SizeCache
  1974. unknownFields protoimpl.UnknownFields
  1975. AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
  1976. EntUserId int64 `protobuf:"varint,2,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  1977. EntId int64 `protobuf:"varint,3,opt,name=entId,proto3" json:"entId,omitempty"`
  1978. }
  1979. func (x *EntUserReq) Reset() {
  1980. *x = EntUserReq{}
  1981. if protoimpl.UnsafeEnabled {
  1982. mi := &file_userCenter_proto_msgTypes[29]
  1983. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1984. ms.StoreMessageInfo(mi)
  1985. }
  1986. }
  1987. func (x *EntUserReq) String() string {
  1988. return protoimpl.X.MessageStringOf(x)
  1989. }
  1990. func (*EntUserReq) ProtoMessage() {}
  1991. func (x *EntUserReq) ProtoReflect() protoreflect.Message {
  1992. mi := &file_userCenter_proto_msgTypes[29]
  1993. if protoimpl.UnsafeEnabled && x != nil {
  1994. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1995. if ms.LoadMessageInfo() == nil {
  1996. ms.StoreMessageInfo(mi)
  1997. }
  1998. return ms
  1999. }
  2000. return mi.MessageOf(x)
  2001. }
  2002. // Deprecated: Use EntUserReq.ProtoReflect.Descriptor instead.
  2003. func (*EntUserReq) Descriptor() ([]byte, []int) {
  2004. return file_userCenter_proto_rawDescGZIP(), []int{29}
  2005. }
  2006. func (x *EntUserReq) GetAppId() string {
  2007. if x != nil {
  2008. return x.AppId
  2009. }
  2010. return ""
  2011. }
  2012. func (x *EntUserReq) GetEntUserId() int64 {
  2013. if x != nil {
  2014. return x.EntUserId
  2015. }
  2016. return 0
  2017. }
  2018. func (x *EntUserReq) GetEntId() int64 {
  2019. if x != nil {
  2020. return x.EntId
  2021. }
  2022. return 0
  2023. }
  2024. type EntUserResp struct {
  2025. state protoimpl.MessageState
  2026. sizeCache protoimpl.SizeCache
  2027. unknownFields protoimpl.UnknownFields
  2028. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  2029. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  2030. Data *EntUser `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  2031. }
  2032. func (x *EntUserResp) Reset() {
  2033. *x = EntUserResp{}
  2034. if protoimpl.UnsafeEnabled {
  2035. mi := &file_userCenter_proto_msgTypes[30]
  2036. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2037. ms.StoreMessageInfo(mi)
  2038. }
  2039. }
  2040. func (x *EntUserResp) String() string {
  2041. return protoimpl.X.MessageStringOf(x)
  2042. }
  2043. func (*EntUserResp) ProtoMessage() {}
  2044. func (x *EntUserResp) ProtoReflect() protoreflect.Message {
  2045. mi := &file_userCenter_proto_msgTypes[30]
  2046. if protoimpl.UnsafeEnabled && x != nil {
  2047. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2048. if ms.LoadMessageInfo() == nil {
  2049. ms.StoreMessageInfo(mi)
  2050. }
  2051. return ms
  2052. }
  2053. return mi.MessageOf(x)
  2054. }
  2055. // Deprecated: Use EntUserResp.ProtoReflect.Descriptor instead.
  2056. func (*EntUserResp) Descriptor() ([]byte, []int) {
  2057. return file_userCenter_proto_rawDescGZIP(), []int{30}
  2058. }
  2059. func (x *EntUserResp) GetErrorCode() int64 {
  2060. if x != nil {
  2061. return x.ErrorCode
  2062. }
  2063. return 0
  2064. }
  2065. func (x *EntUserResp) GetErrorMsg() string {
  2066. if x != nil {
  2067. return x.ErrorMsg
  2068. }
  2069. return ""
  2070. }
  2071. func (x *EntUserResp) GetData() *EntUser {
  2072. if x != nil {
  2073. return x.Data
  2074. }
  2075. return nil
  2076. }
  2077. type EntUser struct {
  2078. state protoimpl.MessageState
  2079. sizeCache protoimpl.SizeCache
  2080. unknownFields protoimpl.UnknownFields
  2081. Name string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"` //员工名册
  2082. Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"` //员工手机号
  2083. Mail string `protobuf:"bytes,3,opt,name=mail,proto3" json:"mail,omitempty"` //邮箱
  2084. DeptName string `protobuf:"bytes,4,opt,name=deptName,proto3" json:"deptName,omitempty"` //部门名称
  2085. EntUserId int64 `protobuf:"varint,5,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  2086. }
  2087. func (x *EntUser) Reset() {
  2088. *x = EntUser{}
  2089. if protoimpl.UnsafeEnabled {
  2090. mi := &file_userCenter_proto_msgTypes[31]
  2091. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2092. ms.StoreMessageInfo(mi)
  2093. }
  2094. }
  2095. func (x *EntUser) String() string {
  2096. return protoimpl.X.MessageStringOf(x)
  2097. }
  2098. func (*EntUser) ProtoMessage() {}
  2099. func (x *EntUser) ProtoReflect() protoreflect.Message {
  2100. mi := &file_userCenter_proto_msgTypes[31]
  2101. if protoimpl.UnsafeEnabled && x != nil {
  2102. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2103. if ms.LoadMessageInfo() == nil {
  2104. ms.StoreMessageInfo(mi)
  2105. }
  2106. return ms
  2107. }
  2108. return mi.MessageOf(x)
  2109. }
  2110. // Deprecated: Use EntUser.ProtoReflect.Descriptor instead.
  2111. func (*EntUser) Descriptor() ([]byte, []int) {
  2112. return file_userCenter_proto_rawDescGZIP(), []int{31}
  2113. }
  2114. func (x *EntUser) GetName() string {
  2115. if x != nil {
  2116. return x.Name
  2117. }
  2118. return ""
  2119. }
  2120. func (x *EntUser) GetPhone() string {
  2121. if x != nil {
  2122. return x.Phone
  2123. }
  2124. return ""
  2125. }
  2126. func (x *EntUser) GetMail() string {
  2127. if x != nil {
  2128. return x.Mail
  2129. }
  2130. return ""
  2131. }
  2132. func (x *EntUser) GetDeptName() string {
  2133. if x != nil {
  2134. return x.DeptName
  2135. }
  2136. return ""
  2137. }
  2138. func (x *EntUser) GetEntUserId() int64 {
  2139. if x != nil {
  2140. return x.EntUserId
  2141. }
  2142. return 0
  2143. }
  2144. type EntUserListReq struct {
  2145. state protoimpl.MessageState
  2146. sizeCache protoimpl.SizeCache
  2147. unknownFields protoimpl.UnknownFields
  2148. AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
  2149. EntId int64 `protobuf:"varint,2,opt,name=entId,proto3" json:"entId,omitempty"`
  2150. DeptId int64 `protobuf:"varint,3,opt,name=deptId,proto3" json:"deptId,omitempty"`
  2151. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  2152. }
  2153. func (x *EntUserListReq) Reset() {
  2154. *x = EntUserListReq{}
  2155. if protoimpl.UnsafeEnabled {
  2156. mi := &file_userCenter_proto_msgTypes[32]
  2157. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2158. ms.StoreMessageInfo(mi)
  2159. }
  2160. }
  2161. func (x *EntUserListReq) String() string {
  2162. return protoimpl.X.MessageStringOf(x)
  2163. }
  2164. func (*EntUserListReq) ProtoMessage() {}
  2165. func (x *EntUserListReq) ProtoReflect() protoreflect.Message {
  2166. mi := &file_userCenter_proto_msgTypes[32]
  2167. if protoimpl.UnsafeEnabled && x != nil {
  2168. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2169. if ms.LoadMessageInfo() == nil {
  2170. ms.StoreMessageInfo(mi)
  2171. }
  2172. return ms
  2173. }
  2174. return mi.MessageOf(x)
  2175. }
  2176. // Deprecated: Use EntUserListReq.ProtoReflect.Descriptor instead.
  2177. func (*EntUserListReq) Descriptor() ([]byte, []int) {
  2178. return file_userCenter_proto_rawDescGZIP(), []int{32}
  2179. }
  2180. func (x *EntUserListReq) GetAppId() string {
  2181. if x != nil {
  2182. return x.AppId
  2183. }
  2184. return ""
  2185. }
  2186. func (x *EntUserListReq) GetEntId() int64 {
  2187. if x != nil {
  2188. return x.EntId
  2189. }
  2190. return 0
  2191. }
  2192. func (x *EntUserListReq) GetDeptId() int64 {
  2193. if x != nil {
  2194. return x.DeptId
  2195. }
  2196. return 0
  2197. }
  2198. func (x *EntUserListReq) GetName() string {
  2199. if x != nil {
  2200. return x.Name
  2201. }
  2202. return ""
  2203. }
  2204. type EntUserListResp struct {
  2205. state protoimpl.MessageState
  2206. sizeCache protoimpl.SizeCache
  2207. unknownFields protoimpl.UnknownFields
  2208. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  2209. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  2210. Data []*EntUserListData `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  2211. }
  2212. func (x *EntUserListResp) Reset() {
  2213. *x = EntUserListResp{}
  2214. if protoimpl.UnsafeEnabled {
  2215. mi := &file_userCenter_proto_msgTypes[33]
  2216. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2217. ms.StoreMessageInfo(mi)
  2218. }
  2219. }
  2220. func (x *EntUserListResp) String() string {
  2221. return protoimpl.X.MessageStringOf(x)
  2222. }
  2223. func (*EntUserListResp) ProtoMessage() {}
  2224. func (x *EntUserListResp) ProtoReflect() protoreflect.Message {
  2225. mi := &file_userCenter_proto_msgTypes[33]
  2226. if protoimpl.UnsafeEnabled && x != nil {
  2227. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2228. if ms.LoadMessageInfo() == nil {
  2229. ms.StoreMessageInfo(mi)
  2230. }
  2231. return ms
  2232. }
  2233. return mi.MessageOf(x)
  2234. }
  2235. // Deprecated: Use EntUserListResp.ProtoReflect.Descriptor instead.
  2236. func (*EntUserListResp) Descriptor() ([]byte, []int) {
  2237. return file_userCenter_proto_rawDescGZIP(), []int{33}
  2238. }
  2239. func (x *EntUserListResp) GetErrorCode() int64 {
  2240. if x != nil {
  2241. return x.ErrorCode
  2242. }
  2243. return 0
  2244. }
  2245. func (x *EntUserListResp) GetErrorMsg() string {
  2246. if x != nil {
  2247. return x.ErrorMsg
  2248. }
  2249. return ""
  2250. }
  2251. func (x *EntUserListResp) GetData() []*EntUserListData {
  2252. if x != nil {
  2253. return x.Data
  2254. }
  2255. return nil
  2256. }
  2257. type EntUserListData struct {
  2258. state protoimpl.MessageState
  2259. sizeCache protoimpl.SizeCache
  2260. unknownFields protoimpl.UnknownFields
  2261. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  2262. DeptId int64 `protobuf:"varint,2,opt,name=deptId,proto3" json:"deptId,omitempty"`
  2263. PId int64 `protobuf:"varint,3,opt,name=pId,proto3" json:"pId,omitempty"`
  2264. EntUserList []*EntUser `protobuf:"bytes,4,rep,name=entUserList,proto3" json:"entUserList,omitempty"`
  2265. DeptList []*EntUserListData `protobuf:"bytes,5,rep,name=deptList,proto3" json:"deptList,omitempty"`
  2266. }
  2267. func (x *EntUserListData) Reset() {
  2268. *x = EntUserListData{}
  2269. if protoimpl.UnsafeEnabled {
  2270. mi := &file_userCenter_proto_msgTypes[34]
  2271. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2272. ms.StoreMessageInfo(mi)
  2273. }
  2274. }
  2275. func (x *EntUserListData) String() string {
  2276. return protoimpl.X.MessageStringOf(x)
  2277. }
  2278. func (*EntUserListData) ProtoMessage() {}
  2279. func (x *EntUserListData) ProtoReflect() protoreflect.Message {
  2280. mi := &file_userCenter_proto_msgTypes[34]
  2281. if protoimpl.UnsafeEnabled && x != nil {
  2282. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2283. if ms.LoadMessageInfo() == nil {
  2284. ms.StoreMessageInfo(mi)
  2285. }
  2286. return ms
  2287. }
  2288. return mi.MessageOf(x)
  2289. }
  2290. // Deprecated: Use EntUserListData.ProtoReflect.Descriptor instead.
  2291. func (*EntUserListData) Descriptor() ([]byte, []int) {
  2292. return file_userCenter_proto_rawDescGZIP(), []int{34}
  2293. }
  2294. func (x *EntUserListData) GetName() string {
  2295. if x != nil {
  2296. return x.Name
  2297. }
  2298. return ""
  2299. }
  2300. func (x *EntUserListData) GetDeptId() int64 {
  2301. if x != nil {
  2302. return x.DeptId
  2303. }
  2304. return 0
  2305. }
  2306. func (x *EntUserListData) GetPId() int64 {
  2307. if x != nil {
  2308. return x.PId
  2309. }
  2310. return 0
  2311. }
  2312. func (x *EntUserListData) GetEntUserList() []*EntUser {
  2313. if x != nil {
  2314. return x.EntUserList
  2315. }
  2316. return nil
  2317. }
  2318. func (x *EntUserListData) GetDeptList() []*EntUserListData {
  2319. if x != nil {
  2320. return x.DeptList
  2321. }
  2322. return nil
  2323. }
  2324. type CheckIsEntAdminResp struct {
  2325. state protoimpl.MessageState
  2326. sizeCache protoimpl.SizeCache
  2327. unknownFields protoimpl.UnknownFields
  2328. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  2329. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  2330. Status int64 `protobuf:"varint,3,opt,name=status,proto3" json:"status,omitempty"` //1企业管理员 2部门管理员 3员工
  2331. }
  2332. func (x *CheckIsEntAdminResp) Reset() {
  2333. *x = CheckIsEntAdminResp{}
  2334. if protoimpl.UnsafeEnabled {
  2335. mi := &file_userCenter_proto_msgTypes[35]
  2336. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2337. ms.StoreMessageInfo(mi)
  2338. }
  2339. }
  2340. func (x *CheckIsEntAdminResp) String() string {
  2341. return protoimpl.X.MessageStringOf(x)
  2342. }
  2343. func (*CheckIsEntAdminResp) ProtoMessage() {}
  2344. func (x *CheckIsEntAdminResp) ProtoReflect() protoreflect.Message {
  2345. mi := &file_userCenter_proto_msgTypes[35]
  2346. if protoimpl.UnsafeEnabled && x != nil {
  2347. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2348. if ms.LoadMessageInfo() == nil {
  2349. ms.StoreMessageInfo(mi)
  2350. }
  2351. return ms
  2352. }
  2353. return mi.MessageOf(x)
  2354. }
  2355. // Deprecated: Use CheckIsEntAdminResp.ProtoReflect.Descriptor instead.
  2356. func (*CheckIsEntAdminResp) Descriptor() ([]byte, []int) {
  2357. return file_userCenter_proto_rawDescGZIP(), []int{35}
  2358. }
  2359. func (x *CheckIsEntAdminResp) GetErrorCode() int64 {
  2360. if x != nil {
  2361. return x.ErrorCode
  2362. }
  2363. return 0
  2364. }
  2365. func (x *CheckIsEntAdminResp) GetErrorMsg() string {
  2366. if x != nil {
  2367. return x.ErrorMsg
  2368. }
  2369. return ""
  2370. }
  2371. func (x *CheckIsEntAdminResp) GetStatus() int64 {
  2372. if x != nil {
  2373. return x.Status
  2374. }
  2375. return 0
  2376. }
  2377. type GetStatusByCode struct {
  2378. state protoimpl.MessageState
  2379. sizeCache protoimpl.SizeCache
  2380. unknownFields protoimpl.UnknownFields
  2381. AuthStatus int64 `protobuf:"varint,1,opt,name=authStatus,proto3" json:"authStatus,omitempty"` //企业是否认证 -1 未通过,0 未认证,1 已认证. -2 已到期 3待审核
  2382. IsInEnt bool `protobuf:"varint,2,opt,name=isInEnt,proto3" json:"isInEnt,omitempty"` //是否在该企业内
  2383. }
  2384. func (x *GetStatusByCode) Reset() {
  2385. *x = GetStatusByCode{}
  2386. if protoimpl.UnsafeEnabled {
  2387. mi := &file_userCenter_proto_msgTypes[36]
  2388. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2389. ms.StoreMessageInfo(mi)
  2390. }
  2391. }
  2392. func (x *GetStatusByCode) String() string {
  2393. return protoimpl.X.MessageStringOf(x)
  2394. }
  2395. func (*GetStatusByCode) ProtoMessage() {}
  2396. func (x *GetStatusByCode) ProtoReflect() protoreflect.Message {
  2397. mi := &file_userCenter_proto_msgTypes[36]
  2398. if protoimpl.UnsafeEnabled && x != nil {
  2399. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2400. if ms.LoadMessageInfo() == nil {
  2401. ms.StoreMessageInfo(mi)
  2402. }
  2403. return ms
  2404. }
  2405. return mi.MessageOf(x)
  2406. }
  2407. // Deprecated: Use GetStatusByCode.ProtoReflect.Descriptor instead.
  2408. func (*GetStatusByCode) Descriptor() ([]byte, []int) {
  2409. return file_userCenter_proto_rawDescGZIP(), []int{36}
  2410. }
  2411. func (x *GetStatusByCode) GetAuthStatus() int64 {
  2412. if x != nil {
  2413. return x.AuthStatus
  2414. }
  2415. return 0
  2416. }
  2417. func (x *GetStatusByCode) GetIsInEnt() bool {
  2418. if x != nil {
  2419. return x.IsInEnt
  2420. }
  2421. return false
  2422. }
  2423. type UserAddReq struct {
  2424. state protoimpl.MessageState
  2425. sizeCache protoimpl.SizeCache
  2426. unknownFields protoimpl.UnknownFields
  2427. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  2428. Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
  2429. Nickname string `protobuf:"bytes,3,opt,name=nickname,proto3" json:"nickname,omitempty"`
  2430. Headimg string `protobuf:"bytes,4,opt,name=headimg,proto3" json:"headimg,omitempty"`
  2431. Company string `protobuf:"bytes,5,opt,name=company,proto3" json:"company,omitempty"`
  2432. Position string `protobuf:"bytes,6,opt,name=position,proto3" json:"position,omitempty"`
  2433. Password string `protobuf:"bytes,7,opt,name=password,proto3" json:"password,omitempty"`
  2434. SOpenid string `protobuf:"bytes,8,opt,name=s_openid,json=sOpenid,proto3" json:"s_openid,omitempty"`
  2435. AOpenid string `protobuf:"bytes,9,opt,name=a_openid,json=aOpenid,proto3" json:"a_openid,omitempty"`
  2436. Unionid string `protobuf:"bytes,10,opt,name=unionid,proto3" json:"unionid,omitempty"`
  2437. IdCard string `protobuf:"bytes,11,opt,name=idCard,proto3" json:"idCard,omitempty"`
  2438. Address string `protobuf:"bytes,12,opt,name=address,proto3" json:"address,omitempty"`
  2439. Sex int64 `protobuf:"varint,13,opt,name=sex,proto3" json:"sex,omitempty"`
  2440. }
  2441. func (x *UserAddReq) Reset() {
  2442. *x = UserAddReq{}
  2443. if protoimpl.UnsafeEnabled {
  2444. mi := &file_userCenter_proto_msgTypes[37]
  2445. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2446. ms.StoreMessageInfo(mi)
  2447. }
  2448. }
  2449. func (x *UserAddReq) String() string {
  2450. return protoimpl.X.MessageStringOf(x)
  2451. }
  2452. func (*UserAddReq) ProtoMessage() {}
  2453. func (x *UserAddReq) ProtoReflect() protoreflect.Message {
  2454. mi := &file_userCenter_proto_msgTypes[37]
  2455. if protoimpl.UnsafeEnabled && x != nil {
  2456. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2457. if ms.LoadMessageInfo() == nil {
  2458. ms.StoreMessageInfo(mi)
  2459. }
  2460. return ms
  2461. }
  2462. return mi.MessageOf(x)
  2463. }
  2464. // Deprecated: Use UserAddReq.ProtoReflect.Descriptor instead.
  2465. func (*UserAddReq) Descriptor() ([]byte, []int) {
  2466. return file_userCenter_proto_rawDescGZIP(), []int{37}
  2467. }
  2468. func (x *UserAddReq) GetAppid() string {
  2469. if x != nil {
  2470. return x.Appid
  2471. }
  2472. return ""
  2473. }
  2474. func (x *UserAddReq) GetPhone() string {
  2475. if x != nil {
  2476. return x.Phone
  2477. }
  2478. return ""
  2479. }
  2480. func (x *UserAddReq) GetNickname() string {
  2481. if x != nil {
  2482. return x.Nickname
  2483. }
  2484. return ""
  2485. }
  2486. func (x *UserAddReq) GetHeadimg() string {
  2487. if x != nil {
  2488. return x.Headimg
  2489. }
  2490. return ""
  2491. }
  2492. func (x *UserAddReq) GetCompany() string {
  2493. if x != nil {
  2494. return x.Company
  2495. }
  2496. return ""
  2497. }
  2498. func (x *UserAddReq) GetPosition() string {
  2499. if x != nil {
  2500. return x.Position
  2501. }
  2502. return ""
  2503. }
  2504. func (x *UserAddReq) GetPassword() string {
  2505. if x != nil {
  2506. return x.Password
  2507. }
  2508. return ""
  2509. }
  2510. func (x *UserAddReq) GetSOpenid() string {
  2511. if x != nil {
  2512. return x.SOpenid
  2513. }
  2514. return ""
  2515. }
  2516. func (x *UserAddReq) GetAOpenid() string {
  2517. if x != nil {
  2518. return x.AOpenid
  2519. }
  2520. return ""
  2521. }
  2522. func (x *UserAddReq) GetUnionid() string {
  2523. if x != nil {
  2524. return x.Unionid
  2525. }
  2526. return ""
  2527. }
  2528. func (x *UserAddReq) GetIdCard() string {
  2529. if x != nil {
  2530. return x.IdCard
  2531. }
  2532. return ""
  2533. }
  2534. func (x *UserAddReq) GetAddress() string {
  2535. if x != nil {
  2536. return x.Address
  2537. }
  2538. return ""
  2539. }
  2540. func (x *UserAddReq) GetSex() int64 {
  2541. if x != nil {
  2542. return x.Sex
  2543. }
  2544. return 0
  2545. }
  2546. type UserAddResp struct {
  2547. state protoimpl.MessageState
  2548. sizeCache protoimpl.SizeCache
  2549. unknownFields protoimpl.UnknownFields
  2550. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  2551. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  2552. Data *UserAdds `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  2553. }
  2554. func (x *UserAddResp) Reset() {
  2555. *x = UserAddResp{}
  2556. if protoimpl.UnsafeEnabled {
  2557. mi := &file_userCenter_proto_msgTypes[38]
  2558. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2559. ms.StoreMessageInfo(mi)
  2560. }
  2561. }
  2562. func (x *UserAddResp) String() string {
  2563. return protoimpl.X.MessageStringOf(x)
  2564. }
  2565. func (*UserAddResp) ProtoMessage() {}
  2566. func (x *UserAddResp) ProtoReflect() protoreflect.Message {
  2567. mi := &file_userCenter_proto_msgTypes[38]
  2568. if protoimpl.UnsafeEnabled && x != nil {
  2569. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2570. if ms.LoadMessageInfo() == nil {
  2571. ms.StoreMessageInfo(mi)
  2572. }
  2573. return ms
  2574. }
  2575. return mi.MessageOf(x)
  2576. }
  2577. // Deprecated: Use UserAddResp.ProtoReflect.Descriptor instead.
  2578. func (*UserAddResp) Descriptor() ([]byte, []int) {
  2579. return file_userCenter_proto_rawDescGZIP(), []int{38}
  2580. }
  2581. func (x *UserAddResp) GetErrorCode() int64 {
  2582. if x != nil {
  2583. return x.ErrorCode
  2584. }
  2585. return 0
  2586. }
  2587. func (x *UserAddResp) GetErrorMsg() string {
  2588. if x != nil {
  2589. return x.ErrorMsg
  2590. }
  2591. return ""
  2592. }
  2593. func (x *UserAddResp) GetData() *UserAdds {
  2594. if x != nil {
  2595. return x.Data
  2596. }
  2597. return nil
  2598. }
  2599. type UserAdds struct {
  2600. state protoimpl.MessageState
  2601. sizeCache protoimpl.SizeCache
  2602. unknownFields protoimpl.UnknownFields
  2603. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  2604. Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
  2605. }
  2606. func (x *UserAdds) Reset() {
  2607. *x = UserAdds{}
  2608. if protoimpl.UnsafeEnabled {
  2609. mi := &file_userCenter_proto_msgTypes[39]
  2610. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2611. ms.StoreMessageInfo(mi)
  2612. }
  2613. }
  2614. func (x *UserAdds) String() string {
  2615. return protoimpl.X.MessageStringOf(x)
  2616. }
  2617. func (*UserAdds) ProtoMessage() {}
  2618. func (x *UserAdds) ProtoReflect() protoreflect.Message {
  2619. mi := &file_userCenter_proto_msgTypes[39]
  2620. if protoimpl.UnsafeEnabled && x != nil {
  2621. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2622. if ms.LoadMessageInfo() == nil {
  2623. ms.StoreMessageInfo(mi)
  2624. }
  2625. return ms
  2626. }
  2627. return mi.MessageOf(x)
  2628. }
  2629. // Deprecated: Use UserAdds.ProtoReflect.Descriptor instead.
  2630. func (*UserAdds) Descriptor() ([]byte, []int) {
  2631. return file_userCenter_proto_rawDescGZIP(), []int{39}
  2632. }
  2633. func (x *UserAdds) GetStatus() int64 {
  2634. if x != nil {
  2635. return x.Status
  2636. }
  2637. return 0
  2638. }
  2639. func (x *UserAdds) GetId() int64 {
  2640. if x != nil {
  2641. return x.Id
  2642. }
  2643. return 0
  2644. }
  2645. type UserIdReq struct {
  2646. state protoimpl.MessageState
  2647. sizeCache protoimpl.SizeCache
  2648. unknownFields protoimpl.UnknownFields
  2649. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  2650. Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
  2651. Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone,omitempty"`
  2652. Nickname string `protobuf:"bytes,4,opt,name=nickname,proto3" json:"nickname,omitempty"`
  2653. Headimg string `protobuf:"bytes,5,opt,name=headimg,proto3" json:"headimg,omitempty"`
  2654. Company string `protobuf:"bytes,6,opt,name=company,proto3" json:"company,omitempty"`
  2655. Position string `protobuf:"bytes,7,opt,name=position,proto3" json:"position,omitempty"`
  2656. Password string `protobuf:"bytes,8,opt,name=password,proto3" json:"password,omitempty"`
  2657. SOpenid string `protobuf:"bytes,9,opt,name=s_openid,json=sOpenid,proto3" json:"s_openid,omitempty"`
  2658. AOpenid string `protobuf:"bytes,10,opt,name=a_openid,json=aOpenid,proto3" json:"a_openid,omitempty"`
  2659. Unionid string `protobuf:"bytes,11,opt,name=unionid,proto3" json:"unionid,omitempty"`
  2660. }
  2661. func (x *UserIdReq) Reset() {
  2662. *x = UserIdReq{}
  2663. if protoimpl.UnsafeEnabled {
  2664. mi := &file_userCenter_proto_msgTypes[40]
  2665. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2666. ms.StoreMessageInfo(mi)
  2667. }
  2668. }
  2669. func (x *UserIdReq) String() string {
  2670. return protoimpl.X.MessageStringOf(x)
  2671. }
  2672. func (*UserIdReq) ProtoMessage() {}
  2673. func (x *UserIdReq) ProtoReflect() protoreflect.Message {
  2674. mi := &file_userCenter_proto_msgTypes[40]
  2675. if protoimpl.UnsafeEnabled && x != nil {
  2676. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2677. if ms.LoadMessageInfo() == nil {
  2678. ms.StoreMessageInfo(mi)
  2679. }
  2680. return ms
  2681. }
  2682. return mi.MessageOf(x)
  2683. }
  2684. // Deprecated: Use UserIdReq.ProtoReflect.Descriptor instead.
  2685. func (*UserIdReq) Descriptor() ([]byte, []int) {
  2686. return file_userCenter_proto_rawDescGZIP(), []int{40}
  2687. }
  2688. func (x *UserIdReq) GetAppid() string {
  2689. if x != nil {
  2690. return x.Appid
  2691. }
  2692. return ""
  2693. }
  2694. func (x *UserIdReq) GetId() int64 {
  2695. if x != nil {
  2696. return x.Id
  2697. }
  2698. return 0
  2699. }
  2700. func (x *UserIdReq) GetPhone() string {
  2701. if x != nil {
  2702. return x.Phone
  2703. }
  2704. return ""
  2705. }
  2706. func (x *UserIdReq) GetNickname() string {
  2707. if x != nil {
  2708. return x.Nickname
  2709. }
  2710. return ""
  2711. }
  2712. func (x *UserIdReq) GetHeadimg() string {
  2713. if x != nil {
  2714. return x.Headimg
  2715. }
  2716. return ""
  2717. }
  2718. func (x *UserIdReq) GetCompany() string {
  2719. if x != nil {
  2720. return x.Company
  2721. }
  2722. return ""
  2723. }
  2724. func (x *UserIdReq) GetPosition() string {
  2725. if x != nil {
  2726. return x.Position
  2727. }
  2728. return ""
  2729. }
  2730. func (x *UserIdReq) GetPassword() string {
  2731. if x != nil {
  2732. return x.Password
  2733. }
  2734. return ""
  2735. }
  2736. func (x *UserIdReq) GetSOpenid() string {
  2737. if x != nil {
  2738. return x.SOpenid
  2739. }
  2740. return ""
  2741. }
  2742. func (x *UserIdReq) GetAOpenid() string {
  2743. if x != nil {
  2744. return x.AOpenid
  2745. }
  2746. return ""
  2747. }
  2748. func (x *UserIdReq) GetUnionid() string {
  2749. if x != nil {
  2750. return x.Unionid
  2751. }
  2752. return ""
  2753. }
  2754. //工作桌面
  2755. type WorkDesktopMenuInfoReq struct {
  2756. state protoimpl.MessageState
  2757. sizeCache protoimpl.SizeCache
  2758. unknownFields protoimpl.UnknownFields
  2759. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
  2760. AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"`
  2761. Platform string `protobuf:"bytes,3,opt,name=platform,proto3" json:"platform,omitempty"`
  2762. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone,omitempty"`
  2763. NewUserId string `protobuf:"bytes,5,opt,name=newUserId,proto3" json:"newUserId,omitempty"`
  2764. EntId string `protobuf:"bytes,6,opt,name=entId,proto3" json:"entId,omitempty"`
  2765. EntUserId string `protobuf:"bytes,7,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  2766. IntranetBool bool `protobuf:"varint,8,opt,name=intranetBool,proto3" json:"intranetBool,omitempty"`
  2767. WorkStatus int64 `protobuf:"varint,9,opt,name=workStatus,proto3" json:"workStatus,omitempty"`
  2768. AccountId string `protobuf:"bytes,10,opt,name=accountId,proto3" json:"accountId,omitempty"`
  2769. PositionType string `protobuf:"bytes,11,opt,name=positionType,proto3" json:"positionType,omitempty"`
  2770. PositionId string `protobuf:"bytes,12,opt,name=positionId,proto3" json:"positionId,omitempty"`
  2771. MgoUserId string `protobuf:"bytes,13,opt,name=mgoUserId,proto3" json:"mgoUserId,omitempty"`
  2772. EntAccountId string `protobuf:"bytes,14,opt,name=entAccountId,proto3" json:"entAccountId,omitempty"`
  2773. EntNicheDis int64 `protobuf:"varint,15,opt,name=entNicheDis,proto3" json:"entNicheDis,omitempty"`
  2774. EntUserRole string `protobuf:"bytes,16,opt,name=entUserRole,proto3" json:"entUserRole,omitempty"`
  2775. EntDeptId string `protobuf:"bytes,17,opt,name=entDeptId,proto3" json:"entDeptId,omitempty"`
  2776. }
  2777. func (x *WorkDesktopMenuInfoReq) Reset() {
  2778. *x = WorkDesktopMenuInfoReq{}
  2779. if protoimpl.UnsafeEnabled {
  2780. mi := &file_userCenter_proto_msgTypes[41]
  2781. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2782. ms.StoreMessageInfo(mi)
  2783. }
  2784. }
  2785. func (x *WorkDesktopMenuInfoReq) String() string {
  2786. return protoimpl.X.MessageStringOf(x)
  2787. }
  2788. func (*WorkDesktopMenuInfoReq) ProtoMessage() {}
  2789. func (x *WorkDesktopMenuInfoReq) ProtoReflect() protoreflect.Message {
  2790. mi := &file_userCenter_proto_msgTypes[41]
  2791. if protoimpl.UnsafeEnabled && x != nil {
  2792. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2793. if ms.LoadMessageInfo() == nil {
  2794. ms.StoreMessageInfo(mi)
  2795. }
  2796. return ms
  2797. }
  2798. return mi.MessageOf(x)
  2799. }
  2800. // Deprecated: Use WorkDesktopMenuInfoReq.ProtoReflect.Descriptor instead.
  2801. func (*WorkDesktopMenuInfoReq) Descriptor() ([]byte, []int) {
  2802. return file_userCenter_proto_rawDescGZIP(), []int{41}
  2803. }
  2804. func (x *WorkDesktopMenuInfoReq) GetUserId() string {
  2805. if x != nil {
  2806. return x.UserId
  2807. }
  2808. return ""
  2809. }
  2810. func (x *WorkDesktopMenuInfoReq) GetAppId() string {
  2811. if x != nil {
  2812. return x.AppId
  2813. }
  2814. return ""
  2815. }
  2816. func (x *WorkDesktopMenuInfoReq) GetPlatform() string {
  2817. if x != nil {
  2818. return x.Platform
  2819. }
  2820. return ""
  2821. }
  2822. func (x *WorkDesktopMenuInfoReq) GetPhone() string {
  2823. if x != nil {
  2824. return x.Phone
  2825. }
  2826. return ""
  2827. }
  2828. func (x *WorkDesktopMenuInfoReq) GetNewUserId() string {
  2829. if x != nil {
  2830. return x.NewUserId
  2831. }
  2832. return ""
  2833. }
  2834. func (x *WorkDesktopMenuInfoReq) GetEntId() string {
  2835. if x != nil {
  2836. return x.EntId
  2837. }
  2838. return ""
  2839. }
  2840. func (x *WorkDesktopMenuInfoReq) GetEntUserId() string {
  2841. if x != nil {
  2842. return x.EntUserId
  2843. }
  2844. return ""
  2845. }
  2846. func (x *WorkDesktopMenuInfoReq) GetIntranetBool() bool {
  2847. if x != nil {
  2848. return x.IntranetBool
  2849. }
  2850. return false
  2851. }
  2852. func (x *WorkDesktopMenuInfoReq) GetWorkStatus() int64 {
  2853. if x != nil {
  2854. return x.WorkStatus
  2855. }
  2856. return 0
  2857. }
  2858. func (x *WorkDesktopMenuInfoReq) GetAccountId() string {
  2859. if x != nil {
  2860. return x.AccountId
  2861. }
  2862. return ""
  2863. }
  2864. func (x *WorkDesktopMenuInfoReq) GetPositionType() string {
  2865. if x != nil {
  2866. return x.PositionType
  2867. }
  2868. return ""
  2869. }
  2870. func (x *WorkDesktopMenuInfoReq) GetPositionId() string {
  2871. if x != nil {
  2872. return x.PositionId
  2873. }
  2874. return ""
  2875. }
  2876. func (x *WorkDesktopMenuInfoReq) GetMgoUserId() string {
  2877. if x != nil {
  2878. return x.MgoUserId
  2879. }
  2880. return ""
  2881. }
  2882. func (x *WorkDesktopMenuInfoReq) GetEntAccountId() string {
  2883. if x != nil {
  2884. return x.EntAccountId
  2885. }
  2886. return ""
  2887. }
  2888. func (x *WorkDesktopMenuInfoReq) GetEntNicheDis() int64 {
  2889. if x != nil {
  2890. return x.EntNicheDis
  2891. }
  2892. return 0
  2893. }
  2894. func (x *WorkDesktopMenuInfoReq) GetEntUserRole() string {
  2895. if x != nil {
  2896. return x.EntUserRole
  2897. }
  2898. return ""
  2899. }
  2900. func (x *WorkDesktopMenuInfoReq) GetEntDeptId() string {
  2901. if x != nil {
  2902. return x.EntDeptId
  2903. }
  2904. return ""
  2905. }
  2906. //工作桌面-返回数据
  2907. type WorkDesktopMenuInfoResp struct {
  2908. state protoimpl.MessageState
  2909. sizeCache protoimpl.SizeCache
  2910. unknownFields protoimpl.UnknownFields
  2911. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  2912. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  2913. Data *MenuData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  2914. }
  2915. func (x *WorkDesktopMenuInfoResp) Reset() {
  2916. *x = WorkDesktopMenuInfoResp{}
  2917. if protoimpl.UnsafeEnabled {
  2918. mi := &file_userCenter_proto_msgTypes[42]
  2919. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2920. ms.StoreMessageInfo(mi)
  2921. }
  2922. }
  2923. func (x *WorkDesktopMenuInfoResp) String() string {
  2924. return protoimpl.X.MessageStringOf(x)
  2925. }
  2926. func (*WorkDesktopMenuInfoResp) ProtoMessage() {}
  2927. func (x *WorkDesktopMenuInfoResp) ProtoReflect() protoreflect.Message {
  2928. mi := &file_userCenter_proto_msgTypes[42]
  2929. if protoimpl.UnsafeEnabled && x != nil {
  2930. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2931. if ms.LoadMessageInfo() == nil {
  2932. ms.StoreMessageInfo(mi)
  2933. }
  2934. return ms
  2935. }
  2936. return mi.MessageOf(x)
  2937. }
  2938. // Deprecated: Use WorkDesktopMenuInfoResp.ProtoReflect.Descriptor instead.
  2939. func (*WorkDesktopMenuInfoResp) Descriptor() ([]byte, []int) {
  2940. return file_userCenter_proto_rawDescGZIP(), []int{42}
  2941. }
  2942. func (x *WorkDesktopMenuInfoResp) GetErrorCode() int64 {
  2943. if x != nil {
  2944. return x.ErrorCode
  2945. }
  2946. return 0
  2947. }
  2948. func (x *WorkDesktopMenuInfoResp) GetErrorMsg() string {
  2949. if x != nil {
  2950. return x.ErrorMsg
  2951. }
  2952. return ""
  2953. }
  2954. func (x *WorkDesktopMenuInfoResp) GetData() *MenuData {
  2955. if x != nil {
  2956. return x.Data
  2957. }
  2958. return nil
  2959. }
  2960. type MenuData struct {
  2961. state protoimpl.MessageState
  2962. sizeCache protoimpl.SizeCache
  2963. unknownFields protoimpl.UnknownFields
  2964. MenuType string `protobuf:"bytes,1,opt,name=menuType,proto3" json:"menuType,omitempty"`
  2965. MenuList []*MenuList `protobuf:"bytes,2,rep,name=menuList,proto3" json:"menuList,omitempty"`
  2966. }
  2967. func (x *MenuData) Reset() {
  2968. *x = MenuData{}
  2969. if protoimpl.UnsafeEnabled {
  2970. mi := &file_userCenter_proto_msgTypes[43]
  2971. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2972. ms.StoreMessageInfo(mi)
  2973. }
  2974. }
  2975. func (x *MenuData) String() string {
  2976. return protoimpl.X.MessageStringOf(x)
  2977. }
  2978. func (*MenuData) ProtoMessage() {}
  2979. func (x *MenuData) ProtoReflect() protoreflect.Message {
  2980. mi := &file_userCenter_proto_msgTypes[43]
  2981. if protoimpl.UnsafeEnabled && x != nil {
  2982. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2983. if ms.LoadMessageInfo() == nil {
  2984. ms.StoreMessageInfo(mi)
  2985. }
  2986. return ms
  2987. }
  2988. return mi.MessageOf(x)
  2989. }
  2990. // Deprecated: Use MenuData.ProtoReflect.Descriptor instead.
  2991. func (*MenuData) Descriptor() ([]byte, []int) {
  2992. return file_userCenter_proto_rawDescGZIP(), []int{43}
  2993. }
  2994. func (x *MenuData) GetMenuType() string {
  2995. if x != nil {
  2996. return x.MenuType
  2997. }
  2998. return ""
  2999. }
  3000. func (x *MenuData) GetMenuList() []*MenuList {
  3001. if x != nil {
  3002. return x.MenuList
  3003. }
  3004. return nil
  3005. }
  3006. type MenuList struct {
  3007. state protoimpl.MessageState
  3008. sizeCache protoimpl.SizeCache
  3009. unknownFields protoimpl.UnknownFields
  3010. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  3011. Icon string `protobuf:"bytes,2,opt,name=icon,proto3" json:"icon,omitempty"`
  3012. Url string `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
  3013. Usable bool `protobuf:"varint,4,opt,name=usable,proto3" json:"usable,omitempty"`
  3014. Id string `protobuf:"bytes,5,opt,name=id,proto3" json:"id,omitempty"`
  3015. AppType string `protobuf:"bytes,6,opt,name=appType,proto3" json:"appType,omitempty"`
  3016. OpenType string `protobuf:"bytes,7,opt,name=openType,proto3" json:"openType,omitempty"`
  3017. TipInfo *TipInfo `protobuf:"bytes,8,opt,name=tipInfo,proto3" json:"tipInfo,omitempty"`
  3018. Child []*SecondLevelMenu `protobuf:"bytes,9,rep,name=child,proto3" json:"child,omitempty"`
  3019. Match []string `protobuf:"bytes,10,rep,name=match,proto3" json:"match,omitempty"`
  3020. }
  3021. func (x *MenuList) Reset() {
  3022. *x = MenuList{}
  3023. if protoimpl.UnsafeEnabled {
  3024. mi := &file_userCenter_proto_msgTypes[44]
  3025. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3026. ms.StoreMessageInfo(mi)
  3027. }
  3028. }
  3029. func (x *MenuList) String() string {
  3030. return protoimpl.X.MessageStringOf(x)
  3031. }
  3032. func (*MenuList) ProtoMessage() {}
  3033. func (x *MenuList) ProtoReflect() protoreflect.Message {
  3034. mi := &file_userCenter_proto_msgTypes[44]
  3035. if protoimpl.UnsafeEnabled && x != nil {
  3036. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3037. if ms.LoadMessageInfo() == nil {
  3038. ms.StoreMessageInfo(mi)
  3039. }
  3040. return ms
  3041. }
  3042. return mi.MessageOf(x)
  3043. }
  3044. // Deprecated: Use MenuList.ProtoReflect.Descriptor instead.
  3045. func (*MenuList) Descriptor() ([]byte, []int) {
  3046. return file_userCenter_proto_rawDescGZIP(), []int{44}
  3047. }
  3048. func (x *MenuList) GetName() string {
  3049. if x != nil {
  3050. return x.Name
  3051. }
  3052. return ""
  3053. }
  3054. func (x *MenuList) GetIcon() string {
  3055. if x != nil {
  3056. return x.Icon
  3057. }
  3058. return ""
  3059. }
  3060. func (x *MenuList) GetUrl() string {
  3061. if x != nil {
  3062. return x.Url
  3063. }
  3064. return ""
  3065. }
  3066. func (x *MenuList) GetUsable() bool {
  3067. if x != nil {
  3068. return x.Usable
  3069. }
  3070. return false
  3071. }
  3072. func (x *MenuList) GetId() string {
  3073. if x != nil {
  3074. return x.Id
  3075. }
  3076. return ""
  3077. }
  3078. func (x *MenuList) GetAppType() string {
  3079. if x != nil {
  3080. return x.AppType
  3081. }
  3082. return ""
  3083. }
  3084. func (x *MenuList) GetOpenType() string {
  3085. if x != nil {
  3086. return x.OpenType
  3087. }
  3088. return ""
  3089. }
  3090. func (x *MenuList) GetTipInfo() *TipInfo {
  3091. if x != nil {
  3092. return x.TipInfo
  3093. }
  3094. return nil
  3095. }
  3096. func (x *MenuList) GetChild() []*SecondLevelMenu {
  3097. if x != nil {
  3098. return x.Child
  3099. }
  3100. return nil
  3101. }
  3102. func (x *MenuList) GetMatch() []string {
  3103. if x != nil {
  3104. return x.Match
  3105. }
  3106. return nil
  3107. }
  3108. type SecondLevelMenu struct {
  3109. state protoimpl.MessageState
  3110. sizeCache protoimpl.SizeCache
  3111. unknownFields protoimpl.UnknownFields
  3112. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  3113. Icon string `protobuf:"bytes,2,opt,name=icon,proto3" json:"icon,omitempty"`
  3114. Url string `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
  3115. Usable bool `protobuf:"varint,4,opt,name=usable,proto3" json:"usable,omitempty"`
  3116. Id string `protobuf:"bytes,5,opt,name=id,proto3" json:"id,omitempty"`
  3117. AppType string `protobuf:"bytes,6,opt,name=appType,proto3" json:"appType,omitempty"`
  3118. OpenType string `protobuf:"bytes,7,opt,name=openType,proto3" json:"openType,omitempty"`
  3119. TipInfo *TipInfo `protobuf:"bytes,8,opt,name=tipInfo,proto3" json:"tipInfo,omitempty"`
  3120. Child []*ThreeLevelMenu `protobuf:"bytes,9,rep,name=child,proto3" json:"child,omitempty"`
  3121. Match []string `protobuf:"bytes,10,rep,name=match,proto3" json:"match,omitempty"`
  3122. }
  3123. func (x *SecondLevelMenu) Reset() {
  3124. *x = SecondLevelMenu{}
  3125. if protoimpl.UnsafeEnabled {
  3126. mi := &file_userCenter_proto_msgTypes[45]
  3127. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3128. ms.StoreMessageInfo(mi)
  3129. }
  3130. }
  3131. func (x *SecondLevelMenu) String() string {
  3132. return protoimpl.X.MessageStringOf(x)
  3133. }
  3134. func (*SecondLevelMenu) ProtoMessage() {}
  3135. func (x *SecondLevelMenu) ProtoReflect() protoreflect.Message {
  3136. mi := &file_userCenter_proto_msgTypes[45]
  3137. if protoimpl.UnsafeEnabled && x != nil {
  3138. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3139. if ms.LoadMessageInfo() == nil {
  3140. ms.StoreMessageInfo(mi)
  3141. }
  3142. return ms
  3143. }
  3144. return mi.MessageOf(x)
  3145. }
  3146. // Deprecated: Use SecondLevelMenu.ProtoReflect.Descriptor instead.
  3147. func (*SecondLevelMenu) Descriptor() ([]byte, []int) {
  3148. return file_userCenter_proto_rawDescGZIP(), []int{45}
  3149. }
  3150. func (x *SecondLevelMenu) GetName() string {
  3151. if x != nil {
  3152. return x.Name
  3153. }
  3154. return ""
  3155. }
  3156. func (x *SecondLevelMenu) GetIcon() string {
  3157. if x != nil {
  3158. return x.Icon
  3159. }
  3160. return ""
  3161. }
  3162. func (x *SecondLevelMenu) GetUrl() string {
  3163. if x != nil {
  3164. return x.Url
  3165. }
  3166. return ""
  3167. }
  3168. func (x *SecondLevelMenu) GetUsable() bool {
  3169. if x != nil {
  3170. return x.Usable
  3171. }
  3172. return false
  3173. }
  3174. func (x *SecondLevelMenu) GetId() string {
  3175. if x != nil {
  3176. return x.Id
  3177. }
  3178. return ""
  3179. }
  3180. func (x *SecondLevelMenu) GetAppType() string {
  3181. if x != nil {
  3182. return x.AppType
  3183. }
  3184. return ""
  3185. }
  3186. func (x *SecondLevelMenu) GetOpenType() string {
  3187. if x != nil {
  3188. return x.OpenType
  3189. }
  3190. return ""
  3191. }
  3192. func (x *SecondLevelMenu) GetTipInfo() *TipInfo {
  3193. if x != nil {
  3194. return x.TipInfo
  3195. }
  3196. return nil
  3197. }
  3198. func (x *SecondLevelMenu) GetChild() []*ThreeLevelMenu {
  3199. if x != nil {
  3200. return x.Child
  3201. }
  3202. return nil
  3203. }
  3204. func (x *SecondLevelMenu) GetMatch() []string {
  3205. if x != nil {
  3206. return x.Match
  3207. }
  3208. return nil
  3209. }
  3210. type ThreeLevelMenu struct {
  3211. state protoimpl.MessageState
  3212. sizeCache protoimpl.SizeCache
  3213. unknownFields protoimpl.UnknownFields
  3214. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  3215. Icon string `protobuf:"bytes,2,opt,name=icon,proto3" json:"icon,omitempty"`
  3216. Url string `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
  3217. Usable bool `protobuf:"varint,4,opt,name=usable,proto3" json:"usable,omitempty"`
  3218. Id string `protobuf:"bytes,5,opt,name=id,proto3" json:"id,omitempty"`
  3219. AppType string `protobuf:"bytes,6,opt,name=appType,proto3" json:"appType,omitempty"`
  3220. OpenType string `protobuf:"bytes,7,opt,name=openType,proto3" json:"openType,omitempty"`
  3221. TipInfo *TipInfo `protobuf:"bytes,8,opt,name=tipInfo,proto3" json:"tipInfo,omitempty"`
  3222. Match []string `protobuf:"bytes,10,rep,name=match,proto3" json:"match,omitempty"`
  3223. GroupName string `protobuf:"bytes,11,opt,name=groupName,proto3" json:"groupName,omitempty"`
  3224. }
  3225. func (x *ThreeLevelMenu) Reset() {
  3226. *x = ThreeLevelMenu{}
  3227. if protoimpl.UnsafeEnabled {
  3228. mi := &file_userCenter_proto_msgTypes[46]
  3229. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3230. ms.StoreMessageInfo(mi)
  3231. }
  3232. }
  3233. func (x *ThreeLevelMenu) String() string {
  3234. return protoimpl.X.MessageStringOf(x)
  3235. }
  3236. func (*ThreeLevelMenu) ProtoMessage() {}
  3237. func (x *ThreeLevelMenu) ProtoReflect() protoreflect.Message {
  3238. mi := &file_userCenter_proto_msgTypes[46]
  3239. if protoimpl.UnsafeEnabled && x != nil {
  3240. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3241. if ms.LoadMessageInfo() == nil {
  3242. ms.StoreMessageInfo(mi)
  3243. }
  3244. return ms
  3245. }
  3246. return mi.MessageOf(x)
  3247. }
  3248. // Deprecated: Use ThreeLevelMenu.ProtoReflect.Descriptor instead.
  3249. func (*ThreeLevelMenu) Descriptor() ([]byte, []int) {
  3250. return file_userCenter_proto_rawDescGZIP(), []int{46}
  3251. }
  3252. func (x *ThreeLevelMenu) GetName() string {
  3253. if x != nil {
  3254. return x.Name
  3255. }
  3256. return ""
  3257. }
  3258. func (x *ThreeLevelMenu) GetIcon() string {
  3259. if x != nil {
  3260. return x.Icon
  3261. }
  3262. return ""
  3263. }
  3264. func (x *ThreeLevelMenu) GetUrl() string {
  3265. if x != nil {
  3266. return x.Url
  3267. }
  3268. return ""
  3269. }
  3270. func (x *ThreeLevelMenu) GetUsable() bool {
  3271. if x != nil {
  3272. return x.Usable
  3273. }
  3274. return false
  3275. }
  3276. func (x *ThreeLevelMenu) GetId() string {
  3277. if x != nil {
  3278. return x.Id
  3279. }
  3280. return ""
  3281. }
  3282. func (x *ThreeLevelMenu) GetAppType() string {
  3283. if x != nil {
  3284. return x.AppType
  3285. }
  3286. return ""
  3287. }
  3288. func (x *ThreeLevelMenu) GetOpenType() string {
  3289. if x != nil {
  3290. return x.OpenType
  3291. }
  3292. return ""
  3293. }
  3294. func (x *ThreeLevelMenu) GetTipInfo() *TipInfo {
  3295. if x != nil {
  3296. return x.TipInfo
  3297. }
  3298. return nil
  3299. }
  3300. func (x *ThreeLevelMenu) GetMatch() []string {
  3301. if x != nil {
  3302. return x.Match
  3303. }
  3304. return nil
  3305. }
  3306. func (x *ThreeLevelMenu) GetGroupName() string {
  3307. if x != nil {
  3308. return x.GroupName
  3309. }
  3310. return ""
  3311. }
  3312. type TipInfo struct {
  3313. state protoimpl.MessageState
  3314. sizeCache protoimpl.SizeCache
  3315. unknownFields protoimpl.UnknownFields
  3316. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  3317. Content string `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
  3318. ConfirmUrl string `protobuf:"bytes,3,opt,name=confirmUrl,proto3" json:"confirmUrl,omitempty"`
  3319. ConfirmText string `protobuf:"bytes,4,opt,name=confirmText,proto3" json:"confirmText,omitempty"`
  3320. IsShowCancel bool `protobuf:"varint,5,opt,name=isShowCancel,proto3" json:"isShowCancel,omitempty"`
  3321. AppType string `protobuf:"bytes,6,opt,name=appType,proto3" json:"appType,omitempty"`
  3322. OpenType string `protobuf:"bytes,7,opt,name=openType,proto3" json:"openType,omitempty"`
  3323. }
  3324. func (x *TipInfo) Reset() {
  3325. *x = TipInfo{}
  3326. if protoimpl.UnsafeEnabled {
  3327. mi := &file_userCenter_proto_msgTypes[47]
  3328. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3329. ms.StoreMessageInfo(mi)
  3330. }
  3331. }
  3332. func (x *TipInfo) String() string {
  3333. return protoimpl.X.MessageStringOf(x)
  3334. }
  3335. func (*TipInfo) ProtoMessage() {}
  3336. func (x *TipInfo) ProtoReflect() protoreflect.Message {
  3337. mi := &file_userCenter_proto_msgTypes[47]
  3338. if protoimpl.UnsafeEnabled && x != nil {
  3339. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3340. if ms.LoadMessageInfo() == nil {
  3341. ms.StoreMessageInfo(mi)
  3342. }
  3343. return ms
  3344. }
  3345. return mi.MessageOf(x)
  3346. }
  3347. // Deprecated: Use TipInfo.ProtoReflect.Descriptor instead.
  3348. func (*TipInfo) Descriptor() ([]byte, []int) {
  3349. return file_userCenter_proto_rawDescGZIP(), []int{47}
  3350. }
  3351. func (x *TipInfo) GetTitle() string {
  3352. if x != nil {
  3353. return x.Title
  3354. }
  3355. return ""
  3356. }
  3357. func (x *TipInfo) GetContent() string {
  3358. if x != nil {
  3359. return x.Content
  3360. }
  3361. return ""
  3362. }
  3363. func (x *TipInfo) GetConfirmUrl() string {
  3364. if x != nil {
  3365. return x.ConfirmUrl
  3366. }
  3367. return ""
  3368. }
  3369. func (x *TipInfo) GetConfirmText() string {
  3370. if x != nil {
  3371. return x.ConfirmText
  3372. }
  3373. return ""
  3374. }
  3375. func (x *TipInfo) GetIsShowCancel() bool {
  3376. if x != nil {
  3377. return x.IsShowCancel
  3378. }
  3379. return false
  3380. }
  3381. func (x *TipInfo) GetAppType() string {
  3382. if x != nil {
  3383. return x.AppType
  3384. }
  3385. return ""
  3386. }
  3387. func (x *TipInfo) GetOpenType() string {
  3388. if x != nil {
  3389. return x.OpenType
  3390. }
  3391. return ""
  3392. }
  3393. //工作桌面 菜单选择类型 全部/可用
  3394. //工作桌面 常用功能更新
  3395. type WorkDesktopComprehensiveReq struct {
  3396. state protoimpl.MessageState
  3397. sizeCache protoimpl.SizeCache
  3398. unknownFields protoimpl.UnknownFields
  3399. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
  3400. AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"`
  3401. Platform string `protobuf:"bytes,3,opt,name=platform,proto3" json:"platform,omitempty"`
  3402. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone,omitempty"`
  3403. ActionMode string `protobuf:"bytes,5,opt,name=actionMode,proto3" json:"actionMode,omitempty"`
  3404. MenuMode string `protobuf:"bytes,6,opt,name=menuMode,proto3" json:"menuMode,omitempty"`
  3405. MenuIds string `protobuf:"bytes,7,opt,name=menuIds,proto3" json:"menuIds,omitempty"`
  3406. NewUserId string `protobuf:"bytes,8,opt,name=newUserId,proto3" json:"newUserId,omitempty"`
  3407. EntId string `protobuf:"bytes,9,opt,name=entId,proto3" json:"entId,omitempty"`
  3408. EntUserId string `protobuf:"bytes,10,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  3409. AccountId string `protobuf:"bytes,11,opt,name=accountId,proto3" json:"accountId,omitempty"`
  3410. PositionType string `protobuf:"bytes,12,opt,name=positionType,proto3" json:"positionType,omitempty"`
  3411. PositionId string `protobuf:"bytes,13,opt,name=positionId,proto3" json:"positionId,omitempty"`
  3412. IntranetBool bool `protobuf:"varint,14,opt,name=intranetBool,proto3" json:"intranetBool,omitempty"`
  3413. MgoUserId string `protobuf:"bytes,15,opt,name=mgoUserId,proto3" json:"mgoUserId,omitempty"`
  3414. EntAccountId string `protobuf:"bytes,16,opt,name=entAccountId,proto3" json:"entAccountId,omitempty"`
  3415. EntNicheDis int64 `protobuf:"varint,17,opt,name=entNicheDis,proto3" json:"entNicheDis,omitempty"`
  3416. EntUserRole string `protobuf:"bytes,18,opt,name=entUserRole,proto3" json:"entUserRole,omitempty"`
  3417. EntDeptId string `protobuf:"bytes,19,opt,name=entDeptId,proto3" json:"entDeptId,omitempty"`
  3418. }
  3419. func (x *WorkDesktopComprehensiveReq) Reset() {
  3420. *x = WorkDesktopComprehensiveReq{}
  3421. if protoimpl.UnsafeEnabled {
  3422. mi := &file_userCenter_proto_msgTypes[48]
  3423. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3424. ms.StoreMessageInfo(mi)
  3425. }
  3426. }
  3427. func (x *WorkDesktopComprehensiveReq) String() string {
  3428. return protoimpl.X.MessageStringOf(x)
  3429. }
  3430. func (*WorkDesktopComprehensiveReq) ProtoMessage() {}
  3431. func (x *WorkDesktopComprehensiveReq) ProtoReflect() protoreflect.Message {
  3432. mi := &file_userCenter_proto_msgTypes[48]
  3433. if protoimpl.UnsafeEnabled && x != nil {
  3434. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3435. if ms.LoadMessageInfo() == nil {
  3436. ms.StoreMessageInfo(mi)
  3437. }
  3438. return ms
  3439. }
  3440. return mi.MessageOf(x)
  3441. }
  3442. // Deprecated: Use WorkDesktopComprehensiveReq.ProtoReflect.Descriptor instead.
  3443. func (*WorkDesktopComprehensiveReq) Descriptor() ([]byte, []int) {
  3444. return file_userCenter_proto_rawDescGZIP(), []int{48}
  3445. }
  3446. func (x *WorkDesktopComprehensiveReq) GetUserId() string {
  3447. if x != nil {
  3448. return x.UserId
  3449. }
  3450. return ""
  3451. }
  3452. func (x *WorkDesktopComprehensiveReq) GetAppId() string {
  3453. if x != nil {
  3454. return x.AppId
  3455. }
  3456. return ""
  3457. }
  3458. func (x *WorkDesktopComprehensiveReq) GetPlatform() string {
  3459. if x != nil {
  3460. return x.Platform
  3461. }
  3462. return ""
  3463. }
  3464. func (x *WorkDesktopComprehensiveReq) GetPhone() string {
  3465. if x != nil {
  3466. return x.Phone
  3467. }
  3468. return ""
  3469. }
  3470. func (x *WorkDesktopComprehensiveReq) GetActionMode() string {
  3471. if x != nil {
  3472. return x.ActionMode
  3473. }
  3474. return ""
  3475. }
  3476. func (x *WorkDesktopComprehensiveReq) GetMenuMode() string {
  3477. if x != nil {
  3478. return x.MenuMode
  3479. }
  3480. return ""
  3481. }
  3482. func (x *WorkDesktopComprehensiveReq) GetMenuIds() string {
  3483. if x != nil {
  3484. return x.MenuIds
  3485. }
  3486. return ""
  3487. }
  3488. func (x *WorkDesktopComprehensiveReq) GetNewUserId() string {
  3489. if x != nil {
  3490. return x.NewUserId
  3491. }
  3492. return ""
  3493. }
  3494. func (x *WorkDesktopComprehensiveReq) GetEntId() string {
  3495. if x != nil {
  3496. return x.EntId
  3497. }
  3498. return ""
  3499. }
  3500. func (x *WorkDesktopComprehensiveReq) GetEntUserId() string {
  3501. if x != nil {
  3502. return x.EntUserId
  3503. }
  3504. return ""
  3505. }
  3506. func (x *WorkDesktopComprehensiveReq) GetAccountId() string {
  3507. if x != nil {
  3508. return x.AccountId
  3509. }
  3510. return ""
  3511. }
  3512. func (x *WorkDesktopComprehensiveReq) GetPositionType() string {
  3513. if x != nil {
  3514. return x.PositionType
  3515. }
  3516. return ""
  3517. }
  3518. func (x *WorkDesktopComprehensiveReq) GetPositionId() string {
  3519. if x != nil {
  3520. return x.PositionId
  3521. }
  3522. return ""
  3523. }
  3524. func (x *WorkDesktopComprehensiveReq) GetIntranetBool() bool {
  3525. if x != nil {
  3526. return x.IntranetBool
  3527. }
  3528. return false
  3529. }
  3530. func (x *WorkDesktopComprehensiveReq) GetMgoUserId() string {
  3531. if x != nil {
  3532. return x.MgoUserId
  3533. }
  3534. return ""
  3535. }
  3536. func (x *WorkDesktopComprehensiveReq) GetEntAccountId() string {
  3537. if x != nil {
  3538. return x.EntAccountId
  3539. }
  3540. return ""
  3541. }
  3542. func (x *WorkDesktopComprehensiveReq) GetEntNicheDis() int64 {
  3543. if x != nil {
  3544. return x.EntNicheDis
  3545. }
  3546. return 0
  3547. }
  3548. func (x *WorkDesktopComprehensiveReq) GetEntUserRole() string {
  3549. if x != nil {
  3550. return x.EntUserRole
  3551. }
  3552. return ""
  3553. }
  3554. func (x *WorkDesktopComprehensiveReq) GetEntDeptId() string {
  3555. if x != nil {
  3556. return x.EntDeptId
  3557. }
  3558. return ""
  3559. }
  3560. //工作桌面 综合功能-返回数据
  3561. type WorkDesktopComprehensiveResp struct {
  3562. state protoimpl.MessageState
  3563. sizeCache protoimpl.SizeCache
  3564. unknownFields protoimpl.UnknownFields
  3565. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  3566. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  3567. Data []*ThreeLevelMenu `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  3568. CommonlySize int64 `protobuf:"varint,4,opt,name=CommonlySize,proto3" json:"CommonlySize,omitempty"`
  3569. }
  3570. func (x *WorkDesktopComprehensiveResp) Reset() {
  3571. *x = WorkDesktopComprehensiveResp{}
  3572. if protoimpl.UnsafeEnabled {
  3573. mi := &file_userCenter_proto_msgTypes[49]
  3574. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3575. ms.StoreMessageInfo(mi)
  3576. }
  3577. }
  3578. func (x *WorkDesktopComprehensiveResp) String() string {
  3579. return protoimpl.X.MessageStringOf(x)
  3580. }
  3581. func (*WorkDesktopComprehensiveResp) ProtoMessage() {}
  3582. func (x *WorkDesktopComprehensiveResp) ProtoReflect() protoreflect.Message {
  3583. mi := &file_userCenter_proto_msgTypes[49]
  3584. if protoimpl.UnsafeEnabled && x != nil {
  3585. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3586. if ms.LoadMessageInfo() == nil {
  3587. ms.StoreMessageInfo(mi)
  3588. }
  3589. return ms
  3590. }
  3591. return mi.MessageOf(x)
  3592. }
  3593. // Deprecated: Use WorkDesktopComprehensiveResp.ProtoReflect.Descriptor instead.
  3594. func (*WorkDesktopComprehensiveResp) Descriptor() ([]byte, []int) {
  3595. return file_userCenter_proto_rawDescGZIP(), []int{49}
  3596. }
  3597. func (x *WorkDesktopComprehensiveResp) GetErrorCode() int64 {
  3598. if x != nil {
  3599. return x.ErrorCode
  3600. }
  3601. return 0
  3602. }
  3603. func (x *WorkDesktopComprehensiveResp) GetErrorMsg() string {
  3604. if x != nil {
  3605. return x.ErrorMsg
  3606. }
  3607. return ""
  3608. }
  3609. func (x *WorkDesktopComprehensiveResp) GetData() []*ThreeLevelMenu {
  3610. if x != nil {
  3611. return x.Data
  3612. }
  3613. return nil
  3614. }
  3615. func (x *WorkDesktopComprehensiveResp) GetCommonlySize() int64 {
  3616. if x != nil {
  3617. return x.CommonlySize
  3618. }
  3619. return 0
  3620. }
  3621. //清除用户功能相关内存信息
  3622. type WorkDesktopClearUserInfoReq struct {
  3623. state protoimpl.MessageState
  3624. sizeCache protoimpl.SizeCache
  3625. unknownFields protoimpl.UnknownFields
  3626. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
  3627. AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"`
  3628. PositionId string `protobuf:"bytes,3,opt,name=positionId,proto3" json:"positionId,omitempty"`
  3629. Platform string `protobuf:"bytes,4,opt,name=platform,proto3" json:"platform,omitempty"`
  3630. }
  3631. func (x *WorkDesktopClearUserInfoReq) Reset() {
  3632. *x = WorkDesktopClearUserInfoReq{}
  3633. if protoimpl.UnsafeEnabled {
  3634. mi := &file_userCenter_proto_msgTypes[50]
  3635. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3636. ms.StoreMessageInfo(mi)
  3637. }
  3638. }
  3639. func (x *WorkDesktopClearUserInfoReq) String() string {
  3640. return protoimpl.X.MessageStringOf(x)
  3641. }
  3642. func (*WorkDesktopClearUserInfoReq) ProtoMessage() {}
  3643. func (x *WorkDesktopClearUserInfoReq) ProtoReflect() protoreflect.Message {
  3644. mi := &file_userCenter_proto_msgTypes[50]
  3645. if protoimpl.UnsafeEnabled && x != nil {
  3646. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3647. if ms.LoadMessageInfo() == nil {
  3648. ms.StoreMessageInfo(mi)
  3649. }
  3650. return ms
  3651. }
  3652. return mi.MessageOf(x)
  3653. }
  3654. // Deprecated: Use WorkDesktopClearUserInfoReq.ProtoReflect.Descriptor instead.
  3655. func (*WorkDesktopClearUserInfoReq) Descriptor() ([]byte, []int) {
  3656. return file_userCenter_proto_rawDescGZIP(), []int{50}
  3657. }
  3658. func (x *WorkDesktopClearUserInfoReq) GetUserId() string {
  3659. if x != nil {
  3660. return x.UserId
  3661. }
  3662. return ""
  3663. }
  3664. func (x *WorkDesktopClearUserInfoReq) GetAppId() string {
  3665. if x != nil {
  3666. return x.AppId
  3667. }
  3668. return ""
  3669. }
  3670. func (x *WorkDesktopClearUserInfoReq) GetPositionId() string {
  3671. if x != nil {
  3672. return x.PositionId
  3673. }
  3674. return ""
  3675. }
  3676. func (x *WorkDesktopClearUserInfoReq) GetPlatform() string {
  3677. if x != nil {
  3678. return x.Platform
  3679. }
  3680. return ""
  3681. }
  3682. //清除用户菜单缓存结果
  3683. type WorkDesktopClearUserInfoResp struct {
  3684. state protoimpl.MessageState
  3685. sizeCache protoimpl.SizeCache
  3686. unknownFields protoimpl.UnknownFields
  3687. B bool `protobuf:"varint,1,opt,name=b,proto3" json:"b,omitempty"`
  3688. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  3689. }
  3690. func (x *WorkDesktopClearUserInfoResp) Reset() {
  3691. *x = WorkDesktopClearUserInfoResp{}
  3692. if protoimpl.UnsafeEnabled {
  3693. mi := &file_userCenter_proto_msgTypes[51]
  3694. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3695. ms.StoreMessageInfo(mi)
  3696. }
  3697. }
  3698. func (x *WorkDesktopClearUserInfoResp) String() string {
  3699. return protoimpl.X.MessageStringOf(x)
  3700. }
  3701. func (*WorkDesktopClearUserInfoResp) ProtoMessage() {}
  3702. func (x *WorkDesktopClearUserInfoResp) ProtoReflect() protoreflect.Message {
  3703. mi := &file_userCenter_proto_msgTypes[51]
  3704. if protoimpl.UnsafeEnabled && x != nil {
  3705. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3706. if ms.LoadMessageInfo() == nil {
  3707. ms.StoreMessageInfo(mi)
  3708. }
  3709. return ms
  3710. }
  3711. return mi.MessageOf(x)
  3712. }
  3713. // Deprecated: Use WorkDesktopClearUserInfoResp.ProtoReflect.Descriptor instead.
  3714. func (*WorkDesktopClearUserInfoResp) Descriptor() ([]byte, []int) {
  3715. return file_userCenter_proto_rawDescGZIP(), []int{51}
  3716. }
  3717. func (x *WorkDesktopClearUserInfoResp) GetB() bool {
  3718. if x != nil {
  3719. return x.B
  3720. }
  3721. return false
  3722. }
  3723. func (x *WorkDesktopClearUserInfoResp) GetMsg() string {
  3724. if x != nil {
  3725. return x.Msg
  3726. }
  3727. return ""
  3728. }
  3729. //
  3730. type IdentityReq struct {
  3731. state protoimpl.MessageState
  3732. sizeCache protoimpl.SizeCache
  3733. unknownFields protoimpl.UnknownFields
  3734. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  3735. }
  3736. func (x *IdentityReq) Reset() {
  3737. *x = IdentityReq{}
  3738. if protoimpl.UnsafeEnabled {
  3739. mi := &file_userCenter_proto_msgTypes[52]
  3740. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3741. ms.StoreMessageInfo(mi)
  3742. }
  3743. }
  3744. func (x *IdentityReq) String() string {
  3745. return protoimpl.X.MessageStringOf(x)
  3746. }
  3747. func (*IdentityReq) ProtoMessage() {}
  3748. func (x *IdentityReq) ProtoReflect() protoreflect.Message {
  3749. mi := &file_userCenter_proto_msgTypes[52]
  3750. if protoimpl.UnsafeEnabled && x != nil {
  3751. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3752. if ms.LoadMessageInfo() == nil {
  3753. ms.StoreMessageInfo(mi)
  3754. }
  3755. return ms
  3756. }
  3757. return mi.MessageOf(x)
  3758. }
  3759. // Deprecated: Use IdentityReq.ProtoReflect.Descriptor instead.
  3760. func (*IdentityReq) Descriptor() ([]byte, []int) {
  3761. return file_userCenter_proto_rawDescGZIP(), []int{52}
  3762. }
  3763. func (x *IdentityReq) GetId() int64 {
  3764. if x != nil {
  3765. return x.Id
  3766. }
  3767. return 0
  3768. }
  3769. type Identity struct {
  3770. state protoimpl.MessageState
  3771. sizeCache protoimpl.SizeCache
  3772. unknownFields protoimpl.UnknownFields
  3773. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  3774. PersonId int64 `protobuf:"varint,2,opt,name=personId,proto3" json:"personId,omitempty"`
  3775. UserName string `protobuf:"bytes,3,opt,name=userName,proto3" json:"userName,omitempty"`
  3776. AccountId int64 `protobuf:"varint,4,opt,name=accountId,proto3" json:"accountId,omitempty"`
  3777. EntAccountId int64 `protobuf:"varint,5,opt,name=entAccountId,proto3" json:"entAccountId,omitempty"`
  3778. PositionId int64 `protobuf:"varint,6,opt,name=positionId,proto3" json:"positionId,omitempty"`
  3779. PositionType int64 `protobuf:"varint,7,opt,name=positionType,proto3" json:"positionType,omitempty"`
  3780. EntId int64 `protobuf:"varint,8,opt,name=entId,proto3" json:"entId,omitempty"`
  3781. EntUserId int64 `protobuf:"varint,9,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  3782. EntUserName string `protobuf:"bytes,10,opt,name=entUserName,proto3" json:"entUserName,omitempty"`
  3783. UserId int64 `protobuf:"varint,11,opt,name=userId,proto3" json:"userId,omitempty"`
  3784. EntNicheDis int64 `protobuf:"varint,12,opt,name=entNicheDis,proto3" json:"entNicheDis,omitempty"`
  3785. EntRole int64 `protobuf:"varint,13,opt,name=entRole,proto3" json:"entRole,omitempty"`
  3786. EntDeptId int64 `protobuf:"varint,14,opt,name=entDeptId,proto3" json:"entDeptId,omitempty"`
  3787. EntUserRole string `protobuf:"bytes,15,opt,name=entUserRole,proto3" json:"entUserRole,omitempty"`
  3788. EntUserPhone string `protobuf:"bytes,16,opt,name=entUserPhone,proto3" json:"entUserPhone,omitempty"`
  3789. EntUserMail string `protobuf:"bytes,17,opt,name=entUserMail,proto3" json:"entUserMail,omitempty"`
  3790. }
  3791. func (x *Identity) Reset() {
  3792. *x = Identity{}
  3793. if protoimpl.UnsafeEnabled {
  3794. mi := &file_userCenter_proto_msgTypes[53]
  3795. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3796. ms.StoreMessageInfo(mi)
  3797. }
  3798. }
  3799. func (x *Identity) String() string {
  3800. return protoimpl.X.MessageStringOf(x)
  3801. }
  3802. func (*Identity) ProtoMessage() {}
  3803. func (x *Identity) ProtoReflect() protoreflect.Message {
  3804. mi := &file_userCenter_proto_msgTypes[53]
  3805. if protoimpl.UnsafeEnabled && x != nil {
  3806. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3807. if ms.LoadMessageInfo() == nil {
  3808. ms.StoreMessageInfo(mi)
  3809. }
  3810. return ms
  3811. }
  3812. return mi.MessageOf(x)
  3813. }
  3814. // Deprecated: Use Identity.ProtoReflect.Descriptor instead.
  3815. func (*Identity) Descriptor() ([]byte, []int) {
  3816. return file_userCenter_proto_rawDescGZIP(), []int{53}
  3817. }
  3818. func (x *Identity) GetName() string {
  3819. if x != nil {
  3820. return x.Name
  3821. }
  3822. return ""
  3823. }
  3824. func (x *Identity) GetPersonId() int64 {
  3825. if x != nil {
  3826. return x.PersonId
  3827. }
  3828. return 0
  3829. }
  3830. func (x *Identity) GetUserName() string {
  3831. if x != nil {
  3832. return x.UserName
  3833. }
  3834. return ""
  3835. }
  3836. func (x *Identity) GetAccountId() int64 {
  3837. if x != nil {
  3838. return x.AccountId
  3839. }
  3840. return 0
  3841. }
  3842. func (x *Identity) GetEntAccountId() int64 {
  3843. if x != nil {
  3844. return x.EntAccountId
  3845. }
  3846. return 0
  3847. }
  3848. func (x *Identity) GetPositionId() int64 {
  3849. if x != nil {
  3850. return x.PositionId
  3851. }
  3852. return 0
  3853. }
  3854. func (x *Identity) GetPositionType() int64 {
  3855. if x != nil {
  3856. return x.PositionType
  3857. }
  3858. return 0
  3859. }
  3860. func (x *Identity) GetEntId() int64 {
  3861. if x != nil {
  3862. return x.EntId
  3863. }
  3864. return 0
  3865. }
  3866. func (x *Identity) GetEntUserId() int64 {
  3867. if x != nil {
  3868. return x.EntUserId
  3869. }
  3870. return 0
  3871. }
  3872. func (x *Identity) GetEntUserName() string {
  3873. if x != nil {
  3874. return x.EntUserName
  3875. }
  3876. return ""
  3877. }
  3878. func (x *Identity) GetUserId() int64 {
  3879. if x != nil {
  3880. return x.UserId
  3881. }
  3882. return 0
  3883. }
  3884. func (x *Identity) GetEntNicheDis() int64 {
  3885. if x != nil {
  3886. return x.EntNicheDis
  3887. }
  3888. return 0
  3889. }
  3890. func (x *Identity) GetEntRole() int64 {
  3891. if x != nil {
  3892. return x.EntRole
  3893. }
  3894. return 0
  3895. }
  3896. func (x *Identity) GetEntDeptId() int64 {
  3897. if x != nil {
  3898. return x.EntDeptId
  3899. }
  3900. return 0
  3901. }
  3902. func (x *Identity) GetEntUserRole() string {
  3903. if x != nil {
  3904. return x.EntUserRole
  3905. }
  3906. return ""
  3907. }
  3908. func (x *Identity) GetEntUserPhone() string {
  3909. if x != nil {
  3910. return x.EntUserPhone
  3911. }
  3912. return ""
  3913. }
  3914. func (x *Identity) GetEntUserMail() string {
  3915. if x != nil {
  3916. return x.EntUserMail
  3917. }
  3918. return ""
  3919. }
  3920. type IdentityResp struct {
  3921. state protoimpl.MessageState
  3922. sizeCache protoimpl.SizeCache
  3923. unknownFields protoimpl.UnknownFields
  3924. Identitys []*Identity `protobuf:"bytes,1,rep,name=identitys,proto3" json:"identitys,omitempty"`
  3925. }
  3926. func (x *IdentityResp) Reset() {
  3927. *x = IdentityResp{}
  3928. if protoimpl.UnsafeEnabled {
  3929. mi := &file_userCenter_proto_msgTypes[54]
  3930. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3931. ms.StoreMessageInfo(mi)
  3932. }
  3933. }
  3934. func (x *IdentityResp) String() string {
  3935. return protoimpl.X.MessageStringOf(x)
  3936. }
  3937. func (*IdentityResp) ProtoMessage() {}
  3938. func (x *IdentityResp) ProtoReflect() protoreflect.Message {
  3939. mi := &file_userCenter_proto_msgTypes[54]
  3940. if protoimpl.UnsafeEnabled && x != nil {
  3941. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3942. if ms.LoadMessageInfo() == nil {
  3943. ms.StoreMessageInfo(mi)
  3944. }
  3945. return ms
  3946. }
  3947. return mi.MessageOf(x)
  3948. }
  3949. // Deprecated: Use IdentityResp.ProtoReflect.Descriptor instead.
  3950. func (*IdentityResp) Descriptor() ([]byte, []int) {
  3951. return file_userCenter_proto_rawDescGZIP(), []int{54}
  3952. }
  3953. func (x *IdentityResp) GetIdentitys() []*Identity {
  3954. if x != nil {
  3955. return x.Identitys
  3956. }
  3957. return nil
  3958. }
  3959. type UserIdentityReq struct {
  3960. state protoimpl.MessageState
  3961. sizeCache protoimpl.SizeCache
  3962. unknownFields protoimpl.UnknownFields
  3963. AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
  3964. BaseUserId int64 `protobuf:"varint,2,opt,name=baseUserId,proto3" json:"baseUserId,omitempty"`
  3965. EntId int64 `protobuf:"varint,3,opt,name=entId,proto3" json:"entId,omitempty"`
  3966. }
  3967. func (x *UserIdentityReq) Reset() {
  3968. *x = UserIdentityReq{}
  3969. if protoimpl.UnsafeEnabled {
  3970. mi := &file_userCenter_proto_msgTypes[55]
  3971. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3972. ms.StoreMessageInfo(mi)
  3973. }
  3974. }
  3975. func (x *UserIdentityReq) String() string {
  3976. return protoimpl.X.MessageStringOf(x)
  3977. }
  3978. func (*UserIdentityReq) ProtoMessage() {}
  3979. func (x *UserIdentityReq) ProtoReflect() protoreflect.Message {
  3980. mi := &file_userCenter_proto_msgTypes[55]
  3981. if protoimpl.UnsafeEnabled && x != nil {
  3982. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3983. if ms.LoadMessageInfo() == nil {
  3984. ms.StoreMessageInfo(mi)
  3985. }
  3986. return ms
  3987. }
  3988. return mi.MessageOf(x)
  3989. }
  3990. // Deprecated: Use UserIdentityReq.ProtoReflect.Descriptor instead.
  3991. func (*UserIdentityReq) Descriptor() ([]byte, []int) {
  3992. return file_userCenter_proto_rawDescGZIP(), []int{55}
  3993. }
  3994. func (x *UserIdentityReq) GetAppId() string {
  3995. if x != nil {
  3996. return x.AppId
  3997. }
  3998. return ""
  3999. }
  4000. func (x *UserIdentityReq) GetBaseUserId() int64 {
  4001. if x != nil {
  4002. return x.BaseUserId
  4003. }
  4004. return 0
  4005. }
  4006. func (x *UserIdentityReq) GetEntId() int64 {
  4007. if x != nil {
  4008. return x.EntId
  4009. }
  4010. return 0
  4011. }
  4012. type UserIdentityResp struct {
  4013. state protoimpl.MessageState
  4014. sizeCache protoimpl.SizeCache
  4015. unknownFields protoimpl.UnknownFields
  4016. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  4017. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  4018. PersonId int64 `protobuf:"varint,3,opt,name=personId,proto3" json:"personId,omitempty"` //自然人id
  4019. UserAccountId int64 `protobuf:"varint,4,opt,name=userAccountId,proto3" json:"userAccountId,omitempty"` //个人账户id
  4020. EntAccountId int64 `protobuf:"varint,5,opt,name=entAccountId,proto3" json:"entAccountId,omitempty"` //企业账户id
  4021. EntUserAccountId int64 `protobuf:"varint,6,opt,name=entUserAccountId,proto3" json:"entUserAccountId,omitempty"` //企业雇员账户id
  4022. UserPositionId int64 `protobuf:"varint,7,opt,name=userPositionId,proto3" json:"userPositionId,omitempty"` // 个人职位id
  4023. EntUserPositionId int64 `protobuf:"varint,8,opt,name=entUserPositionId,proto3" json:"entUserPositionId,omitempty"` // 企业雇员职位id
  4024. UserName string `protobuf:"bytes,9,opt,name=userName,proto3" json:"userName,omitempty"` //昵称
  4025. }
  4026. func (x *UserIdentityResp) Reset() {
  4027. *x = UserIdentityResp{}
  4028. if protoimpl.UnsafeEnabled {
  4029. mi := &file_userCenter_proto_msgTypes[56]
  4030. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4031. ms.StoreMessageInfo(mi)
  4032. }
  4033. }
  4034. func (x *UserIdentityResp) String() string {
  4035. return protoimpl.X.MessageStringOf(x)
  4036. }
  4037. func (*UserIdentityResp) ProtoMessage() {}
  4038. func (x *UserIdentityResp) ProtoReflect() protoreflect.Message {
  4039. mi := &file_userCenter_proto_msgTypes[56]
  4040. if protoimpl.UnsafeEnabled && x != nil {
  4041. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4042. if ms.LoadMessageInfo() == nil {
  4043. ms.StoreMessageInfo(mi)
  4044. }
  4045. return ms
  4046. }
  4047. return mi.MessageOf(x)
  4048. }
  4049. // Deprecated: Use UserIdentityResp.ProtoReflect.Descriptor instead.
  4050. func (*UserIdentityResp) Descriptor() ([]byte, []int) {
  4051. return file_userCenter_proto_rawDescGZIP(), []int{56}
  4052. }
  4053. func (x *UserIdentityResp) GetErrorCode() int64 {
  4054. if x != nil {
  4055. return x.ErrorCode
  4056. }
  4057. return 0
  4058. }
  4059. func (x *UserIdentityResp) GetErrorMsg() string {
  4060. if x != nil {
  4061. return x.ErrorMsg
  4062. }
  4063. return ""
  4064. }
  4065. func (x *UserIdentityResp) GetPersonId() int64 {
  4066. if x != nil {
  4067. return x.PersonId
  4068. }
  4069. return 0
  4070. }
  4071. func (x *UserIdentityResp) GetUserAccountId() int64 {
  4072. if x != nil {
  4073. return x.UserAccountId
  4074. }
  4075. return 0
  4076. }
  4077. func (x *UserIdentityResp) GetEntAccountId() int64 {
  4078. if x != nil {
  4079. return x.EntAccountId
  4080. }
  4081. return 0
  4082. }
  4083. func (x *UserIdentityResp) GetEntUserAccountId() int64 {
  4084. if x != nil {
  4085. return x.EntUserAccountId
  4086. }
  4087. return 0
  4088. }
  4089. func (x *UserIdentityResp) GetUserPositionId() int64 {
  4090. if x != nil {
  4091. return x.UserPositionId
  4092. }
  4093. return 0
  4094. }
  4095. func (x *UserIdentityResp) GetEntUserPositionId() int64 {
  4096. if x != nil {
  4097. return x.EntUserPositionId
  4098. }
  4099. return 0
  4100. }
  4101. func (x *UserIdentityResp) GetUserName() string {
  4102. if x != nil {
  4103. return x.UserName
  4104. }
  4105. return ""
  4106. }
  4107. var File_userCenter_proto protoreflect.FileDescriptor
  4108. var file_userCenter_proto_rawDesc = []byte{
  4109. 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f,
  4110. 0x74, 0x6f, 0x22, 0xf2, 0x02, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65,
  4111. 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  4112. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43,
  4113. 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69,
  4114. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d,
  4115. 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e,
  4116. 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73,
  4117. 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73,
  4118. 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74,
  4119. 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63,
  4120. 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x72, 0x67,
  4121. 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20,
  4122. 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  4123. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79,
  4124. 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50,
  4125. 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x4e,
  4126. 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x4e,
  4127. 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  4128. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e,
  4129. 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  4130. 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64,
  4131. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x18, 0x0a,
  4132. 0x07, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x72, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  4133. 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x72, 0x22, 0x6b, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x41, 0x75,
  4134. 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f,
  4135. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f,
  4136. 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d,
  4137. 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d,
  4138. 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
  4139. 0x32, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04,
  4140. 0x64, 0x61, 0x74, 0x61, 0x22, 0x3b, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x44,
  4141. 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20,
  4142. 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65,
  4143. 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49,
  4144. 0x64, 0x22, 0x92, 0x01, 0x0a, 0x0a, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71,
  4145. 0x12, 0x14, 0x0a, 0x05, 0x45, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  4146. 0x05, 0x45, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x41, 0x75, 0x74, 0x68, 0x54, 0x79,
  4147. 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x41, 0x75, 0x74, 0x68, 0x54, 0x79,
  4148. 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01,
  4149. 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x75,
  4150. 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x41,
  4151. 0x75, 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x45, 0x78, 0x61, 0x6d,
  4152. 0x69, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x45, 0x78, 0x61,
  4153. 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x6b, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
  4154. 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63,
  4155. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  4156. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73,
  4157. 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73,
  4158. 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
  4159. 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64,
  4160. 0x61, 0x74, 0x61, 0x22, 0x25, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x44, 0x61,
  4161. 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01,
  4162. 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x90, 0x03, 0x0a, 0x0a, 0x45,
  4163. 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
  4164. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a,
  4165. 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  4166. 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53,
  4167. 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53,
  4168. 0x69, 0x7a, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64,
  4169. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43,
  4170. 0x6f, 0x64, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61,
  4171. 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x72,
  4172. 0x65, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a,
  4173. 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06,
  4174. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x64, 0x54,
  4175. 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75,
  4176. 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61,
  4177. 0x74, 0x75, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x53, 0x74, 0x61, 0x72,
  4178. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x76, 0x61, 0x6c,
  4179. 0x69, 0x64, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x76,
  4180. 0x61, 0x6c, 0x69, 0x64, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
  4181. 0x09, 0x52, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12,
  4182. 0x22, 0x0a, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  4183. 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61,
  4184. 0x74, 0x75, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18,
  4185. 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12,
  4186. 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0c, 0x20, 0x01,
  4187. 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x67, 0x0a,
  4188. 0x0b, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a,
  4189. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  4190. 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65,
  4191. 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  4192. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1c, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  4193. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45, 0x6e, 0x74, 0x44, 0x61, 0x74, 0x61,
  4194. 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x59, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x44, 0x61, 0x74,
  4195. 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  4196. 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53,
  4197. 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53,
  4198. 0x69, 0x7a, 0x65, 0x12, 0x1c, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28,
  4199. 0x0b, 0x32, 0x08, 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73,
  4200. 0x74, 0x22, 0xfd, 0x01, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e, 0x0a,
  4201. 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x20, 0x0a,
  4202. 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01,
  4203. 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12,
  4204. 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
  4205. 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74,
  4206. 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f,
  4207. 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12,
  4208. 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20,
  4209. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12,
  4210. 0x1c, 0x0a, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01,
  4211. 0x28, 0x09, 0x52, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a,
  4212. 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28,
  4213. 0x03, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a,
  4214. 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 0x20,
  4215. 0x01, 0x28, 0x03, 0x52, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75,
  4216. 0x73, 0x22, 0xf8, 0x01, 0x0a, 0x0e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73,
  4217. 0x74, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
  4218. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68,
  4219. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74,
  4220. 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f,
  4221. 0x6e, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f,
  4222. 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04,
  4223. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x24,
  4224. 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18,
  4225. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x72, 0x74,
  4226. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x75, 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54,
  4227. 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x61, 0x75, 0x74, 0x68, 0x45,
  4228. 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75,
  4229. 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d,
  4230. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01,
  4231. 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x73, 0x0a, 0x0f,
  4232. 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12,
  4233. 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20,
  4234. 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b,
  4235. 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28,
  4236. 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x24, 0x0a, 0x04, 0x64,
  4237. 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x45, 0x78, 0x61, 0x6d,
  4238. 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74,
  4239. 0x61, 0x22, 0x65, 0x0a, 0x0f, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74,
  4240. 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20,
  4241. 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61,
  4242. 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61,
  4243. 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x20, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03,
  4244. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69,
  4245. 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xfd, 0x01, 0x0a, 0x0b, 0x45, 0x78, 0x61,
  4246. 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  4247. 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49,
  4248. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x20,
  4249. 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20,
  4250. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65,
  4251. 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  4252. 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f,
  4253. 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74,
  4254. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e,
  4255. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f,
  4256. 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x18,
  4257. 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x54, 0x69, 0x6d, 0x65,
  4258. 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01,
  4259. 0x28, 0x03, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  4260. 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  4261. 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x23, 0x0a, 0x0b, 0x43, 0x68, 0x65, 0x63,
  4262. 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64,
  4263. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x6a, 0x0a,
  4264. 0x0c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a,
  4265. 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  4266. 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  4267. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  4268. 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1e, 0x0a, 0x04, 0x64, 0x61, 0x74,
  4269. 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x44,
  4270. 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x4f, 0x0a, 0x09, 0x63, 0x68, 0x65,
  4271. 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74,
  4272. 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68,
  4273. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e,
  4274. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x66, 0x72,
  4275. 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x6b, 0x0a, 0x0b, 0x45, 0x6e,
  4276. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72,
  4277. 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65,
  4278. 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f,
  4279. 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72,
  4280. 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20,
  4281. 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74,
  4282. 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xd5, 0x05, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x49,
  4283. 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  4284. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61,
  4285. 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  4286. 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x63,
  4287. 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01,
  4288. 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f,
  4289. 0x6e, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x50, 0x68, 0x6f, 0x6e,
  4290. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74,
  4291. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61,
  4292. 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74,
  4293. 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x18,
  4294. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x12,
  4295. 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07,
  4296. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70,
  4297. 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18,
  4298. 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64,
  4299. 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  4300. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x50, 0x65, 0x72,
  4301. 0x73, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x18,
  4302. 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x12,
  4303. 0x26, 0x0a, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65,
  4304. 0x72, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61,
  4305. 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e,
  4306. 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28,
  4307. 0x09, 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54,
  4308. 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18,
  4309. 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12,
  4310. 0x22, 0x0a, 0x0c, 0x66, 0x6f, 0x72, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  4311. 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x66, 0x6f, 0x72, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61,
  4312. 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72,
  4313. 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x64, 0x69, 0x74, 0x55, 0x73, 0x65,
  4314. 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x64, 0x69, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x10,
  4315. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x64, 0x69, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12,
  4316. 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x11, 0x20,
  4317. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12,
  4318. 0x24, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65,
  4319. 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x72,
  4320. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x75, 0x74, 0x68, 0x45, 0x6e, 0x64,
  4321. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x61, 0x75, 0x74, 0x68,
  4322. 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x52,
  4323. 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x75, 0x74,
  4324. 0x68, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54,
  4325. 0x69, 0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54,
  4326. 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18,
  4327. 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22,
  4328. 0x44, 0x0a, 0x0c, 0x45, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12,
  4329. 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05,
  4330. 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54,
  4331. 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74,
  4332. 0x65, 0x54, 0x79, 0x70, 0x65, 0x22, 0x2f, 0x0a, 0x0f, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x78,
  4333. 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x78, 0x61, 0x6d,
  4334. 0x69, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x78, 0x61,
  4335. 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x3e, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61,
  4336. 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04,
  4337. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65,
  4338. 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  4339. 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x77, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61,
  4340. 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a,
  4341. 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  4342. 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  4343. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  4344. 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74,
  4345. 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61,
  4346. 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22,
  4347. 0xe0, 0x02, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05,
  4348. 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f,
  4349. 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x76, 0x69, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  4350. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x76, 0x69, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  4351. 0x12, 0x22, 0x0a, 0x0c, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  4352. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x74,
  4353. 0x61, 0x74, 0x75, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x65, 0x6e, 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65,
  4354. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x65, 0x6e,
  4355. 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x24, 0x0a, 0x0d,
  4356. 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20,
  4357. 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x79,
  4358. 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b,
  4359. 0x32, 0x0a, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x04, 0x64, 0x61,
  4360. 0x74, 0x61, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18,
  4361. 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12,
  4362. 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x08, 0x20,
  4363. 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1a,
  4364. 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  4365. 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65,
  4366. 0x61, 0x64, 0x69, 0x6d, 0x67, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x61,
  4367. 0x64, 0x69, 0x6d, 0x67, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x73, 0x54, 0x6f, 0x75, 0x72, 0x69, 0x73,
  4368. 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x69, 0x73, 0x54, 0x6f, 0x75, 0x72, 0x69,
  4369. 0x73, 0x74, 0x22, 0xc7, 0x02, 0x0a, 0x09, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
  4370. 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20,
  4371. 0x01, 0x28, 0x03, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18,
  4372. 0x0a, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  4373. 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61,
  4374. 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  4375. 0x62, 0x65, 0x2e, 0x41, 0x72, 0x65, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x61, 0x72,
  4376. 0x65, 0x61, 0x12, 0x1e, 0x0a, 0x0a, 0x62, 0x75, 0x79, 0x65, 0x72, 0x63, 0x6c, 0x61, 0x73, 0x73,
  4377. 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x79, 0x65, 0x72, 0x63, 0x6c, 0x61,
  4378. 0x73, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x66, 0x6f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05,
  4379. 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x66, 0x6f, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1c,
  4380. 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x06, 0x2e,
  4381. 0x49, 0x74, 0x65, 0x6d, 0x73, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x1a, 0x0a, 0x08,
  4382. 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08,
  4383. 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a,
  4384. 0x65, 0x63, 0x74, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c,
  4385. 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x1a, 0x3e, 0x0a, 0x09,
  4386. 0x41, 0x72, 0x65, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
  4387. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x1b, 0x0a, 0x05, 0x76,
  4388. 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x05, 0x2e, 0x4c, 0x69, 0x73,
  4389. 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x1c, 0x0a, 0x04,
  4390. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20,
  4391. 0x03, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x5a, 0x0a, 0x05, 0x49, 0x74,
  4392. 0x65, 0x6d, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x73, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x01, 0x20,
  4393. 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x70,
  4394. 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  4395. 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x05, 0x61, 0x5f,
  4396. 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x05, 0x2e, 0x4b, 0x65, 0x79, 0x73,
  4397. 0x52, 0x04, 0x61, 0x4b, 0x65, 0x79, 0x22, 0x6c, 0x0a, 0x04, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x10,
  4398. 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
  4399. 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x74, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09,
  4400. 0x52, 0x06, 0x6e, 0x6f, 0x74, 0x6b, 0x65, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61,
  4401. 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x75, 0x70,
  4402. 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x61, 0x74, 0x63,
  4403. 0x68, 0x77, 0x61, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6d, 0x61, 0x74, 0x63,
  4404. 0x68, 0x77, 0x61, 0x79, 0x22, 0x4d, 0x0a, 0x07, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12,
  4405. 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  4406. 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  4407. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a,
  4408. 0x05, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x79,
  4409. 0x70, 0x65, 0x73, 0x22, 0x56, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  4410. 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  4411. 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73,
  4412. 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55,
  4413. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x03,
  4414. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x67, 0x0a, 0x0b, 0x45,
  4415. 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72,
  4416. 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  4417. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72,
  4418. 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72,
  4419. 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1c, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03,
  4420. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x04,
  4421. 0x64, 0x61, 0x74, 0x61, 0x22, 0x81, 0x01, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
  4422. 0x12, 0x12, 0x0a, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  4423. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20,
  4424. 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x61,
  4425. 0x69, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a,
  4426. 0x0a, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  4427. 0x52, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e,
  4428. 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65,
  4429. 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x68, 0x0a, 0x0e, 0x45, 0x6e, 0x74, 0x55,
  4430. 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70,
  4431. 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64,
  4432. 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  4433. 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49, 0x64,
  4434. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x12, 0x12,
  4435. 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
  4436. 0x6d, 0x65, 0x22, 0x73, 0x0a, 0x0f, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73,
  4437. 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63,
  4438. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  4439. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73,
  4440. 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73,
  4441. 0x67, 0x12, 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
  4442. 0x10, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74,
  4443. 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xa9, 0x01, 0x0a, 0x0f, 0x45, 0x6e, 0x74, 0x55,
  4444. 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x6e,
  4445. 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  4446. 0x16, 0x0a, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  4447. 0x06, 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x49, 0x64, 0x18, 0x03,
  4448. 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x70, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x0b, 0x65, 0x6e, 0x74,
  4449. 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x08,
  4450. 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65,
  4451. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4c, 0x69, 0x73,
  4452. 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65,
  4453. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4c,
  4454. 0x69, 0x73, 0x74, 0x22, 0x69, 0x0a, 0x13, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x73, 0x45, 0x6e,
  4455. 0x74, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72,
  4456. 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  4457. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72,
  4458. 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72,
  4459. 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  4460. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x4b,
  4461. 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64,
  4462. 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  4463. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75,
  4464. 0x73, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x49, 0x6e, 0x45, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01,
  4465. 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x49, 0x6e, 0x45, 0x6e, 0x74, 0x22, 0xd4, 0x02, 0x0a, 0x0a,
  4466. 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70,
  4467. 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64,
  4468. 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  4469. 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  4470. 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  4471. 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x69, 0x6d, 0x67, 0x18, 0x04, 0x20,
  4472. 0x01, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x69, 0x6d, 0x67, 0x12, 0x18, 0x0a, 0x07,
  4473. 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63,
  4474. 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
  4475. 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
  4476. 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x07,
  4477. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x19,
  4478. 0x0a, 0x08, 0x73, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09,
  4479. 0x52, 0x07, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x5f, 0x6f,
  4480. 0x70, 0x65, 0x6e, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x4f, 0x70,
  4481. 0x65, 0x6e, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x18,
  4482. 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x12, 0x16,
  4483. 0x0a, 0x06, 0x69, 0x64, 0x43, 0x61, 0x72, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  4484. 0x69, 0x64, 0x43, 0x61, 0x72, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73,
  4485. 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
  4486. 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
  4487. 0x65, 0x78, 0x22, 0x68, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73,
  4488. 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18,
  4489. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65,
  4490. 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
  4491. 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x0a,
  4492. 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x55, 0x73,
  4493. 0x65, 0x72, 0x41, 0x64, 0x64, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x32, 0x0a, 0x08,
  4494. 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74,
  4495. 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  4496. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64,
  4497. 0x22, 0x9f, 0x02, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x12, 0x14,
  4498. 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61,
  4499. 0x70, 0x70, 0x69, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  4500. 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x03, 0x20,
  4501. 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69,
  4502. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69,
  4503. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x69, 0x6d,
  4504. 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x69, 0x6d, 0x67,
  4505. 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28,
  4506. 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f,
  4507. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6f,
  4508. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
  4509. 0x72, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
  4510. 0x72, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x18, 0x09,
  4511. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x12, 0x19, 0x0a,
  4512. 0x08, 0x61, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52,
  4513. 0x07, 0x61, 0x4f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x75, 0x6e, 0x69, 0x6f,
  4514. 0x6e, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75, 0x6e, 0x69, 0x6f, 0x6e,
  4515. 0x69, 0x64, 0x22, 0x94, 0x04, 0x0a, 0x16, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74,
  4516. 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a,
  4517. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
  4518. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02,
  4519. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  4520. 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  4521. 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65,
  4522. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a,
  4523. 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  4524. 0x52, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65,
  4525. 0x6e, 0x74, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49,
  4526. 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x07,
  4527. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12,
  4528. 0x22, 0x0a, 0x0c, 0x69, 0x6e, 0x74, 0x72, 0x61, 0x6e, 0x65, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x18,
  4529. 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x6e, 0x74, 0x72, 0x61, 0x6e, 0x65, 0x74, 0x42,
  4530. 0x6f, 0x6f, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75,
  4531. 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x74, 0x61,
  4532. 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
  4533. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
  4534. 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70,
  4535. 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
  4536. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
  4537. 0x6e, 0x49, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74,
  4538. 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x67, 0x6f, 0x55, 0x73, 0x65, 0x72,
  4539. 0x49, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6d, 0x67, 0x6f, 0x55, 0x73, 0x65,
  4540. 0x72, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x65, 0x6e, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  4541. 0x74, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x65, 0x6e, 0x74, 0x41, 0x63,
  4542. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x4e, 0x69,
  4543. 0x63, 0x68, 0x65, 0x44, 0x69, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x65, 0x6e,
  4544. 0x74, 0x4e, 0x69, 0x63, 0x68, 0x65, 0x44, 0x69, 0x73, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x6e, 0x74,
  4545. 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  4546. 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x65,
  4547. 0x6e, 0x74, 0x44, 0x65, 0x70, 0x74, 0x49, 0x64, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  4548. 0x65, 0x6e, 0x74, 0x44, 0x65, 0x70, 0x74, 0x49, 0x64, 0x22, 0x74, 0x0a, 0x17, 0x57, 0x6f, 0x72,
  4549. 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f,
  4550. 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f,
  4551. 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43,
  4552. 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67,
  4553. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67,
  4554. 0x12, 0x1d, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x09,
  4555. 0x2e, 0x4d, 0x65, 0x6e, 0x75, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22,
  4556. 0x4d, 0x0a, 0x08, 0x4d, 0x65, 0x6e, 0x75, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1a, 0x0a, 0x08, 0x6d,
  4557. 0x65, 0x6e, 0x75, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d,
  4558. 0x65, 0x6e, 0x75, 0x54, 0x79, 0x70, 0x65, 0x12, 0x25, 0x0a, 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4c,
  4559. 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x4d, 0x65, 0x6e, 0x75,
  4560. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x84,
  4561. 0x02, 0x0a, 0x08, 0x4d, 0x65, 0x6e, 0x75, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e,
  4562. 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  4563. 0x12, 0x0a, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x69,
  4564. 0x63, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  4565. 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18,
  4566. 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a,
  4567. 0x02, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a,
  4568. 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  4569. 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54,
  4570. 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54,
  4571. 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x08,
  4572. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x54, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07,
  4573. 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x26, 0x0a, 0x05, 0x63, 0x68, 0x69, 0x6c, 0x64,
  4574. 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x4c,
  4575. 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x52, 0x05, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x12,
  4576. 0x14, 0x0a, 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05,
  4577. 0x6d, 0x61, 0x74, 0x63, 0x68, 0x22, 0x8a, 0x02, 0x0a, 0x0f, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64,
  4578. 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
  4579. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a,
  4580. 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x69, 0x63, 0x6f,
  4581. 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  4582. 0x75, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x04, 0x20,
  4583. 0x01, 0x28, 0x08, 0x52, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  4584. 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61,
  4585. 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70,
  4586. 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70,
  4587. 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70,
  4588. 0x65, 0x12, 0x22, 0x0a, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x08, 0x20, 0x01,
  4589. 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x54, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x74, 0x69,
  4590. 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x25, 0x0a, 0x05, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x18, 0x09,
  4591. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x54, 0x68, 0x72, 0x65, 0x65, 0x4c, 0x65, 0x76, 0x65,
  4592. 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x52, 0x05, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x12, 0x14, 0x0a, 0x05,
  4593. 0x6d, 0x61, 0x74, 0x63, 0x68, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x61, 0x74,
  4594. 0x63, 0x68, 0x22, 0x80, 0x02, 0x0a, 0x0e, 0x54, 0x68, 0x72, 0x65, 0x65, 0x4c, 0x65, 0x76, 0x65,
  4595. 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
  4596. 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x63, 0x6f,
  4597. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x12, 0x10, 0x0a,
  4598. 0x03, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12,
  4599. 0x16, 0x0a, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52,
  4600. 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x05, 0x20,
  4601. 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79,
  4602. 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70,
  4603. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20,
  4604. 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a,
  4605. 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08,
  4606. 0x2e, 0x54, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66,
  4607. 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x09,
  4608. 0x52, 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70,
  4609. 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x67, 0x72, 0x6f, 0x75,
  4610. 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xd5, 0x01, 0x0a, 0x07, 0x54, 0x69, 0x70, 0x49, 0x6e, 0x66,
  4611. 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  4612. 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65,
  4613. 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
  4614. 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x55, 0x72, 0x6c, 0x18,
  4615. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x55, 0x72,
  4616. 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x65, 0x78, 0x74,
  4617. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x54,
  4618. 0x65, 0x78, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x43, 0x61, 0x6e,
  4619. 0x63, 0x65, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x73, 0x53, 0x68, 0x6f,
  4620. 0x77, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79,
  4621. 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70,
  4622. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20,
  4623. 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0xcf, 0x04,
  4624. 0x0a, 0x1b, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d,
  4625. 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a,
  4626. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
  4627. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02,
  4628. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  4629. 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  4630. 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65,
  4631. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1e, 0x0a,
  4632. 0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
  4633. 0x09, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x1a, 0x0a,
  4634. 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  4635. 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x6e,
  4636. 0x75, 0x49, 0x64, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x6e, 0x75,
  4637. 0x49, 0x64, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
  4638. 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49,
  4639. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  4640. 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73,
  4641. 0x65, 0x72, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55,
  4642. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  4643. 0x49, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  4644. 0x74, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x54,
  4645. 0x79, 0x70, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x6f, 0x73, 0x69, 0x74,
  4646. 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74,
  4647. 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73,
  4648. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e, 0x74, 0x72, 0x61,
  4649. 0x6e, 0x65, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69,
  4650. 0x6e, 0x74, 0x72, 0x61, 0x6e, 0x65, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x1c, 0x0a, 0x09, 0x6d,
  4651. 0x67, 0x6f, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  4652. 0x6d, 0x67, 0x6f, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x65, 0x6e, 0x74,
  4653. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52,
  4654. 0x0c, 0x65, 0x6e, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a,
  4655. 0x0b, 0x65, 0x6e, 0x74, 0x4e, 0x69, 0x63, 0x68, 0x65, 0x44, 0x69, 0x73, 0x18, 0x11, 0x20, 0x01,
  4656. 0x28, 0x03, 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x4e, 0x69, 0x63, 0x68, 0x65, 0x44, 0x69, 0x73, 0x12,
  4657. 0x20, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x18, 0x12,
  4658. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6c,
  4659. 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x44, 0x65, 0x70, 0x74, 0x49, 0x64, 0x18, 0x13,
  4660. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x44, 0x65, 0x70, 0x74, 0x49, 0x64, 0x22,
  4661. 0xa3, 0x01, 0x0a, 0x1c, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43,
  4662. 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70,
  4663. 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
  4664. 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12,
  4665. 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01,
  4666. 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x23, 0x0a, 0x04,
  4667. 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x54, 0x68, 0x72,
  4668. 0x65, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x52, 0x04, 0x64, 0x61, 0x74,
  4669. 0x61, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x6c, 0x79, 0x53, 0x69, 0x7a,
  4670. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x6c,
  4671. 0x79, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x87, 0x01, 0x0a, 0x1b, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65,
  4672. 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
  4673. 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  4674. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a,
  4675. 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70,
  4676. 0x70, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49,
  4677. 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
  4678. 0x6e, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18,
  4679. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x22,
  4680. 0x3e, 0x0a, 0x1c, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c,
  4681. 0x65, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12,
  4682. 0x0c, 0x0a, 0x01, 0x62, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x01, 0x62, 0x12, 0x10, 0x0a,
  4683. 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x22,
  4684. 0x1d, 0x0a, 0x0b, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x12, 0x0e,
  4685. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x22, 0x8c,
  4686. 0x04, 0x0a, 0x08, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x6e,
  4687. 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  4688. 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  4689. 0x03, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x75,
  4690. 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75,
  4691. 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75,
  4692. 0x6e, 0x74, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f,
  4693. 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x65, 0x6e, 0x74, 0x41, 0x63, 0x63, 0x6f,
  4694. 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x65, 0x6e, 0x74,
  4695. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73,
  4696. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70,
  4697. 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x6f, 0x73,
  4698. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52,
  4699. 0x0c, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a,
  4700. 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e,
  4701. 0x74, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
  4702. 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49,
  4703. 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65,
  4704. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e,
  4705. 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0b, 0x20,
  4706. 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x65,
  4707. 0x6e, 0x74, 0x4e, 0x69, 0x63, 0x68, 0x65, 0x44, 0x69, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03,
  4708. 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x4e, 0x69, 0x63, 0x68, 0x65, 0x44, 0x69, 0x73, 0x12, 0x18, 0x0a,
  4709. 0x07, 0x65, 0x6e, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07,
  4710. 0x65, 0x6e, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x44, 0x65,
  4711. 0x70, 0x74, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x44,
  4712. 0x65, 0x70, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
  4713. 0x52, 0x6f, 0x6c, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x55,
  4714. 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x65, 0x6e, 0x74, 0x55, 0x73,
  4715. 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x65,
  4716. 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x65,
  4717. 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x69, 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09,
  4718. 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x69, 0x6c, 0x22, 0x37, 0x0a,
  4719. 0x0c, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a,
  4720. 0x09, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  4721. 0x32, 0x09, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x09, 0x69, 0x64, 0x65,
  4722. 0x6e, 0x74, 0x69, 0x74, 0x79, 0x73, 0x22, 0x5d, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
  4723. 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70,
  4724. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12,
  4725. 0x1e, 0x0a, 0x0a, 0x62, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20,
  4726. 0x01, 0x28, 0x03, 0x52, 0x0a, 0x62, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12,
  4727. 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05,
  4728. 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0xd2, 0x02, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
  4729. 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72,
  4730. 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  4731. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72,
  4732. 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72,
  4733. 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  4734. 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  4735. 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  4736. 0x74, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x41,
  4737. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x65, 0x6e, 0x74, 0x41,
  4738. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c,
  4739. 0x65, 0x6e, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x10,
  4740. 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
  4741. 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x41,
  4742. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72,
  4743. 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03,
  4744. 0x52, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64,
  4745. 0x12, 0x2c, 0x0a, 0x11, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74,
  4746. 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x65, 0x6e, 0x74,
  4747. 0x55, 0x73, 0x65, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1a,
  4748. 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  4749. 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x32, 0xe1, 0x09, 0x0a, 0x0a, 0x55,
  4750. 0x73, 0x65, 0x72, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x07, 0x45, 0x6e, 0x74,
  4751. 0x41, 0x75, 0x74, 0x68, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65,
  4752. 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x12,
  4753. 0x27, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x12, 0x0b, 0x2e,
  4754. 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61,
  4755. 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x24, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x4c,
  4756. 0x69, 0x73, 0x74, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
  4757. 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x30,
  4758. 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0f, 0x2e,
  4759. 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x10,
  4760. 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70,
  4761. 0x12, 0x27, 0x0a, 0x08, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x12, 0x0c, 0x2e, 0x43,
  4762. 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0d, 0x2e, 0x43, 0x68, 0x65,
  4763. 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x25, 0x0a, 0x07, 0x45, 0x6e, 0x74,
  4764. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0c, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52,
  4765. 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70,
  4766. 0x12, 0x28, 0x0a, 0x09, 0x45, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x0d, 0x2e,
  4767. 0x45, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45,
  4768. 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x0b, 0x45, 0x78,
  4769. 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x10, 0x2e, 0x43, 0x68, 0x65, 0x63,
  4770. 0x6b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e,
  4771. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3c, 0x0a, 0x0f, 0x47, 0x65, 0x74,
  4772. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x13, 0x2e, 0x47,
  4773. 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65,
  4774. 0x71, 0x1a, 0x14, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43,
  4775. 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x24, 0x0a, 0x07, 0x55, 0x73, 0x65, 0x72, 0x41,
  4776. 0x64, 0x64, 0x12, 0x0b, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a,
  4777. 0x0c, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x26, 0x0a,
  4778. 0x0a, 0x55, 0x73, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x0a, 0x2e, 0x55, 0x73,
  4779. 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
  4780. 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x23, 0x0a, 0x07, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c,
  4781. 0x12, 0x0a, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45,
  4782. 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x48, 0x0a, 0x13, 0x57, 0x6f,
  4783. 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66,
  4784. 0x6f, 0x12, 0x17, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d,
  4785. 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x57, 0x6f, 0x72,
  4786. 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f,
  4787. 0x52, 0x65, 0x73, 0x70, 0x12, 0x57, 0x0a, 0x18, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b,
  4788. 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65,
  4789. 0x12, 0x1c, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f,
  4790. 0x6d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1d,
  4791. 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70,
  4792. 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x57, 0x0a,
  4793. 0x18, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x65, 0x61,
  4794. 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x2e, 0x57, 0x6f, 0x72, 0x6b,
  4795. 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72,
  4796. 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65,
  4797. 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
  4798. 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x22, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
  4799. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x08, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a,
  4800. 0x09, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2b, 0x0a, 0x0e, 0x47, 0x65,
  4801. 0x74, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0b, 0x2e, 0x45,
  4802. 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x55,
  4803. 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x33, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x45, 0x6e,
  4804. 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x45, 0x6e, 0x74, 0x55,
  4805. 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x45, 0x6e, 0x74,
  4806. 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x34, 0x0a, 0x0f,
  4807. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x73, 0x45, 0x6e, 0x74, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x12,
  4808. 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x14, 0x2e, 0x43,
  4809. 0x68, 0x65, 0x63, 0x6b, 0x49, 0x73, 0x45, 0x6e, 0x74, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65,
  4810. 0x73, 0x70, 0x12, 0x2b, 0x0a, 0x0c, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x4c, 0x69,
  4811. 0x73, 0x74, 0x12, 0x0c, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71,
  4812. 0x1a, 0x0d, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12,
  4813. 0x2b, 0x0a, 0x10, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x42, 0x79, 0x55, 0x73, 0x65,
  4814. 0x72, 0x49, 0x64, 0x12, 0x0c, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65,
  4815. 0x71, 0x1a, 0x09, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x2f, 0x0a, 0x14,
  4816. 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x42, 0x79, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69,
  4817. 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x0c, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52,
  4818. 0x65, 0x71, 0x1a, 0x09, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x2e, 0x0a,
  4819. 0x13, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x42, 0x79, 0x45, 0x6e, 0x74, 0x55, 0x73,
  4820. 0x65, 0x72, 0x49, 0x64, 0x12, 0x0c, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52,
  4821. 0x65, 0x71, 0x1a, 0x09, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x2a, 0x0a,
  4822. 0x0f, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x42, 0x79, 0x45, 0x6e, 0x74, 0x49, 0x64,
  4823. 0x12, 0x0c, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x1a, 0x09,
  4824. 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x33, 0x0a, 0x0c, 0x55, 0x73, 0x65,
  4825. 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x10, 0x2e, 0x55, 0x73, 0x65, 0x72,
  4826. 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x1a, 0x11, 0x2e, 0x55, 0x73,
  4827. 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x42, 0x06,
  4828. 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  4829. }
  4830. var (
  4831. file_userCenter_proto_rawDescOnce sync.Once
  4832. file_userCenter_proto_rawDescData = file_userCenter_proto_rawDesc
  4833. )
  4834. func file_userCenter_proto_rawDescGZIP() []byte {
  4835. file_userCenter_proto_rawDescOnce.Do(func() {
  4836. file_userCenter_proto_rawDescData = protoimpl.X.CompressGZIP(file_userCenter_proto_rawDescData)
  4837. })
  4838. return file_userCenter_proto_rawDescData
  4839. }
  4840. var file_userCenter_proto_msgTypes = make([]protoimpl.MessageInfo, 58)
  4841. var file_userCenter_proto_goTypes = []interface{}{
  4842. (*EntAuthReq)(nil), // 0: EntAuthReq
  4843. (*EntAuthResp)(nil), // 1: EntAuthResp
  4844. (*EntAuthData)(nil), // 2: EntAuthData
  4845. (*ExamineReq)(nil), // 3: ExamineReq
  4846. (*ExamineResp)(nil), // 4: ExamineResp
  4847. (*ExamineData)(nil), // 5: ExamineData
  4848. (*EntListReq)(nil), // 6: EntListReq
  4849. (*EntListResp)(nil), // 7: EntListResp
  4850. (*EntData)(nil), // 8: EntData
  4851. (*EntList)(nil), // 9: EntList
  4852. (*ExamineListReq)(nil), // 10: ExamineListReq
  4853. (*ExamineListResp)(nil), // 11: ExamineListResp
  4854. (*ExamineListData)(nil), // 12: ExamineListData
  4855. (*ExamineList)(nil), // 13: ExamineList
  4856. (*CheckEntReq)(nil), // 14: CheckEntReq
  4857. (*CheckEntResp)(nil), // 15: CheckEntResp
  4858. (*CheckData)(nil), // 16: checkData
  4859. (*EntInfoResp)(nil), // 17: EntInfoResp
  4860. (*EntInfoData)(nil), // 18: EntInfoData
  4861. (*EntUpdateReq)(nil), // 19: EntUpdateReq
  4862. (*CheckExamineReq)(nil), // 20: CheckExamineReq
  4863. (*GetStatusByCodeReq)(nil), // 21: GetStatusByCodeReq
  4864. (*GetStatusByCodeResp)(nil), // 22: GetStatusByCodeResp
  4865. (*UserInfo)(nil), // 23: UserInfo
  4866. (*Subscribe)(nil), // 24: Subscribe
  4867. (*List)(nil), // 25: List
  4868. (*Items)(nil), // 26: Items
  4869. (*Keys)(nil), // 27: Keys
  4870. (*UserReq)(nil), // 28: UserReq
  4871. (*EntUserReq)(nil), // 29: EntUserReq
  4872. (*EntUserResp)(nil), // 30: EntUserResp
  4873. (*EntUser)(nil), // 31: EntUser
  4874. (*EntUserListReq)(nil), // 32: EntUserListReq
  4875. (*EntUserListResp)(nil), // 33: EntUserListResp
  4876. (*EntUserListData)(nil), // 34: EntUserListData
  4877. (*CheckIsEntAdminResp)(nil), // 35: CheckIsEntAdminResp
  4878. (*GetStatusByCode)(nil), // 36: GetStatusByCode
  4879. (*UserAddReq)(nil), // 37: UserAddReq
  4880. (*UserAddResp)(nil), // 38: UserAddResp
  4881. (*UserAdds)(nil), // 39: UserAdds
  4882. (*UserIdReq)(nil), // 40: UserIdReq
  4883. (*WorkDesktopMenuInfoReq)(nil), // 41: WorkDesktopMenuInfoReq
  4884. (*WorkDesktopMenuInfoResp)(nil), // 42: WorkDesktopMenuInfoResp
  4885. (*MenuData)(nil), // 43: MenuData
  4886. (*MenuList)(nil), // 44: MenuList
  4887. (*SecondLevelMenu)(nil), // 45: SecondLevelMenu
  4888. (*ThreeLevelMenu)(nil), // 46: ThreeLevelMenu
  4889. (*TipInfo)(nil), // 47: TipInfo
  4890. (*WorkDesktopComprehensiveReq)(nil), // 48: WorkDesktopComprehensiveReq
  4891. (*WorkDesktopComprehensiveResp)(nil), // 49: WorkDesktopComprehensiveResp
  4892. (*WorkDesktopClearUserInfoReq)(nil), // 50: WorkDesktopClearUserInfoReq
  4893. (*WorkDesktopClearUserInfoResp)(nil), // 51: WorkDesktopClearUserInfoResp
  4894. (*IdentityReq)(nil), // 52: IdentityReq
  4895. (*Identity)(nil), // 53: Identity
  4896. (*IdentityResp)(nil), // 54: IdentityResp
  4897. (*UserIdentityReq)(nil), // 55: UserIdentityReq
  4898. (*UserIdentityResp)(nil), // 56: UserIdentityResp
  4899. nil, // 57: Subscribe.AreaEntry
  4900. }
  4901. var file_userCenter_proto_depIdxs = []int32{
  4902. 2, // 0: EntAuthResp.data:type_name -> EntAuthData
  4903. 5, // 1: ExamineResp.data:type_name -> ExamineData
  4904. 8, // 2: EntListResp.data:type_name -> EntData
  4905. 9, // 3: EntData.list:type_name -> EntList
  4906. 12, // 4: ExamineListResp.data:type_name -> ExamineListData
  4907. 13, // 5: ExamineListData.list:type_name -> ExamineList
  4908. 16, // 6: CheckEntResp.data:type_name -> checkData
  4909. 18, // 7: EntInfoResp.data:type_name -> EntInfoData
  4910. 36, // 8: GetStatusByCodeResp.data:type_name -> GetStatusByCode
  4911. 24, // 9: UserInfo.data:type_name -> Subscribe
  4912. 57, // 10: Subscribe.area:type_name -> Subscribe.AreaEntry
  4913. 26, // 11: Subscribe.items:type_name -> Items
  4914. 27, // 12: Items.a_key:type_name -> Keys
  4915. 31, // 13: EntUserResp.data:type_name -> EntUser
  4916. 34, // 14: EntUserListResp.data:type_name -> EntUserListData
  4917. 31, // 15: EntUserListData.entUserList:type_name -> EntUser
  4918. 34, // 16: EntUserListData.deptList:type_name -> EntUserListData
  4919. 39, // 17: UserAddResp.data:type_name -> UserAdds
  4920. 43, // 18: WorkDesktopMenuInfoResp.data:type_name -> MenuData
  4921. 44, // 19: MenuData.menuList:type_name -> MenuList
  4922. 47, // 20: MenuList.tipInfo:type_name -> TipInfo
  4923. 45, // 21: MenuList.child:type_name -> SecondLevelMenu
  4924. 47, // 22: SecondLevelMenu.tipInfo:type_name -> TipInfo
  4925. 46, // 23: SecondLevelMenu.child:type_name -> ThreeLevelMenu
  4926. 47, // 24: ThreeLevelMenu.tipInfo:type_name -> TipInfo
  4927. 46, // 25: WorkDesktopComprehensiveResp.data:type_name -> ThreeLevelMenu
  4928. 53, // 26: IdentityResp.identitys:type_name -> Identity
  4929. 25, // 27: Subscribe.AreaEntry.value:type_name -> List
  4930. 0, // 28: UserCenter.EntAuth:input_type -> EntAuthReq
  4931. 3, // 29: UserCenter.EntExamine:input_type -> ExamineReq
  4932. 6, // 30: UserCenter.EntList:input_type -> EntListReq
  4933. 10, // 31: UserCenter.ExamineList:input_type -> ExamineListReq
  4934. 14, // 32: UserCenter.CheckEnt:input_type -> CheckEntReq
  4935. 14, // 33: UserCenter.EntInfo:input_type -> CheckEntReq
  4936. 19, // 34: UserCenter.EntUpdate:input_type -> EntUpdateReq
  4937. 20, // 35: UserCenter.ExamineInfo:input_type -> CheckExamineReq
  4938. 21, // 36: UserCenter.GetStatusByCode:input_type -> GetStatusByCodeReq
  4939. 37, // 37: UserCenter.UserAdd:input_type -> UserAddReq
  4940. 40, // 38: UserCenter.UserUpdate:input_type -> UserIdReq
  4941. 40, // 39: UserCenter.UserDel:input_type -> UserIdReq
  4942. 41, // 40: UserCenter.WorkDesktopMenuInfo:input_type -> WorkDesktopMenuInfoReq
  4943. 48, // 41: UserCenter.WorkDesktopComprehensive:input_type -> WorkDesktopComprehensiveReq
  4944. 50, // 42: UserCenter.WorkDesktopClearUserInfo:input_type -> WorkDesktopClearUserInfoReq
  4945. 28, // 43: UserCenter.GetUserInfo:input_type -> UserReq
  4946. 29, // 44: UserCenter.GetEntUserInfo:input_type -> EntUserReq
  4947. 32, // 45: UserCenter.GetEntUserList:input_type -> EntUserListReq
  4948. 29, // 46: UserCenter.CheckIsEntAdmin:input_type -> EntUserReq
  4949. 52, // 47: UserCenter.IdentityList:input_type -> IdentityReq
  4950. 52, // 48: UserCenter.IdentityByUserId:input_type -> IdentityReq
  4951. 52, // 49: UserCenter.IdentityByPositionId:input_type -> IdentityReq
  4952. 52, // 50: UserCenter.IdentityByEntUserId:input_type -> IdentityReq
  4953. 52, // 51: UserCenter.IdentityByEntId:input_type -> IdentityReq
  4954. 55, // 52: UserCenter.UserIdentity:input_type -> UserIdentityReq
  4955. 1, // 53: UserCenter.EntAuth:output_type -> EntAuthResp
  4956. 4, // 54: UserCenter.EntExamine:output_type -> ExamineResp
  4957. 7, // 55: UserCenter.EntList:output_type -> EntListResp
  4958. 11, // 56: UserCenter.ExamineList:output_type -> ExamineListResp
  4959. 15, // 57: UserCenter.CheckEnt:output_type -> CheckEntResp
  4960. 17, // 58: UserCenter.EntInfo:output_type -> EntInfoResp
  4961. 4, // 59: UserCenter.EntUpdate:output_type -> ExamineResp
  4962. 17, // 60: UserCenter.ExamineInfo:output_type -> EntInfoResp
  4963. 22, // 61: UserCenter.GetStatusByCode:output_type -> GetStatusByCodeResp
  4964. 38, // 62: UserCenter.UserAdd:output_type -> UserAddResp
  4965. 4, // 63: UserCenter.UserUpdate:output_type -> ExamineResp
  4966. 4, // 64: UserCenter.UserDel:output_type -> ExamineResp
  4967. 42, // 65: UserCenter.WorkDesktopMenuInfo:output_type -> WorkDesktopMenuInfoResp
  4968. 49, // 66: UserCenter.WorkDesktopComprehensive:output_type -> WorkDesktopComprehensiveResp
  4969. 51, // 67: UserCenter.WorkDesktopClearUserInfo:output_type -> WorkDesktopClearUserInfoResp
  4970. 23, // 68: UserCenter.GetUserInfo:output_type -> UserInfo
  4971. 30, // 69: UserCenter.GetEntUserInfo:output_type -> EntUserResp
  4972. 33, // 70: UserCenter.GetEntUserList:output_type -> EntUserListResp
  4973. 35, // 71: UserCenter.CheckIsEntAdmin:output_type -> CheckIsEntAdminResp
  4974. 54, // 72: UserCenter.IdentityList:output_type -> IdentityResp
  4975. 53, // 73: UserCenter.IdentityByUserId:output_type -> Identity
  4976. 53, // 74: UserCenter.IdentityByPositionId:output_type -> Identity
  4977. 53, // 75: UserCenter.IdentityByEntUserId:output_type -> Identity
  4978. 53, // 76: UserCenter.IdentityByEntId:output_type -> Identity
  4979. 56, // 77: UserCenter.UserIdentity:output_type -> UserIdentityResp
  4980. 53, // [53:78] is the sub-list for method output_type
  4981. 28, // [28:53] is the sub-list for method input_type
  4982. 28, // [28:28] is the sub-list for extension type_name
  4983. 28, // [28:28] is the sub-list for extension extendee
  4984. 0, // [0:28] is the sub-list for field type_name
  4985. }
  4986. func init() { file_userCenter_proto_init() }
  4987. func file_userCenter_proto_init() {
  4988. if File_userCenter_proto != nil {
  4989. return
  4990. }
  4991. if !protoimpl.UnsafeEnabled {
  4992. file_userCenter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  4993. switch v := v.(*EntAuthReq); i {
  4994. case 0:
  4995. return &v.state
  4996. case 1:
  4997. return &v.sizeCache
  4998. case 2:
  4999. return &v.unknownFields
  5000. default:
  5001. return nil
  5002. }
  5003. }
  5004. file_userCenter_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  5005. switch v := v.(*EntAuthResp); i {
  5006. case 0:
  5007. return &v.state
  5008. case 1:
  5009. return &v.sizeCache
  5010. case 2:
  5011. return &v.unknownFields
  5012. default:
  5013. return nil
  5014. }
  5015. }
  5016. file_userCenter_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  5017. switch v := v.(*EntAuthData); i {
  5018. case 0:
  5019. return &v.state
  5020. case 1:
  5021. return &v.sizeCache
  5022. case 2:
  5023. return &v.unknownFields
  5024. default:
  5025. return nil
  5026. }
  5027. }
  5028. file_userCenter_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  5029. switch v := v.(*ExamineReq); i {
  5030. case 0:
  5031. return &v.state
  5032. case 1:
  5033. return &v.sizeCache
  5034. case 2:
  5035. return &v.unknownFields
  5036. default:
  5037. return nil
  5038. }
  5039. }
  5040. file_userCenter_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  5041. switch v := v.(*ExamineResp); i {
  5042. case 0:
  5043. return &v.state
  5044. case 1:
  5045. return &v.sizeCache
  5046. case 2:
  5047. return &v.unknownFields
  5048. default:
  5049. return nil
  5050. }
  5051. }
  5052. file_userCenter_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  5053. switch v := v.(*ExamineData); i {
  5054. case 0:
  5055. return &v.state
  5056. case 1:
  5057. return &v.sizeCache
  5058. case 2:
  5059. return &v.unknownFields
  5060. default:
  5061. return nil
  5062. }
  5063. }
  5064. file_userCenter_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  5065. switch v := v.(*EntListReq); i {
  5066. case 0:
  5067. return &v.state
  5068. case 1:
  5069. return &v.sizeCache
  5070. case 2:
  5071. return &v.unknownFields
  5072. default:
  5073. return nil
  5074. }
  5075. }
  5076. file_userCenter_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  5077. switch v := v.(*EntListResp); i {
  5078. case 0:
  5079. return &v.state
  5080. case 1:
  5081. return &v.sizeCache
  5082. case 2:
  5083. return &v.unknownFields
  5084. default:
  5085. return nil
  5086. }
  5087. }
  5088. file_userCenter_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  5089. switch v := v.(*EntData); i {
  5090. case 0:
  5091. return &v.state
  5092. case 1:
  5093. return &v.sizeCache
  5094. case 2:
  5095. return &v.unknownFields
  5096. default:
  5097. return nil
  5098. }
  5099. }
  5100. file_userCenter_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  5101. switch v := v.(*EntList); i {
  5102. case 0:
  5103. return &v.state
  5104. case 1:
  5105. return &v.sizeCache
  5106. case 2:
  5107. return &v.unknownFields
  5108. default:
  5109. return nil
  5110. }
  5111. }
  5112. file_userCenter_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  5113. switch v := v.(*ExamineListReq); i {
  5114. case 0:
  5115. return &v.state
  5116. case 1:
  5117. return &v.sizeCache
  5118. case 2:
  5119. return &v.unknownFields
  5120. default:
  5121. return nil
  5122. }
  5123. }
  5124. file_userCenter_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  5125. switch v := v.(*ExamineListResp); i {
  5126. case 0:
  5127. return &v.state
  5128. case 1:
  5129. return &v.sizeCache
  5130. case 2:
  5131. return &v.unknownFields
  5132. default:
  5133. return nil
  5134. }
  5135. }
  5136. file_userCenter_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  5137. switch v := v.(*ExamineListData); i {
  5138. case 0:
  5139. return &v.state
  5140. case 1:
  5141. return &v.sizeCache
  5142. case 2:
  5143. return &v.unknownFields
  5144. default:
  5145. return nil
  5146. }
  5147. }
  5148. file_userCenter_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  5149. switch v := v.(*ExamineList); i {
  5150. case 0:
  5151. return &v.state
  5152. case 1:
  5153. return &v.sizeCache
  5154. case 2:
  5155. return &v.unknownFields
  5156. default:
  5157. return nil
  5158. }
  5159. }
  5160. file_userCenter_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  5161. switch v := v.(*CheckEntReq); i {
  5162. case 0:
  5163. return &v.state
  5164. case 1:
  5165. return &v.sizeCache
  5166. case 2:
  5167. return &v.unknownFields
  5168. default:
  5169. return nil
  5170. }
  5171. }
  5172. file_userCenter_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  5173. switch v := v.(*CheckEntResp); i {
  5174. case 0:
  5175. return &v.state
  5176. case 1:
  5177. return &v.sizeCache
  5178. case 2:
  5179. return &v.unknownFields
  5180. default:
  5181. return nil
  5182. }
  5183. }
  5184. file_userCenter_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  5185. switch v := v.(*CheckData); i {
  5186. case 0:
  5187. return &v.state
  5188. case 1:
  5189. return &v.sizeCache
  5190. case 2:
  5191. return &v.unknownFields
  5192. default:
  5193. return nil
  5194. }
  5195. }
  5196. file_userCenter_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  5197. switch v := v.(*EntInfoResp); i {
  5198. case 0:
  5199. return &v.state
  5200. case 1:
  5201. return &v.sizeCache
  5202. case 2:
  5203. return &v.unknownFields
  5204. default:
  5205. return nil
  5206. }
  5207. }
  5208. file_userCenter_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  5209. switch v := v.(*EntInfoData); i {
  5210. case 0:
  5211. return &v.state
  5212. case 1:
  5213. return &v.sizeCache
  5214. case 2:
  5215. return &v.unknownFields
  5216. default:
  5217. return nil
  5218. }
  5219. }
  5220. file_userCenter_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  5221. switch v := v.(*EntUpdateReq); i {
  5222. case 0:
  5223. return &v.state
  5224. case 1:
  5225. return &v.sizeCache
  5226. case 2:
  5227. return &v.unknownFields
  5228. default:
  5229. return nil
  5230. }
  5231. }
  5232. file_userCenter_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  5233. switch v := v.(*CheckExamineReq); i {
  5234. case 0:
  5235. return &v.state
  5236. case 1:
  5237. return &v.sizeCache
  5238. case 2:
  5239. return &v.unknownFields
  5240. default:
  5241. return nil
  5242. }
  5243. }
  5244. file_userCenter_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  5245. switch v := v.(*GetStatusByCodeReq); i {
  5246. case 0:
  5247. return &v.state
  5248. case 1:
  5249. return &v.sizeCache
  5250. case 2:
  5251. return &v.unknownFields
  5252. default:
  5253. return nil
  5254. }
  5255. }
  5256. file_userCenter_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  5257. switch v := v.(*GetStatusByCodeResp); i {
  5258. case 0:
  5259. return &v.state
  5260. case 1:
  5261. return &v.sizeCache
  5262. case 2:
  5263. return &v.unknownFields
  5264. default:
  5265. return nil
  5266. }
  5267. }
  5268. file_userCenter_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  5269. switch v := v.(*UserInfo); i {
  5270. case 0:
  5271. return &v.state
  5272. case 1:
  5273. return &v.sizeCache
  5274. case 2:
  5275. return &v.unknownFields
  5276. default:
  5277. return nil
  5278. }
  5279. }
  5280. file_userCenter_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  5281. switch v := v.(*Subscribe); i {
  5282. case 0:
  5283. return &v.state
  5284. case 1:
  5285. return &v.sizeCache
  5286. case 2:
  5287. return &v.unknownFields
  5288. default:
  5289. return nil
  5290. }
  5291. }
  5292. file_userCenter_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  5293. switch v := v.(*List); i {
  5294. case 0:
  5295. return &v.state
  5296. case 1:
  5297. return &v.sizeCache
  5298. case 2:
  5299. return &v.unknownFields
  5300. default:
  5301. return nil
  5302. }
  5303. }
  5304. file_userCenter_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  5305. switch v := v.(*Items); i {
  5306. case 0:
  5307. return &v.state
  5308. case 1:
  5309. return &v.sizeCache
  5310. case 2:
  5311. return &v.unknownFields
  5312. default:
  5313. return nil
  5314. }
  5315. }
  5316. file_userCenter_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  5317. switch v := v.(*Keys); i {
  5318. case 0:
  5319. return &v.state
  5320. case 1:
  5321. return &v.sizeCache
  5322. case 2:
  5323. return &v.unknownFields
  5324. default:
  5325. return nil
  5326. }
  5327. }
  5328. file_userCenter_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  5329. switch v := v.(*UserReq); i {
  5330. case 0:
  5331. return &v.state
  5332. case 1:
  5333. return &v.sizeCache
  5334. case 2:
  5335. return &v.unknownFields
  5336. default:
  5337. return nil
  5338. }
  5339. }
  5340. file_userCenter_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  5341. switch v := v.(*EntUserReq); i {
  5342. case 0:
  5343. return &v.state
  5344. case 1:
  5345. return &v.sizeCache
  5346. case 2:
  5347. return &v.unknownFields
  5348. default:
  5349. return nil
  5350. }
  5351. }
  5352. file_userCenter_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  5353. switch v := v.(*EntUserResp); i {
  5354. case 0:
  5355. return &v.state
  5356. case 1:
  5357. return &v.sizeCache
  5358. case 2:
  5359. return &v.unknownFields
  5360. default:
  5361. return nil
  5362. }
  5363. }
  5364. file_userCenter_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  5365. switch v := v.(*EntUser); i {
  5366. case 0:
  5367. return &v.state
  5368. case 1:
  5369. return &v.sizeCache
  5370. case 2:
  5371. return &v.unknownFields
  5372. default:
  5373. return nil
  5374. }
  5375. }
  5376. file_userCenter_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  5377. switch v := v.(*EntUserListReq); i {
  5378. case 0:
  5379. return &v.state
  5380. case 1:
  5381. return &v.sizeCache
  5382. case 2:
  5383. return &v.unknownFields
  5384. default:
  5385. return nil
  5386. }
  5387. }
  5388. file_userCenter_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  5389. switch v := v.(*EntUserListResp); i {
  5390. case 0:
  5391. return &v.state
  5392. case 1:
  5393. return &v.sizeCache
  5394. case 2:
  5395. return &v.unknownFields
  5396. default:
  5397. return nil
  5398. }
  5399. }
  5400. file_userCenter_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  5401. switch v := v.(*EntUserListData); i {
  5402. case 0:
  5403. return &v.state
  5404. case 1:
  5405. return &v.sizeCache
  5406. case 2:
  5407. return &v.unknownFields
  5408. default:
  5409. return nil
  5410. }
  5411. }
  5412. file_userCenter_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  5413. switch v := v.(*CheckIsEntAdminResp); i {
  5414. case 0:
  5415. return &v.state
  5416. case 1:
  5417. return &v.sizeCache
  5418. case 2:
  5419. return &v.unknownFields
  5420. default:
  5421. return nil
  5422. }
  5423. }
  5424. file_userCenter_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  5425. switch v := v.(*GetStatusByCode); i {
  5426. case 0:
  5427. return &v.state
  5428. case 1:
  5429. return &v.sizeCache
  5430. case 2:
  5431. return &v.unknownFields
  5432. default:
  5433. return nil
  5434. }
  5435. }
  5436. file_userCenter_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  5437. switch v := v.(*UserAddReq); i {
  5438. case 0:
  5439. return &v.state
  5440. case 1:
  5441. return &v.sizeCache
  5442. case 2:
  5443. return &v.unknownFields
  5444. default:
  5445. return nil
  5446. }
  5447. }
  5448. file_userCenter_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  5449. switch v := v.(*UserAddResp); i {
  5450. case 0:
  5451. return &v.state
  5452. case 1:
  5453. return &v.sizeCache
  5454. case 2:
  5455. return &v.unknownFields
  5456. default:
  5457. return nil
  5458. }
  5459. }
  5460. file_userCenter_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  5461. switch v := v.(*UserAdds); i {
  5462. case 0:
  5463. return &v.state
  5464. case 1:
  5465. return &v.sizeCache
  5466. case 2:
  5467. return &v.unknownFields
  5468. default:
  5469. return nil
  5470. }
  5471. }
  5472. file_userCenter_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  5473. switch v := v.(*UserIdReq); i {
  5474. case 0:
  5475. return &v.state
  5476. case 1:
  5477. return &v.sizeCache
  5478. case 2:
  5479. return &v.unknownFields
  5480. default:
  5481. return nil
  5482. }
  5483. }
  5484. file_userCenter_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  5485. switch v := v.(*WorkDesktopMenuInfoReq); i {
  5486. case 0:
  5487. return &v.state
  5488. case 1:
  5489. return &v.sizeCache
  5490. case 2:
  5491. return &v.unknownFields
  5492. default:
  5493. return nil
  5494. }
  5495. }
  5496. file_userCenter_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  5497. switch v := v.(*WorkDesktopMenuInfoResp); i {
  5498. case 0:
  5499. return &v.state
  5500. case 1:
  5501. return &v.sizeCache
  5502. case 2:
  5503. return &v.unknownFields
  5504. default:
  5505. return nil
  5506. }
  5507. }
  5508. file_userCenter_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  5509. switch v := v.(*MenuData); i {
  5510. case 0:
  5511. return &v.state
  5512. case 1:
  5513. return &v.sizeCache
  5514. case 2:
  5515. return &v.unknownFields
  5516. default:
  5517. return nil
  5518. }
  5519. }
  5520. file_userCenter_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  5521. switch v := v.(*MenuList); i {
  5522. case 0:
  5523. return &v.state
  5524. case 1:
  5525. return &v.sizeCache
  5526. case 2:
  5527. return &v.unknownFields
  5528. default:
  5529. return nil
  5530. }
  5531. }
  5532. file_userCenter_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  5533. switch v := v.(*SecondLevelMenu); i {
  5534. case 0:
  5535. return &v.state
  5536. case 1:
  5537. return &v.sizeCache
  5538. case 2:
  5539. return &v.unknownFields
  5540. default:
  5541. return nil
  5542. }
  5543. }
  5544. file_userCenter_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  5545. switch v := v.(*ThreeLevelMenu); i {
  5546. case 0:
  5547. return &v.state
  5548. case 1:
  5549. return &v.sizeCache
  5550. case 2:
  5551. return &v.unknownFields
  5552. default:
  5553. return nil
  5554. }
  5555. }
  5556. file_userCenter_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  5557. switch v := v.(*TipInfo); i {
  5558. case 0:
  5559. return &v.state
  5560. case 1:
  5561. return &v.sizeCache
  5562. case 2:
  5563. return &v.unknownFields
  5564. default:
  5565. return nil
  5566. }
  5567. }
  5568. file_userCenter_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  5569. switch v := v.(*WorkDesktopComprehensiveReq); i {
  5570. case 0:
  5571. return &v.state
  5572. case 1:
  5573. return &v.sizeCache
  5574. case 2:
  5575. return &v.unknownFields
  5576. default:
  5577. return nil
  5578. }
  5579. }
  5580. file_userCenter_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  5581. switch v := v.(*WorkDesktopComprehensiveResp); i {
  5582. case 0:
  5583. return &v.state
  5584. case 1:
  5585. return &v.sizeCache
  5586. case 2:
  5587. return &v.unknownFields
  5588. default:
  5589. return nil
  5590. }
  5591. }
  5592. file_userCenter_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  5593. switch v := v.(*WorkDesktopClearUserInfoReq); i {
  5594. case 0:
  5595. return &v.state
  5596. case 1:
  5597. return &v.sizeCache
  5598. case 2:
  5599. return &v.unknownFields
  5600. default:
  5601. return nil
  5602. }
  5603. }
  5604. file_userCenter_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  5605. switch v := v.(*WorkDesktopClearUserInfoResp); i {
  5606. case 0:
  5607. return &v.state
  5608. case 1:
  5609. return &v.sizeCache
  5610. case 2:
  5611. return &v.unknownFields
  5612. default:
  5613. return nil
  5614. }
  5615. }
  5616. file_userCenter_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  5617. switch v := v.(*IdentityReq); i {
  5618. case 0:
  5619. return &v.state
  5620. case 1:
  5621. return &v.sizeCache
  5622. case 2:
  5623. return &v.unknownFields
  5624. default:
  5625. return nil
  5626. }
  5627. }
  5628. file_userCenter_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  5629. switch v := v.(*Identity); i {
  5630. case 0:
  5631. return &v.state
  5632. case 1:
  5633. return &v.sizeCache
  5634. case 2:
  5635. return &v.unknownFields
  5636. default:
  5637. return nil
  5638. }
  5639. }
  5640. file_userCenter_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  5641. switch v := v.(*IdentityResp); i {
  5642. case 0:
  5643. return &v.state
  5644. case 1:
  5645. return &v.sizeCache
  5646. case 2:
  5647. return &v.unknownFields
  5648. default:
  5649. return nil
  5650. }
  5651. }
  5652. file_userCenter_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  5653. switch v := v.(*UserIdentityReq); i {
  5654. case 0:
  5655. return &v.state
  5656. case 1:
  5657. return &v.sizeCache
  5658. case 2:
  5659. return &v.unknownFields
  5660. default:
  5661. return nil
  5662. }
  5663. }
  5664. file_userCenter_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  5665. switch v := v.(*UserIdentityResp); i {
  5666. case 0:
  5667. return &v.state
  5668. case 1:
  5669. return &v.sizeCache
  5670. case 2:
  5671. return &v.unknownFields
  5672. default:
  5673. return nil
  5674. }
  5675. }
  5676. }
  5677. type x struct{}
  5678. out := protoimpl.TypeBuilder{
  5679. File: protoimpl.DescBuilder{
  5680. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  5681. RawDescriptor: file_userCenter_proto_rawDesc,
  5682. NumEnums: 0,
  5683. NumMessages: 58,
  5684. NumExtensions: 0,
  5685. NumServices: 1,
  5686. },
  5687. GoTypes: file_userCenter_proto_goTypes,
  5688. DependencyIndexes: file_userCenter_proto_depIdxs,
  5689. MessageInfos: file_userCenter_proto_msgTypes,
  5690. }.Build()
  5691. File_userCenter_proto = out.File
  5692. file_userCenter_proto_rawDesc = nil
  5693. file_userCenter_proto_goTypes = nil
  5694. file_userCenter_proto_depIdxs = nil
  5695. }