123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // versions:
- // protoc-gen-go v1.28.0
- // protoc v3.15.5
- // source: userCenter.proto
- package pb
- import (
- protoreflect "google.golang.org/protobuf/reflect/protoreflect"
- protoimpl "google.golang.org/protobuf/runtime/protoimpl"
- reflect "reflect"
- sync "sync"
- )
- const (
- // Verify that this generated code is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
- // Verify that runtime/protoimpl is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
- )
- //机构认证 入参
- type EntAuthReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` //机构/企业名称
- CreditCode string `protobuf:"bytes,2,opt,name=creditCode,proto3" json:"creditCode,omitempty"` //统一社会信用代码
- AreaNumber string `protobuf:"bytes,3,opt,name=areaNumber,proto3" json:"areaNumber,omitempty"` //省市(行政区划代码)
- Business string `protobuf:"bytes,4,opt,name=business,proto3" json:"business,omitempty"` //营业执照
- OfficialLetter string `protobuf:"bytes,5,opt,name=officialLetter,proto3" json:"officialLetter,omitempty"` //认证公函
- OrganizationType string `protobuf:"bytes,6,opt,name=organizationType,proto3" json:"organizationType,omitempty"` //机构类型 1投标企业 2招标采购单位 3厂商 4招标代理机构 5经销商 6服务提供商 7其他
- ComPanyType string `protobuf:"bytes,7,opt,name=comPanyType,proto3" json:"comPanyType,omitempty"` //机构性质 1企业 2党政机关事业单位及其他
- AuthName string `protobuf:"bytes,8,opt,name=authName,proto3" json:"authName,omitempty"` //联系人姓名
- AuthPhone string `protobuf:"bytes,9,opt,name=authPhone,proto3" json:"authPhone,omitempty"` //联系人手机号
- Phone string `protobuf:"bytes,10,opt,name=phone,proto3" json:"phone,omitempty"` //注册手机号
- EntId int64 `protobuf:"varint,11,opt,name=entId,proto3" json:"entId,omitempty"` //企业id
- }
- func (x *EntAuthReq) Reset() {
- *x = EntAuthReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *EntAuthReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EntAuthReq) ProtoMessage() {}
- func (x *EntAuthReq) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[0]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EntAuthReq.ProtoReflect.Descriptor instead.
- func (*EntAuthReq) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{0}
- }
- func (x *EntAuthReq) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *EntAuthReq) GetCreditCode() string {
- if x != nil {
- return x.CreditCode
- }
- return ""
- }
- func (x *EntAuthReq) GetAreaNumber() string {
- if x != nil {
- return x.AreaNumber
- }
- return ""
- }
- func (x *EntAuthReq) GetBusiness() string {
- if x != nil {
- return x.Business
- }
- return ""
- }
- func (x *EntAuthReq) GetOfficialLetter() string {
- if x != nil {
- return x.OfficialLetter
- }
- return ""
- }
- func (x *EntAuthReq) GetOrganizationType() string {
- if x != nil {
- return x.OrganizationType
- }
- return ""
- }
- func (x *EntAuthReq) GetComPanyType() string {
- if x != nil {
- return x.ComPanyType
- }
- return ""
- }
- func (x *EntAuthReq) GetAuthName() string {
- if x != nil {
- return x.AuthName
- }
- return ""
- }
- func (x *EntAuthReq) GetAuthPhone() string {
- if x != nil {
- return x.AuthPhone
- }
- return ""
- }
- func (x *EntAuthReq) GetPhone() string {
- if x != nil {
- return x.Phone
- }
- return ""
- }
- func (x *EntAuthReq) GetEntId() int64 {
- if x != nil {
- return x.EntId
- }
- return 0
- }
- //机构认证出参
- type EntAuthResp struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
- ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
- Data *EntAuthData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
- }
- func (x *EntAuthResp) Reset() {
- *x = EntAuthResp{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[1]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *EntAuthResp) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EntAuthResp) ProtoMessage() {}
- func (x *EntAuthResp) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[1]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EntAuthResp.ProtoReflect.Descriptor instead.
- func (*EntAuthResp) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{1}
- }
- func (x *EntAuthResp) GetErrorCode() int64 {
- if x != nil {
- return x.ErrorCode
- }
- return 0
- }
- func (x *EntAuthResp) GetErrorMsg() string {
- if x != nil {
- return x.ErrorMsg
- }
- return ""
- }
- func (x *EntAuthResp) GetData() *EntAuthData {
- if x != nil {
- return x.Data
- }
- return nil
- }
- //机构认证出参
- type EntAuthData struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
- EntId string `protobuf:"bytes,2,opt,name=entId,proto3" json:"entId,omitempty"` //加密的entid
- }
- func (x *EntAuthData) Reset() {
- *x = EntAuthData{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[2]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *EntAuthData) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EntAuthData) ProtoMessage() {}
- func (x *EntAuthData) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[2]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EntAuthData.ProtoReflect.Descriptor instead.
- func (*EntAuthData) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{2}
- }
- func (x *EntAuthData) GetStatus() int64 {
- if x != nil {
- return x.Status
- }
- return 0
- }
- func (x *EntAuthData) GetEntId() string {
- if x != nil {
- return x.EntId
- }
- return ""
- }
- //机构审核入参
- type ExamineReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- EntId int64 `protobuf:"varint,1,opt,name=EntId,proto3" json:"EntId,omitempty"` //企业id
- AuthType string `protobuf:"bytes,2,opt,name=AuthType,proto3" json:"AuthType,omitempty"` //审核状态 2审核通过 3审核不通过
- Reason string `protobuf:"bytes,3,opt,name=Reason,proto3" json:"Reason,omitempty"` //不通过原因
- AuditUser string `protobuf:"bytes,4,opt,name=AuditUser,proto3" json:"AuditUser,omitempty"` //审核人
- ExamineId string `protobuf:"bytes,5,opt,name=ExamineId,proto3" json:"ExamineId,omitempty"` //审核id 认证记录表主键id
- }
- func (x *ExamineReq) Reset() {
- *x = ExamineReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[3]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ExamineReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExamineReq) ProtoMessage() {}
- func (x *ExamineReq) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[3]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ExamineReq.ProtoReflect.Descriptor instead.
- func (*ExamineReq) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{3}
- }
- func (x *ExamineReq) GetEntId() int64 {
- if x != nil {
- return x.EntId
- }
- return 0
- }
- func (x *ExamineReq) GetAuthType() string {
- if x != nil {
- return x.AuthType
- }
- return ""
- }
- func (x *ExamineReq) GetReason() string {
- if x != nil {
- return x.Reason
- }
- return ""
- }
- func (x *ExamineReq) GetAuditUser() string {
- if x != nil {
- return x.AuditUser
- }
- return ""
- }
- func (x *ExamineReq) GetExamineId() string {
- if x != nil {
- return x.ExamineId
- }
- return ""
- }
- //机构审核出参
- type ExamineResp struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
- ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
- Data *ExamineData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
- }
- func (x *ExamineResp) Reset() {
- *x = ExamineResp{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[4]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ExamineResp) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExamineResp) ProtoMessage() {}
- func (x *ExamineResp) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[4]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ExamineResp.ProtoReflect.Descriptor instead.
- func (*ExamineResp) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{4}
- }
- func (x *ExamineResp) GetErrorCode() int64 {
- if x != nil {
- return x.ErrorCode
- }
- return 0
- }
- func (x *ExamineResp) GetErrorMsg() string {
- if x != nil {
- return x.ErrorMsg
- }
- return ""
- }
- func (x *ExamineResp) GetData() *ExamineData {
- if x != nil {
- return x.Data
- }
- return nil
- }
- type ExamineData struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
- }
- func (x *ExamineData) Reset() {
- *x = ExamineData{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[5]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ExamineData) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExamineData) ProtoMessage() {}
- func (x *ExamineData) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[5]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ExamineData.ProtoReflect.Descriptor instead.
- func (*ExamineData) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{5}
- }
- func (x *ExamineData) GetStatus() int64 {
- if x != nil {
- return x.Status
- }
- return 0
- }
- //企业列表入参
- type EntListReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` //企业名称
- PageNum string `protobuf:"bytes,2,opt,name=pageNum,proto3" json:"pageNum,omitempty"` //页码,不传默认第一页 第一页为0
- PageSize string `protobuf:"bytes,3,opt,name=pageSize,proto3" json:"pageSize,omitempty"` //每页显示条数,不传默认为10
- CreditCode string `protobuf:"bytes,4,opt,name=creditCode,proto3" json:"creditCode,omitempty"` //统一社会信用代码
- CreateStartTime string `protobuf:"bytes,5,opt,name=createStartTime,proto3" json:"createStartTime,omitempty"` //创建开始时间戳
- CreateEndTime string `protobuf:"bytes,6,opt,name=createEndTime,proto3" json:"createEndTime,omitempty"` //创建结束时间戳
- AuthStatus string `protobuf:"bytes,7,opt,name=authStatus,proto3" json:"authStatus,omitempty"` //认证状态 0未认证 1已认证
- ValidStartTime string `protobuf:"bytes,8,opt,name=validStartTime,proto3" json:"validStartTime,omitempty"` //有效截至开始时间戳
- ValidEndTime string `protobuf:"bytes,9,opt,name=validEndTime,proto3" json:"validEndTime,omitempty"` //有效截止时间戳
- FrozenStatus string `protobuf:"bytes,10,opt,name=frozenStatus,proto3" json:"frozenStatus,omitempty"` //冻结状态 1正常 0冻结
- RegPhone string `protobuf:"bytes,11,opt,name=regPhone,proto3" json:"regPhone,omitempty"` //注册人手机号 即管理员手机号
- AuthPhone string `protobuf:"bytes,12,opt,name=authPhone,proto3" json:"authPhone,omitempty"` //联系人手机号
- }
- func (x *EntListReq) Reset() {
- *x = EntListReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[6]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *EntListReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EntListReq) ProtoMessage() {}
- func (x *EntListReq) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[6]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EntListReq.ProtoReflect.Descriptor instead.
- func (*EntListReq) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{6}
- }
- func (x *EntListReq) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *EntListReq) GetPageNum() string {
- if x != nil {
- return x.PageNum
- }
- return ""
- }
- func (x *EntListReq) GetPageSize() string {
- if x != nil {
- return x.PageSize
- }
- return ""
- }
- func (x *EntListReq) GetCreditCode() string {
- if x != nil {
- return x.CreditCode
- }
- return ""
- }
- func (x *EntListReq) GetCreateStartTime() string {
- if x != nil {
- return x.CreateStartTime
- }
- return ""
- }
- func (x *EntListReq) GetCreateEndTime() string {
- if x != nil {
- return x.CreateEndTime
- }
- return ""
- }
- func (x *EntListReq) GetAuthStatus() string {
- if x != nil {
- return x.AuthStatus
- }
- return ""
- }
- func (x *EntListReq) GetValidStartTime() string {
- if x != nil {
- return x.ValidStartTime
- }
- return ""
- }
- func (x *EntListReq) GetValidEndTime() string {
- if x != nil {
- return x.ValidEndTime
- }
- return ""
- }
- func (x *EntListReq) GetFrozenStatus() string {
- if x != nil {
- return x.FrozenStatus
- }
- return ""
- }
- func (x *EntListReq) GetRegPhone() string {
- if x != nil {
- return x.RegPhone
- }
- return ""
- }
- func (x *EntListReq) GetAuthPhone() string {
- if x != nil {
- return x.AuthPhone
- }
- return ""
- }
- //企业列表出参
- type EntListResp struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
- ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
- Data *EntData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` //列表
- }
- func (x *EntListResp) Reset() {
- *x = EntListResp{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[7]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *EntListResp) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EntListResp) ProtoMessage() {}
- func (x *EntListResp) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[7]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EntListResp.ProtoReflect.Descriptor instead.
- func (*EntListResp) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{7}
- }
- func (x *EntListResp) GetErrorCode() int64 {
- if x != nil {
- return x.ErrorCode
- }
- return 0
- }
- func (x *EntListResp) GetErrorMsg() string {
- if x != nil {
- return x.ErrorMsg
- }
- return ""
- }
- func (x *EntListResp) GetData() *EntData {
- if x != nil {
- return x.Data
- }
- return nil
- }
- type EntData struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Count int64 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
- PageSize int64 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
- List []*EntList `protobuf:"bytes,3,rep,name=list,proto3" json:"list,omitempty"`
- }
- func (x *EntData) Reset() {
- *x = EntData{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[8]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *EntData) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EntData) ProtoMessage() {}
- func (x *EntData) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[8]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EntData.ProtoReflect.Descriptor instead.
- func (*EntData) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{8}
- }
- func (x *EntData) GetCount() int64 {
- if x != nil {
- return x.Count
- }
- return 0
- }
- func (x *EntData) GetPageSize() int64 {
- if x != nil {
- return x.PageSize
- }
- return 0
- }
- func (x *EntData) GetList() []*EntList {
- if x != nil {
- return x.List
- }
- return nil
- }
- type EntList struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` //机构id
- ComPanyType int64 `protobuf:"varint,2,opt,name=comPanyType,proto3" json:"comPanyType,omitempty"` // 机构性质 1企业 2党政机关事业单位及其他
- Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` //机构名称
- OrganizationType string `protobuf:"bytes,4,opt,name=organizationType,proto3" json:"organizationType,omitempty"` //机构类型 1企业 2党政机关事业单位及其他
- Createtime string `protobuf:"bytes,5,opt,name=createtime,proto3" json:"createtime,omitempty"` //创建时间
- ValidTime string `protobuf:"bytes,6,opt,name=validTime,proto3" json:"validTime,omitempty"` //有效截至日期
- AuthStatus int64 `protobuf:"varint,7,opt,name=authStatus,proto3" json:"authStatus,omitempty"` //认证状态
- FrozenStatus int64 `protobuf:"varint,8,opt,name=frozenStatus,proto3" json:"frozenStatus,omitempty"` //冻结状态 1冻结 0未冻结
- }
- func (x *EntList) Reset() {
- *x = EntList{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[9]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *EntList) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EntList) ProtoMessage() {}
- func (x *EntList) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[9]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EntList.ProtoReflect.Descriptor instead.
- func (*EntList) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{9}
- }
- func (x *EntList) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *EntList) GetComPanyType() int64 {
- if x != nil {
- return x.ComPanyType
- }
- return 0
- }
- func (x *EntList) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *EntList) GetOrganizationType() string {
- if x != nil {
- return x.OrganizationType
- }
- return ""
- }
- func (x *EntList) GetCreatetime() string {
- if x != nil {
- return x.Createtime
- }
- return ""
- }
- func (x *EntList) GetValidTime() string {
- if x != nil {
- return x.ValidTime
- }
- return ""
- }
- func (x *EntList) GetAuthStatus() int64 {
- if x != nil {
- return x.AuthStatus
- }
- return 0
- }
- func (x *EntList) GetFrozenStatus() int64 {
- if x != nil {
- return x.FrozenStatus
- }
- return 0
- }
- //审核列表入参
- type ExamineListReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` //机构名称
- AuthPhone string `protobuf:"bytes,2,opt,name=authPhone,proto3" json:"authPhone,omitempty"` //联系人手机号
- RegPhone string `protobuf:"bytes,3,opt,name=regPhone,proto3" json:"regPhone,omitempty"` //注册人手机号
- AuthType string `protobuf:"bytes,4,opt,name=authType,proto3" json:"authType,omitempty"` //审核状态 1:待审核 2:审核通过 3:审核不通过
- AuthStartTime string `protobuf:"bytes,5,opt,name=authStartTime,proto3" json:"authStartTime,omitempty"` //申请开始时间
- AuthEndTime string `protobuf:"bytes,6,opt,name=authEndTime,proto3" json:"authEndTime,omitempty"` //申请结束时间
- PageNum string `protobuf:"bytes,7,opt,name=pageNum,proto3" json:"pageNum,omitempty"` //页码
- PageSize string `protobuf:"bytes,8,opt,name=pageSize,proto3" json:"pageSize,omitempty"` //每页展示条数
- }
- func (x *ExamineListReq) Reset() {
- *x = ExamineListReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[10]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ExamineListReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExamineListReq) ProtoMessage() {}
- func (x *ExamineListReq) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[10]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ExamineListReq.ProtoReflect.Descriptor instead.
- func (*ExamineListReq) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{10}
- }
- func (x *ExamineListReq) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *ExamineListReq) GetAuthPhone() string {
- if x != nil {
- return x.AuthPhone
- }
- return ""
- }
- func (x *ExamineListReq) GetRegPhone() string {
- if x != nil {
- return x.RegPhone
- }
- return ""
- }
- func (x *ExamineListReq) GetAuthType() string {
- if x != nil {
- return x.AuthType
- }
- return ""
- }
- func (x *ExamineListReq) GetAuthStartTime() string {
- if x != nil {
- return x.AuthStartTime
- }
- return ""
- }
- func (x *ExamineListReq) GetAuthEndTime() string {
- if x != nil {
- return x.AuthEndTime
- }
- return ""
- }
- func (x *ExamineListReq) GetPageNum() string {
- if x != nil {
- return x.PageNum
- }
- return ""
- }
- func (x *ExamineListReq) GetPageSize() string {
- if x != nil {
- return x.PageSize
- }
- return ""
- }
- //审核列表出参
- type ExamineListResp struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
- ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
- Data *ExamineListData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` //列表
- }
- func (x *ExamineListResp) Reset() {
- *x = ExamineListResp{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[11]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ExamineListResp) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExamineListResp) ProtoMessage() {}
- func (x *ExamineListResp) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[11]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ExamineListResp.ProtoReflect.Descriptor instead.
- func (*ExamineListResp) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{11}
- }
- func (x *ExamineListResp) GetErrorCode() int64 {
- if x != nil {
- return x.ErrorCode
- }
- return 0
- }
- func (x *ExamineListResp) GetErrorMsg() string {
- if x != nil {
- return x.ErrorMsg
- }
- return ""
- }
- func (x *ExamineListResp) GetData() *ExamineListData {
- if x != nil {
- return x.Data
- }
- return nil
- }
- type ExamineListData struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Count int64 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
- PageSize int64 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
- List []*ExamineList `protobuf:"bytes,3,rep,name=list,proto3" json:"list,omitempty"`
- }
- func (x *ExamineListData) Reset() {
- *x = ExamineListData{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[12]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ExamineListData) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExamineListData) ProtoMessage() {}
- func (x *ExamineListData) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[12]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ExamineListData.ProtoReflect.Descriptor instead.
- func (*ExamineListData) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{12}
- }
- func (x *ExamineListData) GetCount() int64 {
- if x != nil {
- return x.Count
- }
- return 0
- }
- func (x *ExamineListData) GetPageSize() int64 {
- if x != nil {
- return x.PageSize
- }
- return 0
- }
- func (x *ExamineListData) GetList() []*ExamineList {
- if x != nil {
- return x.List
- }
- return nil
- }
- type ExamineList struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` //机构id
- EntId int64 `protobuf:"varint,2,opt,name=entId,proto3" json:"entId,omitempty"` //企业id
- ComPanyType int64 `protobuf:"varint,3,opt,name=comPanyType,proto3" json:"comPanyType,omitempty"` // 机构性质 1企业 2党政机关事业单位及其他
- Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"` //机构名称
- CreditCode string `protobuf:"bytes,5,opt,name=creditCode,proto3" json:"creditCode,omitempty"` //统一社会信用代码
- AuthPhone string `protobuf:"bytes,6,opt,name=authPhone,proto3" json:"authPhone,omitempty"` //联系人手机号
- ApplyTime string `protobuf:"bytes,7,opt,name=applyTime,proto3" json:"applyTime,omitempty"` //申请时间戳
- AuthType int64 `protobuf:"varint,8,opt,name=authType,proto3" json:"authType,omitempty"` //审核状态 1:待审核 2:审核通过 3:审核不通过
- RegPhone string `protobuf:"bytes,9,opt,name=regPhone,proto3" json:"regPhone,omitempty"` //注册人手机号
- }
- func (x *ExamineList) Reset() {
- *x = ExamineList{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[13]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ExamineList) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExamineList) ProtoMessage() {}
- func (x *ExamineList) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[13]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ExamineList.ProtoReflect.Descriptor instead.
- func (*ExamineList) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{13}
- }
- func (x *ExamineList) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *ExamineList) GetEntId() int64 {
- if x != nil {
- return x.EntId
- }
- return 0
- }
- func (x *ExamineList) GetComPanyType() int64 {
- if x != nil {
- return x.ComPanyType
- }
- return 0
- }
- func (x *ExamineList) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *ExamineList) GetCreditCode() string {
- if x != nil {
- return x.CreditCode
- }
- return ""
- }
- func (x *ExamineList) GetAuthPhone() string {
- if x != nil {
- return x.AuthPhone
- }
- return ""
- }
- func (x *ExamineList) GetApplyTime() string {
- if x != nil {
- return x.ApplyTime
- }
- return ""
- }
- func (x *ExamineList) GetAuthType() int64 {
- if x != nil {
- return x.AuthType
- }
- return 0
- }
- func (x *ExamineList) GetRegPhone() string {
- if x != nil {
- return x.RegPhone
- }
- return ""
- }
- //查看企业状态入参
- type CheckEntReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- EntId int64 `protobuf:"varint,1,opt,name=entId,proto3" json:"entId,omitempty"` //企业id
- }
- func (x *CheckEntReq) Reset() {
- *x = CheckEntReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[14]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *CheckEntReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*CheckEntReq) ProtoMessage() {}
- func (x *CheckEntReq) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[14]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use CheckEntReq.ProtoReflect.Descriptor instead.
- func (*CheckEntReq) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{14}
- }
- func (x *CheckEntReq) GetEntId() int64 {
- if x != nil {
- return x.EntId
- }
- return 0
- }
- //查看企业状态出参
- type CheckEntResp struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
- ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
- Data *CheckData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
- }
- func (x *CheckEntResp) Reset() {
- *x = CheckEntResp{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[15]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *CheckEntResp) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*CheckEntResp) ProtoMessage() {}
- func (x *CheckEntResp) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[15]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use CheckEntResp.ProtoReflect.Descriptor instead.
- func (*CheckEntResp) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{15}
- }
- func (x *CheckEntResp) GetErrorCode() int64 {
- if x != nil {
- return x.ErrorCode
- }
- return 0
- }
- func (x *CheckEntResp) GetErrorMsg() string {
- if x != nil {
- return x.ErrorMsg
- }
- return ""
- }
- func (x *CheckEntResp) GetData() *CheckData {
- if x != nil {
- return x.Data
- }
- return nil
- }
- type CheckData struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- AuthStatus int64 `protobuf:"varint,1,opt,name=authStatus,proto3" json:"authStatus,omitempty"` //企业是否认证 -1 未通过,0 未认证,1 已认证. -2 已到期 3待审核
- FrozenStatus int64 `protobuf:"varint,2,opt,name=frozenStatus,proto3" json:"frozenStatus,omitempty"` //冻结 1正常 0冻结
- }
- func (x *CheckData) Reset() {
- *x = CheckData{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[16]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *CheckData) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*CheckData) ProtoMessage() {}
- func (x *CheckData) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[16]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use CheckData.ProtoReflect.Descriptor instead.
- func (*CheckData) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{16}
- }
- func (x *CheckData) GetAuthStatus() int64 {
- if x != nil {
- return x.AuthStatus
- }
- return 0
- }
- func (x *CheckData) GetFrozenStatus() int64 {
- if x != nil {
- return x.FrozenStatus
- }
- return 0
- }
- type EntInfoResp struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
- ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
- Data *EntInfoData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` //列表
- }
- func (x *EntInfoResp) Reset() {
- *x = EntInfoResp{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[17]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *EntInfoResp) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EntInfoResp) ProtoMessage() {}
- func (x *EntInfoResp) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[17]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EntInfoResp.ProtoReflect.Descriptor instead.
- func (*EntInfoResp) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{17}
- }
- func (x *EntInfoResp) GetErrorCode() int64 {
- if x != nil {
- return x.ErrorCode
- }
- return 0
- }
- func (x *EntInfoResp) GetErrorMsg() string {
- if x != nil {
- return x.ErrorMsg
- }
- return ""
- }
- func (x *EntInfoResp) GetData() *EntInfoData {
- if x != nil {
- return x.Data
- }
- return nil
- }
- type EntInfoData struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` //名称
- AreaNumber string `protobuf:"bytes,2,opt,name=areaNumber,proto3" json:"areaNumber,omitempty"` //区域代码
- ContactPerson string `protobuf:"bytes,3,opt,name=contactPerson,proto3" json:"contactPerson,omitempty"` //联系人
- ContactPhone string `protobuf:"bytes,4,opt,name=contactPhone,proto3" json:"contactPhone,omitempty"` //联系电话
- AuthState int64 `protobuf:"varint,5,opt,name=authState,proto3" json:"authState,omitempty"` //0未认证 1已认证
- Industry string `protobuf:"bytes,6,opt,name=industry,proto3" json:"industry,omitempty"` //行业
- CompanyType int64 `protobuf:"varint,7,opt,name=companyType,proto3" json:"companyType,omitempty"` //1-事业单位 0-企业
- CreditCode string `protobuf:"bytes,8,opt,name=creditCode,proto3" json:"creditCode,omitempty"` //统一社会信用代码
- LegalPerson string `protobuf:"bytes,9,opt,name=legalPerson,proto3" json:"legalPerson,omitempty"` //法人姓名
- Business string `protobuf:"bytes,10,opt,name=business,proto3" json:"business,omitempty"` //营业执照
- OfficialLetter string `protobuf:"bytes,11,opt,name=officialLetter,proto3" json:"officialLetter,omitempty"` //认证公函
- OrganizationType string `protobuf:"bytes,12,opt,name=organizationType,proto3" json:"organizationType,omitempty"` //机构类型 1投标企业 2招标采购单位 3厂商 4招标代理机构 5经销商 6服务提供商 7其他, 多个,隔开
- AuthType int64 `protobuf:"varint,13,opt,name=authType,proto3" json:"authType,omitempty"` //1待审核 2审核通过 3审核不通过
- ForzenStatus int64 `protobuf:"varint,14,opt,name=forzenStatus,proto3" json:"forzenStatus,omitempty"` //1冻结 0未冻结
- AuditUser string `protobuf:"bytes,15,opt,name=auditUser,proto3" json:"auditUser,omitempty"` //审核人
- AuditTime string `protobuf:"bytes,16,opt,name=auditTime,proto3" json:"auditTime,omitempty"` //审核时间
- CreateTime string `protobuf:"bytes,17,opt,name=createTime,proto3" json:"createTime,omitempty"` //创建时间
- AuthStartTime string `protobuf:"bytes,18,opt,name=authStartTime,proto3" json:"authStartTime,omitempty"` //认证开始时间
- AuthEndTime string `protobuf:"bytes,19,opt,name=authEndTime,proto3" json:"authEndTime,omitempty"` //认证截止时间
- AuthReason string `protobuf:"bytes,20,opt,name=authReason,proto3" json:"authReason,omitempty"` //审核原因
- AuthTime string `protobuf:"bytes,21,opt,name=authTime,proto3" json:"authTime,omitempty"` //申请时间
- RegPhone string `protobuf:"bytes,22,opt,name=regPhone,proto3" json:"regPhone,omitempty"` //注册人手机号
- }
- func (x *EntInfoData) Reset() {
- *x = EntInfoData{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[18]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *EntInfoData) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EntInfoData) ProtoMessage() {}
- func (x *EntInfoData) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[18]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EntInfoData.ProtoReflect.Descriptor instead.
- func (*EntInfoData) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{18}
- }
- func (x *EntInfoData) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *EntInfoData) GetAreaNumber() string {
- if x != nil {
- return x.AreaNumber
- }
- return ""
- }
- func (x *EntInfoData) GetContactPerson() string {
- if x != nil {
- return x.ContactPerson
- }
- return ""
- }
- func (x *EntInfoData) GetContactPhone() string {
- if x != nil {
- return x.ContactPhone
- }
- return ""
- }
- func (x *EntInfoData) GetAuthState() int64 {
- if x != nil {
- return x.AuthState
- }
- return 0
- }
- func (x *EntInfoData) GetIndustry() string {
- if x != nil {
- return x.Industry
- }
- return ""
- }
- func (x *EntInfoData) GetCompanyType() int64 {
- if x != nil {
- return x.CompanyType
- }
- return 0
- }
- func (x *EntInfoData) GetCreditCode() string {
- if x != nil {
- return x.CreditCode
- }
- return ""
- }
- func (x *EntInfoData) GetLegalPerson() string {
- if x != nil {
- return x.LegalPerson
- }
- return ""
- }
- func (x *EntInfoData) GetBusiness() string {
- if x != nil {
- return x.Business
- }
- return ""
- }
- func (x *EntInfoData) GetOfficialLetter() string {
- if x != nil {
- return x.OfficialLetter
- }
- return ""
- }
- func (x *EntInfoData) GetOrganizationType() string {
- if x != nil {
- return x.OrganizationType
- }
- return ""
- }
- func (x *EntInfoData) GetAuthType() int64 {
- if x != nil {
- return x.AuthType
- }
- return 0
- }
- func (x *EntInfoData) GetForzenStatus() int64 {
- if x != nil {
- return x.ForzenStatus
- }
- return 0
- }
- func (x *EntInfoData) GetAuditUser() string {
- if x != nil {
- return x.AuditUser
- }
- return ""
- }
- func (x *EntInfoData) GetAuditTime() string {
- if x != nil {
- return x.AuditTime
- }
- return ""
- }
- func (x *EntInfoData) GetCreateTime() string {
- if x != nil {
- return x.CreateTime
- }
- return ""
- }
- func (x *EntInfoData) GetAuthStartTime() string {
- if x != nil {
- return x.AuthStartTime
- }
- return ""
- }
- func (x *EntInfoData) GetAuthEndTime() string {
- if x != nil {
- return x.AuthEndTime
- }
- return ""
- }
- func (x *EntInfoData) GetAuthReason() string {
- if x != nil {
- return x.AuthReason
- }
- return ""
- }
- func (x *EntInfoData) GetAuthTime() string {
- if x != nil {
- return x.AuthTime
- }
- return ""
- }
- func (x *EntInfoData) GetRegPhone() string {
- if x != nil {
- return x.RegPhone
- }
- return ""
- }
- type EntUpdateReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- EntId int64 `protobuf:"varint,1,opt,name=entId,proto3" json:"entId,omitempty"` //企业id
- UpdateType int64 `protobuf:"varint,2,opt,name=updateType,proto3" json:"updateType,omitempty"` //1-冻结 2-解冻
- }
- func (x *EntUpdateReq) Reset() {
- *x = EntUpdateReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[19]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *EntUpdateReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EntUpdateReq) ProtoMessage() {}
- func (x *EntUpdateReq) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[19]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EntUpdateReq.ProtoReflect.Descriptor instead.
- func (*EntUpdateReq) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{19}
- }
- func (x *EntUpdateReq) GetEntId() int64 {
- if x != nil {
- return x.EntId
- }
- return 0
- }
- func (x *EntUpdateReq) GetUpdateType() int64 {
- if x != nil {
- return x.UpdateType
- }
- return 0
- }
- //审核详情入参
- type CheckExamineReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ExamineId int64 `protobuf:"varint,1,opt,name=examineId,proto3" json:"examineId,omitempty"` //审核id
- }
- func (x *CheckExamineReq) Reset() {
- *x = CheckExamineReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[20]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *CheckExamineReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*CheckExamineReq) ProtoMessage() {}
- func (x *CheckExamineReq) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[20]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use CheckExamineReq.ProtoReflect.Descriptor instead.
- func (*CheckExamineReq) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{20}
- }
- func (x *CheckExamineReq) GetExamineId() int64 {
- if x != nil {
- return x.ExamineId
- }
- return 0
- }
- type GetStatusByCodeReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"` //统一社会信用代码
- Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"` //注册手机号
- }
- func (x *GetStatusByCodeReq) Reset() {
- *x = GetStatusByCodeReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[21]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetStatusByCodeReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetStatusByCodeReq) ProtoMessage() {}
- func (x *GetStatusByCodeReq) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[21]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetStatusByCodeReq.ProtoReflect.Descriptor instead.
- func (*GetStatusByCodeReq) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{21}
- }
- func (x *GetStatusByCodeReq) GetCode() string {
- if x != nil {
- return x.Code
- }
- return ""
- }
- func (x *GetStatusByCodeReq) GetPhone() string {
- if x != nil {
- return x.Phone
- }
- return ""
- }
- type GetStatusByCodeResp struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
- ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
- Data *GetStatusByCode `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` //详情
- }
- func (x *GetStatusByCodeResp) Reset() {
- *x = GetStatusByCodeResp{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[22]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetStatusByCodeResp) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetStatusByCodeResp) ProtoMessage() {}
- func (x *GetStatusByCodeResp) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[22]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetStatusByCodeResp.ProtoReflect.Descriptor instead.
- func (*GetStatusByCodeResp) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{22}
- }
- func (x *GetStatusByCodeResp) GetErrorCode() int64 {
- if x != nil {
- return x.ErrorCode
- }
- return 0
- }
- func (x *GetStatusByCodeResp) GetErrorMsg() string {
- if x != nil {
- return x.ErrorMsg
- }
- return ""
- }
- func (x *GetStatusByCodeResp) GetData() *GetStatusByCode {
- if x != nil {
- return x.Data
- }
- return nil
- }
- type GetStatusByCode struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- AuthStatus int64 `protobuf:"varint,1,opt,name=authStatus,proto3" json:"authStatus,omitempty"` //企业是否认证 -1 未通过,0 未认证,1 已认证. -2 已到期 3待审核
- IsInEnt bool `protobuf:"varint,2,opt,name=isInEnt,proto3" json:"isInEnt,omitempty"` //是否在该企业内
- }
- func (x *GetStatusByCode) Reset() {
- *x = GetStatusByCode{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[23]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetStatusByCode) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetStatusByCode) ProtoMessage() {}
- func (x *GetStatusByCode) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[23]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetStatusByCode.ProtoReflect.Descriptor instead.
- func (*GetStatusByCode) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{23}
- }
- func (x *GetStatusByCode) GetAuthStatus() int64 {
- if x != nil {
- return x.AuthStatus
- }
- return 0
- }
- func (x *GetStatusByCode) GetIsInEnt() bool {
- if x != nil {
- return x.IsInEnt
- }
- return false
- }
- type UserAddReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
- Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
- Nickname string `protobuf:"bytes,3,opt,name=nickname,proto3" json:"nickname,omitempty"`
- Headimg string `protobuf:"bytes,4,opt,name=headimg,proto3" json:"headimg,omitempty"`
- Company string `protobuf:"bytes,5,opt,name=company,proto3" json:"company,omitempty"`
- Position string `protobuf:"bytes,6,opt,name=position,proto3" json:"position,omitempty"`
- Password string `protobuf:"bytes,7,opt,name=password,proto3" json:"password,omitempty"`
- SOpenid string `protobuf:"bytes,8,opt,name=s_openid,json=sOpenid,proto3" json:"s_openid,omitempty"`
- AOpenid string `protobuf:"bytes,9,opt,name=a_openid,json=aOpenid,proto3" json:"a_openid,omitempty"`
- Unionid string `protobuf:"bytes,10,opt,name=unionid,proto3" json:"unionid,omitempty"`
- }
- func (x *UserAddReq) Reset() {
- *x = UserAddReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[24]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *UserAddReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*UserAddReq) ProtoMessage() {}
- func (x *UserAddReq) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[24]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use UserAddReq.ProtoReflect.Descriptor instead.
- func (*UserAddReq) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{24}
- }
- func (x *UserAddReq) GetAppid() string {
- if x != nil {
- return x.Appid
- }
- return ""
- }
- func (x *UserAddReq) GetPhone() string {
- if x != nil {
- return x.Phone
- }
- return ""
- }
- func (x *UserAddReq) GetNickname() string {
- if x != nil {
- return x.Nickname
- }
- return ""
- }
- func (x *UserAddReq) GetHeadimg() string {
- if x != nil {
- return x.Headimg
- }
- return ""
- }
- func (x *UserAddReq) GetCompany() string {
- if x != nil {
- return x.Company
- }
- return ""
- }
- func (x *UserAddReq) GetPosition() string {
- if x != nil {
- return x.Position
- }
- return ""
- }
- func (x *UserAddReq) GetPassword() string {
- if x != nil {
- return x.Password
- }
- return ""
- }
- func (x *UserAddReq) GetSOpenid() string {
- if x != nil {
- return x.SOpenid
- }
- return ""
- }
- func (x *UserAddReq) GetAOpenid() string {
- if x != nil {
- return x.AOpenid
- }
- return ""
- }
- func (x *UserAddReq) GetUnionid() string {
- if x != nil {
- return x.Unionid
- }
- return ""
- }
- type UserAddResp struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
- ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
- Data *UserAdds `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
- }
- func (x *UserAddResp) Reset() {
- *x = UserAddResp{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[25]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *UserAddResp) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*UserAddResp) ProtoMessage() {}
- func (x *UserAddResp) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[25]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use UserAddResp.ProtoReflect.Descriptor instead.
- func (*UserAddResp) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{25}
- }
- func (x *UserAddResp) GetErrorCode() int64 {
- if x != nil {
- return x.ErrorCode
- }
- return 0
- }
- func (x *UserAddResp) GetErrorMsg() string {
- if x != nil {
- return x.ErrorMsg
- }
- return ""
- }
- func (x *UserAddResp) GetData() *UserAdds {
- if x != nil {
- return x.Data
- }
- return nil
- }
- type UserAdds struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
- Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
- }
- func (x *UserAdds) Reset() {
- *x = UserAdds{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[26]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *UserAdds) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*UserAdds) ProtoMessage() {}
- func (x *UserAdds) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[26]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use UserAdds.ProtoReflect.Descriptor instead.
- func (*UserAdds) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{26}
- }
- func (x *UserAdds) GetStatus() int64 {
- if x != nil {
- return x.Status
- }
- return 0
- }
- func (x *UserAdds) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- type UserIdReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
- Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
- Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone,omitempty"`
- Nickname string `protobuf:"bytes,4,opt,name=nickname,proto3" json:"nickname,omitempty"`
- Headimg string `protobuf:"bytes,5,opt,name=headimg,proto3" json:"headimg,omitempty"`
- Company string `protobuf:"bytes,6,opt,name=company,proto3" json:"company,omitempty"`
- Position string `protobuf:"bytes,7,opt,name=position,proto3" json:"position,omitempty"`
- Password string `protobuf:"bytes,8,opt,name=password,proto3" json:"password,omitempty"`
- SOpenid string `protobuf:"bytes,9,opt,name=s_openid,json=sOpenid,proto3" json:"s_openid,omitempty"`
- AOpenid string `protobuf:"bytes,10,opt,name=a_openid,json=aOpenid,proto3" json:"a_openid,omitempty"`
- Unionid string `protobuf:"bytes,11,opt,name=unionid,proto3" json:"unionid,omitempty"`
- }
- func (x *UserIdReq) Reset() {
- *x = UserIdReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[27]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *UserIdReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*UserIdReq) ProtoMessage() {}
- func (x *UserIdReq) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[27]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use UserIdReq.ProtoReflect.Descriptor instead.
- func (*UserIdReq) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{27}
- }
- func (x *UserIdReq) GetAppid() string {
- if x != nil {
- return x.Appid
- }
- return ""
- }
- func (x *UserIdReq) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *UserIdReq) GetPhone() string {
- if x != nil {
- return x.Phone
- }
- return ""
- }
- func (x *UserIdReq) GetNickname() string {
- if x != nil {
- return x.Nickname
- }
- return ""
- }
- func (x *UserIdReq) GetHeadimg() string {
- if x != nil {
- return x.Headimg
- }
- return ""
- }
- func (x *UserIdReq) GetCompany() string {
- if x != nil {
- return x.Company
- }
- return ""
- }
- func (x *UserIdReq) GetPosition() string {
- if x != nil {
- return x.Position
- }
- return ""
- }
- func (x *UserIdReq) GetPassword() string {
- if x != nil {
- return x.Password
- }
- return ""
- }
- func (x *UserIdReq) GetSOpenid() string {
- if x != nil {
- return x.SOpenid
- }
- return ""
- }
- func (x *UserIdReq) GetAOpenid() string {
- if x != nil {
- return x.AOpenid
- }
- return ""
- }
- func (x *UserIdReq) GetUnionid() string {
- if x != nil {
- return x.Unionid
- }
- return ""
- }
- //工作桌面
- type WorkDesktopMenuInfoReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
- AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"`
- Platform string `protobuf:"bytes,3,opt,name=platform,proto3" json:"platform,omitempty"`
- Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone,omitempty"`
- BigMemberOff bool `protobuf:"varint,5,opt,name=bigMemberOff,proto3" json:"bigMemberOff,omitempty"`
- InternalTime int64 `protobuf:"varint,6,opt,name=internalTime,proto3" json:"internalTime,omitempty"`
- RedisOutTime int64 `protobuf:"varint,7,opt,name=redisOutTime,proto3" json:"redisOutTime,omitempty"`
- }
- func (x *WorkDesktopMenuInfoReq) Reset() {
- *x = WorkDesktopMenuInfoReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[28]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *WorkDesktopMenuInfoReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*WorkDesktopMenuInfoReq) ProtoMessage() {}
- func (x *WorkDesktopMenuInfoReq) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[28]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use WorkDesktopMenuInfoReq.ProtoReflect.Descriptor instead.
- func (*WorkDesktopMenuInfoReq) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{28}
- }
- func (x *WorkDesktopMenuInfoReq) GetUserId() string {
- if x != nil {
- return x.UserId
- }
- return ""
- }
- func (x *WorkDesktopMenuInfoReq) GetAppId() string {
- if x != nil {
- return x.AppId
- }
- return ""
- }
- func (x *WorkDesktopMenuInfoReq) GetPlatform() string {
- if x != nil {
- return x.Platform
- }
- return ""
- }
- func (x *WorkDesktopMenuInfoReq) GetPhone() string {
- if x != nil {
- return x.Phone
- }
- return ""
- }
- func (x *WorkDesktopMenuInfoReq) GetBigMemberOff() bool {
- if x != nil {
- return x.BigMemberOff
- }
- return false
- }
- func (x *WorkDesktopMenuInfoReq) GetInternalTime() int64 {
- if x != nil {
- return x.InternalTime
- }
- return 0
- }
- func (x *WorkDesktopMenuInfoReq) GetRedisOutTime() int64 {
- if x != nil {
- return x.RedisOutTime
- }
- return 0
- }
- //工作桌面-返回数据
- type WorkDesktopMenuInfoResp struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
- ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
- Data *MenuData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
- }
- func (x *WorkDesktopMenuInfoResp) Reset() {
- *x = WorkDesktopMenuInfoResp{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[29]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *WorkDesktopMenuInfoResp) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*WorkDesktopMenuInfoResp) ProtoMessage() {}
- func (x *WorkDesktopMenuInfoResp) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[29]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use WorkDesktopMenuInfoResp.ProtoReflect.Descriptor instead.
- func (*WorkDesktopMenuInfoResp) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{29}
- }
- func (x *WorkDesktopMenuInfoResp) GetErrorCode() int64 {
- if x != nil {
- return x.ErrorCode
- }
- return 0
- }
- func (x *WorkDesktopMenuInfoResp) GetErrorMsg() string {
- if x != nil {
- return x.ErrorMsg
- }
- return ""
- }
- func (x *WorkDesktopMenuInfoResp) GetData() *MenuData {
- if x != nil {
- return x.Data
- }
- return nil
- }
- type MenuData struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- MenuType string `protobuf:"bytes,1,opt,name=menuType,proto3" json:"menuType,omitempty"`
- MenuList []*MenuList `protobuf:"bytes,2,rep,name=menuList,proto3" json:"menuList,omitempty"`
- }
- func (x *MenuData) Reset() {
- *x = MenuData{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[30]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *MenuData) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*MenuData) ProtoMessage() {}
- func (x *MenuData) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[30]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use MenuData.ProtoReflect.Descriptor instead.
- func (*MenuData) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{30}
- }
- func (x *MenuData) GetMenuType() string {
- if x != nil {
- return x.MenuType
- }
- return ""
- }
- func (x *MenuData) GetMenuList() []*MenuList {
- if x != nil {
- return x.MenuList
- }
- return nil
- }
- type MenuList struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- Icon string `protobuf:"bytes,2,opt,name=icon,proto3" json:"icon,omitempty"`
- Url string `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
- Usable bool `protobuf:"varint,4,opt,name=usable,proto3" json:"usable,omitempty"`
- Id string `protobuf:"bytes,5,opt,name=id,proto3" json:"id,omitempty"`
- AppType string `protobuf:"bytes,6,opt,name=appType,proto3" json:"appType,omitempty"`
- OpenType string `protobuf:"bytes,7,opt,name=openType,proto3" json:"openType,omitempty"`
- TipInfo *TipInfo `protobuf:"bytes,8,opt,name=tipInfo,proto3" json:"tipInfo,omitempty"`
- Child []*SecondLevelMenu `protobuf:"bytes,9,rep,name=child,proto3" json:"child,omitempty"`
- }
- func (x *MenuList) Reset() {
- *x = MenuList{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[31]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *MenuList) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*MenuList) ProtoMessage() {}
- func (x *MenuList) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[31]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use MenuList.ProtoReflect.Descriptor instead.
- func (*MenuList) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{31}
- }
- func (x *MenuList) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *MenuList) GetIcon() string {
- if x != nil {
- return x.Icon
- }
- return ""
- }
- func (x *MenuList) GetUrl() string {
- if x != nil {
- return x.Url
- }
- return ""
- }
- func (x *MenuList) GetUsable() bool {
- if x != nil {
- return x.Usable
- }
- return false
- }
- func (x *MenuList) GetId() string {
- if x != nil {
- return x.Id
- }
- return ""
- }
- func (x *MenuList) GetAppType() string {
- if x != nil {
- return x.AppType
- }
- return ""
- }
- func (x *MenuList) GetOpenType() string {
- if x != nil {
- return x.OpenType
- }
- return ""
- }
- func (x *MenuList) GetTipInfo() *TipInfo {
- if x != nil {
- return x.TipInfo
- }
- return nil
- }
- func (x *MenuList) GetChild() []*SecondLevelMenu {
- if x != nil {
- return x.Child
- }
- return nil
- }
- type SecondLevelMenu struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- Icon string `protobuf:"bytes,2,opt,name=icon,proto3" json:"icon,omitempty"`
- Url string `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
- Usable bool `protobuf:"varint,4,opt,name=usable,proto3" json:"usable,omitempty"`
- Id string `protobuf:"bytes,5,opt,name=id,proto3" json:"id,omitempty"`
- AppType string `protobuf:"bytes,6,opt,name=appType,proto3" json:"appType,omitempty"`
- OpenType string `protobuf:"bytes,7,opt,name=openType,proto3" json:"openType,omitempty"`
- TipInfo *TipInfo `protobuf:"bytes,8,opt,name=tipInfo,proto3" json:"tipInfo,omitempty"`
- Child []*ThreeLevelMenu `protobuf:"bytes,9,rep,name=child,proto3" json:"child,omitempty"`
- }
- func (x *SecondLevelMenu) Reset() {
- *x = SecondLevelMenu{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[32]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *SecondLevelMenu) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*SecondLevelMenu) ProtoMessage() {}
- func (x *SecondLevelMenu) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[32]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use SecondLevelMenu.ProtoReflect.Descriptor instead.
- func (*SecondLevelMenu) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{32}
- }
- func (x *SecondLevelMenu) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *SecondLevelMenu) GetIcon() string {
- if x != nil {
- return x.Icon
- }
- return ""
- }
- func (x *SecondLevelMenu) GetUrl() string {
- if x != nil {
- return x.Url
- }
- return ""
- }
- func (x *SecondLevelMenu) GetUsable() bool {
- if x != nil {
- return x.Usable
- }
- return false
- }
- func (x *SecondLevelMenu) GetId() string {
- if x != nil {
- return x.Id
- }
- return ""
- }
- func (x *SecondLevelMenu) GetAppType() string {
- if x != nil {
- return x.AppType
- }
- return ""
- }
- func (x *SecondLevelMenu) GetOpenType() string {
- if x != nil {
- return x.OpenType
- }
- return ""
- }
- func (x *SecondLevelMenu) GetTipInfo() *TipInfo {
- if x != nil {
- return x.TipInfo
- }
- return nil
- }
- func (x *SecondLevelMenu) GetChild() []*ThreeLevelMenu {
- if x != nil {
- return x.Child
- }
- return nil
- }
- type ThreeLevelMenu struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- Icon string `protobuf:"bytes,2,opt,name=icon,proto3" json:"icon,omitempty"`
- Url string `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
- Usable bool `protobuf:"varint,4,opt,name=usable,proto3" json:"usable,omitempty"`
- Id string `protobuf:"bytes,5,opt,name=id,proto3" json:"id,omitempty"`
- AppType string `protobuf:"bytes,6,opt,name=appType,proto3" json:"appType,omitempty"`
- OpenType string `protobuf:"bytes,7,opt,name=openType,proto3" json:"openType,omitempty"`
- TipInfo *TipInfo `protobuf:"bytes,8,opt,name=tipInfo,proto3" json:"tipInfo,omitempty"`
- }
- func (x *ThreeLevelMenu) Reset() {
- *x = ThreeLevelMenu{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[33]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ThreeLevelMenu) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ThreeLevelMenu) ProtoMessage() {}
- func (x *ThreeLevelMenu) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[33]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ThreeLevelMenu.ProtoReflect.Descriptor instead.
- func (*ThreeLevelMenu) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{33}
- }
- func (x *ThreeLevelMenu) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *ThreeLevelMenu) GetIcon() string {
- if x != nil {
- return x.Icon
- }
- return ""
- }
- func (x *ThreeLevelMenu) GetUrl() string {
- if x != nil {
- return x.Url
- }
- return ""
- }
- func (x *ThreeLevelMenu) GetUsable() bool {
- if x != nil {
- return x.Usable
- }
- return false
- }
- func (x *ThreeLevelMenu) GetId() string {
- if x != nil {
- return x.Id
- }
- return ""
- }
- func (x *ThreeLevelMenu) GetAppType() string {
- if x != nil {
- return x.AppType
- }
- return ""
- }
- func (x *ThreeLevelMenu) GetOpenType() string {
- if x != nil {
- return x.OpenType
- }
- return ""
- }
- func (x *ThreeLevelMenu) GetTipInfo() *TipInfo {
- if x != nil {
- return x.TipInfo
- }
- return nil
- }
- type TipInfo struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
- Content string `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
- ConfirmUrl string `protobuf:"bytes,3,opt,name=confirmUrl,proto3" json:"confirmUrl,omitempty"`
- ConfirmText string `protobuf:"bytes,4,opt,name=confirmText,proto3" json:"confirmText,omitempty"`
- IsShowCancel bool `protobuf:"varint,5,opt,name=isShowCancel,proto3" json:"isShowCancel,omitempty"`
- }
- func (x *TipInfo) Reset() {
- *x = TipInfo{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[34]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *TipInfo) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*TipInfo) ProtoMessage() {}
- func (x *TipInfo) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[34]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use TipInfo.ProtoReflect.Descriptor instead.
- func (*TipInfo) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{34}
- }
- func (x *TipInfo) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- func (x *TipInfo) GetContent() string {
- if x != nil {
- return x.Content
- }
- return ""
- }
- func (x *TipInfo) GetConfirmUrl() string {
- if x != nil {
- return x.ConfirmUrl
- }
- return ""
- }
- func (x *TipInfo) GetConfirmText() string {
- if x != nil {
- return x.ConfirmText
- }
- return ""
- }
- func (x *TipInfo) GetIsShowCancel() bool {
- if x != nil {
- return x.IsShowCancel
- }
- return false
- }
- //工作桌面 菜单选择类型 全部/可用
- //工作桌面 常用功能更新
- type WorkDesktopComprehensiveReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
- AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"`
- Platform string `protobuf:"bytes,3,opt,name=platform,proto3" json:"platform,omitempty"`
- Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone,omitempty"`
- ActionMode string `protobuf:"bytes,5,opt,name=actionMode,proto3" json:"actionMode,omitempty"`
- MenuMode string `protobuf:"bytes,6,opt,name=menuMode,proto3" json:"menuMode,omitempty"`
- MenuIds string `protobuf:"bytes,7,opt,name=menuIds,proto3" json:"menuIds,omitempty"`
- BigMemberOff bool `protobuf:"varint,8,opt,name=bigMemberOff,proto3" json:"bigMemberOff,omitempty"`
- CommonlySize int64 `protobuf:"varint,9,opt,name=commonlySize,proto3" json:"commonlySize,omitempty"`
- RedisOutTime int64 `protobuf:"varint,10,opt,name=redisOutTime,proto3" json:"redisOutTime,omitempty"`
- }
- func (x *WorkDesktopComprehensiveReq) Reset() {
- *x = WorkDesktopComprehensiveReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[35]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *WorkDesktopComprehensiveReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*WorkDesktopComprehensiveReq) ProtoMessage() {}
- func (x *WorkDesktopComprehensiveReq) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[35]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use WorkDesktopComprehensiveReq.ProtoReflect.Descriptor instead.
- func (*WorkDesktopComprehensiveReq) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{35}
- }
- func (x *WorkDesktopComprehensiveReq) GetUserId() string {
- if x != nil {
- return x.UserId
- }
- return ""
- }
- func (x *WorkDesktopComprehensiveReq) GetAppId() string {
- if x != nil {
- return x.AppId
- }
- return ""
- }
- func (x *WorkDesktopComprehensiveReq) GetPlatform() string {
- if x != nil {
- return x.Platform
- }
- return ""
- }
- func (x *WorkDesktopComprehensiveReq) GetPhone() string {
- if x != nil {
- return x.Phone
- }
- return ""
- }
- func (x *WorkDesktopComprehensiveReq) GetActionMode() string {
- if x != nil {
- return x.ActionMode
- }
- return ""
- }
- func (x *WorkDesktopComprehensiveReq) GetMenuMode() string {
- if x != nil {
- return x.MenuMode
- }
- return ""
- }
- func (x *WorkDesktopComprehensiveReq) GetMenuIds() string {
- if x != nil {
- return x.MenuIds
- }
- return ""
- }
- func (x *WorkDesktopComprehensiveReq) GetBigMemberOff() bool {
- if x != nil {
- return x.BigMemberOff
- }
- return false
- }
- func (x *WorkDesktopComprehensiveReq) GetCommonlySize() int64 {
- if x != nil {
- return x.CommonlySize
- }
- return 0
- }
- func (x *WorkDesktopComprehensiveReq) GetRedisOutTime() int64 {
- if x != nil {
- return x.RedisOutTime
- }
- return 0
- }
- //工作桌面 综合功能-返回数据
- type WorkDesktopComprehensiveResp struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
- ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
- Data []*ThreeLevelMenu `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
- }
- func (x *WorkDesktopComprehensiveResp) Reset() {
- *x = WorkDesktopComprehensiveResp{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[36]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *WorkDesktopComprehensiveResp) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*WorkDesktopComprehensiveResp) ProtoMessage() {}
- func (x *WorkDesktopComprehensiveResp) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[36]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use WorkDesktopComprehensiveResp.ProtoReflect.Descriptor instead.
- func (*WorkDesktopComprehensiveResp) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{36}
- }
- func (x *WorkDesktopComprehensiveResp) GetErrorCode() int64 {
- if x != nil {
- return x.ErrorCode
- }
- return 0
- }
- func (x *WorkDesktopComprehensiveResp) GetErrorMsg() string {
- if x != nil {
- return x.ErrorMsg
- }
- return ""
- }
- func (x *WorkDesktopComprehensiveResp) GetData() []*ThreeLevelMenu {
- if x != nil {
- return x.Data
- }
- return nil
- }
- //清除用户功能相关内存信息
- type WorkDesktopClearUserInfoReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
- AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"`
- Platform string `protobuf:"bytes,3,opt,name=platform,proto3" json:"platform,omitempty"`
- UserIds string `protobuf:"bytes,4,opt,name=userIds,proto3" json:"userIds,omitempty"`
- }
- func (x *WorkDesktopClearUserInfoReq) Reset() {
- *x = WorkDesktopClearUserInfoReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_userCenter_proto_msgTypes[37]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *WorkDesktopClearUserInfoReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*WorkDesktopClearUserInfoReq) ProtoMessage() {}
- func (x *WorkDesktopClearUserInfoReq) ProtoReflect() protoreflect.Message {
- mi := &file_userCenter_proto_msgTypes[37]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use WorkDesktopClearUserInfoReq.ProtoReflect.Descriptor instead.
- func (*WorkDesktopClearUserInfoReq) Descriptor() ([]byte, []int) {
- return file_userCenter_proto_rawDescGZIP(), []int{37}
- }
- func (x *WorkDesktopClearUserInfoReq) GetUserId() string {
- if x != nil {
- return x.UserId
- }
- return ""
- }
- func (x *WorkDesktopClearUserInfoReq) GetAppId() string {
- if x != nil {
- return x.AppId
- }
- return ""
- }
- func (x *WorkDesktopClearUserInfoReq) GetPlatform() string {
- if x != nil {
- return x.Platform
- }
- return ""
- }
- func (x *WorkDesktopClearUserInfoReq) GetUserIds() string {
- if x != nil {
- return x.UserIds
- }
- return ""
- }
- var File_userCenter_proto protoreflect.FileDescriptor
- var file_userCenter_proto_rawDesc = []byte{
- 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x22, 0xd8, 0x02, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65,
- 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43,
- 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69,
- 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d,
- 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e,
- 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73,
- 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73,
- 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74,
- 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63,
- 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x72, 0x67,
- 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79,
- 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50,
- 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x4e,
- 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x4e,
- 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65,
- 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e,
- 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64,
- 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x6b, 0x0a,
- 0x0b, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
- 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68,
- 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3b, 0x0a, 0x0b, 0x45, 0x6e,
- 0x74, 0x41, 0x75, 0x74, 0x68, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x92, 0x01, 0x0a, 0x0a, 0x45, 0x78, 0x61, 0x6d,
- 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x45, 0x6e, 0x74, 0x49, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x45, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08,
- 0x41, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
- 0x41, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x61, 0x73,
- 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e,
- 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x75, 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x18, 0x04, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x09, 0x41, 0x75, 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1c,
- 0x0a, 0x09, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x09, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x6b, 0x0a, 0x0b,
- 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x44,
- 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x25, 0x0a, 0x0b, 0x45, 0x78, 0x61,
- 0x6d, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74,
- 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x22, 0x90, 0x03, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12,
- 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
- 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a,
- 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65,
- 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63,
- 0x72, 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54,
- 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x64,
- 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x72, 0x65, 0x61,
- 0x74, 0x65, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74,
- 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61,
- 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x76, 0x61, 0x6c,
- 0x69, 0x64, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x0e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d,
- 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d,
- 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x45, 0x6e,
- 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x66, 0x72, 0x6f,
- 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67,
- 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67,
- 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f,
- 0x6e, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68,
- 0x6f, 0x6e, 0x65, 0x22, 0x67, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
- 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
- 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1c,
- 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45,
- 0x6e, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x59, 0x0a, 0x07,
- 0x45, 0x6e, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a,
- 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1c, 0x0a, 0x04, 0x6c, 0x69, 0x73,
- 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73,
- 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xfd, 0x01, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x4c,
- 0x69, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x02, 0x69, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54, 0x79,
- 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e,
- 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x72, 0x67,
- 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x74,
- 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x69,
- 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54,
- 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65,
- 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xf8, 0x01, 0x0a, 0x0e, 0x45, 0x78, 0x61, 0x6d,
- 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
- 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c,
- 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08,
- 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
- 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68,
- 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68,
- 0x54, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x72,
- 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x75, 0x74,
- 0x68, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x75,
- 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x0b, 0x61, 0x75, 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07,
- 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70,
- 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
- 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
- 0x7a, 0x65, 0x22, 0x73, 0x0a, 0x0f, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73,
- 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63,
- 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73,
- 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73,
- 0x67, 0x12, 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x10, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74,
- 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x65, 0x0a, 0x0f, 0x45, 0x78, 0x61, 0x6d, 0x69,
- 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f,
- 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74,
- 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x20, 0x0a, 0x04,
- 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x78, 0x61,
- 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xfd,
- 0x01, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e,
- 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14,
- 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65,
- 0x6e, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54,
- 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61,
- 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72,
- 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
- 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75,
- 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
- 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x6c,
- 0x79, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x70, 0x70,
- 0x6c, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79,
- 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79,
- 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x09,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x23,
- 0x0a, 0x0b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a,
- 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e,
- 0x74, 0x49, 0x64, 0x22, 0x6a, 0x0a, 0x0c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52,
- 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64,
- 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f,
- 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12,
- 0x1e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e,
- 0x63, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22,
- 0x4f, 0x0a, 0x09, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1e, 0x0a, 0x0a,
- 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
- 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c,
- 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x03, 0x52, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x22, 0x6b, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12,
- 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b,
- 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64,
- 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49,
- 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xd5, 0x05,
- 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a,
- 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
- 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d, 0x62, 0x65,
- 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x50, 0x65, 0x72, 0x73,
- 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63,
- 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x61,
- 0x63, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63,
- 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61,
- 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
- 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x64,
- 0x75, 0x73, 0x74, 0x72, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x64,
- 0x75, 0x73, 0x74, 0x72, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79,
- 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x70,
- 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69,
- 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65,
- 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x65, 0x67, 0x61, 0x6c,
- 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x65,
- 0x67, 0x61, 0x6c, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x73,
- 0x69, 0x6e, 0x65, 0x73, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x75, 0x73,
- 0x69, 0x6e, 0x65, 0x73, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61,
- 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f,
- 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a,
- 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70,
- 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74,
- 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x61, 0x75, 0x74,
- 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x6f, 0x72, 0x7a, 0x65, 0x6e, 0x53,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x66, 0x6f, 0x72,
- 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x64,
- 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75,
- 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x64, 0x69, 0x74,
- 0x54, 0x69, 0x6d, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x64, 0x69,
- 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54,
- 0x69, 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61,
- 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x75,
- 0x74, 0x68, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61,
- 0x75, 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x0b, 0x61, 0x75, 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a,
- 0x0a, 0x61, 0x75, 0x74, 0x68, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x1a, 0x0a,
- 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67,
- 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67,
- 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x44, 0x0a, 0x0c, 0x45, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x75,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x22, 0x2f, 0x0a, 0x0f, 0x43,
- 0x68, 0x65, 0x63, 0x6b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1c,
- 0x0a, 0x09, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x03, 0x52, 0x09, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x3e, 0x0a, 0x12,
- 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
- 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x77, 0x0a, 0x13,
- 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
- 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64,
- 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f,
- 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12,
- 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e,
- 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
- 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x4b, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74,
- 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68,
- 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x61, 0x75,
- 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x49, 0x6e,
- 0x45, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x49, 0x6e, 0x45,
- 0x6e, 0x74, 0x22, 0x90, 0x02, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x52, 0x65,
- 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a,
- 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65, 0x61,
- 0x64, 0x69, 0x6d, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64,
- 0x69, 0x6d, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x18, 0x05,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x12, 0x1a, 0x0a,
- 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x69,
- 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x69, 0x64,
- 0x12, 0x19, 0x0a, 0x08, 0x61, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x07, 0x61, 0x4f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x75,
- 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75, 0x6e,
- 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x22, 0x68, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64,
- 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f,
- 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43,
- 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67,
- 0x12, 0x1d, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x09,
- 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22,
- 0x32, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x73,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x02, 0x69, 0x64, 0x22, 0x9f, 0x02, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65,
- 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a,
- 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65, 0x61,
- 0x64, 0x69, 0x6d, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64,
- 0x69, 0x6d, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x18, 0x06,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x12, 0x1a, 0x0a,
- 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x69,
- 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x69, 0x64,
- 0x12, 0x19, 0x0a, 0x08, 0x61, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x07, 0x61, 0x4f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x75,
- 0x6e, 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75, 0x6e,
- 0x69, 0x6f, 0x6e, 0x69, 0x64, 0x22, 0xe4, 0x01, 0x0a, 0x16, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65,
- 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71,
- 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49,
- 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a,
- 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68,
- 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65,
- 0x12, 0x22, 0x0a, 0x0c, 0x62, 0x69, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x4f, 0x66, 0x66,
- 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x62, 0x69, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x4f, 0x66, 0x66, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
- 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x69, 0x6e, 0x74, 0x65,
- 0x72, 0x6e, 0x61, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x72, 0x65, 0x64, 0x69,
- 0x73, 0x4f, 0x75, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c,
- 0x72, 0x65, 0x64, 0x69, 0x73, 0x4f, 0x75, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x74, 0x0a, 0x17,
- 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49,
- 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f,
- 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x09, 0x2e, 0x4d, 0x65, 0x6e, 0x75, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61,
- 0x74, 0x61, 0x22, 0x4d, 0x0a, 0x08, 0x4d, 0x65, 0x6e, 0x75, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1a,
- 0x0a, 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x54, 0x79, 0x70, 0x65, 0x12, 0x25, 0x0a, 0x08, 0x6d, 0x65,
- 0x6e, 0x75, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x4d,
- 0x65, 0x6e, 0x75, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x08, 0x6d, 0x65, 0x6e, 0x75, 0x4c, 0x69, 0x73,
- 0x74, 0x22, 0xee, 0x01, 0x0a, 0x08, 0x4d, 0x65, 0x6e, 0x75, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12,
- 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
- 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x61, 0x62,
- 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65,
- 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
- 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70,
- 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70,
- 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66,
- 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x54, 0x69, 0x70, 0x49, 0x6e, 0x66,
- 0x6f, 0x52, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x26, 0x0a, 0x05, 0x63, 0x68,
- 0x69, 0x6c, 0x64, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x53, 0x65, 0x63, 0x6f,
- 0x6e, 0x64, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x52, 0x05, 0x63, 0x68, 0x69,
- 0x6c, 0x64, 0x22, 0xf4, 0x01, 0x0a, 0x0f, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x4c, 0x65, 0x76,
- 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x63,
- 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x12, 0x10,
- 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c,
- 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x05,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x54,
- 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79,
- 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22,
- 0x0a, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x08, 0x2e, 0x54, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e,
- 0x66, 0x6f, 0x12, 0x25, 0x0a, 0x05, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x18, 0x09, 0x20, 0x03, 0x28,
- 0x0b, 0x32, 0x0f, 0x2e, 0x54, 0x68, 0x72, 0x65, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65,
- 0x6e, 0x75, 0x52, 0x05, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x22, 0xcc, 0x01, 0x0a, 0x0e, 0x54, 0x68,
- 0x72, 0x65, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x12, 0x12, 0x0a, 0x04,
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
- 0x12, 0x12, 0x0a, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
- 0x69, 0x63, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e,
- 0x0a, 0x02, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18,
- 0x0a, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x6e,
- 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e,
- 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x18,
- 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x54, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52,
- 0x07, 0x74, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x9f, 0x01, 0x0a, 0x07, 0x54, 0x69, 0x70,
- 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e,
- 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x55,
- 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72,
- 0x6d, 0x55, 0x72, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x54,
- 0x65, 0x78, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x66, 0x69,
- 0x72, 0x6d, 0x54, 0x65, 0x78, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77,
- 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x73,
- 0x53, 0x68, 0x6f, 0x77, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x22, 0xbf, 0x02, 0x0a, 0x1b, 0x57,
- 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65,
- 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73,
- 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
- 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74,
- 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74,
- 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
- 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x65,
- 0x6e, 0x75, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x65,
- 0x6e, 0x75, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x6e, 0x75, 0x49, 0x64,
- 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x6e, 0x75, 0x49, 0x64, 0x73,
- 0x12, 0x22, 0x0a, 0x0c, 0x62, 0x69, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x4f, 0x66, 0x66,
- 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x62, 0x69, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x4f, 0x66, 0x66, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x6c, 0x79,
- 0x53, 0x69, 0x7a, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x63, 0x6f, 0x6d, 0x6d,
- 0x6f, 0x6e, 0x6c, 0x79, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x72, 0x65, 0x64, 0x69,
- 0x73, 0x4f, 0x75, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c,
- 0x72, 0x65, 0x64, 0x69, 0x73, 0x4f, 0x75, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x7f, 0x0a, 0x1c,
- 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72,
- 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
- 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x23, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
- 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x54, 0x68, 0x72, 0x65, 0x65, 0x4c, 0x65,
- 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x6e, 0x75, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x81, 0x01,
- 0x0a, 0x1b, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x65,
- 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a,
- 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
- 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70,
- 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
- 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x18, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x49,
- 0x64, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
- 0x73, 0x32, 0x89, 0x06, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72,
- 0x12, 0x24, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x12, 0x0b, 0x2e, 0x45, 0x6e,
- 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75,
- 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x45, 0x78, 0x61,
- 0x6d, 0x69, 0x6e, 0x65, 0x12, 0x0b, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65,
- 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12,
- 0x24, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74,
- 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73,
- 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x30, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
- 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69,
- 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c,
- 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x08, 0x43, 0x68, 0x65, 0x63, 0x6b,
- 0x45, 0x6e, 0x74, 0x12, 0x0c, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65,
- 0x71, 0x1a, 0x0d, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70,
- 0x12, 0x25, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0c, 0x2e, 0x43, 0x68,
- 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49,
- 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x28, 0x0a, 0x09, 0x45, 0x6e, 0x74, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x12, 0x0d, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73,
- 0x70, 0x12, 0x2d, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x6e, 0x66, 0x6f,
- 0x12, 0x10, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52,
- 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70,
- 0x12, 0x3c, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43,
- 0x6f, 0x64, 0x65, 0x12, 0x13, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42,
- 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x14, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x24,
- 0x0a, 0x07, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x0b, 0x2e, 0x55, 0x73, 0x65, 0x72,
- 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64,
- 0x52, 0x65, 0x73, 0x70, 0x12, 0x26, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x12, 0x0a, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0c,
- 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x23, 0x0a, 0x07,
- 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x12, 0x0a, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
- 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73,
- 0x70, 0x12, 0x48, 0x0a, 0x13, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70,
- 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44,
- 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
- 0x71, 0x1a, 0x18, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x4d,
- 0x65, 0x6e, 0x75, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x57, 0x0a, 0x18, 0x57,
- 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65,
- 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x12, 0x1c, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65,
- 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69,
- 0x76, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b,
- 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65,
- 0x52, 0x65, 0x73, 0x70, 0x12, 0x57, 0x0a, 0x18, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b,
- 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
- 0x12, 0x1c, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c,
- 0x65, 0x61, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x1d,
- 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6f, 0x6d, 0x70,
- 0x72, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x42, 0x06, 0x5a,
- 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
- }
- var (
- file_userCenter_proto_rawDescOnce sync.Once
- file_userCenter_proto_rawDescData = file_userCenter_proto_rawDesc
- )
- func file_userCenter_proto_rawDescGZIP() []byte {
- file_userCenter_proto_rawDescOnce.Do(func() {
- file_userCenter_proto_rawDescData = protoimpl.X.CompressGZIP(file_userCenter_proto_rawDescData)
- })
- return file_userCenter_proto_rawDescData
- }
- var file_userCenter_proto_msgTypes = make([]protoimpl.MessageInfo, 38)
- var file_userCenter_proto_goTypes = []interface{}{
- (*EntAuthReq)(nil), // 0: EntAuthReq
- (*EntAuthResp)(nil), // 1: EntAuthResp
- (*EntAuthData)(nil), // 2: EntAuthData
- (*ExamineReq)(nil), // 3: ExamineReq
- (*ExamineResp)(nil), // 4: ExamineResp
- (*ExamineData)(nil), // 5: ExamineData
- (*EntListReq)(nil), // 6: EntListReq
- (*EntListResp)(nil), // 7: EntListResp
- (*EntData)(nil), // 8: EntData
- (*EntList)(nil), // 9: EntList
- (*ExamineListReq)(nil), // 10: ExamineListReq
- (*ExamineListResp)(nil), // 11: ExamineListResp
- (*ExamineListData)(nil), // 12: ExamineListData
- (*ExamineList)(nil), // 13: ExamineList
- (*CheckEntReq)(nil), // 14: CheckEntReq
- (*CheckEntResp)(nil), // 15: CheckEntResp
- (*CheckData)(nil), // 16: checkData
- (*EntInfoResp)(nil), // 17: EntInfoResp
- (*EntInfoData)(nil), // 18: EntInfoData
- (*EntUpdateReq)(nil), // 19: EntUpdateReq
- (*CheckExamineReq)(nil), // 20: CheckExamineReq
- (*GetStatusByCodeReq)(nil), // 21: GetStatusByCodeReq
- (*GetStatusByCodeResp)(nil), // 22: GetStatusByCodeResp
- (*GetStatusByCode)(nil), // 23: GetStatusByCode
- (*UserAddReq)(nil), // 24: UserAddReq
- (*UserAddResp)(nil), // 25: UserAddResp
- (*UserAdds)(nil), // 26: UserAdds
- (*UserIdReq)(nil), // 27: UserIdReq
- (*WorkDesktopMenuInfoReq)(nil), // 28: WorkDesktopMenuInfoReq
- (*WorkDesktopMenuInfoResp)(nil), // 29: WorkDesktopMenuInfoResp
- (*MenuData)(nil), // 30: MenuData
- (*MenuList)(nil), // 31: MenuList
- (*SecondLevelMenu)(nil), // 32: SecondLevelMenu
- (*ThreeLevelMenu)(nil), // 33: ThreeLevelMenu
- (*TipInfo)(nil), // 34: TipInfo
- (*WorkDesktopComprehensiveReq)(nil), // 35: WorkDesktopComprehensiveReq
- (*WorkDesktopComprehensiveResp)(nil), // 36: WorkDesktopComprehensiveResp
- (*WorkDesktopClearUserInfoReq)(nil), // 37: WorkDesktopClearUserInfoReq
- }
- var file_userCenter_proto_depIdxs = []int32{
- 2, // 0: EntAuthResp.data:type_name -> EntAuthData
- 5, // 1: ExamineResp.data:type_name -> ExamineData
- 8, // 2: EntListResp.data:type_name -> EntData
- 9, // 3: EntData.list:type_name -> EntList
- 12, // 4: ExamineListResp.data:type_name -> ExamineListData
- 13, // 5: ExamineListData.list:type_name -> ExamineList
- 16, // 6: CheckEntResp.data:type_name -> checkData
- 18, // 7: EntInfoResp.data:type_name -> EntInfoData
- 23, // 8: GetStatusByCodeResp.data:type_name -> GetStatusByCode
- 26, // 9: UserAddResp.data:type_name -> UserAdds
- 30, // 10: WorkDesktopMenuInfoResp.data:type_name -> MenuData
- 31, // 11: MenuData.menuList:type_name -> MenuList
- 34, // 12: MenuList.tipInfo:type_name -> TipInfo
- 32, // 13: MenuList.child:type_name -> SecondLevelMenu
- 34, // 14: SecondLevelMenu.tipInfo:type_name -> TipInfo
- 33, // 15: SecondLevelMenu.child:type_name -> ThreeLevelMenu
- 34, // 16: ThreeLevelMenu.tipInfo:type_name -> TipInfo
- 33, // 17: WorkDesktopComprehensiveResp.data:type_name -> ThreeLevelMenu
- 0, // 18: UserCenter.EntAuth:input_type -> EntAuthReq
- 3, // 19: UserCenter.EntExamine:input_type -> ExamineReq
- 6, // 20: UserCenter.EntList:input_type -> EntListReq
- 10, // 21: UserCenter.ExamineList:input_type -> ExamineListReq
- 14, // 22: UserCenter.CheckEnt:input_type -> CheckEntReq
- 14, // 23: UserCenter.EntInfo:input_type -> CheckEntReq
- 19, // 24: UserCenter.EntUpdate:input_type -> EntUpdateReq
- 20, // 25: UserCenter.ExamineInfo:input_type -> CheckExamineReq
- 21, // 26: UserCenter.GetStatusByCode:input_type -> GetStatusByCodeReq
- 24, // 27: UserCenter.UserAdd:input_type -> UserAddReq
- 27, // 28: UserCenter.UserUpdate:input_type -> UserIdReq
- 27, // 29: UserCenter.UserDel:input_type -> UserIdReq
- 28, // 30: UserCenter.WorkDesktopMenuInfo:input_type -> WorkDesktopMenuInfoReq
- 35, // 31: UserCenter.WorkDesktopComprehensive:input_type -> WorkDesktopComprehensiveReq
- 37, // 32: UserCenter.WorkDesktopClearUserInfo:input_type -> WorkDesktopClearUserInfoReq
- 1, // 33: UserCenter.EntAuth:output_type -> EntAuthResp
- 4, // 34: UserCenter.EntExamine:output_type -> ExamineResp
- 7, // 35: UserCenter.EntList:output_type -> EntListResp
- 11, // 36: UserCenter.ExamineList:output_type -> ExamineListResp
- 15, // 37: UserCenter.CheckEnt:output_type -> CheckEntResp
- 17, // 38: UserCenter.EntInfo:output_type -> EntInfoResp
- 4, // 39: UserCenter.EntUpdate:output_type -> ExamineResp
- 17, // 40: UserCenter.ExamineInfo:output_type -> EntInfoResp
- 22, // 41: UserCenter.GetStatusByCode:output_type -> GetStatusByCodeResp
- 25, // 42: UserCenter.UserAdd:output_type -> UserAddResp
- 4, // 43: UserCenter.UserUpdate:output_type -> ExamineResp
- 4, // 44: UserCenter.UserDel:output_type -> ExamineResp
- 29, // 45: UserCenter.WorkDesktopMenuInfo:output_type -> WorkDesktopMenuInfoResp
- 36, // 46: UserCenter.WorkDesktopComprehensive:output_type -> WorkDesktopComprehensiveResp
- 36, // 47: UserCenter.WorkDesktopClearUserInfo:output_type -> WorkDesktopComprehensiveResp
- 33, // [33:48] is the sub-list for method output_type
- 18, // [18:33] is the sub-list for method input_type
- 18, // [18:18] is the sub-list for extension type_name
- 18, // [18:18] is the sub-list for extension extendee
- 0, // [0:18] is the sub-list for field type_name
- }
- func init() { file_userCenter_proto_init() }
- func file_userCenter_proto_init() {
- if File_userCenter_proto != nil {
- return
- }
- if !protoimpl.UnsafeEnabled {
- file_userCenter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*EntAuthReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*EntAuthResp); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*EntAuthData); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExamineReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExamineResp); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExamineData); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*EntListReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*EntListResp); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*EntData); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*EntList); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExamineListReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExamineListResp); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExamineListData); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExamineList); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CheckEntReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CheckEntResp); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CheckData); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*EntInfoResp); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*EntInfoData); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*EntUpdateReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CheckExamineReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetStatusByCodeReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetStatusByCodeResp); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetStatusByCode); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserAddReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserAddResp); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserAdds); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserIdReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*WorkDesktopMenuInfoReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*WorkDesktopMenuInfoResp); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MenuData); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MenuList); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*SecondLevelMenu); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ThreeLevelMenu); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*TipInfo); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*WorkDesktopComprehensiveReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*WorkDesktopComprehensiveResp); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_userCenter_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*WorkDesktopClearUserInfoReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- }
- type x struct{}
- out := protoimpl.TypeBuilder{
- File: protoimpl.DescBuilder{
- GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_userCenter_proto_rawDesc,
- NumEnums: 0,
- NumMessages: 38,
- NumExtensions: 0,
- NumServices: 1,
- },
- GoTypes: file_userCenter_proto_goTypes,
- DependencyIndexes: file_userCenter_proto_depIdxs,
- MessageInfos: file_userCenter_proto_msgTypes,
- }.Build()
- File_userCenter_proto = out.File
- file_userCenter_proto_rawDesc = nil
- file_userCenter_proto_goTypes = nil
- file_userCenter_proto_depIdxs = nil
- }
|