userCenter.pb.go 180 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.0
  4. // protoc v3.15.5
  5. // source: userCenter.proto
  6. package pb
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. //机构认证 入参
  20. type EntAuthReq struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` //机构/企业名称
  25. CreditCode string `protobuf:"bytes,2,opt,name=creditCode,proto3" json:"creditCode,omitempty"` //统一社会信用代码
  26. AreaNumber string `protobuf:"bytes,3,opt,name=areaNumber,proto3" json:"areaNumber,omitempty"` //省市(行政区划代码)
  27. Business string `protobuf:"bytes,4,opt,name=business,proto3" json:"business,omitempty"` //营业执照
  28. OfficialLetter string `protobuf:"bytes,5,opt,name=officialLetter,proto3" json:"officialLetter,omitempty"` //认证公函
  29. OrganizationType string `protobuf:"bytes,6,opt,name=organizationType,proto3" json:"organizationType,omitempty"` //机构类型 1投标企业 2招标采购单位 3厂商 4招标代理机构 5经销商 6服务提供商 7其他
  30. ComPanyType string `protobuf:"bytes,7,opt,name=comPanyType,proto3" json:"comPanyType,omitempty"` //机构性质 1企业 2党政机关事业单位及其他
  31. AuthName string `protobuf:"bytes,8,opt,name=authName,proto3" json:"authName,omitempty"` //联系人姓名
  32. AuthPhone string `protobuf:"bytes,9,opt,name=authPhone,proto3" json:"authPhone,omitempty"` //联系人手机号
  33. Phone string `protobuf:"bytes,10,opt,name=phone,proto3" json:"phone,omitempty"` //注册手机号
  34. EntId int64 `protobuf:"varint,11,opt,name=entId,proto3" json:"entId,omitempty"` //企业id
  35. }
  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. }
  3303. func (x *WorkDesktopComprehensiveReq) Reset() {
  3304. *x = WorkDesktopComprehensiveReq{}
  3305. if protoimpl.UnsafeEnabled {
  3306. mi := &file_userCenter_proto_msgTypes[48]
  3307. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3308. ms.StoreMessageInfo(mi)
  3309. }
  3310. }
  3311. func (x *WorkDesktopComprehensiveReq) String() string {
  3312. return protoimpl.X.MessageStringOf(x)
  3313. }
  3314. func (*WorkDesktopComprehensiveReq) ProtoMessage() {}
  3315. func (x *WorkDesktopComprehensiveReq) ProtoReflect() protoreflect.Message {
  3316. mi := &file_userCenter_proto_msgTypes[48]
  3317. if protoimpl.UnsafeEnabled && x != nil {
  3318. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3319. if ms.LoadMessageInfo() == nil {
  3320. ms.StoreMessageInfo(mi)
  3321. }
  3322. return ms
  3323. }
  3324. return mi.MessageOf(x)
  3325. }
  3326. // Deprecated: Use WorkDesktopComprehensiveReq.ProtoReflect.Descriptor instead.
  3327. func (*WorkDesktopComprehensiveReq) Descriptor() ([]byte, []int) {
  3328. return file_userCenter_proto_rawDescGZIP(), []int{48}
  3329. }
  3330. func (x *WorkDesktopComprehensiveReq) GetUserId() string {
  3331. if x != nil {
  3332. return x.UserId
  3333. }
  3334. return ""
  3335. }
  3336. func (x *WorkDesktopComprehensiveReq) GetAppId() string {
  3337. if x != nil {
  3338. return x.AppId
  3339. }
  3340. return ""
  3341. }
  3342. func (x *WorkDesktopComprehensiveReq) GetPlatform() string {
  3343. if x != nil {
  3344. return x.Platform
  3345. }
  3346. return ""
  3347. }
  3348. func (x *WorkDesktopComprehensiveReq) GetPhone() string {
  3349. if x != nil {
  3350. return x.Phone
  3351. }
  3352. return ""
  3353. }
  3354. func (x *WorkDesktopComprehensiveReq) GetActionMode() string {
  3355. if x != nil {
  3356. return x.ActionMode
  3357. }
  3358. return ""
  3359. }
  3360. func (x *WorkDesktopComprehensiveReq) GetMenuMode() string {
  3361. if x != nil {
  3362. return x.MenuMode
  3363. }
  3364. return ""
  3365. }
  3366. func (x *WorkDesktopComprehensiveReq) GetMenuIds() string {
  3367. if x != nil {
  3368. return x.MenuIds
  3369. }
  3370. return ""
  3371. }
  3372. func (x *WorkDesktopComprehensiveReq) GetNewUserId() string {
  3373. if x != nil {
  3374. return x.NewUserId
  3375. }
  3376. return ""
  3377. }
  3378. //工作桌面 综合功能-返回数据
  3379. type WorkDesktopComprehensiveResp struct {
  3380. state protoimpl.MessageState
  3381. sizeCache protoimpl.SizeCache
  3382. unknownFields protoimpl.UnknownFields
  3383. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  3384. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  3385. Data []*ThreeLevelMenu `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  3386. }
  3387. func (x *WorkDesktopComprehensiveResp) Reset() {
  3388. *x = WorkDesktopComprehensiveResp{}
  3389. if protoimpl.UnsafeEnabled {
  3390. mi := &file_userCenter_proto_msgTypes[49]
  3391. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3392. ms.StoreMessageInfo(mi)
  3393. }
  3394. }
  3395. func (x *WorkDesktopComprehensiveResp) String() string {
  3396. return protoimpl.X.MessageStringOf(x)
  3397. }
  3398. func (*WorkDesktopComprehensiveResp) ProtoMessage() {}
  3399. func (x *WorkDesktopComprehensiveResp) ProtoReflect() protoreflect.Message {
  3400. mi := &file_userCenter_proto_msgTypes[49]
  3401. if protoimpl.UnsafeEnabled && x != nil {
  3402. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3403. if ms.LoadMessageInfo() == nil {
  3404. ms.StoreMessageInfo(mi)
  3405. }
  3406. return ms
  3407. }
  3408. return mi.MessageOf(x)
  3409. }
  3410. // Deprecated: Use WorkDesktopComprehensiveResp.ProtoReflect.Descriptor instead.
  3411. func (*WorkDesktopComprehensiveResp) Descriptor() ([]byte, []int) {
  3412. return file_userCenter_proto_rawDescGZIP(), []int{49}
  3413. }
  3414. func (x *WorkDesktopComprehensiveResp) GetErrorCode() int64 {
  3415. if x != nil {
  3416. return x.ErrorCode
  3417. }
  3418. return 0
  3419. }
  3420. func (x *WorkDesktopComprehensiveResp) GetErrorMsg() string {
  3421. if x != nil {
  3422. return x.ErrorMsg
  3423. }
  3424. return ""
  3425. }
  3426. func (x *WorkDesktopComprehensiveResp) GetData() []*ThreeLevelMenu {
  3427. if x != nil {
  3428. return x.Data
  3429. }
  3430. return nil
  3431. }
  3432. //清除用户功能相关内存信息
  3433. type WorkDesktopClearUserInfoReq struct {
  3434. state protoimpl.MessageState
  3435. sizeCache protoimpl.SizeCache
  3436. unknownFields protoimpl.UnknownFields
  3437. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
  3438. AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"`
  3439. Platform string `protobuf:"bytes,3,opt,name=platform,proto3" json:"platform,omitempty"`
  3440. UserIds string `protobuf:"bytes,4,opt,name=userIds,proto3" json:"userIds,omitempty"`
  3441. NewUserId string `protobuf:"bytes,5,opt,name=newUserId,proto3" json:"newUserId,omitempty"`
  3442. }
  3443. func (x *WorkDesktopClearUserInfoReq) Reset() {
  3444. *x = WorkDesktopClearUserInfoReq{}
  3445. if protoimpl.UnsafeEnabled {
  3446. mi := &file_userCenter_proto_msgTypes[50]
  3447. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3448. ms.StoreMessageInfo(mi)
  3449. }
  3450. }
  3451. func (x *WorkDesktopClearUserInfoReq) String() string {
  3452. return protoimpl.X.MessageStringOf(x)
  3453. }
  3454. func (*WorkDesktopClearUserInfoReq) ProtoMessage() {}
  3455. func (x *WorkDesktopClearUserInfoReq) ProtoReflect() protoreflect.Message {
  3456. mi := &file_userCenter_proto_msgTypes[50]
  3457. if protoimpl.UnsafeEnabled && x != nil {
  3458. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3459. if ms.LoadMessageInfo() == nil {
  3460. ms.StoreMessageInfo(mi)
  3461. }
  3462. return ms
  3463. }
  3464. return mi.MessageOf(x)
  3465. }
  3466. // Deprecated: Use WorkDesktopClearUserInfoReq.ProtoReflect.Descriptor instead.
  3467. func (*WorkDesktopClearUserInfoReq) Descriptor() ([]byte, []int) {
  3468. return file_userCenter_proto_rawDescGZIP(), []int{50}
  3469. }
  3470. func (x *WorkDesktopClearUserInfoReq) GetUserId() string {
  3471. if x != nil {
  3472. return x.UserId
  3473. }
  3474. return ""
  3475. }
  3476. func (x *WorkDesktopClearUserInfoReq) GetAppId() string {
  3477. if x != nil {
  3478. return x.AppId
  3479. }
  3480. return ""
  3481. }
  3482. func (x *WorkDesktopClearUserInfoReq) GetPlatform() string {
  3483. if x != nil {
  3484. return x.Platform
  3485. }
  3486. return ""
  3487. }
  3488. func (x *WorkDesktopClearUserInfoReq) GetUserIds() string {
  3489. if x != nil {
  3490. return x.UserIds
  3491. }
  3492. return ""
  3493. }
  3494. func (x *WorkDesktopClearUserInfoReq) GetNewUserId() string {
  3495. if x != nil {
  3496. return x.NewUserId
  3497. }
  3498. return ""
  3499. }
  3500. var File_userCenter_proto protoreflect.FileDescriptor
  3501. var file_userCenter_proto_rawDesc = []byte{
  3502. 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f,
  3503. 0x74, 0x6f, 0x22, 0xd8, 0x02, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65,
  3504. 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  3505. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43,
  3506. 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69,
  3507. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d,
  3508. 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e,
  3509. 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73,
  3510. 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73,
  3511. 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74,
  3512. 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63,
  3513. 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x72, 0x67,
  3514. 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20,
  3515. 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  3516. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79,
  3517. 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50,
  3518. 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x4e,
  3519. 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x4e,
  3520. 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  3521. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e,
  3522. 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  3523. 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64,
  3524. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x6b, 0x0a,
  3525. 0x0b, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a,
  3526. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  3527. 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65,
  3528. 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  3529. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  3530. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68,
  3531. 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3b, 0x0a, 0x0b, 0x45, 0x6e,
  3532. 0x74, 0x41, 0x75, 0x74, 0x68, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61,
  3533. 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
  3534. 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  3535. 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x92, 0x01, 0x0a, 0x0a, 0x45, 0x78, 0x61, 0x6d,
  3536. 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x45, 0x6e, 0x74, 0x49, 0x64, 0x18,
  3537. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x45, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08,
  3538. 0x41, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  3539. 0x41, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x61, 0x73,
  3540. 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e,
  3541. 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x75, 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x18, 0x04, 0x20,
  3542. 0x01, 0x28, 0x09, 0x52, 0x09, 0x41, 0x75, 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1c,
  3543. 0x0a, 0x09, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28,
  3544. 0x09, 0x52, 0x09, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x6b, 0x0a, 0x0b,
  3545. 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65,
  3546. 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  3547. 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72,
  3548. 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65,
  3549. 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
  3550. 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x44,
  3551. 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x25, 0x0a, 0x0b, 0x45, 0x78, 0x61,
  3552. 0x6d, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74,
  3553. 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  3554. 0x22, 0x90, 0x03, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12,
  3555. 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
  3556. 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x02,
  3557. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a,
  3558. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  3559. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65,
  3560. 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63,
  3561. 0x72, 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x63, 0x72, 0x65,
  3562. 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01,
  3563. 0x28, 0x09, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54,
  3564. 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x64,
  3565. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x72, 0x65, 0x61,
  3566. 0x74, 0x65, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74,
  3567. 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61,
  3568. 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x76, 0x61, 0x6c,
  3569. 0x69, 0x64, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
  3570. 0x09, 0x52, 0x0e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d,
  3571. 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d,
  3572. 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x45, 0x6e,
  3573. 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53,
  3574. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x66, 0x72, 0x6f,
  3575. 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67,
  3576. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67,
  3577. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f,
  3578. 0x6e, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68,
  3579. 0x6f, 0x6e, 0x65, 0x22, 0x67, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  3580. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  3581. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  3582. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  3583. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1c,
  3584. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45,
  3585. 0x6e, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x59, 0x0a, 0x07,
  3586. 0x45, 0x6e, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  3587. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a,
  3588. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3589. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1c, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  3590. 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73,
  3591. 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xfd, 0x01, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x4c,
  3592. 0x69, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  3593. 0x02, 0x69, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54, 0x79,
  3594. 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e,
  3595. 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20,
  3596. 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x72, 0x67,
  3597. 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20,
  3598. 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  3599. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x74,
  3600. 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
  3601. 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x69,
  3602. 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54,
  3603. 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75,
  3604. 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61,
  3605. 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61,
  3606. 0x74, 0x75, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65,
  3607. 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xf8, 0x01, 0x0a, 0x0e, 0x45, 0x78, 0x61, 0x6d,
  3608. 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
  3609. 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c,
  3610. 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  3611. 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  3612. 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  3613. 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68,
  3614. 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68,
  3615. 0x54, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x72,
  3616. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x75, 0x74,
  3617. 0x68, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x75,
  3618. 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  3619. 0x0b, 0x61, 0x75, 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07,
  3620. 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70,
  3621. 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
  3622. 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
  3623. 0x7a, 0x65, 0x22, 0x73, 0x0a, 0x0f, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73,
  3624. 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63,
  3625. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  3626. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73,
  3627. 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73,
  3628. 0x67, 0x12, 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
  3629. 0x10, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74,
  3630. 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x65, 0x0a, 0x0f, 0x45, 0x78, 0x61, 0x6d, 0x69,
  3631. 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f,
  3632. 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  3633. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01,
  3634. 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x20, 0x0a, 0x04,
  3635. 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x78, 0x61,
  3636. 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xfd,
  3637. 0x01, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e,
  3638. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14,
  3639. 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65,
  3640. 0x6e, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54,
  3641. 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61,
  3642. 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04,
  3643. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72,
  3644. 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  3645. 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75,
  3646. 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
  3647. 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x6c,
  3648. 0x79, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x70, 0x70,
  3649. 0x6c, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79,
  3650. 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79,
  3651. 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x09,
  3652. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x23,
  3653. 0x0a, 0x0b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a,
  3654. 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e,
  3655. 0x74, 0x49, 0x64, 0x22, 0x6a, 0x0a, 0x0c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52,
  3656. 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64,
  3657. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f,
  3658. 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18,
  3659. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12,
  3660. 0x1e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e,
  3661. 0x63, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22,
  3662. 0x4f, 0x0a, 0x09, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1e, 0x0a, 0x0a,
  3663. 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  3664. 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c,
  3665. 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01,
  3666. 0x28, 0x03, 0x52, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  3667. 0x22, 0x6b, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12,
  3668. 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20,
  3669. 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b,
  3670. 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28,
  3671. 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64,
  3672. 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49,
  3673. 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xd5, 0x05,
  3674. 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a,
  3675. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
  3676. 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18,
  3677. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d, 0x62, 0x65,
  3678. 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x50, 0x65, 0x72, 0x73,
  3679. 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63,
  3680. 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x61,
  3681. 0x63, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63,
  3682. 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61,
  3683. 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  3684. 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x64,
  3685. 0x75, 0x73, 0x74, 0x72, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x64,
  3686. 0x75, 0x73, 0x74, 0x72, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79,
  3687. 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x70,
  3688. 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69,
  3689. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65,
  3690. 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x65, 0x67, 0x61, 0x6c,
  3691. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x65,
  3692. 0x67, 0x61, 0x6c, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x73,
  3693. 0x69, 0x6e, 0x65, 0x73, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x75, 0x73,
  3694. 0x69, 0x6e, 0x65, 0x73, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61,
  3695. 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f,
  3696. 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a,
  3697. 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70,
  3698. 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
  3699. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74,
  3700. 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x61, 0x75, 0x74,
  3701. 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x6f, 0x72, 0x7a, 0x65, 0x6e, 0x53,
  3702. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x66, 0x6f, 0x72,
  3703. 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x64,
  3704. 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75,
  3705. 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x64, 0x69, 0x74,
  3706. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x64, 0x69,
  3707. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54,
  3708. 0x69, 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
  3709. 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61,
  3710. 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x75,
  3711. 0x74, 0x68, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61,
  3712. 0x75, 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09,
  3713. 0x52, 0x0b, 0x61, 0x75, 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a,
  3714. 0x0a, 0x61, 0x75, 0x74, 0x68, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28,
  3715. 0x09, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x1a, 0x0a,
  3716. 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52,
  3717. 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67,
  3718. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67,
  3719. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x44, 0x0a, 0x0c, 0x45, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61,
  3720. 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01,
  3721. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x75,
  3722. 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3723. 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x22, 0x2f, 0x0a, 0x0f, 0x43,
  3724. 0x68, 0x65, 0x63, 0x6b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1c,
  3725. 0x0a, 0x09, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  3726. 0x03, 0x52, 0x09, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x3e, 0x0a, 0x12,
  3727. 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
  3728. 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3729. 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18,
  3730. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x77, 0x0a, 0x13,
  3731. 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
  3732. 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64,
  3733. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f,
  3734. 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18,
  3735. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12,
  3736. 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e,
  3737. 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
  3738. 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xc2, 0x02, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
  3739. 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  3740. 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x76, 0x69, 0x70, 0x53,
  3741. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x76, 0x69, 0x70,
  3742. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72,
  3743. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d, 0x65,
  3744. 0x6d, 0x62, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x65, 0x6e,
  3745. 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01,
  3746. 0x28, 0x03, 0x52, 0x0e, 0x65, 0x6e, 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65, 0x53, 0x74, 0x61, 0x74,
  3747. 0x75, 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54,
  3748. 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x75, 0x62, 0x73, 0x63,
  3749. 0x72, 0x69, 0x62, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  3750. 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  3751. 0x62, 0x65, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f,
  3752. 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72,
  3753. 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63,
  3754. 0x6f, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  3755. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  3756. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  3757. 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x69, 0x6d, 0x67, 0x18, 0x0a, 0x20, 0x01, 0x28,
  3758. 0x09, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x69, 0x6d, 0x67, 0x22, 0xc7, 0x02, 0x0a, 0x09, 0x53,
  3759. 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72,
  3760. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x73, 0x74, 0x61,
  3761. 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d,
  3762. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
  3763. 0x12, 0x28, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14,
  3764. 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e, 0x41, 0x72, 0x65, 0x61, 0x45,
  3765. 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x1e, 0x0a, 0x0a, 0x62, 0x75,
  3766. 0x79, 0x65, 0x72, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a,
  3767. 0x62, 0x75, 0x79, 0x65, 0x72, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e,
  3768. 0x66, 0x6f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e,
  3769. 0x66, 0x6f, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18,
  3770. 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x52, 0x05, 0x69,
  3771. 0x74, 0x65, 0x6d, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79,
  3772. 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79,
  3773. 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x6d, 0x61, 0x74, 0x63, 0x68,
  3774. 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x6d,
  3775. 0x61, 0x74, 0x63, 0x68, 0x1a, 0x3e, 0x0a, 0x09, 0x41, 0x72, 0x65, 0x61, 0x45, 0x6e, 0x74, 0x72,
  3776. 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  3777. 0x6b, 0x65, 0x79, 0x12, 0x1b, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
  3778. 0x28, 0x0b, 0x32, 0x05, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  3779. 0x3a, 0x02, 0x38, 0x01, 0x22, 0x1c, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05,
  3780. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c,
  3781. 0x75, 0x65, 0x22, 0x5a, 0x0a, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x73,
  3782. 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x49, 0x74,
  3783. 0x65, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
  3784. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69,
  3785. 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x05, 0x61, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x03, 0x28,
  3786. 0x0b, 0x32, 0x05, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x52, 0x04, 0x61, 0x4b, 0x65, 0x79, 0x22, 0x6c,
  3787. 0x0a, 0x04, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
  3788. 0x03, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x74, 0x6b,
  3789. 0x65, 0x79, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x6f, 0x74, 0x6b, 0x65, 0x79,
  3790. 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03,
  3791. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
  3792. 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79, 0x18, 0x04, 0x20, 0x01,
  3793. 0x28, 0x03, 0x52, 0x08, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79, 0x22, 0x4d, 0x0a, 0x07,
  3794. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64,
  3795. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x16, 0x0a,
  3796. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75,
  3797. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x03,
  3798. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x79, 0x70, 0x65, 0x73, 0x22, 0x56, 0x0a, 0x0a, 0x45,
  3799. 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70,
  3800. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12,
  3801. 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01,
  3802. 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a,
  3803. 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e,
  3804. 0x74, 0x49, 0x64, 0x22, 0x67, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  3805. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  3806. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  3807. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  3808. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1c,
  3809. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45,
  3810. 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x81, 0x01, 0x0a,
  3811. 0x07, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x4e, 0x61, 0x6d, 0x65,
  3812. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05,
  3813. 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f,
  3814. 0x6e, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  3815. 0x52, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4e, 0x61,
  3816. 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4e, 0x61,
  3817. 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  3818. 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
  3819. 0x22, 0x68, 0x0a, 0x0e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52,
  3820. 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  3821. 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49,
  3822. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x16,
  3823. 0x0a, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  3824. 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04,
  3825. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x73, 0x0a, 0x0f, 0x45, 0x6e,
  3826. 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a,
  3827. 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  3828. 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  3829. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  3830. 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74,
  3831. 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65,
  3832. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22,
  3833. 0xa9, 0x01, 0x0a, 0x0f, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44,
  3834. 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  3835. 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49,
  3836. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x12,
  3837. 0x10, 0x0a, 0x03, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x70, 0x49,
  3838. 0x64, 0x12, 0x2a, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  3839. 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
  3840. 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2c, 0x0a,
  3841. 0x08, 0x64, 0x65, 0x70, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32,
  3842. 0x10, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74,
  3843. 0x61, 0x52, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x69, 0x0a, 0x13, 0x43,
  3844. 0x68, 0x65, 0x63, 0x6b, 0x49, 0x73, 0x45, 0x6e, 0x74, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65,
  3845. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  3846. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  3847. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  3848. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x16,
  3849. 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  3850. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x4b, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61,
  3851. 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74,
  3852. 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x61,
  3853. 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x49,
  3854. 0x6e, 0x45, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x49, 0x6e,
  3855. 0x45, 0x6e, 0x74, 0x22, 0x90, 0x02, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x52,
  3856. 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  3857. 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e,
  3858. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a,
  3859. 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  3860. 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65,
  3861. 0x61, 0x64, 0x69, 0x6d, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x61,
  3862. 0x64, 0x69, 0x6d, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x18,
  3863. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x12, 0x1a,
  3864. 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  3865. 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61,
  3866. 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61,
  3867. 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x5f, 0x6f, 0x70, 0x65, 0x6e,
  3868. 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x69,
  3869. 0x64, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x18, 0x09, 0x20,
  3870. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x4f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07,
  3871. 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75,
  3872. 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x22, 0x68, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64,
  3873. 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63,
  3874. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  3875. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73,
  3876. 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73,
  3877. 0x67, 0x12, 0x1d, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
  3878. 0x09, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61,
  3879. 0x22, 0x32, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x73, 0x12, 0x16, 0x0a, 0x06,
  3880. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74,
  3881. 0x61, 0x74, 0x75, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  3882. 0x52, 0x02, 0x69, 0x64, 0x22, 0x9f, 0x02, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x52,
  3883. 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  3884. 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02,
  3885. 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e,
  3886. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a,
  3887. 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  3888. 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65,
  3889. 0x61, 0x64, 0x69, 0x6d, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x61,
  3890. 0x64, 0x69, 0x6d, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x18,
  3891. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x12, 0x1a,
  3892. 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  3893. 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61,
  3894. 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61,
  3895. 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x5f, 0x6f, 0x70, 0x65, 0x6e,
  3896. 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x69,
  3897. 0x64, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x18, 0x0a, 0x20,
  3898. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x4f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07,
  3899. 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75,
  3900. 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x22, 0xee, 0x01, 0x0a, 0x16, 0x57, 0x6f, 0x72, 0x6b, 0x44,
  3901. 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  3902. 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  3903. 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70,
  3904. 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12,
  3905. 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28,
  3906. 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x70,
  3907. 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e,
  3908. 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x05,
  3909. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12,
  3910. 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05,
  3911. 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
  3912. 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65,
  3913. 0x72, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e, 0x74, 0x72, 0x61, 0x6e, 0x65, 0x74, 0x42,
  3914. 0x6f, 0x6f, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x6e, 0x74, 0x72, 0x61,
  3915. 0x6e, 0x65, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x22, 0x74, 0x0a, 0x17, 0x57, 0x6f, 0x72, 0x6b, 0x44,
  3916. 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  3917. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  3918. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  3919. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  3920. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d,
  3921. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x4d,
  3922. 0x65, 0x6e, 0x75, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x4d, 0x0a,
  3923. 0x08, 0x4d, 0x65, 0x6e, 0x75, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x65, 0x6e,
  3924. 0x75, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x65, 0x6e,
  3925. 0x75, 0x54, 0x79, 0x70, 0x65, 0x12, 0x25, 0x0a, 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4c, 0x69, 0x73,
  3926. 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x4d, 0x65, 0x6e, 0x75, 0x4c, 0x69,
  3927. 0x73, 0x74, 0x52, 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x84, 0x02, 0x0a,
  3928. 0x08, 0x4d, 0x65, 0x6e, 0x75, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
  3929. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a,
  3930. 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x69, 0x63, 0x6f,
  3931. 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  3932. 0x75, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x04, 0x20,
  3933. 0x01, 0x28, 0x08, 0x52, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  3934. 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61,
  3935. 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70,
  3936. 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70,
  3937. 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70,
  3938. 0x65, 0x12, 0x22, 0x0a, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x08, 0x20, 0x01,
  3939. 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x54, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x74, 0x69,
  3940. 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x26, 0x0a, 0x05, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x18, 0x09,
  3941. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x4c, 0x65, 0x76,
  3942. 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x52, 0x05, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x12, 0x14, 0x0a,
  3943. 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x61,
  3944. 0x74, 0x63, 0x68, 0x22, 0x8a, 0x02, 0x0a, 0x0f, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x4c, 0x65,
  3945. 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  3946. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x69,
  3947. 0x63, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x12,
  3948. 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72,
  3949. 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
  3950. 0x08, 0x52, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  3951. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70,
  3952. 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x54,
  3953. 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18,
  3954. 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12,
  3955. 0x22, 0x0a, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b,
  3956. 0x32, 0x08, 0x2e, 0x54, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x74, 0x69, 0x70, 0x49,
  3957. 0x6e, 0x66, 0x6f, 0x12, 0x25, 0x0a, 0x05, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x18, 0x09, 0x20, 0x03,
  3958. 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x54, 0x68, 0x72, 0x65, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d,
  3959. 0x65, 0x6e, 0x75, 0x52, 0x05, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x61,
  3960. 0x74, 0x63, 0x68, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68,
  3961. 0x22, 0xe2, 0x01, 0x0a, 0x0e, 0x54, 0x68, 0x72, 0x65, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d,
  3962. 0x65, 0x6e, 0x75, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  3963. 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18,
  3964. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x75,
  3965. 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x16, 0x0a,
  3966. 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x75,
  3967. 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28,
  3968. 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65,
  3969. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12,
  3970. 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
  3971. 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x07, 0x74,
  3972. 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x54,
  3973. 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  3974. 0x14, 0x0a, 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05,
  3975. 0x6d, 0x61, 0x74, 0x63, 0x68, 0x22, 0xd5, 0x01, 0x0a, 0x07, 0x54, 0x69, 0x70, 0x49, 0x6e, 0x66,
  3976. 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3977. 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65,
  3978. 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
  3979. 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x55, 0x72, 0x6c, 0x18,
  3980. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x55, 0x72,
  3981. 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x65, 0x78, 0x74,
  3982. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x54,
  3983. 0x65, 0x78, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x43, 0x61, 0x6e,
  3984. 0x63, 0x65, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x73, 0x53, 0x68, 0x6f,
  3985. 0x77, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79,
  3986. 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70,
  3987. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20,
  3988. 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0xf1, 0x01,
  3989. 0x0a, 0x1b, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d,
  3990. 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a,
  3991. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
  3992. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02,
  3993. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  3994. 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  3995. 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65,
  3996. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1e, 0x0a,
  3997. 0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
  3998. 0x09, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x1a, 0x0a,
  3999. 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  4000. 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x6e,
  4001. 0x75, 0x49, 0x64, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x6e, 0x75,
  4002. 0x49, 0x64, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
  4003. 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49,
  4004. 0x64, 0x22, 0x7f, 0x0a, 0x1c, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70,
  4005. 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73,
  4006. 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18,
  4007. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65,
  4008. 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
  4009. 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x23, 0x0a,
  4010. 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x54, 0x68,
  4011. 0x72, 0x65, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x52, 0x04, 0x64, 0x61,
  4012. 0x74, 0x61, 0x22, 0x9f, 0x01, 0x0a, 0x1b, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74,
  4013. 0x6f, 0x70, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  4014. 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  4015. 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70,
  4016. 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64,
  4017. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x03, 0x20, 0x01,
  4018. 0x28, 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x18, 0x0a, 0x07,
  4019. 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75,
  4020. 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65,
  4021. 0x72, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73,
  4022. 0x65, 0x72, 0x49, 0x64, 0x32, 0xc5, 0x07, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x43, 0x65, 0x6e,
  4023. 0x74, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x12, 0x0b,
  4024. 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e,
  4025. 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x0a, 0x45, 0x6e, 0x74,
  4026. 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x12, 0x0b, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
  4027. 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65,
  4028. 0x73, 0x70, 0x12, 0x24, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0b, 0x2e,
  4029. 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74,
  4030. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x30, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d,
  4031. 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
  4032. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69,
  4033. 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x08, 0x43, 0x68,
  4034. 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x12, 0x0c, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e,
  4035. 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0d, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52,
  4036. 0x65, 0x73, 0x70, 0x12, 0x25, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0c,
  4037. 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45,
  4038. 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x28, 0x0a, 0x09, 0x45, 0x6e,
  4039. 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x0d, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x70, 0x64,
  4040. 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
  4041. 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49,
  4042. 0x6e, 0x66, 0x6f, 0x12, 0x10, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x78, 0x61, 0x6d, 0x69,
  4043. 0x6e, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  4044. 0x65, 0x73, 0x70, 0x12, 0x3c, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  4045. 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x13, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74,
  4046. 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x14, 0x2e, 0x47, 0x65,
  4047. 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73,
  4048. 0x70, 0x12, 0x24, 0x0a, 0x07, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x0b, 0x2e, 0x55,
  4049. 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x55, 0x73, 0x65, 0x72,
  4050. 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x26, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x55,
  4051. 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x0a, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65,
  4052. 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12,
  4053. 0x23, 0x0a, 0x07, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x12, 0x0a, 0x2e, 0x55, 0x73, 0x65,
  4054. 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
  4055. 0x52, 0x65, 0x73, 0x70, 0x12, 0x48, 0x0a, 0x13, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b,
  4056. 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e, 0x57, 0x6f,
  4057. 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66,
  4058. 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74,
  4059. 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x57,
  4060. 0x0a, 0x18, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d,
  4061. 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x12, 0x1c, 0x2e, 0x57, 0x6f, 0x72,
  4062. 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x68, 0x65,
  4063. 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44,
  4064. 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73,
  4065. 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x57, 0x0a, 0x18, 0x57, 0x6f, 0x72, 0x6b, 0x44,
  4066. 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49,
  4067. 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f,
  4068. 0x70, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  4069. 0x71, 0x1a, 0x1d, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43,
  4070. 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70,
  4071. 0x12, 0x22, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  4072. 0x08, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x09, 0x2e, 0x55, 0x73, 0x65, 0x72,
  4073. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2b, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x55, 0x73,
  4074. 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
  4075. 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73,
  4076. 0x70, 0x12, 0x33, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c,
  4077. 0x69, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73,
  4078. 0x74, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
  4079. 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x34, 0x0a, 0x0f, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49,
  4080. 0x73, 0x45, 0x6e, 0x74, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x55,
  4081. 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x14, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x73,
  4082. 0x45, 0x6e, 0x74, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x42, 0x06, 0x5a, 0x04,
  4083. 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  4084. }
  4085. var (
  4086. file_userCenter_proto_rawDescOnce sync.Once
  4087. file_userCenter_proto_rawDescData = file_userCenter_proto_rawDesc
  4088. )
  4089. func file_userCenter_proto_rawDescGZIP() []byte {
  4090. file_userCenter_proto_rawDescOnce.Do(func() {
  4091. file_userCenter_proto_rawDescData = protoimpl.X.CompressGZIP(file_userCenter_proto_rawDescData)
  4092. })
  4093. return file_userCenter_proto_rawDescData
  4094. }
  4095. var file_userCenter_proto_msgTypes = make([]protoimpl.MessageInfo, 52)
  4096. var file_userCenter_proto_goTypes = []interface{}{
  4097. (*EntAuthReq)(nil), // 0: EntAuthReq
  4098. (*EntAuthResp)(nil), // 1: EntAuthResp
  4099. (*EntAuthData)(nil), // 2: EntAuthData
  4100. (*ExamineReq)(nil), // 3: ExamineReq
  4101. (*ExamineResp)(nil), // 4: ExamineResp
  4102. (*ExamineData)(nil), // 5: ExamineData
  4103. (*EntListReq)(nil), // 6: EntListReq
  4104. (*EntListResp)(nil), // 7: EntListResp
  4105. (*EntData)(nil), // 8: EntData
  4106. (*EntList)(nil), // 9: EntList
  4107. (*ExamineListReq)(nil), // 10: ExamineListReq
  4108. (*ExamineListResp)(nil), // 11: ExamineListResp
  4109. (*ExamineListData)(nil), // 12: ExamineListData
  4110. (*ExamineList)(nil), // 13: ExamineList
  4111. (*CheckEntReq)(nil), // 14: CheckEntReq
  4112. (*CheckEntResp)(nil), // 15: CheckEntResp
  4113. (*CheckData)(nil), // 16: checkData
  4114. (*EntInfoResp)(nil), // 17: EntInfoResp
  4115. (*EntInfoData)(nil), // 18: EntInfoData
  4116. (*EntUpdateReq)(nil), // 19: EntUpdateReq
  4117. (*CheckExamineReq)(nil), // 20: CheckExamineReq
  4118. (*GetStatusByCodeReq)(nil), // 21: GetStatusByCodeReq
  4119. (*GetStatusByCodeResp)(nil), // 22: GetStatusByCodeResp
  4120. (*UserInfo)(nil), // 23: UserInfo
  4121. (*Subscribe)(nil), // 24: Subscribe
  4122. (*List)(nil), // 25: List
  4123. (*Items)(nil), // 26: Items
  4124. (*Keys)(nil), // 27: Keys
  4125. (*UserReq)(nil), // 28: UserReq
  4126. (*EntUserReq)(nil), // 29: EntUserReq
  4127. (*EntUserResp)(nil), // 30: EntUserResp
  4128. (*EntUser)(nil), // 31: EntUser
  4129. (*EntUserListReq)(nil), // 32: EntUserListReq
  4130. (*EntUserListResp)(nil), // 33: EntUserListResp
  4131. (*EntUserListData)(nil), // 34: EntUserListData
  4132. (*CheckIsEntAdminResp)(nil), // 35: CheckIsEntAdminResp
  4133. (*GetStatusByCode)(nil), // 36: GetStatusByCode
  4134. (*UserAddReq)(nil), // 37: UserAddReq
  4135. (*UserAddResp)(nil), // 38: UserAddResp
  4136. (*UserAdds)(nil), // 39: UserAdds
  4137. (*UserIdReq)(nil), // 40: UserIdReq
  4138. (*WorkDesktopMenuInfoReq)(nil), // 41: WorkDesktopMenuInfoReq
  4139. (*WorkDesktopMenuInfoResp)(nil), // 42: WorkDesktopMenuInfoResp
  4140. (*MenuData)(nil), // 43: MenuData
  4141. (*MenuList)(nil), // 44: MenuList
  4142. (*SecondLevelMenu)(nil), // 45: SecondLevelMenu
  4143. (*ThreeLevelMenu)(nil), // 46: ThreeLevelMenu
  4144. (*TipInfo)(nil), // 47: TipInfo
  4145. (*WorkDesktopComprehensiveReq)(nil), // 48: WorkDesktopComprehensiveReq
  4146. (*WorkDesktopComprehensiveResp)(nil), // 49: WorkDesktopComprehensiveResp
  4147. (*WorkDesktopClearUserInfoReq)(nil), // 50: WorkDesktopClearUserInfoReq
  4148. nil, // 51: Subscribe.AreaEntry
  4149. }
  4150. var file_userCenter_proto_depIdxs = []int32{
  4151. 2, // 0: EntAuthResp.data:type_name -> EntAuthData
  4152. 5, // 1: ExamineResp.data:type_name -> ExamineData
  4153. 8, // 2: EntListResp.data:type_name -> EntData
  4154. 9, // 3: EntData.list:type_name -> EntList
  4155. 12, // 4: ExamineListResp.data:type_name -> ExamineListData
  4156. 13, // 5: ExamineListData.list:type_name -> ExamineList
  4157. 16, // 6: CheckEntResp.data:type_name -> checkData
  4158. 18, // 7: EntInfoResp.data:type_name -> EntInfoData
  4159. 36, // 8: GetStatusByCodeResp.data:type_name -> GetStatusByCode
  4160. 24, // 9: UserInfo.data:type_name -> Subscribe
  4161. 51, // 10: Subscribe.area:type_name -> Subscribe.AreaEntry
  4162. 26, // 11: Subscribe.items:type_name -> Items
  4163. 27, // 12: Items.a_key:type_name -> Keys
  4164. 31, // 13: EntUserResp.data:type_name -> EntUser
  4165. 34, // 14: EntUserListResp.data:type_name -> EntUserListData
  4166. 31, // 15: EntUserListData.entUserList:type_name -> EntUser
  4167. 34, // 16: EntUserListData.deptList:type_name -> EntUserListData
  4168. 39, // 17: UserAddResp.data:type_name -> UserAdds
  4169. 43, // 18: WorkDesktopMenuInfoResp.data:type_name -> MenuData
  4170. 44, // 19: MenuData.menuList:type_name -> MenuList
  4171. 47, // 20: MenuList.tipInfo:type_name -> TipInfo
  4172. 45, // 21: MenuList.child:type_name -> SecondLevelMenu
  4173. 47, // 22: SecondLevelMenu.tipInfo:type_name -> TipInfo
  4174. 46, // 23: SecondLevelMenu.child:type_name -> ThreeLevelMenu
  4175. 47, // 24: ThreeLevelMenu.tipInfo:type_name -> TipInfo
  4176. 46, // 25: WorkDesktopComprehensiveResp.data:type_name -> ThreeLevelMenu
  4177. 25, // 26: Subscribe.AreaEntry.value:type_name -> List
  4178. 0, // 27: UserCenter.EntAuth:input_type -> EntAuthReq
  4179. 3, // 28: UserCenter.EntExamine:input_type -> ExamineReq
  4180. 6, // 29: UserCenter.EntList:input_type -> EntListReq
  4181. 10, // 30: UserCenter.ExamineList:input_type -> ExamineListReq
  4182. 14, // 31: UserCenter.CheckEnt:input_type -> CheckEntReq
  4183. 14, // 32: UserCenter.EntInfo:input_type -> CheckEntReq
  4184. 19, // 33: UserCenter.EntUpdate:input_type -> EntUpdateReq
  4185. 20, // 34: UserCenter.ExamineInfo:input_type -> CheckExamineReq
  4186. 21, // 35: UserCenter.GetStatusByCode:input_type -> GetStatusByCodeReq
  4187. 37, // 36: UserCenter.UserAdd:input_type -> UserAddReq
  4188. 40, // 37: UserCenter.UserUpdate:input_type -> UserIdReq
  4189. 40, // 38: UserCenter.UserDel:input_type -> UserIdReq
  4190. 41, // 39: UserCenter.WorkDesktopMenuInfo:input_type -> WorkDesktopMenuInfoReq
  4191. 48, // 40: UserCenter.WorkDesktopComprehensive:input_type -> WorkDesktopComprehensiveReq
  4192. 50, // 41: UserCenter.WorkDesktopClearUserInfo:input_type -> WorkDesktopClearUserInfoReq
  4193. 28, // 42: UserCenter.GetUserInfo:input_type -> UserReq
  4194. 29, // 43: UserCenter.GetEntUserInfo:input_type -> EntUserReq
  4195. 32, // 44: UserCenter.GetEntUserList:input_type -> EntUserListReq
  4196. 29, // 45: UserCenter.CheckIsEntAdmin:input_type -> EntUserReq
  4197. 1, // 46: UserCenter.EntAuth:output_type -> EntAuthResp
  4198. 4, // 47: UserCenter.EntExamine:output_type -> ExamineResp
  4199. 7, // 48: UserCenter.EntList:output_type -> EntListResp
  4200. 11, // 49: UserCenter.ExamineList:output_type -> ExamineListResp
  4201. 15, // 50: UserCenter.CheckEnt:output_type -> CheckEntResp
  4202. 17, // 51: UserCenter.EntInfo:output_type -> EntInfoResp
  4203. 4, // 52: UserCenter.EntUpdate:output_type -> ExamineResp
  4204. 17, // 53: UserCenter.ExamineInfo:output_type -> EntInfoResp
  4205. 22, // 54: UserCenter.GetStatusByCode:output_type -> GetStatusByCodeResp
  4206. 38, // 55: UserCenter.UserAdd:output_type -> UserAddResp
  4207. 4, // 56: UserCenter.UserUpdate:output_type -> ExamineResp
  4208. 4, // 57: UserCenter.UserDel:output_type -> ExamineResp
  4209. 42, // 58: UserCenter.WorkDesktopMenuInfo:output_type -> WorkDesktopMenuInfoResp
  4210. 49, // 59: UserCenter.WorkDesktopComprehensive:output_type -> WorkDesktopComprehensiveResp
  4211. 49, // 60: UserCenter.WorkDesktopClearUserInfo:output_type -> WorkDesktopComprehensiveResp
  4212. 23, // 61: UserCenter.GetUserInfo:output_type -> UserInfo
  4213. 30, // 62: UserCenter.GetEntUserInfo:output_type -> EntUserResp
  4214. 33, // 63: UserCenter.GetEntUserList:output_type -> EntUserListResp
  4215. 35, // 64: UserCenter.CheckIsEntAdmin:output_type -> CheckIsEntAdminResp
  4216. 46, // [46:65] is the sub-list for method output_type
  4217. 27, // [27:46] is the sub-list for method input_type
  4218. 27, // [27:27] is the sub-list for extension type_name
  4219. 27, // [27:27] is the sub-list for extension extendee
  4220. 0, // [0:27] is the sub-list for field type_name
  4221. }
  4222. func init() { file_userCenter_proto_init() }
  4223. func file_userCenter_proto_init() {
  4224. if File_userCenter_proto != nil {
  4225. return
  4226. }
  4227. if !protoimpl.UnsafeEnabled {
  4228. file_userCenter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  4229. switch v := v.(*EntAuthReq); i {
  4230. case 0:
  4231. return &v.state
  4232. case 1:
  4233. return &v.sizeCache
  4234. case 2:
  4235. return &v.unknownFields
  4236. default:
  4237. return nil
  4238. }
  4239. }
  4240. file_userCenter_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  4241. switch v := v.(*EntAuthResp); i {
  4242. case 0:
  4243. return &v.state
  4244. case 1:
  4245. return &v.sizeCache
  4246. case 2:
  4247. return &v.unknownFields
  4248. default:
  4249. return nil
  4250. }
  4251. }
  4252. file_userCenter_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  4253. switch v := v.(*EntAuthData); i {
  4254. case 0:
  4255. return &v.state
  4256. case 1:
  4257. return &v.sizeCache
  4258. case 2:
  4259. return &v.unknownFields
  4260. default:
  4261. return nil
  4262. }
  4263. }
  4264. file_userCenter_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  4265. switch v := v.(*ExamineReq); i {
  4266. case 0:
  4267. return &v.state
  4268. case 1:
  4269. return &v.sizeCache
  4270. case 2:
  4271. return &v.unknownFields
  4272. default:
  4273. return nil
  4274. }
  4275. }
  4276. file_userCenter_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  4277. switch v := v.(*ExamineResp); i {
  4278. case 0:
  4279. return &v.state
  4280. case 1:
  4281. return &v.sizeCache
  4282. case 2:
  4283. return &v.unknownFields
  4284. default:
  4285. return nil
  4286. }
  4287. }
  4288. file_userCenter_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  4289. switch v := v.(*ExamineData); i {
  4290. case 0:
  4291. return &v.state
  4292. case 1:
  4293. return &v.sizeCache
  4294. case 2:
  4295. return &v.unknownFields
  4296. default:
  4297. return nil
  4298. }
  4299. }
  4300. file_userCenter_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  4301. switch v := v.(*EntListReq); i {
  4302. case 0:
  4303. return &v.state
  4304. case 1:
  4305. return &v.sizeCache
  4306. case 2:
  4307. return &v.unknownFields
  4308. default:
  4309. return nil
  4310. }
  4311. }
  4312. file_userCenter_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  4313. switch v := v.(*EntListResp); i {
  4314. case 0:
  4315. return &v.state
  4316. case 1:
  4317. return &v.sizeCache
  4318. case 2:
  4319. return &v.unknownFields
  4320. default:
  4321. return nil
  4322. }
  4323. }
  4324. file_userCenter_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  4325. switch v := v.(*EntData); i {
  4326. case 0:
  4327. return &v.state
  4328. case 1:
  4329. return &v.sizeCache
  4330. case 2:
  4331. return &v.unknownFields
  4332. default:
  4333. return nil
  4334. }
  4335. }
  4336. file_userCenter_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  4337. switch v := v.(*EntList); i {
  4338. case 0:
  4339. return &v.state
  4340. case 1:
  4341. return &v.sizeCache
  4342. case 2:
  4343. return &v.unknownFields
  4344. default:
  4345. return nil
  4346. }
  4347. }
  4348. file_userCenter_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  4349. switch v := v.(*ExamineListReq); i {
  4350. case 0:
  4351. return &v.state
  4352. case 1:
  4353. return &v.sizeCache
  4354. case 2:
  4355. return &v.unknownFields
  4356. default:
  4357. return nil
  4358. }
  4359. }
  4360. file_userCenter_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  4361. switch v := v.(*ExamineListResp); i {
  4362. case 0:
  4363. return &v.state
  4364. case 1:
  4365. return &v.sizeCache
  4366. case 2:
  4367. return &v.unknownFields
  4368. default:
  4369. return nil
  4370. }
  4371. }
  4372. file_userCenter_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  4373. switch v := v.(*ExamineListData); i {
  4374. case 0:
  4375. return &v.state
  4376. case 1:
  4377. return &v.sizeCache
  4378. case 2:
  4379. return &v.unknownFields
  4380. default:
  4381. return nil
  4382. }
  4383. }
  4384. file_userCenter_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  4385. switch v := v.(*ExamineList); i {
  4386. case 0:
  4387. return &v.state
  4388. case 1:
  4389. return &v.sizeCache
  4390. case 2:
  4391. return &v.unknownFields
  4392. default:
  4393. return nil
  4394. }
  4395. }
  4396. file_userCenter_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  4397. switch v := v.(*CheckEntReq); i {
  4398. case 0:
  4399. return &v.state
  4400. case 1:
  4401. return &v.sizeCache
  4402. case 2:
  4403. return &v.unknownFields
  4404. default:
  4405. return nil
  4406. }
  4407. }
  4408. file_userCenter_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  4409. switch v := v.(*CheckEntResp); i {
  4410. case 0:
  4411. return &v.state
  4412. case 1:
  4413. return &v.sizeCache
  4414. case 2:
  4415. return &v.unknownFields
  4416. default:
  4417. return nil
  4418. }
  4419. }
  4420. file_userCenter_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  4421. switch v := v.(*CheckData); i {
  4422. case 0:
  4423. return &v.state
  4424. case 1:
  4425. return &v.sizeCache
  4426. case 2:
  4427. return &v.unknownFields
  4428. default:
  4429. return nil
  4430. }
  4431. }
  4432. file_userCenter_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  4433. switch v := v.(*EntInfoResp); i {
  4434. case 0:
  4435. return &v.state
  4436. case 1:
  4437. return &v.sizeCache
  4438. case 2:
  4439. return &v.unknownFields
  4440. default:
  4441. return nil
  4442. }
  4443. }
  4444. file_userCenter_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  4445. switch v := v.(*EntInfoData); i {
  4446. case 0:
  4447. return &v.state
  4448. case 1:
  4449. return &v.sizeCache
  4450. case 2:
  4451. return &v.unknownFields
  4452. default:
  4453. return nil
  4454. }
  4455. }
  4456. file_userCenter_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  4457. switch v := v.(*EntUpdateReq); i {
  4458. case 0:
  4459. return &v.state
  4460. case 1:
  4461. return &v.sizeCache
  4462. case 2:
  4463. return &v.unknownFields
  4464. default:
  4465. return nil
  4466. }
  4467. }
  4468. file_userCenter_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  4469. switch v := v.(*CheckExamineReq); i {
  4470. case 0:
  4471. return &v.state
  4472. case 1:
  4473. return &v.sizeCache
  4474. case 2:
  4475. return &v.unknownFields
  4476. default:
  4477. return nil
  4478. }
  4479. }
  4480. file_userCenter_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  4481. switch v := v.(*GetStatusByCodeReq); i {
  4482. case 0:
  4483. return &v.state
  4484. case 1:
  4485. return &v.sizeCache
  4486. case 2:
  4487. return &v.unknownFields
  4488. default:
  4489. return nil
  4490. }
  4491. }
  4492. file_userCenter_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  4493. switch v := v.(*GetStatusByCodeResp); i {
  4494. case 0:
  4495. return &v.state
  4496. case 1:
  4497. return &v.sizeCache
  4498. case 2:
  4499. return &v.unknownFields
  4500. default:
  4501. return nil
  4502. }
  4503. }
  4504. file_userCenter_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  4505. switch v := v.(*UserInfo); i {
  4506. case 0:
  4507. return &v.state
  4508. case 1:
  4509. return &v.sizeCache
  4510. case 2:
  4511. return &v.unknownFields
  4512. default:
  4513. return nil
  4514. }
  4515. }
  4516. file_userCenter_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  4517. switch v := v.(*Subscribe); i {
  4518. case 0:
  4519. return &v.state
  4520. case 1:
  4521. return &v.sizeCache
  4522. case 2:
  4523. return &v.unknownFields
  4524. default:
  4525. return nil
  4526. }
  4527. }
  4528. file_userCenter_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  4529. switch v := v.(*List); i {
  4530. case 0:
  4531. return &v.state
  4532. case 1:
  4533. return &v.sizeCache
  4534. case 2:
  4535. return &v.unknownFields
  4536. default:
  4537. return nil
  4538. }
  4539. }
  4540. file_userCenter_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  4541. switch v := v.(*Items); i {
  4542. case 0:
  4543. return &v.state
  4544. case 1:
  4545. return &v.sizeCache
  4546. case 2:
  4547. return &v.unknownFields
  4548. default:
  4549. return nil
  4550. }
  4551. }
  4552. file_userCenter_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  4553. switch v := v.(*Keys); i {
  4554. case 0:
  4555. return &v.state
  4556. case 1:
  4557. return &v.sizeCache
  4558. case 2:
  4559. return &v.unknownFields
  4560. default:
  4561. return nil
  4562. }
  4563. }
  4564. file_userCenter_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  4565. switch v := v.(*UserReq); i {
  4566. case 0:
  4567. return &v.state
  4568. case 1:
  4569. return &v.sizeCache
  4570. case 2:
  4571. return &v.unknownFields
  4572. default:
  4573. return nil
  4574. }
  4575. }
  4576. file_userCenter_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  4577. switch v := v.(*EntUserReq); i {
  4578. case 0:
  4579. return &v.state
  4580. case 1:
  4581. return &v.sizeCache
  4582. case 2:
  4583. return &v.unknownFields
  4584. default:
  4585. return nil
  4586. }
  4587. }
  4588. file_userCenter_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  4589. switch v := v.(*EntUserResp); i {
  4590. case 0:
  4591. return &v.state
  4592. case 1:
  4593. return &v.sizeCache
  4594. case 2:
  4595. return &v.unknownFields
  4596. default:
  4597. return nil
  4598. }
  4599. }
  4600. file_userCenter_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  4601. switch v := v.(*EntUser); i {
  4602. case 0:
  4603. return &v.state
  4604. case 1:
  4605. return &v.sizeCache
  4606. case 2:
  4607. return &v.unknownFields
  4608. default:
  4609. return nil
  4610. }
  4611. }
  4612. file_userCenter_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  4613. switch v := v.(*EntUserListReq); i {
  4614. case 0:
  4615. return &v.state
  4616. case 1:
  4617. return &v.sizeCache
  4618. case 2:
  4619. return &v.unknownFields
  4620. default:
  4621. return nil
  4622. }
  4623. }
  4624. file_userCenter_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  4625. switch v := v.(*EntUserListResp); i {
  4626. case 0:
  4627. return &v.state
  4628. case 1:
  4629. return &v.sizeCache
  4630. case 2:
  4631. return &v.unknownFields
  4632. default:
  4633. return nil
  4634. }
  4635. }
  4636. file_userCenter_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  4637. switch v := v.(*EntUserListData); i {
  4638. case 0:
  4639. return &v.state
  4640. case 1:
  4641. return &v.sizeCache
  4642. case 2:
  4643. return &v.unknownFields
  4644. default:
  4645. return nil
  4646. }
  4647. }
  4648. file_userCenter_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  4649. switch v := v.(*CheckIsEntAdminResp); i {
  4650. case 0:
  4651. return &v.state
  4652. case 1:
  4653. return &v.sizeCache
  4654. case 2:
  4655. return &v.unknownFields
  4656. default:
  4657. return nil
  4658. }
  4659. }
  4660. file_userCenter_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  4661. switch v := v.(*GetStatusByCode); i {
  4662. case 0:
  4663. return &v.state
  4664. case 1:
  4665. return &v.sizeCache
  4666. case 2:
  4667. return &v.unknownFields
  4668. default:
  4669. return nil
  4670. }
  4671. }
  4672. file_userCenter_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  4673. switch v := v.(*UserAddReq); i {
  4674. case 0:
  4675. return &v.state
  4676. case 1:
  4677. return &v.sizeCache
  4678. case 2:
  4679. return &v.unknownFields
  4680. default:
  4681. return nil
  4682. }
  4683. }
  4684. file_userCenter_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  4685. switch v := v.(*UserAddResp); i {
  4686. case 0:
  4687. return &v.state
  4688. case 1:
  4689. return &v.sizeCache
  4690. case 2:
  4691. return &v.unknownFields
  4692. default:
  4693. return nil
  4694. }
  4695. }
  4696. file_userCenter_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  4697. switch v := v.(*UserAdds); i {
  4698. case 0:
  4699. return &v.state
  4700. case 1:
  4701. return &v.sizeCache
  4702. case 2:
  4703. return &v.unknownFields
  4704. default:
  4705. return nil
  4706. }
  4707. }
  4708. file_userCenter_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  4709. switch v := v.(*UserIdReq); i {
  4710. case 0:
  4711. return &v.state
  4712. case 1:
  4713. return &v.sizeCache
  4714. case 2:
  4715. return &v.unknownFields
  4716. default:
  4717. return nil
  4718. }
  4719. }
  4720. file_userCenter_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  4721. switch v := v.(*WorkDesktopMenuInfoReq); i {
  4722. case 0:
  4723. return &v.state
  4724. case 1:
  4725. return &v.sizeCache
  4726. case 2:
  4727. return &v.unknownFields
  4728. default:
  4729. return nil
  4730. }
  4731. }
  4732. file_userCenter_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  4733. switch v := v.(*WorkDesktopMenuInfoResp); i {
  4734. case 0:
  4735. return &v.state
  4736. case 1:
  4737. return &v.sizeCache
  4738. case 2:
  4739. return &v.unknownFields
  4740. default:
  4741. return nil
  4742. }
  4743. }
  4744. file_userCenter_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  4745. switch v := v.(*MenuData); i {
  4746. case 0:
  4747. return &v.state
  4748. case 1:
  4749. return &v.sizeCache
  4750. case 2:
  4751. return &v.unknownFields
  4752. default:
  4753. return nil
  4754. }
  4755. }
  4756. file_userCenter_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  4757. switch v := v.(*MenuList); i {
  4758. case 0:
  4759. return &v.state
  4760. case 1:
  4761. return &v.sizeCache
  4762. case 2:
  4763. return &v.unknownFields
  4764. default:
  4765. return nil
  4766. }
  4767. }
  4768. file_userCenter_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  4769. switch v := v.(*SecondLevelMenu); i {
  4770. case 0:
  4771. return &v.state
  4772. case 1:
  4773. return &v.sizeCache
  4774. case 2:
  4775. return &v.unknownFields
  4776. default:
  4777. return nil
  4778. }
  4779. }
  4780. file_userCenter_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  4781. switch v := v.(*ThreeLevelMenu); i {
  4782. case 0:
  4783. return &v.state
  4784. case 1:
  4785. return &v.sizeCache
  4786. case 2:
  4787. return &v.unknownFields
  4788. default:
  4789. return nil
  4790. }
  4791. }
  4792. file_userCenter_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  4793. switch v := v.(*TipInfo); i {
  4794. case 0:
  4795. return &v.state
  4796. case 1:
  4797. return &v.sizeCache
  4798. case 2:
  4799. return &v.unknownFields
  4800. default:
  4801. return nil
  4802. }
  4803. }
  4804. file_userCenter_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  4805. switch v := v.(*WorkDesktopComprehensiveReq); i {
  4806. case 0:
  4807. return &v.state
  4808. case 1:
  4809. return &v.sizeCache
  4810. case 2:
  4811. return &v.unknownFields
  4812. default:
  4813. return nil
  4814. }
  4815. }
  4816. file_userCenter_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  4817. switch v := v.(*WorkDesktopComprehensiveResp); i {
  4818. case 0:
  4819. return &v.state
  4820. case 1:
  4821. return &v.sizeCache
  4822. case 2:
  4823. return &v.unknownFields
  4824. default:
  4825. return nil
  4826. }
  4827. }
  4828. file_userCenter_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  4829. switch v := v.(*WorkDesktopClearUserInfoReq); i {
  4830. case 0:
  4831. return &v.state
  4832. case 1:
  4833. return &v.sizeCache
  4834. case 2:
  4835. return &v.unknownFields
  4836. default:
  4837. return nil
  4838. }
  4839. }
  4840. }
  4841. type x struct{}
  4842. out := protoimpl.TypeBuilder{
  4843. File: protoimpl.DescBuilder{
  4844. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  4845. RawDescriptor: file_userCenter_proto_rawDesc,
  4846. NumEnums: 0,
  4847. NumMessages: 52,
  4848. NumExtensions: 0,
  4849. NumServices: 1,
  4850. },
  4851. GoTypes: file_userCenter_proto_goTypes,
  4852. DependencyIndexes: file_userCenter_proto_depIdxs,
  4853. MessageInfos: file_userCenter_proto_msgTypes,
  4854. }.Build()
  4855. File_userCenter_proto = out.File
  4856. file_userCenter_proto_rawDesc = nil
  4857. file_userCenter_proto_goTypes = nil
  4858. file_userCenter_proto_depIdxs = nil
  4859. }