userCenter.pb.go 211 KB

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