userCenter.pb.go 181 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.0
  4. // protoc v3.15.1
  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. }
  2424. func (x *UserAddReq) Reset() {
  2425. *x = UserAddReq{}
  2426. if protoimpl.UnsafeEnabled {
  2427. mi := &file_userCenter_proto_msgTypes[37]
  2428. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2429. ms.StoreMessageInfo(mi)
  2430. }
  2431. }
  2432. func (x *UserAddReq) String() string {
  2433. return protoimpl.X.MessageStringOf(x)
  2434. }
  2435. func (*UserAddReq) ProtoMessage() {}
  2436. func (x *UserAddReq) ProtoReflect() protoreflect.Message {
  2437. mi := &file_userCenter_proto_msgTypes[37]
  2438. if protoimpl.UnsafeEnabled && x != nil {
  2439. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2440. if ms.LoadMessageInfo() == nil {
  2441. ms.StoreMessageInfo(mi)
  2442. }
  2443. return ms
  2444. }
  2445. return mi.MessageOf(x)
  2446. }
  2447. // Deprecated: Use UserAddReq.ProtoReflect.Descriptor instead.
  2448. func (*UserAddReq) Descriptor() ([]byte, []int) {
  2449. return file_userCenter_proto_rawDescGZIP(), []int{37}
  2450. }
  2451. func (x *UserAddReq) GetAppid() string {
  2452. if x != nil {
  2453. return x.Appid
  2454. }
  2455. return ""
  2456. }
  2457. func (x *UserAddReq) GetPhone() string {
  2458. if x != nil {
  2459. return x.Phone
  2460. }
  2461. return ""
  2462. }
  2463. func (x *UserAddReq) GetNickname() string {
  2464. if x != nil {
  2465. return x.Nickname
  2466. }
  2467. return ""
  2468. }
  2469. func (x *UserAddReq) GetHeadimg() string {
  2470. if x != nil {
  2471. return x.Headimg
  2472. }
  2473. return ""
  2474. }
  2475. func (x *UserAddReq) GetCompany() string {
  2476. if x != nil {
  2477. return x.Company
  2478. }
  2479. return ""
  2480. }
  2481. func (x *UserAddReq) GetPosition() string {
  2482. if x != nil {
  2483. return x.Position
  2484. }
  2485. return ""
  2486. }
  2487. func (x *UserAddReq) GetPassword() string {
  2488. if x != nil {
  2489. return x.Password
  2490. }
  2491. return ""
  2492. }
  2493. func (x *UserAddReq) GetSOpenid() string {
  2494. if x != nil {
  2495. return x.SOpenid
  2496. }
  2497. return ""
  2498. }
  2499. func (x *UserAddReq) GetAOpenid() string {
  2500. if x != nil {
  2501. return x.AOpenid
  2502. }
  2503. return ""
  2504. }
  2505. func (x *UserAddReq) GetUnionid() string {
  2506. if x != nil {
  2507. return x.Unionid
  2508. }
  2509. return ""
  2510. }
  2511. type UserAddResp struct {
  2512. state protoimpl.MessageState
  2513. sizeCache protoimpl.SizeCache
  2514. unknownFields protoimpl.UnknownFields
  2515. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  2516. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  2517. Data *UserAdds `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  2518. }
  2519. func (x *UserAddResp) Reset() {
  2520. *x = UserAddResp{}
  2521. if protoimpl.UnsafeEnabled {
  2522. mi := &file_userCenter_proto_msgTypes[38]
  2523. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2524. ms.StoreMessageInfo(mi)
  2525. }
  2526. }
  2527. func (x *UserAddResp) String() string {
  2528. return protoimpl.X.MessageStringOf(x)
  2529. }
  2530. func (*UserAddResp) ProtoMessage() {}
  2531. func (x *UserAddResp) ProtoReflect() protoreflect.Message {
  2532. mi := &file_userCenter_proto_msgTypes[38]
  2533. if protoimpl.UnsafeEnabled && x != nil {
  2534. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2535. if ms.LoadMessageInfo() == nil {
  2536. ms.StoreMessageInfo(mi)
  2537. }
  2538. return ms
  2539. }
  2540. return mi.MessageOf(x)
  2541. }
  2542. // Deprecated: Use UserAddResp.ProtoReflect.Descriptor instead.
  2543. func (*UserAddResp) Descriptor() ([]byte, []int) {
  2544. return file_userCenter_proto_rawDescGZIP(), []int{38}
  2545. }
  2546. func (x *UserAddResp) GetErrorCode() int64 {
  2547. if x != nil {
  2548. return x.ErrorCode
  2549. }
  2550. return 0
  2551. }
  2552. func (x *UserAddResp) GetErrorMsg() string {
  2553. if x != nil {
  2554. return x.ErrorMsg
  2555. }
  2556. return ""
  2557. }
  2558. func (x *UserAddResp) GetData() *UserAdds {
  2559. if x != nil {
  2560. return x.Data
  2561. }
  2562. return nil
  2563. }
  2564. type UserAdds struct {
  2565. state protoimpl.MessageState
  2566. sizeCache protoimpl.SizeCache
  2567. unknownFields protoimpl.UnknownFields
  2568. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  2569. Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
  2570. }
  2571. func (x *UserAdds) Reset() {
  2572. *x = UserAdds{}
  2573. if protoimpl.UnsafeEnabled {
  2574. mi := &file_userCenter_proto_msgTypes[39]
  2575. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2576. ms.StoreMessageInfo(mi)
  2577. }
  2578. }
  2579. func (x *UserAdds) String() string {
  2580. return protoimpl.X.MessageStringOf(x)
  2581. }
  2582. func (*UserAdds) ProtoMessage() {}
  2583. func (x *UserAdds) ProtoReflect() protoreflect.Message {
  2584. mi := &file_userCenter_proto_msgTypes[39]
  2585. if protoimpl.UnsafeEnabled && x != nil {
  2586. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2587. if ms.LoadMessageInfo() == nil {
  2588. ms.StoreMessageInfo(mi)
  2589. }
  2590. return ms
  2591. }
  2592. return mi.MessageOf(x)
  2593. }
  2594. // Deprecated: Use UserAdds.ProtoReflect.Descriptor instead.
  2595. func (*UserAdds) Descriptor() ([]byte, []int) {
  2596. return file_userCenter_proto_rawDescGZIP(), []int{39}
  2597. }
  2598. func (x *UserAdds) GetStatus() int64 {
  2599. if x != nil {
  2600. return x.Status
  2601. }
  2602. return 0
  2603. }
  2604. func (x *UserAdds) GetId() int64 {
  2605. if x != nil {
  2606. return x.Id
  2607. }
  2608. return 0
  2609. }
  2610. type UserIdReq struct {
  2611. state protoimpl.MessageState
  2612. sizeCache protoimpl.SizeCache
  2613. unknownFields protoimpl.UnknownFields
  2614. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  2615. Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
  2616. Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone,omitempty"`
  2617. Nickname string `protobuf:"bytes,4,opt,name=nickname,proto3" json:"nickname,omitempty"`
  2618. Headimg string `protobuf:"bytes,5,opt,name=headimg,proto3" json:"headimg,omitempty"`
  2619. Company string `protobuf:"bytes,6,opt,name=company,proto3" json:"company,omitempty"`
  2620. Position string `protobuf:"bytes,7,opt,name=position,proto3" json:"position,omitempty"`
  2621. Password string `protobuf:"bytes,8,opt,name=password,proto3" json:"password,omitempty"`
  2622. SOpenid string `protobuf:"bytes,9,opt,name=s_openid,json=sOpenid,proto3" json:"s_openid,omitempty"`
  2623. AOpenid string `protobuf:"bytes,10,opt,name=a_openid,json=aOpenid,proto3" json:"a_openid,omitempty"`
  2624. Unionid string `protobuf:"bytes,11,opt,name=unionid,proto3" json:"unionid,omitempty"`
  2625. }
  2626. func (x *UserIdReq) Reset() {
  2627. *x = UserIdReq{}
  2628. if protoimpl.UnsafeEnabled {
  2629. mi := &file_userCenter_proto_msgTypes[40]
  2630. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2631. ms.StoreMessageInfo(mi)
  2632. }
  2633. }
  2634. func (x *UserIdReq) String() string {
  2635. return protoimpl.X.MessageStringOf(x)
  2636. }
  2637. func (*UserIdReq) ProtoMessage() {}
  2638. func (x *UserIdReq) ProtoReflect() protoreflect.Message {
  2639. mi := &file_userCenter_proto_msgTypes[40]
  2640. if protoimpl.UnsafeEnabled && x != nil {
  2641. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2642. if ms.LoadMessageInfo() == nil {
  2643. ms.StoreMessageInfo(mi)
  2644. }
  2645. return ms
  2646. }
  2647. return mi.MessageOf(x)
  2648. }
  2649. // Deprecated: Use UserIdReq.ProtoReflect.Descriptor instead.
  2650. func (*UserIdReq) Descriptor() ([]byte, []int) {
  2651. return file_userCenter_proto_rawDescGZIP(), []int{40}
  2652. }
  2653. func (x *UserIdReq) GetAppid() string {
  2654. if x != nil {
  2655. return x.Appid
  2656. }
  2657. return ""
  2658. }
  2659. func (x *UserIdReq) GetId() int64 {
  2660. if x != nil {
  2661. return x.Id
  2662. }
  2663. return 0
  2664. }
  2665. func (x *UserIdReq) GetPhone() string {
  2666. if x != nil {
  2667. return x.Phone
  2668. }
  2669. return ""
  2670. }
  2671. func (x *UserIdReq) GetNickname() string {
  2672. if x != nil {
  2673. return x.Nickname
  2674. }
  2675. return ""
  2676. }
  2677. func (x *UserIdReq) GetHeadimg() string {
  2678. if x != nil {
  2679. return x.Headimg
  2680. }
  2681. return ""
  2682. }
  2683. func (x *UserIdReq) GetCompany() string {
  2684. if x != nil {
  2685. return x.Company
  2686. }
  2687. return ""
  2688. }
  2689. func (x *UserIdReq) GetPosition() string {
  2690. if x != nil {
  2691. return x.Position
  2692. }
  2693. return ""
  2694. }
  2695. func (x *UserIdReq) GetPassword() string {
  2696. if x != nil {
  2697. return x.Password
  2698. }
  2699. return ""
  2700. }
  2701. func (x *UserIdReq) GetSOpenid() string {
  2702. if x != nil {
  2703. return x.SOpenid
  2704. }
  2705. return ""
  2706. }
  2707. func (x *UserIdReq) GetAOpenid() string {
  2708. if x != nil {
  2709. return x.AOpenid
  2710. }
  2711. return ""
  2712. }
  2713. func (x *UserIdReq) GetUnionid() string {
  2714. if x != nil {
  2715. return x.Unionid
  2716. }
  2717. return ""
  2718. }
  2719. //工作桌面
  2720. type WorkDesktopMenuInfoReq struct {
  2721. state protoimpl.MessageState
  2722. sizeCache protoimpl.SizeCache
  2723. unknownFields protoimpl.UnknownFields
  2724. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
  2725. AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"`
  2726. Platform string `protobuf:"bytes,3,opt,name=platform,proto3" json:"platform,omitempty"`
  2727. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone,omitempty"`
  2728. NewUserId string `protobuf:"bytes,5,opt,name=newUserId,proto3" json:"newUserId,omitempty"`
  2729. EntId int64 `protobuf:"varint,6,opt,name=entId,proto3" json:"entId,omitempty"`
  2730. EntUserId int64 `protobuf:"varint,7,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  2731. IntranetBool bool `protobuf:"varint,8,opt,name=intranetBool,proto3" json:"intranetBool,omitempty"`
  2732. }
  2733. func (x *WorkDesktopMenuInfoReq) Reset() {
  2734. *x = WorkDesktopMenuInfoReq{}
  2735. if protoimpl.UnsafeEnabled {
  2736. mi := &file_userCenter_proto_msgTypes[41]
  2737. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2738. ms.StoreMessageInfo(mi)
  2739. }
  2740. }
  2741. func (x *WorkDesktopMenuInfoReq) String() string {
  2742. return protoimpl.X.MessageStringOf(x)
  2743. }
  2744. func (*WorkDesktopMenuInfoReq) ProtoMessage() {}
  2745. func (x *WorkDesktopMenuInfoReq) ProtoReflect() protoreflect.Message {
  2746. mi := &file_userCenter_proto_msgTypes[41]
  2747. if protoimpl.UnsafeEnabled && x != nil {
  2748. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2749. if ms.LoadMessageInfo() == nil {
  2750. ms.StoreMessageInfo(mi)
  2751. }
  2752. return ms
  2753. }
  2754. return mi.MessageOf(x)
  2755. }
  2756. // Deprecated: Use WorkDesktopMenuInfoReq.ProtoReflect.Descriptor instead.
  2757. func (*WorkDesktopMenuInfoReq) Descriptor() ([]byte, []int) {
  2758. return file_userCenter_proto_rawDescGZIP(), []int{41}
  2759. }
  2760. func (x *WorkDesktopMenuInfoReq) GetUserId() string {
  2761. if x != nil {
  2762. return x.UserId
  2763. }
  2764. return ""
  2765. }
  2766. func (x *WorkDesktopMenuInfoReq) GetAppId() string {
  2767. if x != nil {
  2768. return x.AppId
  2769. }
  2770. return ""
  2771. }
  2772. func (x *WorkDesktopMenuInfoReq) GetPlatform() string {
  2773. if x != nil {
  2774. return x.Platform
  2775. }
  2776. return ""
  2777. }
  2778. func (x *WorkDesktopMenuInfoReq) GetPhone() string {
  2779. if x != nil {
  2780. return x.Phone
  2781. }
  2782. return ""
  2783. }
  2784. func (x *WorkDesktopMenuInfoReq) GetNewUserId() string {
  2785. if x != nil {
  2786. return x.NewUserId
  2787. }
  2788. return ""
  2789. }
  2790. func (x *WorkDesktopMenuInfoReq) GetEntId() int64 {
  2791. if x != nil {
  2792. return x.EntId
  2793. }
  2794. return 0
  2795. }
  2796. func (x *WorkDesktopMenuInfoReq) GetEntUserId() int64 {
  2797. if x != nil {
  2798. return x.EntUserId
  2799. }
  2800. return 0
  2801. }
  2802. func (x *WorkDesktopMenuInfoReq) GetIntranetBool() bool {
  2803. if x != nil {
  2804. return x.IntranetBool
  2805. }
  2806. return false
  2807. }
  2808. //工作桌面-返回数据
  2809. type WorkDesktopMenuInfoResp struct {
  2810. state protoimpl.MessageState
  2811. sizeCache protoimpl.SizeCache
  2812. unknownFields protoimpl.UnknownFields
  2813. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  2814. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  2815. Data *MenuData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  2816. }
  2817. func (x *WorkDesktopMenuInfoResp) Reset() {
  2818. *x = WorkDesktopMenuInfoResp{}
  2819. if protoimpl.UnsafeEnabled {
  2820. mi := &file_userCenter_proto_msgTypes[42]
  2821. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2822. ms.StoreMessageInfo(mi)
  2823. }
  2824. }
  2825. func (x *WorkDesktopMenuInfoResp) String() string {
  2826. return protoimpl.X.MessageStringOf(x)
  2827. }
  2828. func (*WorkDesktopMenuInfoResp) ProtoMessage() {}
  2829. func (x *WorkDesktopMenuInfoResp) ProtoReflect() protoreflect.Message {
  2830. mi := &file_userCenter_proto_msgTypes[42]
  2831. if protoimpl.UnsafeEnabled && x != nil {
  2832. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2833. if ms.LoadMessageInfo() == nil {
  2834. ms.StoreMessageInfo(mi)
  2835. }
  2836. return ms
  2837. }
  2838. return mi.MessageOf(x)
  2839. }
  2840. // Deprecated: Use WorkDesktopMenuInfoResp.ProtoReflect.Descriptor instead.
  2841. func (*WorkDesktopMenuInfoResp) Descriptor() ([]byte, []int) {
  2842. return file_userCenter_proto_rawDescGZIP(), []int{42}
  2843. }
  2844. func (x *WorkDesktopMenuInfoResp) GetErrorCode() int64 {
  2845. if x != nil {
  2846. return x.ErrorCode
  2847. }
  2848. return 0
  2849. }
  2850. func (x *WorkDesktopMenuInfoResp) GetErrorMsg() string {
  2851. if x != nil {
  2852. return x.ErrorMsg
  2853. }
  2854. return ""
  2855. }
  2856. func (x *WorkDesktopMenuInfoResp) GetData() *MenuData {
  2857. if x != nil {
  2858. return x.Data
  2859. }
  2860. return nil
  2861. }
  2862. type MenuData struct {
  2863. state protoimpl.MessageState
  2864. sizeCache protoimpl.SizeCache
  2865. unknownFields protoimpl.UnknownFields
  2866. MenuType string `protobuf:"bytes,1,opt,name=menuType,proto3" json:"menuType,omitempty"`
  2867. MenuList []*MenuList `protobuf:"bytes,2,rep,name=menuList,proto3" json:"menuList,omitempty"`
  2868. }
  2869. func (x *MenuData) Reset() {
  2870. *x = MenuData{}
  2871. if protoimpl.UnsafeEnabled {
  2872. mi := &file_userCenter_proto_msgTypes[43]
  2873. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2874. ms.StoreMessageInfo(mi)
  2875. }
  2876. }
  2877. func (x *MenuData) String() string {
  2878. return protoimpl.X.MessageStringOf(x)
  2879. }
  2880. func (*MenuData) ProtoMessage() {}
  2881. func (x *MenuData) ProtoReflect() protoreflect.Message {
  2882. mi := &file_userCenter_proto_msgTypes[43]
  2883. if protoimpl.UnsafeEnabled && x != nil {
  2884. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2885. if ms.LoadMessageInfo() == nil {
  2886. ms.StoreMessageInfo(mi)
  2887. }
  2888. return ms
  2889. }
  2890. return mi.MessageOf(x)
  2891. }
  2892. // Deprecated: Use MenuData.ProtoReflect.Descriptor instead.
  2893. func (*MenuData) Descriptor() ([]byte, []int) {
  2894. return file_userCenter_proto_rawDescGZIP(), []int{43}
  2895. }
  2896. func (x *MenuData) GetMenuType() string {
  2897. if x != nil {
  2898. return x.MenuType
  2899. }
  2900. return ""
  2901. }
  2902. func (x *MenuData) GetMenuList() []*MenuList {
  2903. if x != nil {
  2904. return x.MenuList
  2905. }
  2906. return nil
  2907. }
  2908. type MenuList struct {
  2909. state protoimpl.MessageState
  2910. sizeCache protoimpl.SizeCache
  2911. unknownFields protoimpl.UnknownFields
  2912. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  2913. Icon string `protobuf:"bytes,2,opt,name=icon,proto3" json:"icon,omitempty"`
  2914. Url string `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
  2915. Usable bool `protobuf:"varint,4,opt,name=usable,proto3" json:"usable,omitempty"`
  2916. Id string `protobuf:"bytes,5,opt,name=id,proto3" json:"id,omitempty"`
  2917. AppType string `protobuf:"bytes,6,opt,name=appType,proto3" json:"appType,omitempty"`
  2918. OpenType string `protobuf:"bytes,7,opt,name=openType,proto3" json:"openType,omitempty"`
  2919. TipInfo *TipInfo `protobuf:"bytes,8,opt,name=tipInfo,proto3" json:"tipInfo,omitempty"`
  2920. Child []*SecondLevelMenu `protobuf:"bytes,9,rep,name=child,proto3" json:"child,omitempty"`
  2921. Match []string `protobuf:"bytes,10,rep,name=match,proto3" json:"match,omitempty"`
  2922. }
  2923. func (x *MenuList) Reset() {
  2924. *x = MenuList{}
  2925. if protoimpl.UnsafeEnabled {
  2926. mi := &file_userCenter_proto_msgTypes[44]
  2927. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2928. ms.StoreMessageInfo(mi)
  2929. }
  2930. }
  2931. func (x *MenuList) String() string {
  2932. return protoimpl.X.MessageStringOf(x)
  2933. }
  2934. func (*MenuList) ProtoMessage() {}
  2935. func (x *MenuList) ProtoReflect() protoreflect.Message {
  2936. mi := &file_userCenter_proto_msgTypes[44]
  2937. if protoimpl.UnsafeEnabled && x != nil {
  2938. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2939. if ms.LoadMessageInfo() == nil {
  2940. ms.StoreMessageInfo(mi)
  2941. }
  2942. return ms
  2943. }
  2944. return mi.MessageOf(x)
  2945. }
  2946. // Deprecated: Use MenuList.ProtoReflect.Descriptor instead.
  2947. func (*MenuList) Descriptor() ([]byte, []int) {
  2948. return file_userCenter_proto_rawDescGZIP(), []int{44}
  2949. }
  2950. func (x *MenuList) GetName() string {
  2951. if x != nil {
  2952. return x.Name
  2953. }
  2954. return ""
  2955. }
  2956. func (x *MenuList) GetIcon() string {
  2957. if x != nil {
  2958. return x.Icon
  2959. }
  2960. return ""
  2961. }
  2962. func (x *MenuList) GetUrl() string {
  2963. if x != nil {
  2964. return x.Url
  2965. }
  2966. return ""
  2967. }
  2968. func (x *MenuList) GetUsable() bool {
  2969. if x != nil {
  2970. return x.Usable
  2971. }
  2972. return false
  2973. }
  2974. func (x *MenuList) GetId() string {
  2975. if x != nil {
  2976. return x.Id
  2977. }
  2978. return ""
  2979. }
  2980. func (x *MenuList) GetAppType() string {
  2981. if x != nil {
  2982. return x.AppType
  2983. }
  2984. return ""
  2985. }
  2986. func (x *MenuList) GetOpenType() string {
  2987. if x != nil {
  2988. return x.OpenType
  2989. }
  2990. return ""
  2991. }
  2992. func (x *MenuList) GetTipInfo() *TipInfo {
  2993. if x != nil {
  2994. return x.TipInfo
  2995. }
  2996. return nil
  2997. }
  2998. func (x *MenuList) GetChild() []*SecondLevelMenu {
  2999. if x != nil {
  3000. return x.Child
  3001. }
  3002. return nil
  3003. }
  3004. func (x *MenuList) GetMatch() []string {
  3005. if x != nil {
  3006. return x.Match
  3007. }
  3008. return nil
  3009. }
  3010. type SecondLevelMenu struct {
  3011. state protoimpl.MessageState
  3012. sizeCache protoimpl.SizeCache
  3013. unknownFields protoimpl.UnknownFields
  3014. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  3015. Icon string `protobuf:"bytes,2,opt,name=icon,proto3" json:"icon,omitempty"`
  3016. Url string `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
  3017. Usable bool `protobuf:"varint,4,opt,name=usable,proto3" json:"usable,omitempty"`
  3018. Id string `protobuf:"bytes,5,opt,name=id,proto3" json:"id,omitempty"`
  3019. AppType string `protobuf:"bytes,6,opt,name=appType,proto3" json:"appType,omitempty"`
  3020. OpenType string `protobuf:"bytes,7,opt,name=openType,proto3" json:"openType,omitempty"`
  3021. TipInfo *TipInfo `protobuf:"bytes,8,opt,name=tipInfo,proto3" json:"tipInfo,omitempty"`
  3022. Child []*ThreeLevelMenu `protobuf:"bytes,9,rep,name=child,proto3" json:"child,omitempty"`
  3023. Match []string `protobuf:"bytes,10,rep,name=match,proto3" json:"match,omitempty"`
  3024. }
  3025. func (x *SecondLevelMenu) Reset() {
  3026. *x = SecondLevelMenu{}
  3027. if protoimpl.UnsafeEnabled {
  3028. mi := &file_userCenter_proto_msgTypes[45]
  3029. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3030. ms.StoreMessageInfo(mi)
  3031. }
  3032. }
  3033. func (x *SecondLevelMenu) String() string {
  3034. return protoimpl.X.MessageStringOf(x)
  3035. }
  3036. func (*SecondLevelMenu) ProtoMessage() {}
  3037. func (x *SecondLevelMenu) ProtoReflect() protoreflect.Message {
  3038. mi := &file_userCenter_proto_msgTypes[45]
  3039. if protoimpl.UnsafeEnabled && x != nil {
  3040. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3041. if ms.LoadMessageInfo() == nil {
  3042. ms.StoreMessageInfo(mi)
  3043. }
  3044. return ms
  3045. }
  3046. return mi.MessageOf(x)
  3047. }
  3048. // Deprecated: Use SecondLevelMenu.ProtoReflect.Descriptor instead.
  3049. func (*SecondLevelMenu) Descriptor() ([]byte, []int) {
  3050. return file_userCenter_proto_rawDescGZIP(), []int{45}
  3051. }
  3052. func (x *SecondLevelMenu) GetName() string {
  3053. if x != nil {
  3054. return x.Name
  3055. }
  3056. return ""
  3057. }
  3058. func (x *SecondLevelMenu) GetIcon() string {
  3059. if x != nil {
  3060. return x.Icon
  3061. }
  3062. return ""
  3063. }
  3064. func (x *SecondLevelMenu) GetUrl() string {
  3065. if x != nil {
  3066. return x.Url
  3067. }
  3068. return ""
  3069. }
  3070. func (x *SecondLevelMenu) GetUsable() bool {
  3071. if x != nil {
  3072. return x.Usable
  3073. }
  3074. return false
  3075. }
  3076. func (x *SecondLevelMenu) GetId() string {
  3077. if x != nil {
  3078. return x.Id
  3079. }
  3080. return ""
  3081. }
  3082. func (x *SecondLevelMenu) GetAppType() string {
  3083. if x != nil {
  3084. return x.AppType
  3085. }
  3086. return ""
  3087. }
  3088. func (x *SecondLevelMenu) GetOpenType() string {
  3089. if x != nil {
  3090. return x.OpenType
  3091. }
  3092. return ""
  3093. }
  3094. func (x *SecondLevelMenu) GetTipInfo() *TipInfo {
  3095. if x != nil {
  3096. return x.TipInfo
  3097. }
  3098. return nil
  3099. }
  3100. func (x *SecondLevelMenu) GetChild() []*ThreeLevelMenu {
  3101. if x != nil {
  3102. return x.Child
  3103. }
  3104. return nil
  3105. }
  3106. func (x *SecondLevelMenu) GetMatch() []string {
  3107. if x != nil {
  3108. return x.Match
  3109. }
  3110. return nil
  3111. }
  3112. type ThreeLevelMenu struct {
  3113. state protoimpl.MessageState
  3114. sizeCache protoimpl.SizeCache
  3115. unknownFields protoimpl.UnknownFields
  3116. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  3117. Icon string `protobuf:"bytes,2,opt,name=icon,proto3" json:"icon,omitempty"`
  3118. Url string `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
  3119. Usable bool `protobuf:"varint,4,opt,name=usable,proto3" json:"usable,omitempty"`
  3120. Id string `protobuf:"bytes,5,opt,name=id,proto3" json:"id,omitempty"`
  3121. AppType string `protobuf:"bytes,6,opt,name=appType,proto3" json:"appType,omitempty"`
  3122. OpenType string `protobuf:"bytes,7,opt,name=openType,proto3" json:"openType,omitempty"`
  3123. TipInfo *TipInfo `protobuf:"bytes,8,opt,name=tipInfo,proto3" json:"tipInfo,omitempty"`
  3124. Match []string `protobuf:"bytes,10,rep,name=match,proto3" json:"match,omitempty"`
  3125. }
  3126. func (x *ThreeLevelMenu) Reset() {
  3127. *x = ThreeLevelMenu{}
  3128. if protoimpl.UnsafeEnabled {
  3129. mi := &file_userCenter_proto_msgTypes[46]
  3130. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3131. ms.StoreMessageInfo(mi)
  3132. }
  3133. }
  3134. func (x *ThreeLevelMenu) String() string {
  3135. return protoimpl.X.MessageStringOf(x)
  3136. }
  3137. func (*ThreeLevelMenu) ProtoMessage() {}
  3138. func (x *ThreeLevelMenu) ProtoReflect() protoreflect.Message {
  3139. mi := &file_userCenter_proto_msgTypes[46]
  3140. if protoimpl.UnsafeEnabled && x != nil {
  3141. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3142. if ms.LoadMessageInfo() == nil {
  3143. ms.StoreMessageInfo(mi)
  3144. }
  3145. return ms
  3146. }
  3147. return mi.MessageOf(x)
  3148. }
  3149. // Deprecated: Use ThreeLevelMenu.ProtoReflect.Descriptor instead.
  3150. func (*ThreeLevelMenu) Descriptor() ([]byte, []int) {
  3151. return file_userCenter_proto_rawDescGZIP(), []int{46}
  3152. }
  3153. func (x *ThreeLevelMenu) GetName() string {
  3154. if x != nil {
  3155. return x.Name
  3156. }
  3157. return ""
  3158. }
  3159. func (x *ThreeLevelMenu) GetIcon() string {
  3160. if x != nil {
  3161. return x.Icon
  3162. }
  3163. return ""
  3164. }
  3165. func (x *ThreeLevelMenu) GetUrl() string {
  3166. if x != nil {
  3167. return x.Url
  3168. }
  3169. return ""
  3170. }
  3171. func (x *ThreeLevelMenu) GetUsable() bool {
  3172. if x != nil {
  3173. return x.Usable
  3174. }
  3175. return false
  3176. }
  3177. func (x *ThreeLevelMenu) GetId() string {
  3178. if x != nil {
  3179. return x.Id
  3180. }
  3181. return ""
  3182. }
  3183. func (x *ThreeLevelMenu) GetAppType() string {
  3184. if x != nil {
  3185. return x.AppType
  3186. }
  3187. return ""
  3188. }
  3189. func (x *ThreeLevelMenu) GetOpenType() string {
  3190. if x != nil {
  3191. return x.OpenType
  3192. }
  3193. return ""
  3194. }
  3195. func (x *ThreeLevelMenu) GetTipInfo() *TipInfo {
  3196. if x != nil {
  3197. return x.TipInfo
  3198. }
  3199. return nil
  3200. }
  3201. func (x *ThreeLevelMenu) GetMatch() []string {
  3202. if x != nil {
  3203. return x.Match
  3204. }
  3205. return nil
  3206. }
  3207. type TipInfo struct {
  3208. state protoimpl.MessageState
  3209. sizeCache protoimpl.SizeCache
  3210. unknownFields protoimpl.UnknownFields
  3211. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  3212. Content string `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
  3213. ConfirmUrl string `protobuf:"bytes,3,opt,name=confirmUrl,proto3" json:"confirmUrl,omitempty"`
  3214. ConfirmText string `protobuf:"bytes,4,opt,name=confirmText,proto3" json:"confirmText,omitempty"`
  3215. IsShowCancel bool `protobuf:"varint,5,opt,name=isShowCancel,proto3" json:"isShowCancel,omitempty"`
  3216. AppType string `protobuf:"bytes,6,opt,name=appType,proto3" json:"appType,omitempty"`
  3217. OpenType string `protobuf:"bytes,7,opt,name=openType,proto3" json:"openType,omitempty"`
  3218. }
  3219. func (x *TipInfo) Reset() {
  3220. *x = TipInfo{}
  3221. if protoimpl.UnsafeEnabled {
  3222. mi := &file_userCenter_proto_msgTypes[47]
  3223. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3224. ms.StoreMessageInfo(mi)
  3225. }
  3226. }
  3227. func (x *TipInfo) String() string {
  3228. return protoimpl.X.MessageStringOf(x)
  3229. }
  3230. func (*TipInfo) ProtoMessage() {}
  3231. func (x *TipInfo) ProtoReflect() protoreflect.Message {
  3232. mi := &file_userCenter_proto_msgTypes[47]
  3233. if protoimpl.UnsafeEnabled && x != nil {
  3234. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3235. if ms.LoadMessageInfo() == nil {
  3236. ms.StoreMessageInfo(mi)
  3237. }
  3238. return ms
  3239. }
  3240. return mi.MessageOf(x)
  3241. }
  3242. // Deprecated: Use TipInfo.ProtoReflect.Descriptor instead.
  3243. func (*TipInfo) Descriptor() ([]byte, []int) {
  3244. return file_userCenter_proto_rawDescGZIP(), []int{47}
  3245. }
  3246. func (x *TipInfo) GetTitle() string {
  3247. if x != nil {
  3248. return x.Title
  3249. }
  3250. return ""
  3251. }
  3252. func (x *TipInfo) GetContent() string {
  3253. if x != nil {
  3254. return x.Content
  3255. }
  3256. return ""
  3257. }
  3258. func (x *TipInfo) GetConfirmUrl() string {
  3259. if x != nil {
  3260. return x.ConfirmUrl
  3261. }
  3262. return ""
  3263. }
  3264. func (x *TipInfo) GetConfirmText() string {
  3265. if x != nil {
  3266. return x.ConfirmText
  3267. }
  3268. return ""
  3269. }
  3270. func (x *TipInfo) GetIsShowCancel() bool {
  3271. if x != nil {
  3272. return x.IsShowCancel
  3273. }
  3274. return false
  3275. }
  3276. func (x *TipInfo) GetAppType() string {
  3277. if x != nil {
  3278. return x.AppType
  3279. }
  3280. return ""
  3281. }
  3282. func (x *TipInfo) GetOpenType() string {
  3283. if x != nil {
  3284. return x.OpenType
  3285. }
  3286. return ""
  3287. }
  3288. //工作桌面 菜单选择类型 全部/可用
  3289. //工作桌面 常用功能更新
  3290. type WorkDesktopComprehensiveReq struct {
  3291. state protoimpl.MessageState
  3292. sizeCache protoimpl.SizeCache
  3293. unknownFields protoimpl.UnknownFields
  3294. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
  3295. AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"`
  3296. Platform string `protobuf:"bytes,3,opt,name=platform,proto3" json:"platform,omitempty"`
  3297. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone,omitempty"`
  3298. ActionMode string `protobuf:"bytes,5,opt,name=actionMode,proto3" json:"actionMode,omitempty"`
  3299. MenuMode string `protobuf:"bytes,6,opt,name=menuMode,proto3" json:"menuMode,omitempty"`
  3300. MenuIds string `protobuf:"bytes,7,opt,name=menuIds,proto3" json:"menuIds,omitempty"`
  3301. NewUserId string `protobuf:"bytes,8,opt,name=newUserId,proto3" json:"newUserId,omitempty"`
  3302. EntId int64 `protobuf:"varint,9,opt,name=entId,proto3" json:"entId,omitempty"`
  3303. EntUserId int64 `protobuf:"varint,10,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  3304. }
  3305. func (x *WorkDesktopComprehensiveReq) Reset() {
  3306. *x = WorkDesktopComprehensiveReq{}
  3307. if protoimpl.UnsafeEnabled {
  3308. mi := &file_userCenter_proto_msgTypes[48]
  3309. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3310. ms.StoreMessageInfo(mi)
  3311. }
  3312. }
  3313. func (x *WorkDesktopComprehensiveReq) String() string {
  3314. return protoimpl.X.MessageStringOf(x)
  3315. }
  3316. func (*WorkDesktopComprehensiveReq) ProtoMessage() {}
  3317. func (x *WorkDesktopComprehensiveReq) ProtoReflect() protoreflect.Message {
  3318. mi := &file_userCenter_proto_msgTypes[48]
  3319. if protoimpl.UnsafeEnabled && x != nil {
  3320. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3321. if ms.LoadMessageInfo() == nil {
  3322. ms.StoreMessageInfo(mi)
  3323. }
  3324. return ms
  3325. }
  3326. return mi.MessageOf(x)
  3327. }
  3328. // Deprecated: Use WorkDesktopComprehensiveReq.ProtoReflect.Descriptor instead.
  3329. func (*WorkDesktopComprehensiveReq) Descriptor() ([]byte, []int) {
  3330. return file_userCenter_proto_rawDescGZIP(), []int{48}
  3331. }
  3332. func (x *WorkDesktopComprehensiveReq) GetUserId() string {
  3333. if x != nil {
  3334. return x.UserId
  3335. }
  3336. return ""
  3337. }
  3338. func (x *WorkDesktopComprehensiveReq) GetAppId() string {
  3339. if x != nil {
  3340. return x.AppId
  3341. }
  3342. return ""
  3343. }
  3344. func (x *WorkDesktopComprehensiveReq) GetPlatform() string {
  3345. if x != nil {
  3346. return x.Platform
  3347. }
  3348. return ""
  3349. }
  3350. func (x *WorkDesktopComprehensiveReq) GetPhone() string {
  3351. if x != nil {
  3352. return x.Phone
  3353. }
  3354. return ""
  3355. }
  3356. func (x *WorkDesktopComprehensiveReq) GetActionMode() string {
  3357. if x != nil {
  3358. return x.ActionMode
  3359. }
  3360. return ""
  3361. }
  3362. func (x *WorkDesktopComprehensiveReq) GetMenuMode() string {
  3363. if x != nil {
  3364. return x.MenuMode
  3365. }
  3366. return ""
  3367. }
  3368. func (x *WorkDesktopComprehensiveReq) GetMenuIds() string {
  3369. if x != nil {
  3370. return x.MenuIds
  3371. }
  3372. return ""
  3373. }
  3374. func (x *WorkDesktopComprehensiveReq) GetNewUserId() string {
  3375. if x != nil {
  3376. return x.NewUserId
  3377. }
  3378. return ""
  3379. }
  3380. func (x *WorkDesktopComprehensiveReq) GetEntId() int64 {
  3381. if x != nil {
  3382. return x.EntId
  3383. }
  3384. return 0
  3385. }
  3386. func (x *WorkDesktopComprehensiveReq) GetEntUserId() int64 {
  3387. if x != nil {
  3388. return x.EntUserId
  3389. }
  3390. return 0
  3391. }
  3392. //工作桌面 综合功能-返回数据
  3393. type WorkDesktopComprehensiveResp struct {
  3394. state protoimpl.MessageState
  3395. sizeCache protoimpl.SizeCache
  3396. unknownFields protoimpl.UnknownFields
  3397. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  3398. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  3399. Data []*ThreeLevelMenu `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  3400. }
  3401. func (x *WorkDesktopComprehensiveResp) Reset() {
  3402. *x = WorkDesktopComprehensiveResp{}
  3403. if protoimpl.UnsafeEnabled {
  3404. mi := &file_userCenter_proto_msgTypes[49]
  3405. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3406. ms.StoreMessageInfo(mi)
  3407. }
  3408. }
  3409. func (x *WorkDesktopComprehensiveResp) String() string {
  3410. return protoimpl.X.MessageStringOf(x)
  3411. }
  3412. func (*WorkDesktopComprehensiveResp) ProtoMessage() {}
  3413. func (x *WorkDesktopComprehensiveResp) ProtoReflect() protoreflect.Message {
  3414. mi := &file_userCenter_proto_msgTypes[49]
  3415. if protoimpl.UnsafeEnabled && x != nil {
  3416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3417. if ms.LoadMessageInfo() == nil {
  3418. ms.StoreMessageInfo(mi)
  3419. }
  3420. return ms
  3421. }
  3422. return mi.MessageOf(x)
  3423. }
  3424. // Deprecated: Use WorkDesktopComprehensiveResp.ProtoReflect.Descriptor instead.
  3425. func (*WorkDesktopComprehensiveResp) Descriptor() ([]byte, []int) {
  3426. return file_userCenter_proto_rawDescGZIP(), []int{49}
  3427. }
  3428. func (x *WorkDesktopComprehensiveResp) GetErrorCode() int64 {
  3429. if x != nil {
  3430. return x.ErrorCode
  3431. }
  3432. return 0
  3433. }
  3434. func (x *WorkDesktopComprehensiveResp) GetErrorMsg() string {
  3435. if x != nil {
  3436. return x.ErrorMsg
  3437. }
  3438. return ""
  3439. }
  3440. func (x *WorkDesktopComprehensiveResp) GetData() []*ThreeLevelMenu {
  3441. if x != nil {
  3442. return x.Data
  3443. }
  3444. return nil
  3445. }
  3446. //清除用户功能相关内存信息
  3447. type WorkDesktopClearUserInfoReq struct {
  3448. state protoimpl.MessageState
  3449. sizeCache protoimpl.SizeCache
  3450. unknownFields protoimpl.UnknownFields
  3451. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
  3452. AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"`
  3453. Platform string `protobuf:"bytes,3,opt,name=platform,proto3" json:"platform,omitempty"`
  3454. UserIds string `protobuf:"bytes,4,opt,name=userIds,proto3" json:"userIds,omitempty"`
  3455. NewUserId string `protobuf:"bytes,5,opt,name=newUserId,proto3" json:"newUserId,omitempty"`
  3456. }
  3457. func (x *WorkDesktopClearUserInfoReq) Reset() {
  3458. *x = WorkDesktopClearUserInfoReq{}
  3459. if protoimpl.UnsafeEnabled {
  3460. mi := &file_userCenter_proto_msgTypes[50]
  3461. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3462. ms.StoreMessageInfo(mi)
  3463. }
  3464. }
  3465. func (x *WorkDesktopClearUserInfoReq) String() string {
  3466. return protoimpl.X.MessageStringOf(x)
  3467. }
  3468. func (*WorkDesktopClearUserInfoReq) ProtoMessage() {}
  3469. func (x *WorkDesktopClearUserInfoReq) ProtoReflect() protoreflect.Message {
  3470. mi := &file_userCenter_proto_msgTypes[50]
  3471. if protoimpl.UnsafeEnabled && x != nil {
  3472. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3473. if ms.LoadMessageInfo() == nil {
  3474. ms.StoreMessageInfo(mi)
  3475. }
  3476. return ms
  3477. }
  3478. return mi.MessageOf(x)
  3479. }
  3480. // Deprecated: Use WorkDesktopClearUserInfoReq.ProtoReflect.Descriptor instead.
  3481. func (*WorkDesktopClearUserInfoReq) Descriptor() ([]byte, []int) {
  3482. return file_userCenter_proto_rawDescGZIP(), []int{50}
  3483. }
  3484. func (x *WorkDesktopClearUserInfoReq) GetUserId() string {
  3485. if x != nil {
  3486. return x.UserId
  3487. }
  3488. return ""
  3489. }
  3490. func (x *WorkDesktopClearUserInfoReq) GetAppId() string {
  3491. if x != nil {
  3492. return x.AppId
  3493. }
  3494. return ""
  3495. }
  3496. func (x *WorkDesktopClearUserInfoReq) GetPlatform() string {
  3497. if x != nil {
  3498. return x.Platform
  3499. }
  3500. return ""
  3501. }
  3502. func (x *WorkDesktopClearUserInfoReq) GetUserIds() string {
  3503. if x != nil {
  3504. return x.UserIds
  3505. }
  3506. return ""
  3507. }
  3508. func (x *WorkDesktopClearUserInfoReq) GetNewUserId() string {
  3509. if x != nil {
  3510. return x.NewUserId
  3511. }
  3512. return ""
  3513. }
  3514. var File_userCenter_proto protoreflect.FileDescriptor
  3515. var file_userCenter_proto_rawDesc = []byte{
  3516. 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f,
  3517. 0x74, 0x6f, 0x22, 0xd8, 0x02, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65,
  3518. 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  3519. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43,
  3520. 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69,
  3521. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d,
  3522. 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e,
  3523. 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73,
  3524. 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73,
  3525. 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74,
  3526. 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63,
  3527. 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x72, 0x67,
  3528. 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20,
  3529. 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  3530. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79,
  3531. 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50,
  3532. 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x4e,
  3533. 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x4e,
  3534. 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  3535. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e,
  3536. 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  3537. 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64,
  3538. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x6b, 0x0a,
  3539. 0x0b, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a,
  3540. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  3541. 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65,
  3542. 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  3543. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  3544. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68,
  3545. 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3b, 0x0a, 0x0b, 0x45, 0x6e,
  3546. 0x74, 0x41, 0x75, 0x74, 0x68, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61,
  3547. 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
  3548. 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  3549. 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x92, 0x01, 0x0a, 0x0a, 0x45, 0x78, 0x61, 0x6d,
  3550. 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x45, 0x6e, 0x74, 0x49, 0x64, 0x18,
  3551. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x45, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08,
  3552. 0x41, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  3553. 0x41, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x61, 0x73,
  3554. 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e,
  3555. 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x75, 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x18, 0x04, 0x20,
  3556. 0x01, 0x28, 0x09, 0x52, 0x09, 0x41, 0x75, 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1c,
  3557. 0x0a, 0x09, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28,
  3558. 0x09, 0x52, 0x09, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x6b, 0x0a, 0x0b,
  3559. 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65,
  3560. 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  3561. 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72,
  3562. 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65,
  3563. 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
  3564. 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x44,
  3565. 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x25, 0x0a, 0x0b, 0x45, 0x78, 0x61,
  3566. 0x6d, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74,
  3567. 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  3568. 0x22, 0x90, 0x03, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12,
  3569. 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
  3570. 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x02,
  3571. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a,
  3572. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  3573. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65,
  3574. 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63,
  3575. 0x72, 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x63, 0x72, 0x65,
  3576. 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01,
  3577. 0x28, 0x09, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54,
  3578. 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x64,
  3579. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x72, 0x65, 0x61,
  3580. 0x74, 0x65, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74,
  3581. 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61,
  3582. 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x76, 0x61, 0x6c,
  3583. 0x69, 0x64, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
  3584. 0x09, 0x52, 0x0e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d,
  3585. 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d,
  3586. 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x45, 0x6e,
  3587. 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53,
  3588. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x66, 0x72, 0x6f,
  3589. 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67,
  3590. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67,
  3591. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f,
  3592. 0x6e, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68,
  3593. 0x6f, 0x6e, 0x65, 0x22, 0x67, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  3594. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  3595. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  3596. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  3597. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1c,
  3598. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45,
  3599. 0x6e, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x59, 0x0a, 0x07,
  3600. 0x45, 0x6e, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  3601. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a,
  3602. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3603. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1c, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  3604. 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73,
  3605. 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xfd, 0x01, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x4c,
  3606. 0x69, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  3607. 0x02, 0x69, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54, 0x79,
  3608. 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e,
  3609. 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20,
  3610. 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x72, 0x67,
  3611. 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20,
  3612. 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  3613. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x74,
  3614. 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
  3615. 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x69,
  3616. 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54,
  3617. 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75,
  3618. 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61,
  3619. 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61,
  3620. 0x74, 0x75, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65,
  3621. 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xf8, 0x01, 0x0a, 0x0e, 0x45, 0x78, 0x61, 0x6d,
  3622. 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
  3623. 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c,
  3624. 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  3625. 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  3626. 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  3627. 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68,
  3628. 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68,
  3629. 0x54, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x72,
  3630. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x75, 0x74,
  3631. 0x68, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x75,
  3632. 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  3633. 0x0b, 0x61, 0x75, 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07,
  3634. 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70,
  3635. 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
  3636. 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
  3637. 0x7a, 0x65, 0x22, 0x73, 0x0a, 0x0f, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73,
  3638. 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63,
  3639. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  3640. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73,
  3641. 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73,
  3642. 0x67, 0x12, 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
  3643. 0x10, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74,
  3644. 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x65, 0x0a, 0x0f, 0x45, 0x78, 0x61, 0x6d, 0x69,
  3645. 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f,
  3646. 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  3647. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01,
  3648. 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x20, 0x0a, 0x04,
  3649. 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x78, 0x61,
  3650. 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xfd,
  3651. 0x01, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e,
  3652. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14,
  3653. 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65,
  3654. 0x6e, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54,
  3655. 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61,
  3656. 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04,
  3657. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72,
  3658. 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  3659. 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75,
  3660. 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
  3661. 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x6c,
  3662. 0x79, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x70, 0x70,
  3663. 0x6c, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79,
  3664. 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79,
  3665. 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x09,
  3666. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x23,
  3667. 0x0a, 0x0b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a,
  3668. 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e,
  3669. 0x74, 0x49, 0x64, 0x22, 0x6a, 0x0a, 0x0c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52,
  3670. 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64,
  3671. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f,
  3672. 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18,
  3673. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12,
  3674. 0x1e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e,
  3675. 0x63, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22,
  3676. 0x4f, 0x0a, 0x09, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1e, 0x0a, 0x0a,
  3677. 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  3678. 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c,
  3679. 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01,
  3680. 0x28, 0x03, 0x52, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  3681. 0x22, 0x6b, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12,
  3682. 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20,
  3683. 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b,
  3684. 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28,
  3685. 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64,
  3686. 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49,
  3687. 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xd5, 0x05,
  3688. 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a,
  3689. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
  3690. 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18,
  3691. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d, 0x62, 0x65,
  3692. 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x50, 0x65, 0x72, 0x73,
  3693. 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63,
  3694. 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x61,
  3695. 0x63, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63,
  3696. 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61,
  3697. 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  3698. 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x64,
  3699. 0x75, 0x73, 0x74, 0x72, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x64,
  3700. 0x75, 0x73, 0x74, 0x72, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79,
  3701. 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x70,
  3702. 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69,
  3703. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65,
  3704. 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x65, 0x67, 0x61, 0x6c,
  3705. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x65,
  3706. 0x67, 0x61, 0x6c, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x73,
  3707. 0x69, 0x6e, 0x65, 0x73, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x75, 0x73,
  3708. 0x69, 0x6e, 0x65, 0x73, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61,
  3709. 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f,
  3710. 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a,
  3711. 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70,
  3712. 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
  3713. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74,
  3714. 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x61, 0x75, 0x74,
  3715. 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x6f, 0x72, 0x7a, 0x65, 0x6e, 0x53,
  3716. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x66, 0x6f, 0x72,
  3717. 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x64,
  3718. 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75,
  3719. 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x64, 0x69, 0x74,
  3720. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x64, 0x69,
  3721. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54,
  3722. 0x69, 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
  3723. 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61,
  3724. 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x75,
  3725. 0x74, 0x68, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61,
  3726. 0x75, 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09,
  3727. 0x52, 0x0b, 0x61, 0x75, 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a,
  3728. 0x0a, 0x61, 0x75, 0x74, 0x68, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28,
  3729. 0x09, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x1a, 0x0a,
  3730. 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52,
  3731. 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67,
  3732. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67,
  3733. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x44, 0x0a, 0x0c, 0x45, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61,
  3734. 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01,
  3735. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x75,
  3736. 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3737. 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x22, 0x2f, 0x0a, 0x0f, 0x43,
  3738. 0x68, 0x65, 0x63, 0x6b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1c,
  3739. 0x0a, 0x09, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  3740. 0x03, 0x52, 0x09, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x3e, 0x0a, 0x12,
  3741. 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
  3742. 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3743. 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18,
  3744. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x77, 0x0a, 0x13,
  3745. 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
  3746. 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64,
  3747. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f,
  3748. 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18,
  3749. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12,
  3750. 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e,
  3751. 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
  3752. 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xc2, 0x02, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
  3753. 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  3754. 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x76, 0x69, 0x70, 0x53,
  3755. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x76, 0x69, 0x70,
  3756. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72,
  3757. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d, 0x65,
  3758. 0x6d, 0x62, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x65, 0x6e,
  3759. 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01,
  3760. 0x28, 0x03, 0x52, 0x0e, 0x65, 0x6e, 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65, 0x53, 0x74, 0x61, 0x74,
  3761. 0x75, 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54,
  3762. 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x75, 0x62, 0x73, 0x63,
  3763. 0x72, 0x69, 0x62, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  3764. 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  3765. 0x62, 0x65, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f,
  3766. 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72,
  3767. 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63,
  3768. 0x6f, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  3769. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  3770. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  3771. 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x69, 0x6d, 0x67, 0x18, 0x0a, 0x20, 0x01, 0x28,
  3772. 0x09, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x69, 0x6d, 0x67, 0x22, 0xc7, 0x02, 0x0a, 0x09, 0x53,
  3773. 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72,
  3774. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x73, 0x74, 0x61,
  3775. 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d,
  3776. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
  3777. 0x12, 0x28, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14,
  3778. 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e, 0x41, 0x72, 0x65, 0x61, 0x45,
  3779. 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x1e, 0x0a, 0x0a, 0x62, 0x75,
  3780. 0x79, 0x65, 0x72, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a,
  3781. 0x62, 0x75, 0x79, 0x65, 0x72, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e,
  3782. 0x66, 0x6f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e,
  3783. 0x66, 0x6f, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18,
  3784. 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x52, 0x05, 0x69,
  3785. 0x74, 0x65, 0x6d, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79,
  3786. 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79,
  3787. 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x6d, 0x61, 0x74, 0x63, 0x68,
  3788. 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x6d,
  3789. 0x61, 0x74, 0x63, 0x68, 0x1a, 0x3e, 0x0a, 0x09, 0x41, 0x72, 0x65, 0x61, 0x45, 0x6e, 0x74, 0x72,
  3790. 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  3791. 0x6b, 0x65, 0x79, 0x12, 0x1b, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
  3792. 0x28, 0x0b, 0x32, 0x05, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  3793. 0x3a, 0x02, 0x38, 0x01, 0x22, 0x1c, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05,
  3794. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c,
  3795. 0x75, 0x65, 0x22, 0x5a, 0x0a, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x73,
  3796. 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x49, 0x74,
  3797. 0x65, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
  3798. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69,
  3799. 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x05, 0x61, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x03, 0x28,
  3800. 0x0b, 0x32, 0x05, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x52, 0x04, 0x61, 0x4b, 0x65, 0x79, 0x22, 0x6c,
  3801. 0x0a, 0x04, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
  3802. 0x03, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x74, 0x6b,
  3803. 0x65, 0x79, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x6f, 0x74, 0x6b, 0x65, 0x79,
  3804. 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03,
  3805. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
  3806. 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79, 0x18, 0x04, 0x20, 0x01,
  3807. 0x28, 0x03, 0x52, 0x08, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79, 0x22, 0x4d, 0x0a, 0x07,
  3808. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64,
  3809. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x16, 0x0a,
  3810. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75,
  3811. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x03,
  3812. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x79, 0x70, 0x65, 0x73, 0x22, 0x56, 0x0a, 0x0a, 0x45,
  3813. 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70,
  3814. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12,
  3815. 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01,
  3816. 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a,
  3817. 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e,
  3818. 0x74, 0x49, 0x64, 0x22, 0x67, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  3819. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  3820. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  3821. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  3822. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1c,
  3823. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45,
  3824. 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x81, 0x01, 0x0a,
  3825. 0x07, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x4e, 0x61, 0x6d, 0x65,
  3826. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05,
  3827. 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f,
  3828. 0x6e, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  3829. 0x52, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4e, 0x61,
  3830. 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4e, 0x61,
  3831. 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  3832. 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
  3833. 0x22, 0x68, 0x0a, 0x0e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52,
  3834. 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  3835. 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49,
  3836. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x16,
  3837. 0x0a, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  3838. 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04,
  3839. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x73, 0x0a, 0x0f, 0x45, 0x6e,
  3840. 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a,
  3841. 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  3842. 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  3843. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  3844. 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74,
  3845. 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65,
  3846. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22,
  3847. 0xa9, 0x01, 0x0a, 0x0f, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44,
  3848. 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  3849. 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49,
  3850. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x12,
  3851. 0x10, 0x0a, 0x03, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x70, 0x49,
  3852. 0x64, 0x12, 0x2a, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  3853. 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
  3854. 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2c, 0x0a,
  3855. 0x08, 0x64, 0x65, 0x70, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32,
  3856. 0x10, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74,
  3857. 0x61, 0x52, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x69, 0x0a, 0x13, 0x43,
  3858. 0x68, 0x65, 0x63, 0x6b, 0x49, 0x73, 0x45, 0x6e, 0x74, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65,
  3859. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  3860. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  3861. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  3862. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x16,
  3863. 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  3864. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x4b, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61,
  3865. 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74,
  3866. 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x61,
  3867. 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x49,
  3868. 0x6e, 0x45, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x49, 0x6e,
  3869. 0x45, 0x6e, 0x74, 0x22, 0x90, 0x02, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x52,
  3870. 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  3871. 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e,
  3872. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a,
  3873. 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  3874. 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65,
  3875. 0x61, 0x64, 0x69, 0x6d, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x61,
  3876. 0x64, 0x69, 0x6d, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x18,
  3877. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x12, 0x1a,
  3878. 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  3879. 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61,
  3880. 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61,
  3881. 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x5f, 0x6f, 0x70, 0x65, 0x6e,
  3882. 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x69,
  3883. 0x64, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x18, 0x09, 0x20,
  3884. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x4f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07,
  3885. 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75,
  3886. 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x22, 0x68, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64,
  3887. 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63,
  3888. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  3889. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73,
  3890. 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73,
  3891. 0x67, 0x12, 0x1d, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
  3892. 0x09, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61,
  3893. 0x22, 0x32, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x73, 0x12, 0x16, 0x0a, 0x06,
  3894. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74,
  3895. 0x61, 0x74, 0x75, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  3896. 0x52, 0x02, 0x69, 0x64, 0x22, 0x9f, 0x02, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x52,
  3897. 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  3898. 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02,
  3899. 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e,
  3900. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a,
  3901. 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  3902. 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65,
  3903. 0x61, 0x64, 0x69, 0x6d, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x61,
  3904. 0x64, 0x69, 0x6d, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x18,
  3905. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x12, 0x1a,
  3906. 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  3907. 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61,
  3908. 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61,
  3909. 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x5f, 0x6f, 0x70, 0x65, 0x6e,
  3910. 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x69,
  3911. 0x64, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x18, 0x0a, 0x20,
  3912. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x4f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07,
  3913. 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75,
  3914. 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x22, 0xee, 0x01, 0x0a, 0x16, 0x57, 0x6f, 0x72, 0x6b, 0x44,
  3915. 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  3916. 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  3917. 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70,
  3918. 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12,
  3919. 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28,
  3920. 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x70,
  3921. 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e,
  3922. 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x05,
  3923. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12,
  3924. 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05,
  3925. 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
  3926. 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65,
  3927. 0x72, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e, 0x74, 0x72, 0x61, 0x6e, 0x65, 0x74, 0x42,
  3928. 0x6f, 0x6f, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x6e, 0x74, 0x72, 0x61,
  3929. 0x6e, 0x65, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x22, 0x74, 0x0a, 0x17, 0x57, 0x6f, 0x72, 0x6b, 0x44,
  3930. 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  3931. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  3932. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  3933. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  3934. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d,
  3935. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x4d,
  3936. 0x65, 0x6e, 0x75, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x4d, 0x0a,
  3937. 0x08, 0x4d, 0x65, 0x6e, 0x75, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x65, 0x6e,
  3938. 0x75, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x65, 0x6e,
  3939. 0x75, 0x54, 0x79, 0x70, 0x65, 0x12, 0x25, 0x0a, 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4c, 0x69, 0x73,
  3940. 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x4d, 0x65, 0x6e, 0x75, 0x4c, 0x69,
  3941. 0x73, 0x74, 0x52, 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x84, 0x02, 0x0a,
  3942. 0x08, 0x4d, 0x65, 0x6e, 0x75, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
  3943. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a,
  3944. 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x69, 0x63, 0x6f,
  3945. 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  3946. 0x75, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x04, 0x20,
  3947. 0x01, 0x28, 0x08, 0x52, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  3948. 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61,
  3949. 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70,
  3950. 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70,
  3951. 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70,
  3952. 0x65, 0x12, 0x22, 0x0a, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x08, 0x20, 0x01,
  3953. 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x54, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x74, 0x69,
  3954. 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x26, 0x0a, 0x05, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x18, 0x09,
  3955. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x4c, 0x65, 0x76,
  3956. 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x52, 0x05, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x12, 0x14, 0x0a,
  3957. 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x61,
  3958. 0x74, 0x63, 0x68, 0x22, 0x8a, 0x02, 0x0a, 0x0f, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x4c, 0x65,
  3959. 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  3960. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x69,
  3961. 0x63, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x12,
  3962. 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72,
  3963. 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
  3964. 0x08, 0x52, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  3965. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70,
  3966. 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x54,
  3967. 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18,
  3968. 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12,
  3969. 0x22, 0x0a, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b,
  3970. 0x32, 0x08, 0x2e, 0x54, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x74, 0x69, 0x70, 0x49,
  3971. 0x6e, 0x66, 0x6f, 0x12, 0x25, 0x0a, 0x05, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x18, 0x09, 0x20, 0x03,
  3972. 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x54, 0x68, 0x72, 0x65, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d,
  3973. 0x65, 0x6e, 0x75, 0x52, 0x05, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x61,
  3974. 0x74, 0x63, 0x68, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68,
  3975. 0x22, 0xe2, 0x01, 0x0a, 0x0e, 0x54, 0x68, 0x72, 0x65, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d,
  3976. 0x65, 0x6e, 0x75, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  3977. 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18,
  3978. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x75,
  3979. 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x16, 0x0a,
  3980. 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x75,
  3981. 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28,
  3982. 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65,
  3983. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12,
  3984. 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
  3985. 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x07, 0x74,
  3986. 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x54,
  3987. 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  3988. 0x14, 0x0a, 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05,
  3989. 0x6d, 0x61, 0x74, 0x63, 0x68, 0x22, 0xd5, 0x01, 0x0a, 0x07, 0x54, 0x69, 0x70, 0x49, 0x6e, 0x66,
  3990. 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3991. 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65,
  3992. 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
  3993. 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x55, 0x72, 0x6c, 0x18,
  3994. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x55, 0x72,
  3995. 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x65, 0x78, 0x74,
  3996. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x54,
  3997. 0x65, 0x78, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x43, 0x61, 0x6e,
  3998. 0x63, 0x65, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x73, 0x53, 0x68, 0x6f,
  3999. 0x77, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79,
  4000. 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70,
  4001. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20,
  4002. 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0xa5, 0x02,
  4003. 0x0a, 0x1b, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d,
  4004. 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a,
  4005. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
  4006. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02,
  4007. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  4008. 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  4009. 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65,
  4010. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1e, 0x0a,
  4011. 0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
  4012. 0x09, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x1a, 0x0a,
  4013. 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  4014. 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x6e,
  4015. 0x75, 0x49, 0x64, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x6e, 0x75,
  4016. 0x49, 0x64, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
  4017. 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49,
  4018. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03,
  4019. 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73,
  4020. 0x65, 0x72, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55,
  4021. 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x7f, 0x0a, 0x1c, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73,
  4022. 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76,
  4023. 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63,
  4024. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  4025. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73,
  4026. 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73,
  4027. 0x67, 0x12, 0x23, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
  4028. 0x0f, 0x2e, 0x54, 0x68, 0x72, 0x65, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75,
  4029. 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x9f, 0x01, 0x0a, 0x1b, 0x57, 0x6f, 0x72, 0x6b, 0x44,
  4030. 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49,
  4031. 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  4032. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14,
  4033. 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61,
  4034. 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d,
  4035. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d,
  4036. 0x12, 0x18, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28,
  4037. 0x09, 0x52, 0x07, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x65,
  4038. 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e,
  4039. 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x32, 0xc5, 0x07, 0x0a, 0x0a, 0x55, 0x73, 0x65,
  4040. 0x72, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x41, 0x75,
  4041. 0x74, 0x68, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x71, 0x1a,
  4042. 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a,
  4043. 0x0a, 0x45, 0x6e, 0x74, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x12, 0x0b, 0x2e, 0x45, 0x78,
  4044. 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69,
  4045. 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x24, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73,
  4046. 0x74, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0c,
  4047. 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x30, 0x0a, 0x0b,
  4048. 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x45, 0x78,
  4049. 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x45,
  4050. 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27,
  4051. 0x0a, 0x08, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x12, 0x0c, 0x2e, 0x43, 0x68, 0x65,
  4052. 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0d, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
  4053. 0x45, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x25, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x49, 0x6e,
  4054. 0x66, 0x6f, 0x12, 0x0c, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71,
  4055. 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x28,
  4056. 0x0a, 0x09, 0x45, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x0d, 0x2e, 0x45, 0x6e,
  4057. 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61,
  4058. 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d,
  4059. 0x69, 0x6e, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x10, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45,
  4060. 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49,
  4061. 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3c, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x74,
  4062. 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x13, 0x2e, 0x47, 0x65, 0x74,
  4063. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x1a,
  4064. 0x14, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64,
  4065. 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x24, 0x0a, 0x07, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64,
  4066. 0x12, 0x0b, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e,
  4067. 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x26, 0x0a, 0x0a, 0x55,
  4068. 0x73, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x0a, 0x2e, 0x55, 0x73, 0x65, 0x72,
  4069. 0x49, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52,
  4070. 0x65, 0x73, 0x70, 0x12, 0x23, 0x0a, 0x07, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x12, 0x0a,
  4071. 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61,
  4072. 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x48, 0x0a, 0x13, 0x57, 0x6f, 0x72, 0x6b,
  4073. 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  4074. 0x17, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e,
  4075. 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44,
  4076. 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  4077. 0x73, 0x70, 0x12, 0x57, 0x0a, 0x18, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f,
  4078. 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x12, 0x1c,
  4079. 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70,
  4080. 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x57,
  4081. 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65,
  4082. 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x57, 0x0a, 0x18, 0x57,
  4083. 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55,
  4084. 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65,
  4085. 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
  4086. 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b,
  4087. 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65,
  4088. 0x52, 0x65, 0x73, 0x70, 0x12, 0x22, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49,
  4089. 0x6e, 0x66, 0x6f, 0x12, 0x08, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x09, 0x2e,
  4090. 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2b, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x45,
  4091. 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74,
  4092. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65,
  4093. 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x33, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x55,
  4094. 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65,
  4095. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73,
  4096. 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x34, 0x0a, 0x0f, 0x43, 0x68,
  4097. 0x65, 0x63, 0x6b, 0x49, 0x73, 0x45, 0x6e, 0x74, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x12, 0x0b, 0x2e,
  4098. 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x14, 0x2e, 0x43, 0x68, 0x65,
  4099. 0x63, 0x6b, 0x49, 0x73, 0x45, 0x6e, 0x74, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70,
  4100. 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  4101. }
  4102. var (
  4103. file_userCenter_proto_rawDescOnce sync.Once
  4104. file_userCenter_proto_rawDescData = file_userCenter_proto_rawDesc
  4105. )
  4106. func file_userCenter_proto_rawDescGZIP() []byte {
  4107. file_userCenter_proto_rawDescOnce.Do(func() {
  4108. file_userCenter_proto_rawDescData = protoimpl.X.CompressGZIP(file_userCenter_proto_rawDescData)
  4109. })
  4110. return file_userCenter_proto_rawDescData
  4111. }
  4112. var file_userCenter_proto_msgTypes = make([]protoimpl.MessageInfo, 52)
  4113. var file_userCenter_proto_goTypes = []interface{}{
  4114. (*EntAuthReq)(nil), // 0: EntAuthReq
  4115. (*EntAuthResp)(nil), // 1: EntAuthResp
  4116. (*EntAuthData)(nil), // 2: EntAuthData
  4117. (*ExamineReq)(nil), // 3: ExamineReq
  4118. (*ExamineResp)(nil), // 4: ExamineResp
  4119. (*ExamineData)(nil), // 5: ExamineData
  4120. (*EntListReq)(nil), // 6: EntListReq
  4121. (*EntListResp)(nil), // 7: EntListResp
  4122. (*EntData)(nil), // 8: EntData
  4123. (*EntList)(nil), // 9: EntList
  4124. (*ExamineListReq)(nil), // 10: ExamineListReq
  4125. (*ExamineListResp)(nil), // 11: ExamineListResp
  4126. (*ExamineListData)(nil), // 12: ExamineListData
  4127. (*ExamineList)(nil), // 13: ExamineList
  4128. (*CheckEntReq)(nil), // 14: CheckEntReq
  4129. (*CheckEntResp)(nil), // 15: CheckEntResp
  4130. (*CheckData)(nil), // 16: checkData
  4131. (*EntInfoResp)(nil), // 17: EntInfoResp
  4132. (*EntInfoData)(nil), // 18: EntInfoData
  4133. (*EntUpdateReq)(nil), // 19: EntUpdateReq
  4134. (*CheckExamineReq)(nil), // 20: CheckExamineReq
  4135. (*GetStatusByCodeReq)(nil), // 21: GetStatusByCodeReq
  4136. (*GetStatusByCodeResp)(nil), // 22: GetStatusByCodeResp
  4137. (*UserInfo)(nil), // 23: UserInfo
  4138. (*Subscribe)(nil), // 24: Subscribe
  4139. (*List)(nil), // 25: List
  4140. (*Items)(nil), // 26: Items
  4141. (*Keys)(nil), // 27: Keys
  4142. (*UserReq)(nil), // 28: UserReq
  4143. (*EntUserReq)(nil), // 29: EntUserReq
  4144. (*EntUserResp)(nil), // 30: EntUserResp
  4145. (*EntUser)(nil), // 31: EntUser
  4146. (*EntUserListReq)(nil), // 32: EntUserListReq
  4147. (*EntUserListResp)(nil), // 33: EntUserListResp
  4148. (*EntUserListData)(nil), // 34: EntUserListData
  4149. (*CheckIsEntAdminResp)(nil), // 35: CheckIsEntAdminResp
  4150. (*GetStatusByCode)(nil), // 36: GetStatusByCode
  4151. (*UserAddReq)(nil), // 37: UserAddReq
  4152. (*UserAddResp)(nil), // 38: UserAddResp
  4153. (*UserAdds)(nil), // 39: UserAdds
  4154. (*UserIdReq)(nil), // 40: UserIdReq
  4155. (*WorkDesktopMenuInfoReq)(nil), // 41: WorkDesktopMenuInfoReq
  4156. (*WorkDesktopMenuInfoResp)(nil), // 42: WorkDesktopMenuInfoResp
  4157. (*MenuData)(nil), // 43: MenuData
  4158. (*MenuList)(nil), // 44: MenuList
  4159. (*SecondLevelMenu)(nil), // 45: SecondLevelMenu
  4160. (*ThreeLevelMenu)(nil), // 46: ThreeLevelMenu
  4161. (*TipInfo)(nil), // 47: TipInfo
  4162. (*WorkDesktopComprehensiveReq)(nil), // 48: WorkDesktopComprehensiveReq
  4163. (*WorkDesktopComprehensiveResp)(nil), // 49: WorkDesktopComprehensiveResp
  4164. (*WorkDesktopClearUserInfoReq)(nil), // 50: WorkDesktopClearUserInfoReq
  4165. nil, // 51: Subscribe.AreaEntry
  4166. }
  4167. var file_userCenter_proto_depIdxs = []int32{
  4168. 2, // 0: EntAuthResp.data:type_name -> EntAuthData
  4169. 5, // 1: ExamineResp.data:type_name -> ExamineData
  4170. 8, // 2: EntListResp.data:type_name -> EntData
  4171. 9, // 3: EntData.list:type_name -> EntList
  4172. 12, // 4: ExamineListResp.data:type_name -> ExamineListData
  4173. 13, // 5: ExamineListData.list:type_name -> ExamineList
  4174. 16, // 6: CheckEntResp.data:type_name -> checkData
  4175. 18, // 7: EntInfoResp.data:type_name -> EntInfoData
  4176. 36, // 8: GetStatusByCodeResp.data:type_name -> GetStatusByCode
  4177. 24, // 9: UserInfo.data:type_name -> Subscribe
  4178. 51, // 10: Subscribe.area:type_name -> Subscribe.AreaEntry
  4179. 26, // 11: Subscribe.items:type_name -> Items
  4180. 27, // 12: Items.a_key:type_name -> Keys
  4181. 31, // 13: EntUserResp.data:type_name -> EntUser
  4182. 34, // 14: EntUserListResp.data:type_name -> EntUserListData
  4183. 31, // 15: EntUserListData.entUserList:type_name -> EntUser
  4184. 34, // 16: EntUserListData.deptList:type_name -> EntUserListData
  4185. 39, // 17: UserAddResp.data:type_name -> UserAdds
  4186. 43, // 18: WorkDesktopMenuInfoResp.data:type_name -> MenuData
  4187. 44, // 19: MenuData.menuList:type_name -> MenuList
  4188. 47, // 20: MenuList.tipInfo:type_name -> TipInfo
  4189. 45, // 21: MenuList.child:type_name -> SecondLevelMenu
  4190. 47, // 22: SecondLevelMenu.tipInfo:type_name -> TipInfo
  4191. 46, // 23: SecondLevelMenu.child:type_name -> ThreeLevelMenu
  4192. 47, // 24: ThreeLevelMenu.tipInfo:type_name -> TipInfo
  4193. 46, // 25: WorkDesktopComprehensiveResp.data:type_name -> ThreeLevelMenu
  4194. 25, // 26: Subscribe.AreaEntry.value:type_name -> List
  4195. 0, // 27: UserCenter.EntAuth:input_type -> EntAuthReq
  4196. 3, // 28: UserCenter.EntExamine:input_type -> ExamineReq
  4197. 6, // 29: UserCenter.EntList:input_type -> EntListReq
  4198. 10, // 30: UserCenter.ExamineList:input_type -> ExamineListReq
  4199. 14, // 31: UserCenter.CheckEnt:input_type -> CheckEntReq
  4200. 14, // 32: UserCenter.EntInfo:input_type -> CheckEntReq
  4201. 19, // 33: UserCenter.EntUpdate:input_type -> EntUpdateReq
  4202. 20, // 34: UserCenter.ExamineInfo:input_type -> CheckExamineReq
  4203. 21, // 35: UserCenter.GetStatusByCode:input_type -> GetStatusByCodeReq
  4204. 37, // 36: UserCenter.UserAdd:input_type -> UserAddReq
  4205. 40, // 37: UserCenter.UserUpdate:input_type -> UserIdReq
  4206. 40, // 38: UserCenter.UserDel:input_type -> UserIdReq
  4207. 41, // 39: UserCenter.WorkDesktopMenuInfo:input_type -> WorkDesktopMenuInfoReq
  4208. 48, // 40: UserCenter.WorkDesktopComprehensive:input_type -> WorkDesktopComprehensiveReq
  4209. 50, // 41: UserCenter.WorkDesktopClearUserInfo:input_type -> WorkDesktopClearUserInfoReq
  4210. 28, // 42: UserCenter.GetUserInfo:input_type -> UserReq
  4211. 29, // 43: UserCenter.GetEntUserInfo:input_type -> EntUserReq
  4212. 32, // 44: UserCenter.GetEntUserList:input_type -> EntUserListReq
  4213. 29, // 45: UserCenter.CheckIsEntAdmin:input_type -> EntUserReq
  4214. 1, // 46: UserCenter.EntAuth:output_type -> EntAuthResp
  4215. 4, // 47: UserCenter.EntExamine:output_type -> ExamineResp
  4216. 7, // 48: UserCenter.EntList:output_type -> EntListResp
  4217. 11, // 49: UserCenter.ExamineList:output_type -> ExamineListResp
  4218. 15, // 50: UserCenter.CheckEnt:output_type -> CheckEntResp
  4219. 17, // 51: UserCenter.EntInfo:output_type -> EntInfoResp
  4220. 4, // 52: UserCenter.EntUpdate:output_type -> ExamineResp
  4221. 17, // 53: UserCenter.ExamineInfo:output_type -> EntInfoResp
  4222. 22, // 54: UserCenter.GetStatusByCode:output_type -> GetStatusByCodeResp
  4223. 38, // 55: UserCenter.UserAdd:output_type -> UserAddResp
  4224. 4, // 56: UserCenter.UserUpdate:output_type -> ExamineResp
  4225. 4, // 57: UserCenter.UserDel:output_type -> ExamineResp
  4226. 42, // 58: UserCenter.WorkDesktopMenuInfo:output_type -> WorkDesktopMenuInfoResp
  4227. 49, // 59: UserCenter.WorkDesktopComprehensive:output_type -> WorkDesktopComprehensiveResp
  4228. 49, // 60: UserCenter.WorkDesktopClearUserInfo:output_type -> WorkDesktopComprehensiveResp
  4229. 23, // 61: UserCenter.GetUserInfo:output_type -> UserInfo
  4230. 30, // 62: UserCenter.GetEntUserInfo:output_type -> EntUserResp
  4231. 33, // 63: UserCenter.GetEntUserList:output_type -> EntUserListResp
  4232. 35, // 64: UserCenter.CheckIsEntAdmin:output_type -> CheckIsEntAdminResp
  4233. 46, // [46:65] is the sub-list for method output_type
  4234. 27, // [27:46] is the sub-list for method input_type
  4235. 27, // [27:27] is the sub-list for extension type_name
  4236. 27, // [27:27] is the sub-list for extension extendee
  4237. 0, // [0:27] is the sub-list for field type_name
  4238. }
  4239. func init() { file_userCenter_proto_init() }
  4240. func file_userCenter_proto_init() {
  4241. if File_userCenter_proto != nil {
  4242. return
  4243. }
  4244. if !protoimpl.UnsafeEnabled {
  4245. file_userCenter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  4246. switch v := v.(*EntAuthReq); i {
  4247. case 0:
  4248. return &v.state
  4249. case 1:
  4250. return &v.sizeCache
  4251. case 2:
  4252. return &v.unknownFields
  4253. default:
  4254. return nil
  4255. }
  4256. }
  4257. file_userCenter_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  4258. switch v := v.(*EntAuthResp); i {
  4259. case 0:
  4260. return &v.state
  4261. case 1:
  4262. return &v.sizeCache
  4263. case 2:
  4264. return &v.unknownFields
  4265. default:
  4266. return nil
  4267. }
  4268. }
  4269. file_userCenter_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  4270. switch v := v.(*EntAuthData); i {
  4271. case 0:
  4272. return &v.state
  4273. case 1:
  4274. return &v.sizeCache
  4275. case 2:
  4276. return &v.unknownFields
  4277. default:
  4278. return nil
  4279. }
  4280. }
  4281. file_userCenter_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  4282. switch v := v.(*ExamineReq); i {
  4283. case 0:
  4284. return &v.state
  4285. case 1:
  4286. return &v.sizeCache
  4287. case 2:
  4288. return &v.unknownFields
  4289. default:
  4290. return nil
  4291. }
  4292. }
  4293. file_userCenter_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  4294. switch v := v.(*ExamineResp); i {
  4295. case 0:
  4296. return &v.state
  4297. case 1:
  4298. return &v.sizeCache
  4299. case 2:
  4300. return &v.unknownFields
  4301. default:
  4302. return nil
  4303. }
  4304. }
  4305. file_userCenter_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  4306. switch v := v.(*ExamineData); i {
  4307. case 0:
  4308. return &v.state
  4309. case 1:
  4310. return &v.sizeCache
  4311. case 2:
  4312. return &v.unknownFields
  4313. default:
  4314. return nil
  4315. }
  4316. }
  4317. file_userCenter_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  4318. switch v := v.(*EntListReq); i {
  4319. case 0:
  4320. return &v.state
  4321. case 1:
  4322. return &v.sizeCache
  4323. case 2:
  4324. return &v.unknownFields
  4325. default:
  4326. return nil
  4327. }
  4328. }
  4329. file_userCenter_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  4330. switch v := v.(*EntListResp); i {
  4331. case 0:
  4332. return &v.state
  4333. case 1:
  4334. return &v.sizeCache
  4335. case 2:
  4336. return &v.unknownFields
  4337. default:
  4338. return nil
  4339. }
  4340. }
  4341. file_userCenter_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  4342. switch v := v.(*EntData); i {
  4343. case 0:
  4344. return &v.state
  4345. case 1:
  4346. return &v.sizeCache
  4347. case 2:
  4348. return &v.unknownFields
  4349. default:
  4350. return nil
  4351. }
  4352. }
  4353. file_userCenter_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  4354. switch v := v.(*EntList); i {
  4355. case 0:
  4356. return &v.state
  4357. case 1:
  4358. return &v.sizeCache
  4359. case 2:
  4360. return &v.unknownFields
  4361. default:
  4362. return nil
  4363. }
  4364. }
  4365. file_userCenter_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  4366. switch v := v.(*ExamineListReq); i {
  4367. case 0:
  4368. return &v.state
  4369. case 1:
  4370. return &v.sizeCache
  4371. case 2:
  4372. return &v.unknownFields
  4373. default:
  4374. return nil
  4375. }
  4376. }
  4377. file_userCenter_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  4378. switch v := v.(*ExamineListResp); i {
  4379. case 0:
  4380. return &v.state
  4381. case 1:
  4382. return &v.sizeCache
  4383. case 2:
  4384. return &v.unknownFields
  4385. default:
  4386. return nil
  4387. }
  4388. }
  4389. file_userCenter_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  4390. switch v := v.(*ExamineListData); i {
  4391. case 0:
  4392. return &v.state
  4393. case 1:
  4394. return &v.sizeCache
  4395. case 2:
  4396. return &v.unknownFields
  4397. default:
  4398. return nil
  4399. }
  4400. }
  4401. file_userCenter_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  4402. switch v := v.(*ExamineList); i {
  4403. case 0:
  4404. return &v.state
  4405. case 1:
  4406. return &v.sizeCache
  4407. case 2:
  4408. return &v.unknownFields
  4409. default:
  4410. return nil
  4411. }
  4412. }
  4413. file_userCenter_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  4414. switch v := v.(*CheckEntReq); i {
  4415. case 0:
  4416. return &v.state
  4417. case 1:
  4418. return &v.sizeCache
  4419. case 2:
  4420. return &v.unknownFields
  4421. default:
  4422. return nil
  4423. }
  4424. }
  4425. file_userCenter_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  4426. switch v := v.(*CheckEntResp); i {
  4427. case 0:
  4428. return &v.state
  4429. case 1:
  4430. return &v.sizeCache
  4431. case 2:
  4432. return &v.unknownFields
  4433. default:
  4434. return nil
  4435. }
  4436. }
  4437. file_userCenter_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  4438. switch v := v.(*CheckData); i {
  4439. case 0:
  4440. return &v.state
  4441. case 1:
  4442. return &v.sizeCache
  4443. case 2:
  4444. return &v.unknownFields
  4445. default:
  4446. return nil
  4447. }
  4448. }
  4449. file_userCenter_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  4450. switch v := v.(*EntInfoResp); i {
  4451. case 0:
  4452. return &v.state
  4453. case 1:
  4454. return &v.sizeCache
  4455. case 2:
  4456. return &v.unknownFields
  4457. default:
  4458. return nil
  4459. }
  4460. }
  4461. file_userCenter_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  4462. switch v := v.(*EntInfoData); i {
  4463. case 0:
  4464. return &v.state
  4465. case 1:
  4466. return &v.sizeCache
  4467. case 2:
  4468. return &v.unknownFields
  4469. default:
  4470. return nil
  4471. }
  4472. }
  4473. file_userCenter_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  4474. switch v := v.(*EntUpdateReq); i {
  4475. case 0:
  4476. return &v.state
  4477. case 1:
  4478. return &v.sizeCache
  4479. case 2:
  4480. return &v.unknownFields
  4481. default:
  4482. return nil
  4483. }
  4484. }
  4485. file_userCenter_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  4486. switch v := v.(*CheckExamineReq); i {
  4487. case 0:
  4488. return &v.state
  4489. case 1:
  4490. return &v.sizeCache
  4491. case 2:
  4492. return &v.unknownFields
  4493. default:
  4494. return nil
  4495. }
  4496. }
  4497. file_userCenter_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  4498. switch v := v.(*GetStatusByCodeReq); i {
  4499. case 0:
  4500. return &v.state
  4501. case 1:
  4502. return &v.sizeCache
  4503. case 2:
  4504. return &v.unknownFields
  4505. default:
  4506. return nil
  4507. }
  4508. }
  4509. file_userCenter_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  4510. switch v := v.(*GetStatusByCodeResp); i {
  4511. case 0:
  4512. return &v.state
  4513. case 1:
  4514. return &v.sizeCache
  4515. case 2:
  4516. return &v.unknownFields
  4517. default:
  4518. return nil
  4519. }
  4520. }
  4521. file_userCenter_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  4522. switch v := v.(*UserInfo); i {
  4523. case 0:
  4524. return &v.state
  4525. case 1:
  4526. return &v.sizeCache
  4527. case 2:
  4528. return &v.unknownFields
  4529. default:
  4530. return nil
  4531. }
  4532. }
  4533. file_userCenter_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  4534. switch v := v.(*Subscribe); i {
  4535. case 0:
  4536. return &v.state
  4537. case 1:
  4538. return &v.sizeCache
  4539. case 2:
  4540. return &v.unknownFields
  4541. default:
  4542. return nil
  4543. }
  4544. }
  4545. file_userCenter_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  4546. switch v := v.(*List); i {
  4547. case 0:
  4548. return &v.state
  4549. case 1:
  4550. return &v.sizeCache
  4551. case 2:
  4552. return &v.unknownFields
  4553. default:
  4554. return nil
  4555. }
  4556. }
  4557. file_userCenter_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  4558. switch v := v.(*Items); i {
  4559. case 0:
  4560. return &v.state
  4561. case 1:
  4562. return &v.sizeCache
  4563. case 2:
  4564. return &v.unknownFields
  4565. default:
  4566. return nil
  4567. }
  4568. }
  4569. file_userCenter_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  4570. switch v := v.(*Keys); i {
  4571. case 0:
  4572. return &v.state
  4573. case 1:
  4574. return &v.sizeCache
  4575. case 2:
  4576. return &v.unknownFields
  4577. default:
  4578. return nil
  4579. }
  4580. }
  4581. file_userCenter_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  4582. switch v := v.(*UserReq); i {
  4583. case 0:
  4584. return &v.state
  4585. case 1:
  4586. return &v.sizeCache
  4587. case 2:
  4588. return &v.unknownFields
  4589. default:
  4590. return nil
  4591. }
  4592. }
  4593. file_userCenter_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  4594. switch v := v.(*EntUserReq); i {
  4595. case 0:
  4596. return &v.state
  4597. case 1:
  4598. return &v.sizeCache
  4599. case 2:
  4600. return &v.unknownFields
  4601. default:
  4602. return nil
  4603. }
  4604. }
  4605. file_userCenter_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  4606. switch v := v.(*EntUserResp); i {
  4607. case 0:
  4608. return &v.state
  4609. case 1:
  4610. return &v.sizeCache
  4611. case 2:
  4612. return &v.unknownFields
  4613. default:
  4614. return nil
  4615. }
  4616. }
  4617. file_userCenter_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  4618. switch v := v.(*EntUser); i {
  4619. case 0:
  4620. return &v.state
  4621. case 1:
  4622. return &v.sizeCache
  4623. case 2:
  4624. return &v.unknownFields
  4625. default:
  4626. return nil
  4627. }
  4628. }
  4629. file_userCenter_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  4630. switch v := v.(*EntUserListReq); i {
  4631. case 0:
  4632. return &v.state
  4633. case 1:
  4634. return &v.sizeCache
  4635. case 2:
  4636. return &v.unknownFields
  4637. default:
  4638. return nil
  4639. }
  4640. }
  4641. file_userCenter_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  4642. switch v := v.(*EntUserListResp); i {
  4643. case 0:
  4644. return &v.state
  4645. case 1:
  4646. return &v.sizeCache
  4647. case 2:
  4648. return &v.unknownFields
  4649. default:
  4650. return nil
  4651. }
  4652. }
  4653. file_userCenter_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  4654. switch v := v.(*EntUserListData); i {
  4655. case 0:
  4656. return &v.state
  4657. case 1:
  4658. return &v.sizeCache
  4659. case 2:
  4660. return &v.unknownFields
  4661. default:
  4662. return nil
  4663. }
  4664. }
  4665. file_userCenter_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  4666. switch v := v.(*CheckIsEntAdminResp); i {
  4667. case 0:
  4668. return &v.state
  4669. case 1:
  4670. return &v.sizeCache
  4671. case 2:
  4672. return &v.unknownFields
  4673. default:
  4674. return nil
  4675. }
  4676. }
  4677. file_userCenter_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  4678. switch v := v.(*GetStatusByCode); i {
  4679. case 0:
  4680. return &v.state
  4681. case 1:
  4682. return &v.sizeCache
  4683. case 2:
  4684. return &v.unknownFields
  4685. default:
  4686. return nil
  4687. }
  4688. }
  4689. file_userCenter_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  4690. switch v := v.(*UserAddReq); i {
  4691. case 0:
  4692. return &v.state
  4693. case 1:
  4694. return &v.sizeCache
  4695. case 2:
  4696. return &v.unknownFields
  4697. default:
  4698. return nil
  4699. }
  4700. }
  4701. file_userCenter_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  4702. switch v := v.(*UserAddResp); i {
  4703. case 0:
  4704. return &v.state
  4705. case 1:
  4706. return &v.sizeCache
  4707. case 2:
  4708. return &v.unknownFields
  4709. default:
  4710. return nil
  4711. }
  4712. }
  4713. file_userCenter_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  4714. switch v := v.(*UserAdds); i {
  4715. case 0:
  4716. return &v.state
  4717. case 1:
  4718. return &v.sizeCache
  4719. case 2:
  4720. return &v.unknownFields
  4721. default:
  4722. return nil
  4723. }
  4724. }
  4725. file_userCenter_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  4726. switch v := v.(*UserIdReq); i {
  4727. case 0:
  4728. return &v.state
  4729. case 1:
  4730. return &v.sizeCache
  4731. case 2:
  4732. return &v.unknownFields
  4733. default:
  4734. return nil
  4735. }
  4736. }
  4737. file_userCenter_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  4738. switch v := v.(*WorkDesktopMenuInfoReq); i {
  4739. case 0:
  4740. return &v.state
  4741. case 1:
  4742. return &v.sizeCache
  4743. case 2:
  4744. return &v.unknownFields
  4745. default:
  4746. return nil
  4747. }
  4748. }
  4749. file_userCenter_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  4750. switch v := v.(*WorkDesktopMenuInfoResp); i {
  4751. case 0:
  4752. return &v.state
  4753. case 1:
  4754. return &v.sizeCache
  4755. case 2:
  4756. return &v.unknownFields
  4757. default:
  4758. return nil
  4759. }
  4760. }
  4761. file_userCenter_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  4762. switch v := v.(*MenuData); i {
  4763. case 0:
  4764. return &v.state
  4765. case 1:
  4766. return &v.sizeCache
  4767. case 2:
  4768. return &v.unknownFields
  4769. default:
  4770. return nil
  4771. }
  4772. }
  4773. file_userCenter_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  4774. switch v := v.(*MenuList); i {
  4775. case 0:
  4776. return &v.state
  4777. case 1:
  4778. return &v.sizeCache
  4779. case 2:
  4780. return &v.unknownFields
  4781. default:
  4782. return nil
  4783. }
  4784. }
  4785. file_userCenter_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  4786. switch v := v.(*SecondLevelMenu); i {
  4787. case 0:
  4788. return &v.state
  4789. case 1:
  4790. return &v.sizeCache
  4791. case 2:
  4792. return &v.unknownFields
  4793. default:
  4794. return nil
  4795. }
  4796. }
  4797. file_userCenter_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  4798. switch v := v.(*ThreeLevelMenu); i {
  4799. case 0:
  4800. return &v.state
  4801. case 1:
  4802. return &v.sizeCache
  4803. case 2:
  4804. return &v.unknownFields
  4805. default:
  4806. return nil
  4807. }
  4808. }
  4809. file_userCenter_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  4810. switch v := v.(*TipInfo); i {
  4811. case 0:
  4812. return &v.state
  4813. case 1:
  4814. return &v.sizeCache
  4815. case 2:
  4816. return &v.unknownFields
  4817. default:
  4818. return nil
  4819. }
  4820. }
  4821. file_userCenter_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  4822. switch v := v.(*WorkDesktopComprehensiveReq); i {
  4823. case 0:
  4824. return &v.state
  4825. case 1:
  4826. return &v.sizeCache
  4827. case 2:
  4828. return &v.unknownFields
  4829. default:
  4830. return nil
  4831. }
  4832. }
  4833. file_userCenter_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  4834. switch v := v.(*WorkDesktopComprehensiveResp); i {
  4835. case 0:
  4836. return &v.state
  4837. case 1:
  4838. return &v.sizeCache
  4839. case 2:
  4840. return &v.unknownFields
  4841. default:
  4842. return nil
  4843. }
  4844. }
  4845. file_userCenter_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  4846. switch v := v.(*WorkDesktopClearUserInfoReq); i {
  4847. case 0:
  4848. return &v.state
  4849. case 1:
  4850. return &v.sizeCache
  4851. case 2:
  4852. return &v.unknownFields
  4853. default:
  4854. return nil
  4855. }
  4856. }
  4857. }
  4858. type x struct{}
  4859. out := protoimpl.TypeBuilder{
  4860. File: protoimpl.DescBuilder{
  4861. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  4862. RawDescriptor: file_userCenter_proto_rawDesc,
  4863. NumEnums: 0,
  4864. NumMessages: 52,
  4865. NumExtensions: 0,
  4866. NumServices: 1,
  4867. },
  4868. GoTypes: file_userCenter_proto_goTypes,
  4869. DependencyIndexes: file_userCenter_proto_depIdxs,
  4870. MessageInfos: file_userCenter_proto_msgTypes,
  4871. }.Build()
  4872. File_userCenter_proto = out.File
  4873. file_userCenter_proto_rawDesc = nil
  4874. file_userCenter_proto_goTypes = nil
  4875. file_userCenter_proto_depIdxs = nil
  4876. }