userCenter.pb.go 213 KB

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