datacenter.pb.go 256 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.34.1
  4. // protoc v3.20.3
  5. // source: datacenter.proto
  6. package pb
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type Pagination struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. Current uint32 `protobuf:"varint,1,opt,name=current,proto3" json:"current,omitempty"`
  24. PageSize uint32 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
  25. Total uint32 `protobuf:"varint,3,opt,name=total,proto3" json:"total,omitempty"`
  26. }
  27. func (x *Pagination) Reset() {
  28. *x = Pagination{}
  29. if protoimpl.UnsafeEnabled {
  30. mi := &file_datacenter_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. }
  35. func (x *Pagination) String() string {
  36. return protoimpl.X.MessageStringOf(x)
  37. }
  38. func (*Pagination) ProtoMessage() {}
  39. func (x *Pagination) ProtoReflect() protoreflect.Message {
  40. mi := &file_datacenter_proto_msgTypes[0]
  41. if protoimpl.UnsafeEnabled && x != nil {
  42. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  43. if ms.LoadMessageInfo() == nil {
  44. ms.StoreMessageInfo(mi)
  45. }
  46. return ms
  47. }
  48. return mi.MessageOf(x)
  49. }
  50. // Deprecated: Use Pagination.ProtoReflect.Descriptor instead.
  51. func (*Pagination) Descriptor() ([]byte, []int) {
  52. return file_datacenter_proto_rawDescGZIP(), []int{0}
  53. }
  54. func (x *Pagination) GetCurrent() uint32 {
  55. if x != nil {
  56. return x.Current
  57. }
  58. return 0
  59. }
  60. func (x *Pagination) GetPageSize() uint32 {
  61. if x != nil {
  62. return x.PageSize
  63. }
  64. return 0
  65. }
  66. func (x *Pagination) GetTotal() uint32 {
  67. if x != nil {
  68. return x.Total
  69. }
  70. return 0
  71. }
  72. type DataDescribeInfo struct {
  73. state protoimpl.MessageState
  74. sizeCache protoimpl.SizeCache
  75. unknownFields protoimpl.UnknownFields
  76. // @gotags: json:"count"
  77. Count uint32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
  78. // @gotags: json:"min"
  79. Min float64 `protobuf:"fixed64,2,opt,name=min,proto3" json:"min,omitempty"`
  80. // @gotags: json:"max"
  81. Max float64 `protobuf:"fixed64,3,opt,name=max,proto3" json:"max,omitempty"`
  82. // @gotags: json:"mean"
  83. Mean float64 `protobuf:"fixed64,4,opt,name=mean,proto3" json:"mean,omitempty"`
  84. // @gotags: json:"std_dev"
  85. StdDev float64 `protobuf:"fixed64,5,opt,name=std_dev,json=stdDev,proto3" json:"std_dev,omitempty"`
  86. // @gotags: json:"var_dev"
  87. VarDev float64 `protobuf:"fixed64,6,opt,name=var_dev,json=varDev,proto3" json:"var_dev,omitempty"`
  88. // @gotags: json:"p25"
  89. P25 float64 `protobuf:"fixed64,7,opt,name=p25,proto3" json:"p25,omitempty"`
  90. // @gotags: json:"p50"
  91. P50 float64 `protobuf:"fixed64,8,opt,name=p50,proto3" json:"p50,omitempty"`
  92. // @gotags: json:"p75"
  93. P75 float64 `protobuf:"fixed64,9,opt,name=p75,proto3" json:"p75,omitempty"`
  94. // @gotags: json:"st"
  95. St string `protobuf:"bytes,10,opt,name=st,proto3" json:"st,omitempty"`
  96. // @gotags: json:"et"
  97. Et string `protobuf:"bytes,11,opt,name=et,proto3" json:"et,omitempty"`
  98. }
  99. func (x *DataDescribeInfo) Reset() {
  100. *x = DataDescribeInfo{}
  101. if protoimpl.UnsafeEnabled {
  102. mi := &file_datacenter_proto_msgTypes[1]
  103. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  104. ms.StoreMessageInfo(mi)
  105. }
  106. }
  107. func (x *DataDescribeInfo) String() string {
  108. return protoimpl.X.MessageStringOf(x)
  109. }
  110. func (*DataDescribeInfo) ProtoMessage() {}
  111. func (x *DataDescribeInfo) ProtoReflect() protoreflect.Message {
  112. mi := &file_datacenter_proto_msgTypes[1]
  113. if protoimpl.UnsafeEnabled && x != nil {
  114. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  115. if ms.LoadMessageInfo() == nil {
  116. ms.StoreMessageInfo(mi)
  117. }
  118. return ms
  119. }
  120. return mi.MessageOf(x)
  121. }
  122. // Deprecated: Use DataDescribeInfo.ProtoReflect.Descriptor instead.
  123. func (*DataDescribeInfo) Descriptor() ([]byte, []int) {
  124. return file_datacenter_proto_rawDescGZIP(), []int{1}
  125. }
  126. func (x *DataDescribeInfo) GetCount() uint32 {
  127. if x != nil {
  128. return x.Count
  129. }
  130. return 0
  131. }
  132. func (x *DataDescribeInfo) GetMin() float64 {
  133. if x != nil {
  134. return x.Min
  135. }
  136. return 0
  137. }
  138. func (x *DataDescribeInfo) GetMax() float64 {
  139. if x != nil {
  140. return x.Max
  141. }
  142. return 0
  143. }
  144. func (x *DataDescribeInfo) GetMean() float64 {
  145. if x != nil {
  146. return x.Mean
  147. }
  148. return 0
  149. }
  150. func (x *DataDescribeInfo) GetStdDev() float64 {
  151. if x != nil {
  152. return x.StdDev
  153. }
  154. return 0
  155. }
  156. func (x *DataDescribeInfo) GetVarDev() float64 {
  157. if x != nil {
  158. return x.VarDev
  159. }
  160. return 0
  161. }
  162. func (x *DataDescribeInfo) GetP25() float64 {
  163. if x != nil {
  164. return x.P25
  165. }
  166. return 0
  167. }
  168. func (x *DataDescribeInfo) GetP50() float64 {
  169. if x != nil {
  170. return x.P50
  171. }
  172. return 0
  173. }
  174. func (x *DataDescribeInfo) GetP75() float64 {
  175. if x != nil {
  176. return x.P75
  177. }
  178. return 0
  179. }
  180. func (x *DataDescribeInfo) GetSt() string {
  181. if x != nil {
  182. return x.St
  183. }
  184. return ""
  185. }
  186. func (x *DataDescribeInfo) GetEt() string {
  187. if x != nil {
  188. return x.Et
  189. }
  190. return ""
  191. }
  192. type DataMinAndMaxInfo struct {
  193. state protoimpl.MessageState
  194. sizeCache protoimpl.SizeCache
  195. unknownFields protoimpl.UnknownFields
  196. // @gotags: json:"min"
  197. Min float64 `protobuf:"fixed64,1,opt,name=min,proto3" json:"min,omitempty"`
  198. // @gotags: json:"max"
  199. Max float64 `protobuf:"fixed64,2,opt,name=max,proto3" json:"max,omitempty"`
  200. }
  201. func (x *DataMinAndMaxInfo) Reset() {
  202. *x = DataMinAndMaxInfo{}
  203. if protoimpl.UnsafeEnabled {
  204. mi := &file_datacenter_proto_msgTypes[2]
  205. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  206. ms.StoreMessageInfo(mi)
  207. }
  208. }
  209. func (x *DataMinAndMaxInfo) String() string {
  210. return protoimpl.X.MessageStringOf(x)
  211. }
  212. func (*DataMinAndMaxInfo) ProtoMessage() {}
  213. func (x *DataMinAndMaxInfo) ProtoReflect() protoreflect.Message {
  214. mi := &file_datacenter_proto_msgTypes[2]
  215. if protoimpl.UnsafeEnabled && x != nil {
  216. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  217. if ms.LoadMessageInfo() == nil {
  218. ms.StoreMessageInfo(mi)
  219. }
  220. return ms
  221. }
  222. return mi.MessageOf(x)
  223. }
  224. // Deprecated: Use DataMinAndMaxInfo.ProtoReflect.Descriptor instead.
  225. func (*DataMinAndMaxInfo) Descriptor() ([]byte, []int) {
  226. return file_datacenter_proto_rawDescGZIP(), []int{2}
  227. }
  228. func (x *DataMinAndMaxInfo) GetMin() float64 {
  229. if x != nil {
  230. return x.Min
  231. }
  232. return 0
  233. }
  234. func (x *DataMinAndMaxInfo) GetMax() float64 {
  235. if x != nil {
  236. return x.Max
  237. }
  238. return 0
  239. }
  240. type RelatedItems struct {
  241. state protoimpl.MessageState
  242. sizeCache protoimpl.SizeCache
  243. unknownFields protoimpl.UnknownFields
  244. Item string `protobuf:"bytes,1,opt,name=item,proto3" json:"item,omitempty"`
  245. Coefficient float32 `protobuf:"fixed32,2,opt,name=coefficient,proto3" json:"coefficient,omitempty"`
  246. }
  247. func (x *RelatedItems) Reset() {
  248. *x = RelatedItems{}
  249. if protoimpl.UnsafeEnabled {
  250. mi := &file_datacenter_proto_msgTypes[3]
  251. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  252. ms.StoreMessageInfo(mi)
  253. }
  254. }
  255. func (x *RelatedItems) String() string {
  256. return protoimpl.X.MessageStringOf(x)
  257. }
  258. func (*RelatedItems) ProtoMessage() {}
  259. func (x *RelatedItems) ProtoReflect() protoreflect.Message {
  260. mi := &file_datacenter_proto_msgTypes[3]
  261. if protoimpl.UnsafeEnabled && x != nil {
  262. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  263. if ms.LoadMessageInfo() == nil {
  264. ms.StoreMessageInfo(mi)
  265. }
  266. return ms
  267. }
  268. return mi.MessageOf(x)
  269. }
  270. // Deprecated: Use RelatedItems.ProtoReflect.Descriptor instead.
  271. func (*RelatedItems) Descriptor() ([]byte, []int) {
  272. return file_datacenter_proto_rawDescGZIP(), []int{3}
  273. }
  274. func (x *RelatedItems) GetItem() string {
  275. if x != nil {
  276. return x.Item
  277. }
  278. return ""
  279. }
  280. func (x *RelatedItems) GetCoefficient() float32 {
  281. if x != nil {
  282. return x.Coefficient
  283. }
  284. return 0
  285. }
  286. type DataCorrelationInfo struct {
  287. state protoimpl.MessageState
  288. sizeCache protoimpl.SizeCache
  289. unknownFields protoimpl.UnknownFields
  290. // @gotags: json:"related_items"
  291. RelatedItems map[string]*RelatedItems `protobuf:"bytes,1,rep,name=related_items,json=relatedItems,proto3" json:"related_items,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  292. // @gotags: json:"st"
  293. St string `protobuf:"bytes,10,opt,name=st,proto3" json:"st,omitempty"`
  294. // @gotags: json:"et"
  295. Et string `protobuf:"bytes,11,opt,name=et,proto3" json:"et,omitempty"`
  296. }
  297. func (x *DataCorrelationInfo) Reset() {
  298. *x = DataCorrelationInfo{}
  299. if protoimpl.UnsafeEnabled {
  300. mi := &file_datacenter_proto_msgTypes[4]
  301. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  302. ms.StoreMessageInfo(mi)
  303. }
  304. }
  305. func (x *DataCorrelationInfo) String() string {
  306. return protoimpl.X.MessageStringOf(x)
  307. }
  308. func (*DataCorrelationInfo) ProtoMessage() {}
  309. func (x *DataCorrelationInfo) ProtoReflect() protoreflect.Message {
  310. mi := &file_datacenter_proto_msgTypes[4]
  311. if protoimpl.UnsafeEnabled && x != nil {
  312. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  313. if ms.LoadMessageInfo() == nil {
  314. ms.StoreMessageInfo(mi)
  315. }
  316. return ms
  317. }
  318. return mi.MessageOf(x)
  319. }
  320. // Deprecated: Use DataCorrelationInfo.ProtoReflect.Descriptor instead.
  321. func (*DataCorrelationInfo) Descriptor() ([]byte, []int) {
  322. return file_datacenter_proto_rawDescGZIP(), []int{4}
  323. }
  324. func (x *DataCorrelationInfo) GetRelatedItems() map[string]*RelatedItems {
  325. if x != nil {
  326. return x.RelatedItems
  327. }
  328. return nil
  329. }
  330. func (x *DataCorrelationInfo) GetSt() string {
  331. if x != nil {
  332. return x.St
  333. }
  334. return ""
  335. }
  336. func (x *DataCorrelationInfo) GetEt() string {
  337. if x != nil {
  338. return x.Et
  339. }
  340. return ""
  341. }
  342. type AppInfo struct {
  343. state protoimpl.MessageState
  344. sizeCache protoimpl.SizeCache
  345. unknownFields protoimpl.UnknownFields
  346. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  347. AppName string `protobuf:"bytes,2,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  348. ProjectIds []int64 `protobuf:"varint,3,rep,packed,name=project_ids,json=projectIds,proto3" json:"project_ids,omitempty"`
  349. Secret string `protobuf:"bytes,4,opt,name=secret,proto3" json:"secret,omitempty"`
  350. Status int64 `protobuf:"varint,5,opt,name=status,proto3" json:"status,omitempty"`
  351. ExpireAt string `protobuf:"bytes,6,opt,name=expire_at,json=expireAt,proto3" json:"expire_at,omitempty"`
  352. CTime string `protobuf:"bytes,7,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  353. }
  354. func (x *AppInfo) Reset() {
  355. *x = AppInfo{}
  356. if protoimpl.UnsafeEnabled {
  357. mi := &file_datacenter_proto_msgTypes[5]
  358. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  359. ms.StoreMessageInfo(mi)
  360. }
  361. }
  362. func (x *AppInfo) String() string {
  363. return protoimpl.X.MessageStringOf(x)
  364. }
  365. func (*AppInfo) ProtoMessage() {}
  366. func (x *AppInfo) ProtoReflect() protoreflect.Message {
  367. mi := &file_datacenter_proto_msgTypes[5]
  368. if protoimpl.UnsafeEnabled && x != nil {
  369. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  370. if ms.LoadMessageInfo() == nil {
  371. ms.StoreMessageInfo(mi)
  372. }
  373. return ms
  374. }
  375. return mi.MessageOf(x)
  376. }
  377. // Deprecated: Use AppInfo.ProtoReflect.Descriptor instead.
  378. func (*AppInfo) Descriptor() ([]byte, []int) {
  379. return file_datacenter_proto_rawDescGZIP(), []int{5}
  380. }
  381. func (x *AppInfo) GetId() int64 {
  382. if x != nil {
  383. return x.Id
  384. }
  385. return 0
  386. }
  387. func (x *AppInfo) GetAppName() string {
  388. if x != nil {
  389. return x.AppName
  390. }
  391. return ""
  392. }
  393. func (x *AppInfo) GetProjectIds() []int64 {
  394. if x != nil {
  395. return x.ProjectIds
  396. }
  397. return nil
  398. }
  399. func (x *AppInfo) GetSecret() string {
  400. if x != nil {
  401. return x.Secret
  402. }
  403. return ""
  404. }
  405. func (x *AppInfo) GetStatus() int64 {
  406. if x != nil {
  407. return x.Status
  408. }
  409. return 0
  410. }
  411. func (x *AppInfo) GetExpireAt() string {
  412. if x != nil {
  413. return x.ExpireAt
  414. }
  415. return ""
  416. }
  417. func (x *AppInfo) GetCTime() string {
  418. if x != nil {
  419. return x.CTime
  420. }
  421. return ""
  422. }
  423. type DcWorkingReq struct {
  424. state protoimpl.MessageState
  425. sizeCache protoimpl.SizeCache
  426. unknownFields protoimpl.UnknownFields
  427. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  428. DeviceCode string `protobuf:"bytes,2,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  429. Stime string `protobuf:"bytes,3,opt,name=stime,proto3" json:"stime,omitempty"` // c_time的搜索
  430. Etime string `protobuf:"bytes,4,opt,name=etime,proto3" json:"etime,omitempty"` // c_time的搜索
  431. Page int64 `protobuf:"varint,5,opt,name=page,proto3" json:"page,omitempty"`
  432. PageSize int64 `protobuf:"varint,6,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  433. Order string `protobuf:"bytes,7,opt,name=order,proto3" json:"order,omitempty"` // 排序字段及方向 例: id desc
  434. }
  435. func (x *DcWorkingReq) Reset() {
  436. *x = DcWorkingReq{}
  437. if protoimpl.UnsafeEnabled {
  438. mi := &file_datacenter_proto_msgTypes[6]
  439. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  440. ms.StoreMessageInfo(mi)
  441. }
  442. }
  443. func (x *DcWorkingReq) String() string {
  444. return protoimpl.X.MessageStringOf(x)
  445. }
  446. func (*DcWorkingReq) ProtoMessage() {}
  447. func (x *DcWorkingReq) ProtoReflect() protoreflect.Message {
  448. mi := &file_datacenter_proto_msgTypes[6]
  449. if protoimpl.UnsafeEnabled && x != nil {
  450. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  451. if ms.LoadMessageInfo() == nil {
  452. ms.StoreMessageInfo(mi)
  453. }
  454. return ms
  455. }
  456. return mi.MessageOf(x)
  457. }
  458. // Deprecated: Use DcWorkingReq.ProtoReflect.Descriptor instead.
  459. func (*DcWorkingReq) Descriptor() ([]byte, []int) {
  460. return file_datacenter_proto_rawDescGZIP(), []int{6}
  461. }
  462. func (x *DcWorkingReq) GetProjectId() int64 {
  463. if x != nil {
  464. return x.ProjectId
  465. }
  466. return 0
  467. }
  468. func (x *DcWorkingReq) GetDeviceCode() string {
  469. if x != nil {
  470. return x.DeviceCode
  471. }
  472. return ""
  473. }
  474. func (x *DcWorkingReq) GetStime() string {
  475. if x != nil {
  476. return x.Stime
  477. }
  478. return ""
  479. }
  480. func (x *DcWorkingReq) GetEtime() string {
  481. if x != nil {
  482. return x.Etime
  483. }
  484. return ""
  485. }
  486. func (x *DcWorkingReq) GetPage() int64 {
  487. if x != nil {
  488. return x.Page
  489. }
  490. return 0
  491. }
  492. func (x *DcWorkingReq) GetPageSize() int64 {
  493. if x != nil {
  494. return x.PageSize
  495. }
  496. return 0
  497. }
  498. func (x *DcWorkingReq) GetOrder() string {
  499. if x != nil {
  500. return x.Order
  501. }
  502. return ""
  503. }
  504. type WorkingMf struct {
  505. state protoimpl.MessageState
  506. sizeCache protoimpl.SizeCache
  507. unknownFields protoimpl.UnknownFields
  508. // @gotags: json:"id"
  509. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  510. // @gotags: json:"project_id"
  511. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  512. // @gotags: json:"device_code"
  513. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  514. // @gotags: json:"water_temperature"
  515. WaterTemperature float64 `protobuf:"fixed64,4,opt,name=water_temperature,json=waterTemperature,proto3" json:"water_temperature,omitempty"` // 水温 摄氏度
  516. // @gotags: json:"feed_flow"
  517. FeedFlow float64 `protobuf:"fixed64,5,opt,name=feed_flow,json=feedFlow,proto3" json:"feed_flow,omitempty"` // 进水流量
  518. // @gotags: json:"con_flow"
  519. ConFlow float64 `protobuf:"fixed64,6,opt,name=con_flow,json=conFlow,proto3" json:"con_flow,omitempty"` // 浓水流量
  520. // @gotags: json:"product_flow"
  521. ProductFlow float64 `protobuf:"fixed64,7,opt,name=product_flow,json=productFlow,proto3" json:"product_flow,omitempty"` // 产水流量
  522. // @gotags: json:"feed_pressure"
  523. FeedPressure float64 `protobuf:"fixed64,8,opt,name=feed_pressure,json=feedPressure,proto3" json:"feed_pressure,omitempty"` // 进水压力
  524. // @gotags: json:"con_pressure"
  525. ConPressure float64 `protobuf:"fixed64,9,opt,name=con_pressure,json=conPressure,proto3" json:"con_pressure,omitempty"` // 浓水压力
  526. // @gotags: json:"product_pressure"
  527. ProductPressure float64 `protobuf:"fixed64,10,opt,name=product_pressure,json=productPressure,proto3" json:"product_pressure,omitempty"` // 产水压力
  528. // @gotags: json:"tmp"
  529. Tmp float64 `protobuf:"fixed64,11,opt,name=tmp,proto3" json:"tmp,omitempty"` // 跨膜压差
  530. // @gotags: json:"flux"
  531. Flux float64 `protobuf:"fixed64,12,opt,name=flux,proto3" json:"flux,omitempty"` // 膜通量
  532. // @gotags: json:"feed_wq_turbidity"
  533. FeedWqTurbidity float64 `protobuf:"fixed64,13,opt,name=feed_wq_turbidity,json=feedWqTurbidity,proto3" json:"feed_wq_turbidity,omitempty"` // 进水浊度
  534. // @gotags: json:"feed_wq_ph"
  535. FeedWqPh int64 `protobuf:"varint,14,opt,name=feed_wq_ph,json=feedWqPh,proto3" json:"feed_wq_ph,omitempty"` // 进水 PH 值
  536. // @gotags: json:"product_wq_ph"
  537. ProductWqPh int64 `protobuf:"varint,15,opt,name=product_wq_ph,json=productWqPh,proto3" json:"product_wq_ph,omitempty"` // 产水 PH 值
  538. // @gotags: json:"feed_wq_al"
  539. FeedWqAl float64 `protobuf:"fixed64,16,opt,name=feed_wq_al,json=feedWqAl,proto3" json:"feed_wq_al,omitempty"` // 进水水质:铝
  540. // @gotags: json:"product_wq_al"
  541. ProductWqAl float64 `protobuf:"fixed64,17,opt,name=product_wq_al,json=productWqAl,proto3" json:"product_wq_al,omitempty"` // 产水水质:铝
  542. // @gotags: json:"feed_wq_fe"
  543. FeedWqFe float64 `protobuf:"fixed64,18,opt,name=feed_wq_fe,json=feedWqFe,proto3" json:"feed_wq_fe,omitempty"` // 进水水质:铁
  544. // @gotags: json:"product_wq_fe"
  545. ProductWqFe float64 `protobuf:"fixed64,19,opt,name=product_wq_fe,json=productWqFe,proto3" json:"product_wq_fe,omitempty"` // 产水水质:铁
  546. // @gotags: json:"feed_wq_mn"
  547. FeedWqMn float64 `protobuf:"fixed64,20,opt,name=feed_wq_mn,json=feedWqMn,proto3" json:"feed_wq_mn,omitempty"` // 进水水质:锰
  548. // @gotags: json:"product_wq_mn"
  549. ProductWqMn float64 `protobuf:"fixed64,21,opt,name=product_wq_mn,json=productWqMn,proto3" json:"product_wq_mn,omitempty"` // 产水水质:锰
  550. // @gotags: json:"feed_wq_sio2"
  551. FeedWqSio2 float64 `protobuf:"fixed64,22,opt,name=feed_wq_sio2,json=feedWqSio2,proto3" json:"feed_wq_sio2,omitempty"` // 进水水质:二氧化硅
  552. // @gotags: json:"product_wq_sio2"
  553. ProductWqSio2 float64 `protobuf:"fixed64,23,opt,name=product_wq_sio2,json=productWqSio2,proto3" json:"product_wq_sio2,omitempty"` // 产水水质:二氧化硅
  554. // @gotags: json:"feed_wq_cod"
  555. FeedWqCod float64 `protobuf:"fixed64,24,opt,name=feed_wq_cod,json=feedWqCod,proto3" json:"feed_wq_cod,omitempty"` // 进水水质:COD
  556. // @gotags: json:"product_wq_cod"
  557. ProductWqCod float64 `protobuf:"fixed64,25,opt,name=product_wq_cod,json=productWqCod,proto3" json:"product_wq_cod,omitempty"` // 产水水质:COD
  558. // @gotags: json:"feed_wq_p"
  559. FeedWqP float64 `protobuf:"fixed64,26,opt,name=feed_wq_p,json=feedWqP,proto3" json:"feed_wq_p,omitempty"` // 进水水质:磷
  560. // @gotags: json:"product_wq_p"
  561. ProductWqP float64 `protobuf:"fixed64,27,opt,name=product_wq_p,json=productWqP,proto3" json:"product_wq_p,omitempty"` // 产水水质:磷
  562. // @gotags: json:"step"
  563. Step int64 `protobuf:"varint,28,opt,name=step,proto3" json:"step,omitempty"` // 设备当前步序值
  564. // @gotags: json:"c_time"
  565. CTime string `protobuf:"bytes,29,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  566. }
  567. func (x *WorkingMf) Reset() {
  568. *x = WorkingMf{}
  569. if protoimpl.UnsafeEnabled {
  570. mi := &file_datacenter_proto_msgTypes[7]
  571. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  572. ms.StoreMessageInfo(mi)
  573. }
  574. }
  575. func (x *WorkingMf) String() string {
  576. return protoimpl.X.MessageStringOf(x)
  577. }
  578. func (*WorkingMf) ProtoMessage() {}
  579. func (x *WorkingMf) ProtoReflect() protoreflect.Message {
  580. mi := &file_datacenter_proto_msgTypes[7]
  581. if protoimpl.UnsafeEnabled && x != nil {
  582. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  583. if ms.LoadMessageInfo() == nil {
  584. ms.StoreMessageInfo(mi)
  585. }
  586. return ms
  587. }
  588. return mi.MessageOf(x)
  589. }
  590. // Deprecated: Use WorkingMf.ProtoReflect.Descriptor instead.
  591. func (*WorkingMf) Descriptor() ([]byte, []int) {
  592. return file_datacenter_proto_rawDescGZIP(), []int{7}
  593. }
  594. func (x *WorkingMf) GetId() int64 {
  595. if x != nil {
  596. return x.Id
  597. }
  598. return 0
  599. }
  600. func (x *WorkingMf) GetProjectId() int64 {
  601. if x != nil {
  602. return x.ProjectId
  603. }
  604. return 0
  605. }
  606. func (x *WorkingMf) GetDeviceCode() string {
  607. if x != nil {
  608. return x.DeviceCode
  609. }
  610. return ""
  611. }
  612. func (x *WorkingMf) GetWaterTemperature() float64 {
  613. if x != nil {
  614. return x.WaterTemperature
  615. }
  616. return 0
  617. }
  618. func (x *WorkingMf) GetFeedFlow() float64 {
  619. if x != nil {
  620. return x.FeedFlow
  621. }
  622. return 0
  623. }
  624. func (x *WorkingMf) GetConFlow() float64 {
  625. if x != nil {
  626. return x.ConFlow
  627. }
  628. return 0
  629. }
  630. func (x *WorkingMf) GetProductFlow() float64 {
  631. if x != nil {
  632. return x.ProductFlow
  633. }
  634. return 0
  635. }
  636. func (x *WorkingMf) GetFeedPressure() float64 {
  637. if x != nil {
  638. return x.FeedPressure
  639. }
  640. return 0
  641. }
  642. func (x *WorkingMf) GetConPressure() float64 {
  643. if x != nil {
  644. return x.ConPressure
  645. }
  646. return 0
  647. }
  648. func (x *WorkingMf) GetProductPressure() float64 {
  649. if x != nil {
  650. return x.ProductPressure
  651. }
  652. return 0
  653. }
  654. func (x *WorkingMf) GetTmp() float64 {
  655. if x != nil {
  656. return x.Tmp
  657. }
  658. return 0
  659. }
  660. func (x *WorkingMf) GetFlux() float64 {
  661. if x != nil {
  662. return x.Flux
  663. }
  664. return 0
  665. }
  666. func (x *WorkingMf) GetFeedWqTurbidity() float64 {
  667. if x != nil {
  668. return x.FeedWqTurbidity
  669. }
  670. return 0
  671. }
  672. func (x *WorkingMf) GetFeedWqPh() int64 {
  673. if x != nil {
  674. return x.FeedWqPh
  675. }
  676. return 0
  677. }
  678. func (x *WorkingMf) GetProductWqPh() int64 {
  679. if x != nil {
  680. return x.ProductWqPh
  681. }
  682. return 0
  683. }
  684. func (x *WorkingMf) GetFeedWqAl() float64 {
  685. if x != nil {
  686. return x.FeedWqAl
  687. }
  688. return 0
  689. }
  690. func (x *WorkingMf) GetProductWqAl() float64 {
  691. if x != nil {
  692. return x.ProductWqAl
  693. }
  694. return 0
  695. }
  696. func (x *WorkingMf) GetFeedWqFe() float64 {
  697. if x != nil {
  698. return x.FeedWqFe
  699. }
  700. return 0
  701. }
  702. func (x *WorkingMf) GetProductWqFe() float64 {
  703. if x != nil {
  704. return x.ProductWqFe
  705. }
  706. return 0
  707. }
  708. func (x *WorkingMf) GetFeedWqMn() float64 {
  709. if x != nil {
  710. return x.FeedWqMn
  711. }
  712. return 0
  713. }
  714. func (x *WorkingMf) GetProductWqMn() float64 {
  715. if x != nil {
  716. return x.ProductWqMn
  717. }
  718. return 0
  719. }
  720. func (x *WorkingMf) GetFeedWqSio2() float64 {
  721. if x != nil {
  722. return x.FeedWqSio2
  723. }
  724. return 0
  725. }
  726. func (x *WorkingMf) GetProductWqSio2() float64 {
  727. if x != nil {
  728. return x.ProductWqSio2
  729. }
  730. return 0
  731. }
  732. func (x *WorkingMf) GetFeedWqCod() float64 {
  733. if x != nil {
  734. return x.FeedWqCod
  735. }
  736. return 0
  737. }
  738. func (x *WorkingMf) GetProductWqCod() float64 {
  739. if x != nil {
  740. return x.ProductWqCod
  741. }
  742. return 0
  743. }
  744. func (x *WorkingMf) GetFeedWqP() float64 {
  745. if x != nil {
  746. return x.FeedWqP
  747. }
  748. return 0
  749. }
  750. func (x *WorkingMf) GetProductWqP() float64 {
  751. if x != nil {
  752. return x.ProductWqP
  753. }
  754. return 0
  755. }
  756. func (x *WorkingMf) GetStep() int64 {
  757. if x != nil {
  758. return x.Step
  759. }
  760. return 0
  761. }
  762. func (x *WorkingMf) GetCTime() string {
  763. if x != nil {
  764. return x.CTime
  765. }
  766. return ""
  767. }
  768. type WorkingUf struct {
  769. state protoimpl.MessageState
  770. sizeCache protoimpl.SizeCache
  771. unknownFields protoimpl.UnknownFields
  772. // @gotags: json:"id"
  773. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  774. // @gotags: json:"project_id"
  775. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  776. // @gotags: json:"device_code"
  777. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  778. // @gotags: json:"water_temperature"
  779. WaterTemperature float64 `protobuf:"fixed64,4,opt,name=water_temperature,json=waterTemperature,proto3" json:"water_temperature,omitempty"` // 水温 摄氏度
  780. // @gotags: json:"feed_flow"
  781. FeedFlow float64 `protobuf:"fixed64,5,opt,name=feed_flow,json=feedFlow,proto3" json:"feed_flow,omitempty"` // 进水流量
  782. // @gotags: json:"con_flow"
  783. ConFlow float64 `protobuf:"fixed64,6,opt,name=con_flow,json=conFlow,proto3" json:"con_flow,omitempty"` // 浓水流量
  784. // @gotags: json:"product_flow"
  785. ProductFlow float64 `protobuf:"fixed64,7,opt,name=product_flow,json=productFlow,proto3" json:"product_flow,omitempty"` // 产水流量
  786. // @gotags: json:"feed_pressure"
  787. FeedPressure float64 `protobuf:"fixed64,8,opt,name=feed_pressure,json=feedPressure,proto3" json:"feed_pressure,omitempty"` // 进水压力
  788. // @gotags: json:"con_pressure"
  789. ConPressure float64 `protobuf:"fixed64,9,opt,name=con_pressure,json=conPressure,proto3" json:"con_pressure,omitempty"` // 浓水压力
  790. // @gotags: json:"product_pressure"
  791. ProductPressure float64 `protobuf:"fixed64,10,opt,name=product_pressure,json=productPressure,proto3" json:"product_pressure,omitempty"` // 产水压力
  792. // @gotags: json:"tmp"
  793. Tmp float64 `protobuf:"fixed64,11,opt,name=tmp,proto3" json:"tmp,omitempty"` // 跨膜压差
  794. // @gotags: json:"flux"
  795. Flux float64 `protobuf:"fixed64,12,opt,name=flux,proto3" json:"flux,omitempty"` // 膜通量
  796. // @gotags: json:"permeability"
  797. Permeability float64 `protobuf:"fixed64,32,opt,name=permeability,proto3" json:"permeability,omitempty"` // 渗透率
  798. // @gotags: json:"feed_wq_turbidity"
  799. FeedWqTurbidity float64 `protobuf:"fixed64,13,opt,name=feed_wq_turbidity,json=feedWqTurbidity,proto3" json:"feed_wq_turbidity,omitempty"` // 进水浊度
  800. // @gotags: json:"feed_wq_ph"
  801. FeedWqPh int64 `protobuf:"varint,14,opt,name=feed_wq_ph,json=feedWqPh,proto3" json:"feed_wq_ph,omitempty"` // 进水 PH 值
  802. // @gotags: json:"product_wq_ph"
  803. ProductWqPh int64 `protobuf:"varint,15,opt,name=product_wq_ph,json=productWqPh,proto3" json:"product_wq_ph,omitempty"` // 产水 PH 值
  804. // @gotags: json:"feed_wq_al"
  805. FeedWqAl float64 `protobuf:"fixed64,16,opt,name=feed_wq_al,json=feedWqAl,proto3" json:"feed_wq_al,omitempty"` // 进水水质:铝
  806. // @gotags: json:"product_wq_al"
  807. ProductWqAl float64 `protobuf:"fixed64,17,opt,name=product_wq_al,json=productWqAl,proto3" json:"product_wq_al,omitempty"` // 产水水质:铝
  808. // @gotags: json:"feed_wq_fe"
  809. FeedWqFe float64 `protobuf:"fixed64,18,opt,name=feed_wq_fe,json=feedWqFe,proto3" json:"feed_wq_fe,omitempty"` // 进水水质:铁
  810. // @gotags: json:"product_wq_fe"
  811. ProductWqFe float64 `protobuf:"fixed64,19,opt,name=product_wq_fe,json=productWqFe,proto3" json:"product_wq_fe,omitempty"` // 产水水质:铁
  812. // @gotags: json:"feed_wq_mn"
  813. FeedWqMn float64 `protobuf:"fixed64,20,opt,name=feed_wq_mn,json=feedWqMn,proto3" json:"feed_wq_mn,omitempty"` // 进水水质:锰
  814. // @gotags: json:"product_wq_mn"
  815. ProductWqMn float64 `protobuf:"fixed64,21,opt,name=product_wq_mn,json=productWqMn,proto3" json:"product_wq_mn,omitempty"` // 产水水质:锰
  816. // @gotags: json:"feed_wq_sio2"
  817. FeedWqSio2 float64 `protobuf:"fixed64,22,opt,name=feed_wq_sio2,json=feedWqSio2,proto3" json:"feed_wq_sio2,omitempty"` // 进水水质:二氧化硅
  818. // @gotags: json:"product_wq_sio2"
  819. ProductWqSio2 float64 `protobuf:"fixed64,23,opt,name=product_wq_sio2,json=productWqSio2,proto3" json:"product_wq_sio2,omitempty"` // 产水水质:二氧化硅
  820. // @gotags: json:"feed_wq_cod"
  821. FeedWqCod float64 `protobuf:"fixed64,24,opt,name=feed_wq_cod,json=feedWqCod,proto3" json:"feed_wq_cod,omitempty"` // 进水水质:COD
  822. // @gotags: json:"product_wq_cod"
  823. ProductWqCod float64 `protobuf:"fixed64,25,opt,name=product_wq_cod,json=productWqCod,proto3" json:"product_wq_cod,omitempty"` // 产水水质:COD
  824. // @gotags: json:"feed_wq_p"
  825. FeedWqP float64 `protobuf:"fixed64,26,opt,name=feed_wq_p,json=feedWqP,proto3" json:"feed_wq_p,omitempty"` // 进水水质:磷
  826. // @gotags: json:"product_wq_p"
  827. ProductWqP float64 `protobuf:"fixed64,27,opt,name=product_wq_p,json=productWqP,proto3" json:"product_wq_p,omitempty"` // 产水水质:磷
  828. // @gotags: json:"step"
  829. Step int64 `protobuf:"varint,28,opt,name=step,proto3" json:"step,omitempty"` // 设备当前步序值
  830. // @gotags: json:"filter_time"
  831. FilterTime float64 `protobuf:"fixed64,29,opt,name=filter_time,json=filterTime,proto3" json:"filter_time,omitempty"`
  832. // @gotags: json:"filter_cycle"
  833. FilterCycle int64 `protobuf:"varint,30,opt,name=filter_cycle,json=filterCycle,proto3" json:"filter_cycle,omitempty"`
  834. // @gotags: json:"c_time"
  835. CTime string `protobuf:"bytes,31,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  836. }
  837. func (x *WorkingUf) Reset() {
  838. *x = WorkingUf{}
  839. if protoimpl.UnsafeEnabled {
  840. mi := &file_datacenter_proto_msgTypes[8]
  841. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  842. ms.StoreMessageInfo(mi)
  843. }
  844. }
  845. func (x *WorkingUf) String() string {
  846. return protoimpl.X.MessageStringOf(x)
  847. }
  848. func (*WorkingUf) ProtoMessage() {}
  849. func (x *WorkingUf) ProtoReflect() protoreflect.Message {
  850. mi := &file_datacenter_proto_msgTypes[8]
  851. if protoimpl.UnsafeEnabled && x != nil {
  852. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  853. if ms.LoadMessageInfo() == nil {
  854. ms.StoreMessageInfo(mi)
  855. }
  856. return ms
  857. }
  858. return mi.MessageOf(x)
  859. }
  860. // Deprecated: Use WorkingUf.ProtoReflect.Descriptor instead.
  861. func (*WorkingUf) Descriptor() ([]byte, []int) {
  862. return file_datacenter_proto_rawDescGZIP(), []int{8}
  863. }
  864. func (x *WorkingUf) GetId() int64 {
  865. if x != nil {
  866. return x.Id
  867. }
  868. return 0
  869. }
  870. func (x *WorkingUf) GetProjectId() int64 {
  871. if x != nil {
  872. return x.ProjectId
  873. }
  874. return 0
  875. }
  876. func (x *WorkingUf) GetDeviceCode() string {
  877. if x != nil {
  878. return x.DeviceCode
  879. }
  880. return ""
  881. }
  882. func (x *WorkingUf) GetWaterTemperature() float64 {
  883. if x != nil {
  884. return x.WaterTemperature
  885. }
  886. return 0
  887. }
  888. func (x *WorkingUf) GetFeedFlow() float64 {
  889. if x != nil {
  890. return x.FeedFlow
  891. }
  892. return 0
  893. }
  894. func (x *WorkingUf) GetConFlow() float64 {
  895. if x != nil {
  896. return x.ConFlow
  897. }
  898. return 0
  899. }
  900. func (x *WorkingUf) GetProductFlow() float64 {
  901. if x != nil {
  902. return x.ProductFlow
  903. }
  904. return 0
  905. }
  906. func (x *WorkingUf) GetFeedPressure() float64 {
  907. if x != nil {
  908. return x.FeedPressure
  909. }
  910. return 0
  911. }
  912. func (x *WorkingUf) GetConPressure() float64 {
  913. if x != nil {
  914. return x.ConPressure
  915. }
  916. return 0
  917. }
  918. func (x *WorkingUf) GetProductPressure() float64 {
  919. if x != nil {
  920. return x.ProductPressure
  921. }
  922. return 0
  923. }
  924. func (x *WorkingUf) GetTmp() float64 {
  925. if x != nil {
  926. return x.Tmp
  927. }
  928. return 0
  929. }
  930. func (x *WorkingUf) GetFlux() float64 {
  931. if x != nil {
  932. return x.Flux
  933. }
  934. return 0
  935. }
  936. func (x *WorkingUf) GetPermeability() float64 {
  937. if x != nil {
  938. return x.Permeability
  939. }
  940. return 0
  941. }
  942. func (x *WorkingUf) GetFeedWqTurbidity() float64 {
  943. if x != nil {
  944. return x.FeedWqTurbidity
  945. }
  946. return 0
  947. }
  948. func (x *WorkingUf) GetFeedWqPh() int64 {
  949. if x != nil {
  950. return x.FeedWqPh
  951. }
  952. return 0
  953. }
  954. func (x *WorkingUf) GetProductWqPh() int64 {
  955. if x != nil {
  956. return x.ProductWqPh
  957. }
  958. return 0
  959. }
  960. func (x *WorkingUf) GetFeedWqAl() float64 {
  961. if x != nil {
  962. return x.FeedWqAl
  963. }
  964. return 0
  965. }
  966. func (x *WorkingUf) GetProductWqAl() float64 {
  967. if x != nil {
  968. return x.ProductWqAl
  969. }
  970. return 0
  971. }
  972. func (x *WorkingUf) GetFeedWqFe() float64 {
  973. if x != nil {
  974. return x.FeedWqFe
  975. }
  976. return 0
  977. }
  978. func (x *WorkingUf) GetProductWqFe() float64 {
  979. if x != nil {
  980. return x.ProductWqFe
  981. }
  982. return 0
  983. }
  984. func (x *WorkingUf) GetFeedWqMn() float64 {
  985. if x != nil {
  986. return x.FeedWqMn
  987. }
  988. return 0
  989. }
  990. func (x *WorkingUf) GetProductWqMn() float64 {
  991. if x != nil {
  992. return x.ProductWqMn
  993. }
  994. return 0
  995. }
  996. func (x *WorkingUf) GetFeedWqSio2() float64 {
  997. if x != nil {
  998. return x.FeedWqSio2
  999. }
  1000. return 0
  1001. }
  1002. func (x *WorkingUf) GetProductWqSio2() float64 {
  1003. if x != nil {
  1004. return x.ProductWqSio2
  1005. }
  1006. return 0
  1007. }
  1008. func (x *WorkingUf) GetFeedWqCod() float64 {
  1009. if x != nil {
  1010. return x.FeedWqCod
  1011. }
  1012. return 0
  1013. }
  1014. func (x *WorkingUf) GetProductWqCod() float64 {
  1015. if x != nil {
  1016. return x.ProductWqCod
  1017. }
  1018. return 0
  1019. }
  1020. func (x *WorkingUf) GetFeedWqP() float64 {
  1021. if x != nil {
  1022. return x.FeedWqP
  1023. }
  1024. return 0
  1025. }
  1026. func (x *WorkingUf) GetProductWqP() float64 {
  1027. if x != nil {
  1028. return x.ProductWqP
  1029. }
  1030. return 0
  1031. }
  1032. func (x *WorkingUf) GetStep() int64 {
  1033. if x != nil {
  1034. return x.Step
  1035. }
  1036. return 0
  1037. }
  1038. func (x *WorkingUf) GetFilterTime() float64 {
  1039. if x != nil {
  1040. return x.FilterTime
  1041. }
  1042. return 0
  1043. }
  1044. func (x *WorkingUf) GetFilterCycle() int64 {
  1045. if x != nil {
  1046. return x.FilterCycle
  1047. }
  1048. return 0
  1049. }
  1050. func (x *WorkingUf) GetCTime() string {
  1051. if x != nil {
  1052. return x.CTime
  1053. }
  1054. return ""
  1055. }
  1056. type WorkingNf struct {
  1057. state protoimpl.MessageState
  1058. sizeCache protoimpl.SizeCache
  1059. unknownFields protoimpl.UnknownFields
  1060. // gotags: json:"id"
  1061. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1062. // gotags: json:"project_id"
  1063. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  1064. // gotags: json:"device_code"
  1065. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  1066. // gotags: json:"water_temperature"
  1067. WaterTemperature float64 `protobuf:"fixed64,4,opt,name=water_temperature,json=waterTemperature,proto3" json:"water_temperature,omitempty"` // 水温 摄氏度
  1068. // gotags: json:"feed_flow_1st"
  1069. FeedFlow_1St float64 `protobuf:"fixed64,5,opt,name=feed_flow_1st,json=feedFlow1st,proto3" json:"feed_flow_1st,omitempty"` // 一段进水流量
  1070. // gotags: json:"con_flow_1st"
  1071. ConFlow_1St float64 `protobuf:"fixed64,6,opt,name=con_flow_1st,json=conFlow1st,proto3" json:"con_flow_1st,omitempty"` // 一段浓水流量
  1072. // gotags: json:"product_flow_1st"
  1073. ProductFlow_1St float64 `protobuf:"fixed64,7,opt,name=product_flow_1st,json=productFlow1st,proto3" json:"product_flow_1st,omitempty"` // 一段产水流量
  1074. // gotags: json:"feed_pressure_1st"
  1075. FeedPressure_1St float64 `protobuf:"fixed64,8,opt,name=feed_pressure_1st,json=feedPressure1st,proto3" json:"feed_pressure_1st,omitempty"` // 一段进水压力
  1076. // gotags: json:"con_pressure_1st"
  1077. ConPressure_1St float64 `protobuf:"fixed64,9,opt,name=con_pressure_1st,json=conPressure1st,proto3" json:"con_pressure_1st,omitempty"` // 一段浓水压力
  1078. // gotags: json:"product_pressure_1st"
  1079. ProductPressure_1St float64 `protobuf:"fixed64,10,opt,name=product_pressure_1st,json=productPressure1st,proto3" json:"product_pressure_1st,omitempty"` // 一段产水压力
  1080. // gotags: json:"tmp_1st"
  1081. Tmp_1St float64 `protobuf:"fixed64,11,opt,name=tmp_1st,json=tmp1st,proto3" json:"tmp_1st,omitempty"` // 一段跨膜压差
  1082. // gotags: json:"flux_1st"
  1083. Flux_1St float64 `protobuf:"fixed64,12,opt,name=flux_1st,json=flux1st,proto3" json:"flux_1st,omitempty"` // 一段膜通量
  1084. // gotags: json:"permeability_1st"
  1085. Permeability_1St float64 `protobuf:"fixed64,13,opt,name=permeability_1st,json=permeability1st,proto3" json:"permeability_1st,omitempty"` // 一段渗透率
  1086. // gotags: json:"feed_flow_2nd"
  1087. FeedFlow_2Nd float64 `protobuf:"fixed64,14,opt,name=feed_flow_2nd,json=feedFlow2nd,proto3" json:"feed_flow_2nd,omitempty"` // 二段进水流量
  1088. // gotags: json:"con_flow_2nd"
  1089. ConFlow_2Nd float64 `protobuf:"fixed64,15,opt,name=con_flow_2nd,json=conFlow2nd,proto3" json:"con_flow_2nd,omitempty"` // 二段浓水流量
  1090. // gotags: json:"product_flow_2nd"
  1091. ProductFlow_2Nd float64 `protobuf:"fixed64,16,opt,name=product_flow_2nd,json=productFlow2nd,proto3" json:"product_flow_2nd,omitempty"` // 二段产水流量
  1092. // gotags: json:"feed_pressure_2nd"
  1093. FeedPressure_2Nd float64 `protobuf:"fixed64,17,opt,name=feed_pressure_2nd,json=feedPressure2nd,proto3" json:"feed_pressure_2nd,omitempty"` // 二段进水压力
  1094. // gotags: json:"con_pressure_2nd"
  1095. ConPressure_2Nd float64 `protobuf:"fixed64,18,opt,name=con_pressure_2nd,json=conPressure2nd,proto3" json:"con_pressure_2nd,omitempty"` // 二段浓水压力
  1096. // gotags: json:"product_pressure_2nd"
  1097. ProductPressure_2Nd float64 `protobuf:"fixed64,19,opt,name=product_pressure_2nd,json=productPressure2nd,proto3" json:"product_pressure_2nd,omitempty"` // 二段产水压力
  1098. // gotags: json:"tmp_2nd"
  1099. Tmp_2Nd float64 `protobuf:"fixed64,20,opt,name=tmp_2nd,json=tmp2nd,proto3" json:"tmp_2nd,omitempty"` // 二段压差
  1100. // gotags: json:"flux_2nd"
  1101. Flux_2Nd float64 `protobuf:"fixed64,21,opt,name=flux_2nd,json=flux2nd,proto3" json:"flux_2nd,omitempty"` // 二段通量
  1102. // gotags: json:"permeability_2nd"
  1103. Permeability_2Nd float64 `protobuf:"fixed64,22,opt,name=permeability_2nd,json=permeability2nd,proto3" json:"permeability_2nd,omitempty"` // 二段渗透率
  1104. // gotags: json:"feed_flow_3th"
  1105. FeedFlow_3Th float64 `protobuf:"fixed64,23,opt,name=feed_flow_3th,json=feedFlow3th,proto3" json:"feed_flow_3th,omitempty"` // 三段进水流量
  1106. // gotags: json:"con_flow_3th"
  1107. ConFlow_3Th float64 `protobuf:"fixed64,24,opt,name=con_flow_3th,json=conFlow3th,proto3" json:"con_flow_3th,omitempty"` // 三段浓水流量
  1108. // gotags: json:"product_flow_3th"
  1109. ProductFlow_3Th float64 `protobuf:"fixed64,25,opt,name=product_flow_3th,json=productFlow3th,proto3" json:"product_flow_3th,omitempty"` // 三段产水流量
  1110. // gotags: json:"feed_pressure_3th"
  1111. FeedPressure_3Th float64 `protobuf:"fixed64,26,opt,name=feed_pressure_3th,json=feedPressure3th,proto3" json:"feed_pressure_3th,omitempty"` // 三段进水压力
  1112. // gotags: json:"con_pressure_3th"
  1113. ConPressure_3Th float64 `protobuf:"fixed64,27,opt,name=con_pressure_3th,json=conPressure3th,proto3" json:"con_pressure_3th,omitempty"` // 三段浓水压力
  1114. // gotags: json:"product_pressure_3th"
  1115. ProductPressure_3Th float64 `protobuf:"fixed64,28,opt,name=product_pressure_3th,json=productPressure3th,proto3" json:"product_pressure_3th,omitempty"` // 三段产水压力
  1116. // gotags: json:"tmp_3th"
  1117. Tmp_3Th float64 `protobuf:"fixed64,29,opt,name=tmp_3th,json=tmp3th,proto3" json:"tmp_3th,omitempty"` // 三段压差
  1118. // gotags: json:"flux_3th"
  1119. Flux_3Th float64 `protobuf:"fixed64,30,opt,name=flux_3th,json=flux3th,proto3" json:"flux_3th,omitempty"` // 三段通量
  1120. // gotags: json:"permeability_3th"
  1121. Permeability_3Th float64 `protobuf:"fixed64,31,opt,name=permeability_3th,json=permeability3th,proto3" json:"permeability_3th,omitempty"` // 三段渗透率
  1122. // gotags: json:"feed_wq_turbidity"
  1123. FeedWqTurbidity float64 `protobuf:"fixed64,32,opt,name=feed_wq_turbidity,json=feedWqTurbidity,proto3" json:"feed_wq_turbidity,omitempty"` // 进水浊度
  1124. // gotags: json:"feed_wq_ph"
  1125. FeedWqPh int64 `protobuf:"varint,33,opt,name=feed_wq_ph,json=feedWqPh,proto3" json:"feed_wq_ph,omitempty"` // 进水 PH 值
  1126. // gotags: json:"product_wq_ph"
  1127. ProductWqPh int64 `protobuf:"varint,34,opt,name=product_wq_ph,json=productWqPh,proto3" json:"product_wq_ph,omitempty"` // 产水 PH 值
  1128. // gotags: json:"feed_wq_al"
  1129. FeedWqAl float64 `protobuf:"fixed64,35,opt,name=feed_wq_al,json=feedWqAl,proto3" json:"feed_wq_al,omitempty"` // 进水水质:铝
  1130. // gotags: json:"product_wq_al"
  1131. ProductWqAl float64 `protobuf:"fixed64,36,opt,name=product_wq_al,json=productWqAl,proto3" json:"product_wq_al,omitempty"` // 产水水质:铝
  1132. // gotags: json:"feed_wq_fe"
  1133. FeedWqFe float64 `protobuf:"fixed64,37,opt,name=feed_wq_fe,json=feedWqFe,proto3" json:"feed_wq_fe,omitempty"` // 进水水质:铁
  1134. // gotags: json:"product_wq_fe"
  1135. ProductWqFe float64 `protobuf:"fixed64,38,opt,name=product_wq_fe,json=productWqFe,proto3" json:"product_wq_fe,omitempty"` // 产水水质:铁
  1136. // gotags: json:"feed_wq_mn"
  1137. FeedWqMn float64 `protobuf:"fixed64,39,opt,name=feed_wq_mn,json=feedWqMn,proto3" json:"feed_wq_mn,omitempty"` // 进水水质:锰
  1138. // gotags: json:"product_wq_mn"
  1139. ProductWqMn float64 `protobuf:"fixed64,40,opt,name=product_wq_mn,json=productWqMn,proto3" json:"product_wq_mn,omitempty"` // 产水水质:锰
  1140. // gotags: json:"feed_wq_sio2"
  1141. FeedWqSio2 float64 `protobuf:"fixed64,41,opt,name=feed_wq_sio2,json=feedWqSio2,proto3" json:"feed_wq_sio2,omitempty"` // 进水水质:二氧化硅
  1142. // gotags: json:"product_wq_sio2"
  1143. ProductWqSio2 float64 `protobuf:"fixed64,42,opt,name=product_wq_sio2,json=productWqSio2,proto3" json:"product_wq_sio2,omitempty"` // 产水水质:二氧化硅
  1144. // gotags: json:"feed_wq_cod"
  1145. FeedWqCod float64 `protobuf:"fixed64,43,opt,name=feed_wq_cod,json=feedWqCod,proto3" json:"feed_wq_cod,omitempty"` // 进水水质:COD
  1146. // gotags: json:"product_wq_cod"
  1147. ProductWqCod float64 `protobuf:"fixed64,44,opt,name=product_wq_cod,json=productWqCod,proto3" json:"product_wq_cod,omitempty"` // 产水水质:COD
  1148. // gotags: json:"feed_wq_p"
  1149. FeedWqP float64 `protobuf:"fixed64,45,opt,name=feed_wq_p,json=feedWqP,proto3" json:"feed_wq_p,omitempty"` // 进水水质:磷
  1150. // gotags: json:"product_wq_p"
  1151. ProductWqP float64 `protobuf:"fixed64,46,opt,name=product_wq_p,json=productWqP,proto3" json:"product_wq_p,omitempty"` // 产水水质:磷
  1152. // gotags: json:"step"
  1153. Step int64 `protobuf:"varint,47,opt,name=step,proto3" json:"step,omitempty"` // 设备当前步序值
  1154. // gotags: json:"c_time"
  1155. CTime string `protobuf:"bytes,48,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  1156. }
  1157. func (x *WorkingNf) Reset() {
  1158. *x = WorkingNf{}
  1159. if protoimpl.UnsafeEnabled {
  1160. mi := &file_datacenter_proto_msgTypes[9]
  1161. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1162. ms.StoreMessageInfo(mi)
  1163. }
  1164. }
  1165. func (x *WorkingNf) String() string {
  1166. return protoimpl.X.MessageStringOf(x)
  1167. }
  1168. func (*WorkingNf) ProtoMessage() {}
  1169. func (x *WorkingNf) ProtoReflect() protoreflect.Message {
  1170. mi := &file_datacenter_proto_msgTypes[9]
  1171. if protoimpl.UnsafeEnabled && x != nil {
  1172. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1173. if ms.LoadMessageInfo() == nil {
  1174. ms.StoreMessageInfo(mi)
  1175. }
  1176. return ms
  1177. }
  1178. return mi.MessageOf(x)
  1179. }
  1180. // Deprecated: Use WorkingNf.ProtoReflect.Descriptor instead.
  1181. func (*WorkingNf) Descriptor() ([]byte, []int) {
  1182. return file_datacenter_proto_rawDescGZIP(), []int{9}
  1183. }
  1184. func (x *WorkingNf) GetId() int64 {
  1185. if x != nil {
  1186. return x.Id
  1187. }
  1188. return 0
  1189. }
  1190. func (x *WorkingNf) GetProjectId() int64 {
  1191. if x != nil {
  1192. return x.ProjectId
  1193. }
  1194. return 0
  1195. }
  1196. func (x *WorkingNf) GetDeviceCode() string {
  1197. if x != nil {
  1198. return x.DeviceCode
  1199. }
  1200. return ""
  1201. }
  1202. func (x *WorkingNf) GetWaterTemperature() float64 {
  1203. if x != nil {
  1204. return x.WaterTemperature
  1205. }
  1206. return 0
  1207. }
  1208. func (x *WorkingNf) GetFeedFlow_1St() float64 {
  1209. if x != nil {
  1210. return x.FeedFlow_1St
  1211. }
  1212. return 0
  1213. }
  1214. func (x *WorkingNf) GetConFlow_1St() float64 {
  1215. if x != nil {
  1216. return x.ConFlow_1St
  1217. }
  1218. return 0
  1219. }
  1220. func (x *WorkingNf) GetProductFlow_1St() float64 {
  1221. if x != nil {
  1222. return x.ProductFlow_1St
  1223. }
  1224. return 0
  1225. }
  1226. func (x *WorkingNf) GetFeedPressure_1St() float64 {
  1227. if x != nil {
  1228. return x.FeedPressure_1St
  1229. }
  1230. return 0
  1231. }
  1232. func (x *WorkingNf) GetConPressure_1St() float64 {
  1233. if x != nil {
  1234. return x.ConPressure_1St
  1235. }
  1236. return 0
  1237. }
  1238. func (x *WorkingNf) GetProductPressure_1St() float64 {
  1239. if x != nil {
  1240. return x.ProductPressure_1St
  1241. }
  1242. return 0
  1243. }
  1244. func (x *WorkingNf) GetTmp_1St() float64 {
  1245. if x != nil {
  1246. return x.Tmp_1St
  1247. }
  1248. return 0
  1249. }
  1250. func (x *WorkingNf) GetFlux_1St() float64 {
  1251. if x != nil {
  1252. return x.Flux_1St
  1253. }
  1254. return 0
  1255. }
  1256. func (x *WorkingNf) GetPermeability_1St() float64 {
  1257. if x != nil {
  1258. return x.Permeability_1St
  1259. }
  1260. return 0
  1261. }
  1262. func (x *WorkingNf) GetFeedFlow_2Nd() float64 {
  1263. if x != nil {
  1264. return x.FeedFlow_2Nd
  1265. }
  1266. return 0
  1267. }
  1268. func (x *WorkingNf) GetConFlow_2Nd() float64 {
  1269. if x != nil {
  1270. return x.ConFlow_2Nd
  1271. }
  1272. return 0
  1273. }
  1274. func (x *WorkingNf) GetProductFlow_2Nd() float64 {
  1275. if x != nil {
  1276. return x.ProductFlow_2Nd
  1277. }
  1278. return 0
  1279. }
  1280. func (x *WorkingNf) GetFeedPressure_2Nd() float64 {
  1281. if x != nil {
  1282. return x.FeedPressure_2Nd
  1283. }
  1284. return 0
  1285. }
  1286. func (x *WorkingNf) GetConPressure_2Nd() float64 {
  1287. if x != nil {
  1288. return x.ConPressure_2Nd
  1289. }
  1290. return 0
  1291. }
  1292. func (x *WorkingNf) GetProductPressure_2Nd() float64 {
  1293. if x != nil {
  1294. return x.ProductPressure_2Nd
  1295. }
  1296. return 0
  1297. }
  1298. func (x *WorkingNf) GetTmp_2Nd() float64 {
  1299. if x != nil {
  1300. return x.Tmp_2Nd
  1301. }
  1302. return 0
  1303. }
  1304. func (x *WorkingNf) GetFlux_2Nd() float64 {
  1305. if x != nil {
  1306. return x.Flux_2Nd
  1307. }
  1308. return 0
  1309. }
  1310. func (x *WorkingNf) GetPermeability_2Nd() float64 {
  1311. if x != nil {
  1312. return x.Permeability_2Nd
  1313. }
  1314. return 0
  1315. }
  1316. func (x *WorkingNf) GetFeedFlow_3Th() float64 {
  1317. if x != nil {
  1318. return x.FeedFlow_3Th
  1319. }
  1320. return 0
  1321. }
  1322. func (x *WorkingNf) GetConFlow_3Th() float64 {
  1323. if x != nil {
  1324. return x.ConFlow_3Th
  1325. }
  1326. return 0
  1327. }
  1328. func (x *WorkingNf) GetProductFlow_3Th() float64 {
  1329. if x != nil {
  1330. return x.ProductFlow_3Th
  1331. }
  1332. return 0
  1333. }
  1334. func (x *WorkingNf) GetFeedPressure_3Th() float64 {
  1335. if x != nil {
  1336. return x.FeedPressure_3Th
  1337. }
  1338. return 0
  1339. }
  1340. func (x *WorkingNf) GetConPressure_3Th() float64 {
  1341. if x != nil {
  1342. return x.ConPressure_3Th
  1343. }
  1344. return 0
  1345. }
  1346. func (x *WorkingNf) GetProductPressure_3Th() float64 {
  1347. if x != nil {
  1348. return x.ProductPressure_3Th
  1349. }
  1350. return 0
  1351. }
  1352. func (x *WorkingNf) GetTmp_3Th() float64 {
  1353. if x != nil {
  1354. return x.Tmp_3Th
  1355. }
  1356. return 0
  1357. }
  1358. func (x *WorkingNf) GetFlux_3Th() float64 {
  1359. if x != nil {
  1360. return x.Flux_3Th
  1361. }
  1362. return 0
  1363. }
  1364. func (x *WorkingNf) GetPermeability_3Th() float64 {
  1365. if x != nil {
  1366. return x.Permeability_3Th
  1367. }
  1368. return 0
  1369. }
  1370. func (x *WorkingNf) GetFeedWqTurbidity() float64 {
  1371. if x != nil {
  1372. return x.FeedWqTurbidity
  1373. }
  1374. return 0
  1375. }
  1376. func (x *WorkingNf) GetFeedWqPh() int64 {
  1377. if x != nil {
  1378. return x.FeedWqPh
  1379. }
  1380. return 0
  1381. }
  1382. func (x *WorkingNf) GetProductWqPh() int64 {
  1383. if x != nil {
  1384. return x.ProductWqPh
  1385. }
  1386. return 0
  1387. }
  1388. func (x *WorkingNf) GetFeedWqAl() float64 {
  1389. if x != nil {
  1390. return x.FeedWqAl
  1391. }
  1392. return 0
  1393. }
  1394. func (x *WorkingNf) GetProductWqAl() float64 {
  1395. if x != nil {
  1396. return x.ProductWqAl
  1397. }
  1398. return 0
  1399. }
  1400. func (x *WorkingNf) GetFeedWqFe() float64 {
  1401. if x != nil {
  1402. return x.FeedWqFe
  1403. }
  1404. return 0
  1405. }
  1406. func (x *WorkingNf) GetProductWqFe() float64 {
  1407. if x != nil {
  1408. return x.ProductWqFe
  1409. }
  1410. return 0
  1411. }
  1412. func (x *WorkingNf) GetFeedWqMn() float64 {
  1413. if x != nil {
  1414. return x.FeedWqMn
  1415. }
  1416. return 0
  1417. }
  1418. func (x *WorkingNf) GetProductWqMn() float64 {
  1419. if x != nil {
  1420. return x.ProductWqMn
  1421. }
  1422. return 0
  1423. }
  1424. func (x *WorkingNf) GetFeedWqSio2() float64 {
  1425. if x != nil {
  1426. return x.FeedWqSio2
  1427. }
  1428. return 0
  1429. }
  1430. func (x *WorkingNf) GetProductWqSio2() float64 {
  1431. if x != nil {
  1432. return x.ProductWqSio2
  1433. }
  1434. return 0
  1435. }
  1436. func (x *WorkingNf) GetFeedWqCod() float64 {
  1437. if x != nil {
  1438. return x.FeedWqCod
  1439. }
  1440. return 0
  1441. }
  1442. func (x *WorkingNf) GetProductWqCod() float64 {
  1443. if x != nil {
  1444. return x.ProductWqCod
  1445. }
  1446. return 0
  1447. }
  1448. func (x *WorkingNf) GetFeedWqP() float64 {
  1449. if x != nil {
  1450. return x.FeedWqP
  1451. }
  1452. return 0
  1453. }
  1454. func (x *WorkingNf) GetProductWqP() float64 {
  1455. if x != nil {
  1456. return x.ProductWqP
  1457. }
  1458. return 0
  1459. }
  1460. func (x *WorkingNf) GetStep() int64 {
  1461. if x != nil {
  1462. return x.Step
  1463. }
  1464. return 0
  1465. }
  1466. func (x *WorkingNf) GetCTime() string {
  1467. if x != nil {
  1468. return x.CTime
  1469. }
  1470. return ""
  1471. }
  1472. type WorkingRo struct {
  1473. state protoimpl.MessageState
  1474. sizeCache protoimpl.SizeCache
  1475. unknownFields protoimpl.UnknownFields
  1476. // gotags: json:"id"
  1477. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1478. // gotags: json:"project_id"
  1479. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  1480. // gotags: json:"device_code"
  1481. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  1482. // gotags: json:"water_temperature"
  1483. WaterTemperature float64 `protobuf:"fixed64,4,opt,name=water_temperature,json=waterTemperature,proto3" json:"water_temperature,omitempty"` // 水温 摄氏度
  1484. // gotags: json:"feed_flow_1st"
  1485. FeedFlow_1St float64 `protobuf:"fixed64,5,opt,name=feed_flow_1st,json=feedFlow1st,proto3" json:"feed_flow_1st,omitempty"` // 一段进水流量
  1486. // gotags: json:"con_flow_1st"
  1487. ConFlow_1St float64 `protobuf:"fixed64,6,opt,name=con_flow_1st,json=conFlow1st,proto3" json:"con_flow_1st,omitempty"` // 一段浓水流量
  1488. // gotags: json:"product_flow_1st"
  1489. ProductFlow_1St float64 `protobuf:"fixed64,7,opt,name=product_flow_1st,json=productFlow1st,proto3" json:"product_flow_1st,omitempty"` // 一段产水流量
  1490. // gotags: json:"feed_pressure_1st"
  1491. FeedPressure_1St float64 `protobuf:"fixed64,8,opt,name=feed_pressure_1st,json=feedPressure1st,proto3" json:"feed_pressure_1st,omitempty"` // 一段进水压力
  1492. // gotags: json:"con_pressure_1st"
  1493. ConPressure_1St float64 `protobuf:"fixed64,9,opt,name=con_pressure_1st,json=conPressure1st,proto3" json:"con_pressure_1st,omitempty"` // 一段浓水压力
  1494. // gotags: json:"product_pressure_1st"
  1495. ProductPressure_1St float64 `protobuf:"fixed64,10,opt,name=product_pressure_1st,json=productPressure1st,proto3" json:"product_pressure_1st,omitempty"` // 一段产水压力
  1496. // gotags: json:"tmp_1st"
  1497. Tmp_1St float64 `protobuf:"fixed64,11,opt,name=tmp_1st,json=tmp1st,proto3" json:"tmp_1st,omitempty"` // 一段跨膜压差
  1498. // gotags: json:"flux_1st"
  1499. Flux_1St float64 `protobuf:"fixed64,12,opt,name=flux_1st,json=flux1st,proto3" json:"flux_1st,omitempty"` // 一段膜通量
  1500. // gotags: json:"permeability_1st"
  1501. Permeability_1St float64 `protobuf:"fixed64,13,opt,name=permeability_1st,json=permeability1st,proto3" json:"permeability_1st,omitempty"` // 一段渗透率
  1502. // gotags: json:"feed_flow_2nd"
  1503. FeedFlow_2Nd float64 `protobuf:"fixed64,14,opt,name=feed_flow_2nd,json=feedFlow2nd,proto3" json:"feed_flow_2nd,omitempty"` // 二段进水流量
  1504. // gotags: json:"con_flow_2nd"
  1505. ConFlow_2Nd float64 `protobuf:"fixed64,15,opt,name=con_flow_2nd,json=conFlow2nd,proto3" json:"con_flow_2nd,omitempty"` // 二段浓水流量
  1506. // gotags: json:"product_flow_2nd"
  1507. ProductFlow_2Nd float64 `protobuf:"fixed64,16,opt,name=product_flow_2nd,json=productFlow2nd,proto3" json:"product_flow_2nd,omitempty"` // 二段产水流量
  1508. // gotags: json:"feed_pressure_2nd"
  1509. FeedPressure_2Nd float64 `protobuf:"fixed64,17,opt,name=feed_pressure_2nd,json=feedPressure2nd,proto3" json:"feed_pressure_2nd,omitempty"` // 二段进水压力
  1510. // gotags: json:"con_pressure_2nd"
  1511. ConPressure_2Nd float64 `protobuf:"fixed64,18,opt,name=con_pressure_2nd,json=conPressure2nd,proto3" json:"con_pressure_2nd,omitempty"` // 二段浓水压力
  1512. // gotags: json:"product_pressure_2nd"
  1513. ProductPressure_2Nd float64 `protobuf:"fixed64,19,opt,name=product_pressure_2nd,json=productPressure2nd,proto3" json:"product_pressure_2nd,omitempty"` // 二段产水压力
  1514. // gotags: json:"tmp_2nd"
  1515. Tmp_2Nd float64 `protobuf:"fixed64,20,opt,name=tmp_2nd,json=tmp2nd,proto3" json:"tmp_2nd,omitempty"` // 二段压差
  1516. // gotags: json:"flux_2nd"
  1517. Flux_2Nd float64 `protobuf:"fixed64,21,opt,name=flux_2nd,json=flux2nd,proto3" json:"flux_2nd,omitempty"` // 二段通量
  1518. // gotags: json:"permeability_2nd"
  1519. Permeability_2Nd float64 `protobuf:"fixed64,22,opt,name=permeability_2nd,json=permeability2nd,proto3" json:"permeability_2nd,omitempty"` // 二段渗透率
  1520. // gotags: json:"feed_flow_3th"
  1521. FeedFlow_3Th float64 `protobuf:"fixed64,23,opt,name=feed_flow_3th,json=feedFlow3th,proto3" json:"feed_flow_3th,omitempty"` // 三段进水流量
  1522. // gotags: json:"con_flow_3th"
  1523. ConFlow_3Th float64 `protobuf:"fixed64,24,opt,name=con_flow_3th,json=conFlow3th,proto3" json:"con_flow_3th,omitempty"` // 三段浓水流量
  1524. // gotags: json:"product_flow_3th"
  1525. ProductFlow_3Th float64 `protobuf:"fixed64,25,opt,name=product_flow_3th,json=productFlow3th,proto3" json:"product_flow_3th,omitempty"` // 三段产水流量
  1526. // gotags: json:"feed_pressure_3th"
  1527. FeedPressure_3Th float64 `protobuf:"fixed64,26,opt,name=feed_pressure_3th,json=feedPressure3th,proto3" json:"feed_pressure_3th,omitempty"` // 三段进水压力
  1528. // gotags: json:"con_pressure_3th"
  1529. ConPressure_3Th float64 `protobuf:"fixed64,27,opt,name=con_pressure_3th,json=conPressure3th,proto3" json:"con_pressure_3th,omitempty"` // 三段浓水压力
  1530. // gotags: json:"product_pressure_3th"
  1531. ProductPressure_3Th float64 `protobuf:"fixed64,28,opt,name=product_pressure_3th,json=productPressure3th,proto3" json:"product_pressure_3th,omitempty"` // 三段产水压力
  1532. // gotags: json:"tmp_3th"
  1533. Tmp_3Th float64 `protobuf:"fixed64,29,opt,name=tmp_3th,json=tmp3th,proto3" json:"tmp_3th,omitempty"` // 三段压差
  1534. // gotags: json:"flux_3th"
  1535. Flux_3Th float64 `protobuf:"fixed64,30,opt,name=flux_3th,json=flux3th,proto3" json:"flux_3th,omitempty"` // 三段通量
  1536. // gotags: json:"permeability_3th"
  1537. Permeability_3Th float64 `protobuf:"fixed64,31,opt,name=permeability_3th,json=permeability3th,proto3" json:"permeability_3th,omitempty"` // 三段渗透率
  1538. // gotags: json:"feed_wq_turbidity"
  1539. FeedWqTurbidity float64 `protobuf:"fixed64,32,opt,name=feed_wq_turbidity,json=feedWqTurbidity,proto3" json:"feed_wq_turbidity,omitempty"` // 进水浊度
  1540. // gotags: json:"feed_wq_ph"
  1541. FeedWqPh int64 `protobuf:"varint,33,opt,name=feed_wq_ph,json=feedWqPh,proto3" json:"feed_wq_ph,omitempty"` // 进水 PH 值
  1542. // gotags: json:"product_wq_ph"
  1543. ProductWqPh int64 `protobuf:"varint,34,opt,name=product_wq_ph,json=productWqPh,proto3" json:"product_wq_ph,omitempty"` // 产水 PH 值
  1544. // gotags: json:"feed_wq_al"
  1545. FeedWqAl float64 `protobuf:"fixed64,35,opt,name=feed_wq_al,json=feedWqAl,proto3" json:"feed_wq_al,omitempty"` // 进水水质:铝
  1546. // gotags: json:"product_wq_al"
  1547. ProductWqAl float64 `protobuf:"fixed64,36,opt,name=product_wq_al,json=productWqAl,proto3" json:"product_wq_al,omitempty"` // 产水水质:铝
  1548. // gotags: json:"feed_wq_fe"
  1549. FeedWqFe float64 `protobuf:"fixed64,37,opt,name=feed_wq_fe,json=feedWqFe,proto3" json:"feed_wq_fe,omitempty"` // 进水水质:铁
  1550. // gotags: json:"product_wq_fe"
  1551. ProductWqFe float64 `protobuf:"fixed64,38,opt,name=product_wq_fe,json=productWqFe,proto3" json:"product_wq_fe,omitempty"` // 产水水质:铁
  1552. // gotags: json:"feed_wq_mn"
  1553. FeedWqMn float64 `protobuf:"fixed64,39,opt,name=feed_wq_mn,json=feedWqMn,proto3" json:"feed_wq_mn,omitempty"` // 进水水质:锰
  1554. // gotags: json:"product_wq_mn"
  1555. ProductWqMn float64 `protobuf:"fixed64,40,opt,name=product_wq_mn,json=productWqMn,proto3" json:"product_wq_mn,omitempty"` // 产水水质:锰
  1556. // gotags: json:"feed_wq_sio2"
  1557. FeedWqSio2 float64 `protobuf:"fixed64,41,opt,name=feed_wq_sio2,json=feedWqSio2,proto3" json:"feed_wq_sio2,omitempty"` // 进水水质:二氧化硅
  1558. // gotags: json:"product_wq_sio2"
  1559. ProductWqSio2 float64 `protobuf:"fixed64,42,opt,name=product_wq_sio2,json=productWqSio2,proto3" json:"product_wq_sio2,omitempty"` // 产水水质:二氧化硅
  1560. // gotags: json:"feed_wq_cod"
  1561. FeedWqCod float64 `protobuf:"fixed64,43,opt,name=feed_wq_cod,json=feedWqCod,proto3" json:"feed_wq_cod,omitempty"` // 进水水质:COD
  1562. // gotags: json:"product_wq_cod"
  1563. ProductWqCod float64 `protobuf:"fixed64,44,opt,name=product_wq_cod,json=productWqCod,proto3" json:"product_wq_cod,omitempty"` // 产水水质:COD
  1564. // gotags: json:"feed_wq_p"
  1565. FeedWqP float64 `protobuf:"fixed64,45,opt,name=feed_wq_p,json=feedWqP,proto3" json:"feed_wq_p,omitempty"` // 进水水质:磷
  1566. // gotags: json:"product_wq_p"
  1567. ProductWqP float64 `protobuf:"fixed64,46,opt,name=product_wq_p,json=productWqP,proto3" json:"product_wq_p,omitempty"` // 产水水质:磷
  1568. // gotags: json:"step"
  1569. Step int64 `protobuf:"varint,47,opt,name=step,proto3" json:"step,omitempty"` // 设备当前步序值
  1570. // @gotags: json:"filter_time"
  1571. FilterTime float64 `protobuf:"fixed64,48,opt,name=filter_time,json=filterTime,proto3" json:"filter_time,omitempty"`
  1572. // @gotags: json:"filter_cycle"
  1573. FilterCycle int64 `protobuf:"varint,49,opt,name=filter_cycle,json=filterCycle,proto3" json:"filter_cycle,omitempty"`
  1574. // gotags: json:"c_time"
  1575. CTime string `protobuf:"bytes,50,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  1576. }
  1577. func (x *WorkingRo) Reset() {
  1578. *x = WorkingRo{}
  1579. if protoimpl.UnsafeEnabled {
  1580. mi := &file_datacenter_proto_msgTypes[10]
  1581. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1582. ms.StoreMessageInfo(mi)
  1583. }
  1584. }
  1585. func (x *WorkingRo) String() string {
  1586. return protoimpl.X.MessageStringOf(x)
  1587. }
  1588. func (*WorkingRo) ProtoMessage() {}
  1589. func (x *WorkingRo) ProtoReflect() protoreflect.Message {
  1590. mi := &file_datacenter_proto_msgTypes[10]
  1591. if protoimpl.UnsafeEnabled && x != nil {
  1592. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1593. if ms.LoadMessageInfo() == nil {
  1594. ms.StoreMessageInfo(mi)
  1595. }
  1596. return ms
  1597. }
  1598. return mi.MessageOf(x)
  1599. }
  1600. // Deprecated: Use WorkingRo.ProtoReflect.Descriptor instead.
  1601. func (*WorkingRo) Descriptor() ([]byte, []int) {
  1602. return file_datacenter_proto_rawDescGZIP(), []int{10}
  1603. }
  1604. func (x *WorkingRo) GetId() int64 {
  1605. if x != nil {
  1606. return x.Id
  1607. }
  1608. return 0
  1609. }
  1610. func (x *WorkingRo) GetProjectId() int64 {
  1611. if x != nil {
  1612. return x.ProjectId
  1613. }
  1614. return 0
  1615. }
  1616. func (x *WorkingRo) GetDeviceCode() string {
  1617. if x != nil {
  1618. return x.DeviceCode
  1619. }
  1620. return ""
  1621. }
  1622. func (x *WorkingRo) GetWaterTemperature() float64 {
  1623. if x != nil {
  1624. return x.WaterTemperature
  1625. }
  1626. return 0
  1627. }
  1628. func (x *WorkingRo) GetFeedFlow_1St() float64 {
  1629. if x != nil {
  1630. return x.FeedFlow_1St
  1631. }
  1632. return 0
  1633. }
  1634. func (x *WorkingRo) GetConFlow_1St() float64 {
  1635. if x != nil {
  1636. return x.ConFlow_1St
  1637. }
  1638. return 0
  1639. }
  1640. func (x *WorkingRo) GetProductFlow_1St() float64 {
  1641. if x != nil {
  1642. return x.ProductFlow_1St
  1643. }
  1644. return 0
  1645. }
  1646. func (x *WorkingRo) GetFeedPressure_1St() float64 {
  1647. if x != nil {
  1648. return x.FeedPressure_1St
  1649. }
  1650. return 0
  1651. }
  1652. func (x *WorkingRo) GetConPressure_1St() float64 {
  1653. if x != nil {
  1654. return x.ConPressure_1St
  1655. }
  1656. return 0
  1657. }
  1658. func (x *WorkingRo) GetProductPressure_1St() float64 {
  1659. if x != nil {
  1660. return x.ProductPressure_1St
  1661. }
  1662. return 0
  1663. }
  1664. func (x *WorkingRo) GetTmp_1St() float64 {
  1665. if x != nil {
  1666. return x.Tmp_1St
  1667. }
  1668. return 0
  1669. }
  1670. func (x *WorkingRo) GetFlux_1St() float64 {
  1671. if x != nil {
  1672. return x.Flux_1St
  1673. }
  1674. return 0
  1675. }
  1676. func (x *WorkingRo) GetPermeability_1St() float64 {
  1677. if x != nil {
  1678. return x.Permeability_1St
  1679. }
  1680. return 0
  1681. }
  1682. func (x *WorkingRo) GetFeedFlow_2Nd() float64 {
  1683. if x != nil {
  1684. return x.FeedFlow_2Nd
  1685. }
  1686. return 0
  1687. }
  1688. func (x *WorkingRo) GetConFlow_2Nd() float64 {
  1689. if x != nil {
  1690. return x.ConFlow_2Nd
  1691. }
  1692. return 0
  1693. }
  1694. func (x *WorkingRo) GetProductFlow_2Nd() float64 {
  1695. if x != nil {
  1696. return x.ProductFlow_2Nd
  1697. }
  1698. return 0
  1699. }
  1700. func (x *WorkingRo) GetFeedPressure_2Nd() float64 {
  1701. if x != nil {
  1702. return x.FeedPressure_2Nd
  1703. }
  1704. return 0
  1705. }
  1706. func (x *WorkingRo) GetConPressure_2Nd() float64 {
  1707. if x != nil {
  1708. return x.ConPressure_2Nd
  1709. }
  1710. return 0
  1711. }
  1712. func (x *WorkingRo) GetProductPressure_2Nd() float64 {
  1713. if x != nil {
  1714. return x.ProductPressure_2Nd
  1715. }
  1716. return 0
  1717. }
  1718. func (x *WorkingRo) GetTmp_2Nd() float64 {
  1719. if x != nil {
  1720. return x.Tmp_2Nd
  1721. }
  1722. return 0
  1723. }
  1724. func (x *WorkingRo) GetFlux_2Nd() float64 {
  1725. if x != nil {
  1726. return x.Flux_2Nd
  1727. }
  1728. return 0
  1729. }
  1730. func (x *WorkingRo) GetPermeability_2Nd() float64 {
  1731. if x != nil {
  1732. return x.Permeability_2Nd
  1733. }
  1734. return 0
  1735. }
  1736. func (x *WorkingRo) GetFeedFlow_3Th() float64 {
  1737. if x != nil {
  1738. return x.FeedFlow_3Th
  1739. }
  1740. return 0
  1741. }
  1742. func (x *WorkingRo) GetConFlow_3Th() float64 {
  1743. if x != nil {
  1744. return x.ConFlow_3Th
  1745. }
  1746. return 0
  1747. }
  1748. func (x *WorkingRo) GetProductFlow_3Th() float64 {
  1749. if x != nil {
  1750. return x.ProductFlow_3Th
  1751. }
  1752. return 0
  1753. }
  1754. func (x *WorkingRo) GetFeedPressure_3Th() float64 {
  1755. if x != nil {
  1756. return x.FeedPressure_3Th
  1757. }
  1758. return 0
  1759. }
  1760. func (x *WorkingRo) GetConPressure_3Th() float64 {
  1761. if x != nil {
  1762. return x.ConPressure_3Th
  1763. }
  1764. return 0
  1765. }
  1766. func (x *WorkingRo) GetProductPressure_3Th() float64 {
  1767. if x != nil {
  1768. return x.ProductPressure_3Th
  1769. }
  1770. return 0
  1771. }
  1772. func (x *WorkingRo) GetTmp_3Th() float64 {
  1773. if x != nil {
  1774. return x.Tmp_3Th
  1775. }
  1776. return 0
  1777. }
  1778. func (x *WorkingRo) GetFlux_3Th() float64 {
  1779. if x != nil {
  1780. return x.Flux_3Th
  1781. }
  1782. return 0
  1783. }
  1784. func (x *WorkingRo) GetPermeability_3Th() float64 {
  1785. if x != nil {
  1786. return x.Permeability_3Th
  1787. }
  1788. return 0
  1789. }
  1790. func (x *WorkingRo) GetFeedWqTurbidity() float64 {
  1791. if x != nil {
  1792. return x.FeedWqTurbidity
  1793. }
  1794. return 0
  1795. }
  1796. func (x *WorkingRo) GetFeedWqPh() int64 {
  1797. if x != nil {
  1798. return x.FeedWqPh
  1799. }
  1800. return 0
  1801. }
  1802. func (x *WorkingRo) GetProductWqPh() int64 {
  1803. if x != nil {
  1804. return x.ProductWqPh
  1805. }
  1806. return 0
  1807. }
  1808. func (x *WorkingRo) GetFeedWqAl() float64 {
  1809. if x != nil {
  1810. return x.FeedWqAl
  1811. }
  1812. return 0
  1813. }
  1814. func (x *WorkingRo) GetProductWqAl() float64 {
  1815. if x != nil {
  1816. return x.ProductWqAl
  1817. }
  1818. return 0
  1819. }
  1820. func (x *WorkingRo) GetFeedWqFe() float64 {
  1821. if x != nil {
  1822. return x.FeedWqFe
  1823. }
  1824. return 0
  1825. }
  1826. func (x *WorkingRo) GetProductWqFe() float64 {
  1827. if x != nil {
  1828. return x.ProductWqFe
  1829. }
  1830. return 0
  1831. }
  1832. func (x *WorkingRo) GetFeedWqMn() float64 {
  1833. if x != nil {
  1834. return x.FeedWqMn
  1835. }
  1836. return 0
  1837. }
  1838. func (x *WorkingRo) GetProductWqMn() float64 {
  1839. if x != nil {
  1840. return x.ProductWqMn
  1841. }
  1842. return 0
  1843. }
  1844. func (x *WorkingRo) GetFeedWqSio2() float64 {
  1845. if x != nil {
  1846. return x.FeedWqSio2
  1847. }
  1848. return 0
  1849. }
  1850. func (x *WorkingRo) GetProductWqSio2() float64 {
  1851. if x != nil {
  1852. return x.ProductWqSio2
  1853. }
  1854. return 0
  1855. }
  1856. func (x *WorkingRo) GetFeedWqCod() float64 {
  1857. if x != nil {
  1858. return x.FeedWqCod
  1859. }
  1860. return 0
  1861. }
  1862. func (x *WorkingRo) GetProductWqCod() float64 {
  1863. if x != nil {
  1864. return x.ProductWqCod
  1865. }
  1866. return 0
  1867. }
  1868. func (x *WorkingRo) GetFeedWqP() float64 {
  1869. if x != nil {
  1870. return x.FeedWqP
  1871. }
  1872. return 0
  1873. }
  1874. func (x *WorkingRo) GetProductWqP() float64 {
  1875. if x != nil {
  1876. return x.ProductWqP
  1877. }
  1878. return 0
  1879. }
  1880. func (x *WorkingRo) GetStep() int64 {
  1881. if x != nil {
  1882. return x.Step
  1883. }
  1884. return 0
  1885. }
  1886. func (x *WorkingRo) GetFilterTime() float64 {
  1887. if x != nil {
  1888. return x.FilterTime
  1889. }
  1890. return 0
  1891. }
  1892. func (x *WorkingRo) GetFilterCycle() int64 {
  1893. if x != nil {
  1894. return x.FilterCycle
  1895. }
  1896. return 0
  1897. }
  1898. func (x *WorkingRo) GetCTime() string {
  1899. if x != nil {
  1900. return x.CTime
  1901. }
  1902. return ""
  1903. }
  1904. type WorkingChest struct {
  1905. state protoimpl.MessageState
  1906. sizeCache protoimpl.SizeCache
  1907. unknownFields protoimpl.UnknownFields
  1908. // @gotags: json:"id"
  1909. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1910. // @gotags: json:"project_id"
  1911. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  1912. // @gotags: json:"device_code"
  1913. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  1914. // @gotags: json:"switch"
  1915. Switch int64 `protobuf:"varint,4,opt,name=switch,proto3" json:"switch,omitempty"` // 药箱液位开关 0: 关 1: 开
  1916. // @gotags: json:"level"
  1917. Level float64 `protobuf:"fixed64,5,opt,name=level,proto3" json:"level,omitempty"` // 液位高度
  1918. // @gotags: json:"agitator_status"
  1919. AgitatorStatus int64 `protobuf:"varint,6,opt,name=agitator_status,json=agitatorStatus,proto3" json:"agitator_status,omitempty"` // 搅拌器运行状态 0: 未运行 1:运行中
  1920. // @gotags: json:"agitator_duration"
  1921. AgitatorDuration int64 `protobuf:"varint,7,opt,name=agitator_duration,json=agitatorDuration,proto3" json:"agitator_duration,omitempty"` // 搅拌器运行时长
  1922. // @gotags: json:"agitator_fault_status"
  1923. AgitatorFaultStatus int64 `protobuf:"varint,8,opt,name=agitator_fault_status,json=agitatorFaultStatus,proto3" json:"agitator_fault_status,omitempty"` // 搅拌器故障状态 0:正常 1:故障
  1924. // @gotags: json:"c_time"
  1925. CTime string `protobuf:"bytes,9,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  1926. }
  1927. func (x *WorkingChest) Reset() {
  1928. *x = WorkingChest{}
  1929. if protoimpl.UnsafeEnabled {
  1930. mi := &file_datacenter_proto_msgTypes[11]
  1931. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1932. ms.StoreMessageInfo(mi)
  1933. }
  1934. }
  1935. func (x *WorkingChest) String() string {
  1936. return protoimpl.X.MessageStringOf(x)
  1937. }
  1938. func (*WorkingChest) ProtoMessage() {}
  1939. func (x *WorkingChest) ProtoReflect() protoreflect.Message {
  1940. mi := &file_datacenter_proto_msgTypes[11]
  1941. if protoimpl.UnsafeEnabled && x != nil {
  1942. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1943. if ms.LoadMessageInfo() == nil {
  1944. ms.StoreMessageInfo(mi)
  1945. }
  1946. return ms
  1947. }
  1948. return mi.MessageOf(x)
  1949. }
  1950. // Deprecated: Use WorkingChest.ProtoReflect.Descriptor instead.
  1951. func (*WorkingChest) Descriptor() ([]byte, []int) {
  1952. return file_datacenter_proto_rawDescGZIP(), []int{11}
  1953. }
  1954. func (x *WorkingChest) GetId() int64 {
  1955. if x != nil {
  1956. return x.Id
  1957. }
  1958. return 0
  1959. }
  1960. func (x *WorkingChest) GetProjectId() int64 {
  1961. if x != nil {
  1962. return x.ProjectId
  1963. }
  1964. return 0
  1965. }
  1966. func (x *WorkingChest) GetDeviceCode() string {
  1967. if x != nil {
  1968. return x.DeviceCode
  1969. }
  1970. return ""
  1971. }
  1972. func (x *WorkingChest) GetSwitch() int64 {
  1973. if x != nil {
  1974. return x.Switch
  1975. }
  1976. return 0
  1977. }
  1978. func (x *WorkingChest) GetLevel() float64 {
  1979. if x != nil {
  1980. return x.Level
  1981. }
  1982. return 0
  1983. }
  1984. func (x *WorkingChest) GetAgitatorStatus() int64 {
  1985. if x != nil {
  1986. return x.AgitatorStatus
  1987. }
  1988. return 0
  1989. }
  1990. func (x *WorkingChest) GetAgitatorDuration() int64 {
  1991. if x != nil {
  1992. return x.AgitatorDuration
  1993. }
  1994. return 0
  1995. }
  1996. func (x *WorkingChest) GetAgitatorFaultStatus() int64 {
  1997. if x != nil {
  1998. return x.AgitatorFaultStatus
  1999. }
  2000. return 0
  2001. }
  2002. func (x *WorkingChest) GetCTime() string {
  2003. if x != nil {
  2004. return x.CTime
  2005. }
  2006. return ""
  2007. }
  2008. type WorkingPump struct {
  2009. state protoimpl.MessageState
  2010. sizeCache protoimpl.SizeCache
  2011. unknownFields protoimpl.UnknownFields
  2012. // @gotags: json:"id"
  2013. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  2014. // @gotags: json:"project_id"
  2015. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  2016. // @gotags: json:"device_code"
  2017. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  2018. // @gotags: json:"feed_pressure"
  2019. FeedPressure float64 `protobuf:"fixed64,4,opt,name=feed_pressure,json=feedPressure,proto3" json:"feed_pressure,omitempty"` // 进水压力
  2020. // @gotags: json:"out_pressure"
  2021. OutPressure float64 `protobuf:"fixed64,5,opt,name=out_pressure,json=outPressure,proto3" json:"out_pressure,omitempty"` // 出水压力
  2022. // @gotags: json:"duration"
  2023. Duration int64 `protobuf:"varint,6,opt,name=duration,proto3" json:"duration,omitempty"` // 运行时长 单位 s
  2024. // @gotags: json:"current"
  2025. Current float64 `protobuf:"fixed64,7,opt,name=current,proto3" json:"current,omitempty"` // 运行电流
  2026. // @gotags: json:"frequency"
  2027. Frequency float64 `protobuf:"fixed64,8,opt,name=frequency,proto3" json:"frequency,omitempty"` // 运行频率
  2028. // @gotags: json:"lift"
  2029. Lift float64 `protobuf:"fixed64,9,opt,name=lift,proto3" json:"lift,omitempty"` // 工作扬程
  2030. // @gotags: json:"efficiency"
  2031. Efficiency float64 `protobuf:"fixed64,10,opt,name=efficiency,proto3" json:"efficiency,omitempty"` // 运行效率
  2032. // @gotags: json:"run_status"
  2033. RunStatus int64 `protobuf:"varint,11,opt,name=run_status,json=runStatus,proto3" json:"run_status,omitempty"` // 运行状态 0: 停机 1: 运行正常
  2034. // @gotags: json:"fault_status"
  2035. FaultStatus int64 `protobuf:"varint,12,opt,name=fault_status,json=faultStatus,proto3" json:"fault_status,omitempty"` // 故障状态 0: 正常 1: 故障
  2036. // @gotags: json:"c_time"
  2037. CTime string `protobuf:"bytes,13,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  2038. }
  2039. func (x *WorkingPump) Reset() {
  2040. *x = WorkingPump{}
  2041. if protoimpl.UnsafeEnabled {
  2042. mi := &file_datacenter_proto_msgTypes[12]
  2043. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2044. ms.StoreMessageInfo(mi)
  2045. }
  2046. }
  2047. func (x *WorkingPump) String() string {
  2048. return protoimpl.X.MessageStringOf(x)
  2049. }
  2050. func (*WorkingPump) ProtoMessage() {}
  2051. func (x *WorkingPump) ProtoReflect() protoreflect.Message {
  2052. mi := &file_datacenter_proto_msgTypes[12]
  2053. if protoimpl.UnsafeEnabled && x != nil {
  2054. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2055. if ms.LoadMessageInfo() == nil {
  2056. ms.StoreMessageInfo(mi)
  2057. }
  2058. return ms
  2059. }
  2060. return mi.MessageOf(x)
  2061. }
  2062. // Deprecated: Use WorkingPump.ProtoReflect.Descriptor instead.
  2063. func (*WorkingPump) Descriptor() ([]byte, []int) {
  2064. return file_datacenter_proto_rawDescGZIP(), []int{12}
  2065. }
  2066. func (x *WorkingPump) GetId() int64 {
  2067. if x != nil {
  2068. return x.Id
  2069. }
  2070. return 0
  2071. }
  2072. func (x *WorkingPump) GetProjectId() int64 {
  2073. if x != nil {
  2074. return x.ProjectId
  2075. }
  2076. return 0
  2077. }
  2078. func (x *WorkingPump) GetDeviceCode() string {
  2079. if x != nil {
  2080. return x.DeviceCode
  2081. }
  2082. return ""
  2083. }
  2084. func (x *WorkingPump) GetFeedPressure() float64 {
  2085. if x != nil {
  2086. return x.FeedPressure
  2087. }
  2088. return 0
  2089. }
  2090. func (x *WorkingPump) GetOutPressure() float64 {
  2091. if x != nil {
  2092. return x.OutPressure
  2093. }
  2094. return 0
  2095. }
  2096. func (x *WorkingPump) GetDuration() int64 {
  2097. if x != nil {
  2098. return x.Duration
  2099. }
  2100. return 0
  2101. }
  2102. func (x *WorkingPump) GetCurrent() float64 {
  2103. if x != nil {
  2104. return x.Current
  2105. }
  2106. return 0
  2107. }
  2108. func (x *WorkingPump) GetFrequency() float64 {
  2109. if x != nil {
  2110. return x.Frequency
  2111. }
  2112. return 0
  2113. }
  2114. func (x *WorkingPump) GetLift() float64 {
  2115. if x != nil {
  2116. return x.Lift
  2117. }
  2118. return 0
  2119. }
  2120. func (x *WorkingPump) GetEfficiency() float64 {
  2121. if x != nil {
  2122. return x.Efficiency
  2123. }
  2124. return 0
  2125. }
  2126. func (x *WorkingPump) GetRunStatus() int64 {
  2127. if x != nil {
  2128. return x.RunStatus
  2129. }
  2130. return 0
  2131. }
  2132. func (x *WorkingPump) GetFaultStatus() int64 {
  2133. if x != nil {
  2134. return x.FaultStatus
  2135. }
  2136. return 0
  2137. }
  2138. func (x *WorkingPump) GetCTime() string {
  2139. if x != nil {
  2140. return x.CTime
  2141. }
  2142. return ""
  2143. }
  2144. type WorkingValve struct {
  2145. state protoimpl.MessageState
  2146. sizeCache protoimpl.SizeCache
  2147. unknownFields protoimpl.UnknownFields
  2148. // @gotags: json:"id"
  2149. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  2150. // @gotags: json:"project_id"
  2151. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  2152. // @gotags: json:"device_code"
  2153. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  2154. // @gotags: json:"adjust"
  2155. Adjust int64 `protobuf:"varint,4,opt,name=adjust,proto3" json:"adjust,omitempty"` // 是否为调节阀门 0: 否 1: 是
  2156. // @gotags: json:"opening"
  2157. Opening float64 `protobuf:"fixed64,5,opt,name=opening,proto3" json:"opening,omitempty"` // 当前阀门的开度
  2158. // @gotags: json:"closed"
  2159. Closed int64 `protobuf:"varint,6,opt,name=closed,proto3" json:"closed,omitempty"` // 关到位 全关 0: 否 1: 是
  2160. // @gotags: json:"opened"
  2161. Opened int64 `protobuf:"varint,7,opt,name=opened,proto3" json:"opened,omitempty"` // 开到位 开到 设置的开度 0: 否 1: 是
  2162. // @gotags: json:"fault_status"
  2163. FaultStatus int64 `protobuf:"varint,8,opt,name=fault_status,json=faultStatus,proto3" json:"fault_status,omitempty"` // 是否故障 0: 否 1: 是
  2164. // @gotags: json:"c_time"
  2165. CTime string `protobuf:"bytes,9,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  2166. }
  2167. func (x *WorkingValve) Reset() {
  2168. *x = WorkingValve{}
  2169. if protoimpl.UnsafeEnabled {
  2170. mi := &file_datacenter_proto_msgTypes[13]
  2171. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2172. ms.StoreMessageInfo(mi)
  2173. }
  2174. }
  2175. func (x *WorkingValve) String() string {
  2176. return protoimpl.X.MessageStringOf(x)
  2177. }
  2178. func (*WorkingValve) ProtoMessage() {}
  2179. func (x *WorkingValve) ProtoReflect() protoreflect.Message {
  2180. mi := &file_datacenter_proto_msgTypes[13]
  2181. if protoimpl.UnsafeEnabled && x != nil {
  2182. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2183. if ms.LoadMessageInfo() == nil {
  2184. ms.StoreMessageInfo(mi)
  2185. }
  2186. return ms
  2187. }
  2188. return mi.MessageOf(x)
  2189. }
  2190. // Deprecated: Use WorkingValve.ProtoReflect.Descriptor instead.
  2191. func (*WorkingValve) Descriptor() ([]byte, []int) {
  2192. return file_datacenter_proto_rawDescGZIP(), []int{13}
  2193. }
  2194. func (x *WorkingValve) GetId() int64 {
  2195. if x != nil {
  2196. return x.Id
  2197. }
  2198. return 0
  2199. }
  2200. func (x *WorkingValve) GetProjectId() int64 {
  2201. if x != nil {
  2202. return x.ProjectId
  2203. }
  2204. return 0
  2205. }
  2206. func (x *WorkingValve) GetDeviceCode() string {
  2207. if x != nil {
  2208. return x.DeviceCode
  2209. }
  2210. return ""
  2211. }
  2212. func (x *WorkingValve) GetAdjust() int64 {
  2213. if x != nil {
  2214. return x.Adjust
  2215. }
  2216. return 0
  2217. }
  2218. func (x *WorkingValve) GetOpening() float64 {
  2219. if x != nil {
  2220. return x.Opening
  2221. }
  2222. return 0
  2223. }
  2224. func (x *WorkingValve) GetClosed() int64 {
  2225. if x != nil {
  2226. return x.Closed
  2227. }
  2228. return 0
  2229. }
  2230. func (x *WorkingValve) GetOpened() int64 {
  2231. if x != nil {
  2232. return x.Opened
  2233. }
  2234. return 0
  2235. }
  2236. func (x *WorkingValve) GetFaultStatus() int64 {
  2237. if x != nil {
  2238. return x.FaultStatus
  2239. }
  2240. return 0
  2241. }
  2242. func (x *WorkingValve) GetCTime() string {
  2243. if x != nil {
  2244. return x.CTime
  2245. }
  2246. return ""
  2247. }
  2248. type ItemHistoryData struct {
  2249. state protoimpl.MessageState
  2250. sizeCache protoimpl.SizeCache
  2251. unknownFields protoimpl.UnknownFields
  2252. // @gotags: json:"project_id"
  2253. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  2254. // @gotags: json:"item_name"
  2255. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  2256. // @gotags: json:"val"
  2257. Val float64 `protobuf:"fixed64,3,opt,name=val,proto3" json:"val,omitempty"`
  2258. // @gotags: json:"h_time"
  2259. HTime string `protobuf:"bytes,4,opt,name=h_time,json=hTime,proto3" json:"h_time,omitempty"`
  2260. }
  2261. func (x *ItemHistoryData) Reset() {
  2262. *x = ItemHistoryData{}
  2263. if protoimpl.UnsafeEnabled {
  2264. mi := &file_datacenter_proto_msgTypes[14]
  2265. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2266. ms.StoreMessageInfo(mi)
  2267. }
  2268. }
  2269. func (x *ItemHistoryData) String() string {
  2270. return protoimpl.X.MessageStringOf(x)
  2271. }
  2272. func (*ItemHistoryData) ProtoMessage() {}
  2273. func (x *ItemHistoryData) ProtoReflect() protoreflect.Message {
  2274. mi := &file_datacenter_proto_msgTypes[14]
  2275. if protoimpl.UnsafeEnabled && x != nil {
  2276. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2277. if ms.LoadMessageInfo() == nil {
  2278. ms.StoreMessageInfo(mi)
  2279. }
  2280. return ms
  2281. }
  2282. return mi.MessageOf(x)
  2283. }
  2284. // Deprecated: Use ItemHistoryData.ProtoReflect.Descriptor instead.
  2285. func (*ItemHistoryData) Descriptor() ([]byte, []int) {
  2286. return file_datacenter_proto_rawDescGZIP(), []int{14}
  2287. }
  2288. func (x *ItemHistoryData) GetProjectId() int64 {
  2289. if x != nil {
  2290. return x.ProjectId
  2291. }
  2292. return 0
  2293. }
  2294. func (x *ItemHistoryData) GetItemName() string {
  2295. if x != nil {
  2296. return x.ItemName
  2297. }
  2298. return ""
  2299. }
  2300. func (x *ItemHistoryData) GetVal() float64 {
  2301. if x != nil {
  2302. return x.Val
  2303. }
  2304. return 0
  2305. }
  2306. func (x *ItemHistoryData) GetHTime() string {
  2307. if x != nil {
  2308. return x.HTime
  2309. }
  2310. return ""
  2311. }
  2312. type MultiAddItemHistoryDataReq struct {
  2313. state protoimpl.MessageState
  2314. sizeCache protoimpl.SizeCache
  2315. unknownFields protoimpl.UnknownFields
  2316. // @gotags: json:"project_id"
  2317. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  2318. // @gotags: json:"list"
  2319. List []*ItemHistoryData `protobuf:"bytes,2,rep,name=list,proto3" json:"list,omitempty"`
  2320. }
  2321. func (x *MultiAddItemHistoryDataReq) Reset() {
  2322. *x = MultiAddItemHistoryDataReq{}
  2323. if protoimpl.UnsafeEnabled {
  2324. mi := &file_datacenter_proto_msgTypes[15]
  2325. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2326. ms.StoreMessageInfo(mi)
  2327. }
  2328. }
  2329. func (x *MultiAddItemHistoryDataReq) String() string {
  2330. return protoimpl.X.MessageStringOf(x)
  2331. }
  2332. func (*MultiAddItemHistoryDataReq) ProtoMessage() {}
  2333. func (x *MultiAddItemHistoryDataReq) ProtoReflect() protoreflect.Message {
  2334. mi := &file_datacenter_proto_msgTypes[15]
  2335. if protoimpl.UnsafeEnabled && x != nil {
  2336. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2337. if ms.LoadMessageInfo() == nil {
  2338. ms.StoreMessageInfo(mi)
  2339. }
  2340. return ms
  2341. }
  2342. return mi.MessageOf(x)
  2343. }
  2344. // Deprecated: Use MultiAddItemHistoryDataReq.ProtoReflect.Descriptor instead.
  2345. func (*MultiAddItemHistoryDataReq) Descriptor() ([]byte, []int) {
  2346. return file_datacenter_proto_rawDescGZIP(), []int{15}
  2347. }
  2348. func (x *MultiAddItemHistoryDataReq) GetProjectId() int64 {
  2349. if x != nil {
  2350. return x.ProjectId
  2351. }
  2352. return 0
  2353. }
  2354. func (x *MultiAddItemHistoryDataReq) GetList() []*ItemHistoryData {
  2355. if x != nil {
  2356. return x.List
  2357. }
  2358. return nil
  2359. }
  2360. type MultiAddItemHistoryDataResp struct {
  2361. state protoimpl.MessageState
  2362. sizeCache protoimpl.SizeCache
  2363. unknownFields protoimpl.UnknownFields
  2364. }
  2365. func (x *MultiAddItemHistoryDataResp) Reset() {
  2366. *x = MultiAddItemHistoryDataResp{}
  2367. if protoimpl.UnsafeEnabled {
  2368. mi := &file_datacenter_proto_msgTypes[16]
  2369. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2370. ms.StoreMessageInfo(mi)
  2371. }
  2372. }
  2373. func (x *MultiAddItemHistoryDataResp) String() string {
  2374. return protoimpl.X.MessageStringOf(x)
  2375. }
  2376. func (*MultiAddItemHistoryDataResp) ProtoMessage() {}
  2377. func (x *MultiAddItemHistoryDataResp) ProtoReflect() protoreflect.Message {
  2378. mi := &file_datacenter_proto_msgTypes[16]
  2379. if protoimpl.UnsafeEnabled && x != nil {
  2380. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2381. if ms.LoadMessageInfo() == nil {
  2382. ms.StoreMessageInfo(mi)
  2383. }
  2384. return ms
  2385. }
  2386. return mi.MessageOf(x)
  2387. }
  2388. // Deprecated: Use MultiAddItemHistoryDataResp.ProtoReflect.Descriptor instead.
  2389. func (*MultiAddItemHistoryDataResp) Descriptor() ([]byte, []int) {
  2390. return file_datacenter_proto_rawDescGZIP(), []int{16}
  2391. }
  2392. type ItemHistoryDataListReq struct {
  2393. state protoimpl.MessageState
  2394. sizeCache protoimpl.SizeCache
  2395. unknownFields protoimpl.UnknownFields
  2396. // @gotags: json:"project_id"
  2397. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  2398. // @gotags: json:"item_name"
  2399. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  2400. // @gotags: json:"interval"
  2401. Interval string `protobuf:"bytes,3,opt,name=interval,proto3" json:"interval,omitempty"` //时间单位 s,minute,h,day
  2402. // @gotags: json:"aggregator"
  2403. Aggregator string `protobuf:"bytes,4,opt,name=aggregator,proto3" json:"aggregator,omitempty"` //聚合方式 min,max,avg,sum,realtime, new
  2404. // @gotags: json:"stime"
  2405. Stime string `protobuf:"bytes,5,opt,name=stime,proto3" json:"stime,omitempty"`
  2406. // @gotags: json:"etime"
  2407. Etime string `protobuf:"bytes,6,opt,name=etime,proto3" json:"etime,omitempty"`
  2408. // @gotags: json:"size"
  2409. Size int64 `protobuf:"varint,7,opt,name=size,proto3" json:"size,omitempty"`
  2410. // @gotags: json:"order"
  2411. Order string `protobuf:"bytes,8,opt,name=order,proto3" json:"order,omitempty"`
  2412. }
  2413. func (x *ItemHistoryDataListReq) Reset() {
  2414. *x = ItemHistoryDataListReq{}
  2415. if protoimpl.UnsafeEnabled {
  2416. mi := &file_datacenter_proto_msgTypes[17]
  2417. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2418. ms.StoreMessageInfo(mi)
  2419. }
  2420. }
  2421. func (x *ItemHistoryDataListReq) String() string {
  2422. return protoimpl.X.MessageStringOf(x)
  2423. }
  2424. func (*ItemHistoryDataListReq) ProtoMessage() {}
  2425. func (x *ItemHistoryDataListReq) ProtoReflect() protoreflect.Message {
  2426. mi := &file_datacenter_proto_msgTypes[17]
  2427. if protoimpl.UnsafeEnabled && x != nil {
  2428. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2429. if ms.LoadMessageInfo() == nil {
  2430. ms.StoreMessageInfo(mi)
  2431. }
  2432. return ms
  2433. }
  2434. return mi.MessageOf(x)
  2435. }
  2436. // Deprecated: Use ItemHistoryDataListReq.ProtoReflect.Descriptor instead.
  2437. func (*ItemHistoryDataListReq) Descriptor() ([]byte, []int) {
  2438. return file_datacenter_proto_rawDescGZIP(), []int{17}
  2439. }
  2440. func (x *ItemHistoryDataListReq) GetProjectId() int64 {
  2441. if x != nil {
  2442. return x.ProjectId
  2443. }
  2444. return 0
  2445. }
  2446. func (x *ItemHistoryDataListReq) GetItemName() string {
  2447. if x != nil {
  2448. return x.ItemName
  2449. }
  2450. return ""
  2451. }
  2452. func (x *ItemHistoryDataListReq) GetInterval() string {
  2453. if x != nil {
  2454. return x.Interval
  2455. }
  2456. return ""
  2457. }
  2458. func (x *ItemHistoryDataListReq) GetAggregator() string {
  2459. if x != nil {
  2460. return x.Aggregator
  2461. }
  2462. return ""
  2463. }
  2464. func (x *ItemHistoryDataListReq) GetStime() string {
  2465. if x != nil {
  2466. return x.Stime
  2467. }
  2468. return ""
  2469. }
  2470. func (x *ItemHistoryDataListReq) GetEtime() string {
  2471. if x != nil {
  2472. return x.Etime
  2473. }
  2474. return ""
  2475. }
  2476. func (x *ItemHistoryDataListReq) GetSize() int64 {
  2477. if x != nil {
  2478. return x.Size
  2479. }
  2480. return 0
  2481. }
  2482. func (x *ItemHistoryDataListReq) GetOrder() string {
  2483. if x != nil {
  2484. return x.Order
  2485. }
  2486. return ""
  2487. }
  2488. type ItemHistoryDataByTimeReq struct {
  2489. state protoimpl.MessageState
  2490. sizeCache protoimpl.SizeCache
  2491. unknownFields protoimpl.UnknownFields
  2492. // @gotags: json:"project_id"
  2493. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  2494. // @gotags: json:"item_name"
  2495. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  2496. // @gotags: json:"stime"
  2497. Stime string `protobuf:"bytes,3,opt,name=stime,proto3" json:"stime,omitempty"`
  2498. // @gotags: json:"etime"
  2499. Etime string `protobuf:"bytes,4,opt,name=etime,proto3" json:"etime,omitempty"`
  2500. // @gotags: json:"order"
  2501. Order string `protobuf:"bytes,5,opt,name=order,proto3" json:"order,omitempty"`
  2502. }
  2503. func (x *ItemHistoryDataByTimeReq) Reset() {
  2504. *x = ItemHistoryDataByTimeReq{}
  2505. if protoimpl.UnsafeEnabled {
  2506. mi := &file_datacenter_proto_msgTypes[18]
  2507. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2508. ms.StoreMessageInfo(mi)
  2509. }
  2510. }
  2511. func (x *ItemHistoryDataByTimeReq) String() string {
  2512. return protoimpl.X.MessageStringOf(x)
  2513. }
  2514. func (*ItemHistoryDataByTimeReq) ProtoMessage() {}
  2515. func (x *ItemHistoryDataByTimeReq) ProtoReflect() protoreflect.Message {
  2516. mi := &file_datacenter_proto_msgTypes[18]
  2517. if protoimpl.UnsafeEnabled && x != nil {
  2518. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2519. if ms.LoadMessageInfo() == nil {
  2520. ms.StoreMessageInfo(mi)
  2521. }
  2522. return ms
  2523. }
  2524. return mi.MessageOf(x)
  2525. }
  2526. // Deprecated: Use ItemHistoryDataByTimeReq.ProtoReflect.Descriptor instead.
  2527. func (*ItemHistoryDataByTimeReq) Descriptor() ([]byte, []int) {
  2528. return file_datacenter_proto_rawDescGZIP(), []int{18}
  2529. }
  2530. func (x *ItemHistoryDataByTimeReq) GetProjectId() int64 {
  2531. if x != nil {
  2532. return x.ProjectId
  2533. }
  2534. return 0
  2535. }
  2536. func (x *ItemHistoryDataByTimeReq) GetItemName() string {
  2537. if x != nil {
  2538. return x.ItemName
  2539. }
  2540. return ""
  2541. }
  2542. func (x *ItemHistoryDataByTimeReq) GetStime() string {
  2543. if x != nil {
  2544. return x.Stime
  2545. }
  2546. return ""
  2547. }
  2548. func (x *ItemHistoryDataByTimeReq) GetEtime() string {
  2549. if x != nil {
  2550. return x.Etime
  2551. }
  2552. return ""
  2553. }
  2554. func (x *ItemHistoryDataByTimeReq) GetOrder() string {
  2555. if x != nil {
  2556. return x.Order
  2557. }
  2558. return ""
  2559. }
  2560. type ItemHistoryDataMaxMinResp struct {
  2561. state protoimpl.MessageState
  2562. sizeCache protoimpl.SizeCache
  2563. unknownFields protoimpl.UnknownFields
  2564. // @gotags: json:"max_val"
  2565. MaxVal float64 `protobuf:"fixed64,1,opt,name=max_val,json=maxVal,proto3" json:"max_val,omitempty"`
  2566. // @gotags: json:"min_val"
  2567. MinVal float64 `protobuf:"fixed64,2,opt,name=min_val,json=minVal,proto3" json:"min_val,omitempty"`
  2568. // @gotags: json:"avg_val"
  2569. AvgVal float64 `protobuf:"fixed64,3,opt,name=avg_val,json=avgVal,proto3" json:"avg_val,omitempty"`
  2570. }
  2571. func (x *ItemHistoryDataMaxMinResp) Reset() {
  2572. *x = ItemHistoryDataMaxMinResp{}
  2573. if protoimpl.UnsafeEnabled {
  2574. mi := &file_datacenter_proto_msgTypes[19]
  2575. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2576. ms.StoreMessageInfo(mi)
  2577. }
  2578. }
  2579. func (x *ItemHistoryDataMaxMinResp) String() string {
  2580. return protoimpl.X.MessageStringOf(x)
  2581. }
  2582. func (*ItemHistoryDataMaxMinResp) ProtoMessage() {}
  2583. func (x *ItemHistoryDataMaxMinResp) ProtoReflect() protoreflect.Message {
  2584. mi := &file_datacenter_proto_msgTypes[19]
  2585. if protoimpl.UnsafeEnabled && x != nil {
  2586. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2587. if ms.LoadMessageInfo() == nil {
  2588. ms.StoreMessageInfo(mi)
  2589. }
  2590. return ms
  2591. }
  2592. return mi.MessageOf(x)
  2593. }
  2594. // Deprecated: Use ItemHistoryDataMaxMinResp.ProtoReflect.Descriptor instead.
  2595. func (*ItemHistoryDataMaxMinResp) Descriptor() ([]byte, []int) {
  2596. return file_datacenter_proto_rawDescGZIP(), []int{19}
  2597. }
  2598. func (x *ItemHistoryDataMaxMinResp) GetMaxVal() float64 {
  2599. if x != nil {
  2600. return x.MaxVal
  2601. }
  2602. return 0
  2603. }
  2604. func (x *ItemHistoryDataMaxMinResp) GetMinVal() float64 {
  2605. if x != nil {
  2606. return x.MinVal
  2607. }
  2608. return 0
  2609. }
  2610. func (x *ItemHistoryDataMaxMinResp) GetAvgVal() float64 {
  2611. if x != nil {
  2612. return x.AvgVal
  2613. }
  2614. return 0
  2615. }
  2616. type ItemHistoryDataFirstLastResp struct {
  2617. state protoimpl.MessageState
  2618. sizeCache protoimpl.SizeCache
  2619. unknownFields protoimpl.UnknownFields
  2620. // @gotags: json:"first"
  2621. First float64 `protobuf:"fixed64,1,opt,name=first,proto3" json:"first,omitempty"`
  2622. // @gotags: json:"last"
  2623. Last float64 `protobuf:"fixed64,2,opt,name=last,proto3" json:"last,omitempty"`
  2624. }
  2625. func (x *ItemHistoryDataFirstLastResp) Reset() {
  2626. *x = ItemHistoryDataFirstLastResp{}
  2627. if protoimpl.UnsafeEnabled {
  2628. mi := &file_datacenter_proto_msgTypes[20]
  2629. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2630. ms.StoreMessageInfo(mi)
  2631. }
  2632. }
  2633. func (x *ItemHistoryDataFirstLastResp) String() string {
  2634. return protoimpl.X.MessageStringOf(x)
  2635. }
  2636. func (*ItemHistoryDataFirstLastResp) ProtoMessage() {}
  2637. func (x *ItemHistoryDataFirstLastResp) ProtoReflect() protoreflect.Message {
  2638. mi := &file_datacenter_proto_msgTypes[20]
  2639. if protoimpl.UnsafeEnabled && x != nil {
  2640. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2641. if ms.LoadMessageInfo() == nil {
  2642. ms.StoreMessageInfo(mi)
  2643. }
  2644. return ms
  2645. }
  2646. return mi.MessageOf(x)
  2647. }
  2648. // Deprecated: Use ItemHistoryDataFirstLastResp.ProtoReflect.Descriptor instead.
  2649. func (*ItemHistoryDataFirstLastResp) Descriptor() ([]byte, []int) {
  2650. return file_datacenter_proto_rawDescGZIP(), []int{20}
  2651. }
  2652. func (x *ItemHistoryDataFirstLastResp) GetFirst() float64 {
  2653. if x != nil {
  2654. return x.First
  2655. }
  2656. return 0
  2657. }
  2658. func (x *ItemHistoryDataFirstLastResp) GetLast() float64 {
  2659. if x != nil {
  2660. return x.Last
  2661. }
  2662. return 0
  2663. }
  2664. type ChangeTypeItemHistoryDataResp struct {
  2665. state protoimpl.MessageState
  2666. sizeCache protoimpl.SizeCache
  2667. unknownFields protoimpl.UnknownFields
  2668. // @gotags: json:"value"
  2669. Value float64 `protobuf:"fixed64,1,opt,name=value,proto3" json:"value,omitempty"`
  2670. }
  2671. func (x *ChangeTypeItemHistoryDataResp) Reset() {
  2672. *x = ChangeTypeItemHistoryDataResp{}
  2673. if protoimpl.UnsafeEnabled {
  2674. mi := &file_datacenter_proto_msgTypes[21]
  2675. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2676. ms.StoreMessageInfo(mi)
  2677. }
  2678. }
  2679. func (x *ChangeTypeItemHistoryDataResp) String() string {
  2680. return protoimpl.X.MessageStringOf(x)
  2681. }
  2682. func (*ChangeTypeItemHistoryDataResp) ProtoMessage() {}
  2683. func (x *ChangeTypeItemHistoryDataResp) ProtoReflect() protoreflect.Message {
  2684. mi := &file_datacenter_proto_msgTypes[21]
  2685. if protoimpl.UnsafeEnabled && x != nil {
  2686. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2687. if ms.LoadMessageInfo() == nil {
  2688. ms.StoreMessageInfo(mi)
  2689. }
  2690. return ms
  2691. }
  2692. return mi.MessageOf(x)
  2693. }
  2694. // Deprecated: Use ChangeTypeItemHistoryDataResp.ProtoReflect.Descriptor instead.
  2695. func (*ChangeTypeItemHistoryDataResp) Descriptor() ([]byte, []int) {
  2696. return file_datacenter_proto_rawDescGZIP(), []int{21}
  2697. }
  2698. func (x *ChangeTypeItemHistoryDataResp) GetValue() float64 {
  2699. if x != nil {
  2700. return x.Value
  2701. }
  2702. return 0
  2703. }
  2704. type ItemHistoryDataList struct {
  2705. state protoimpl.MessageState
  2706. sizeCache protoimpl.SizeCache
  2707. unknownFields protoimpl.UnknownFields
  2708. // @gotags: json:"item_name"
  2709. ItemName string `protobuf:"bytes,1,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  2710. // @gotags: json:"val"
  2711. Val float64 `protobuf:"fixed64,2,opt,name=val,proto3" json:"val,omitempty"`
  2712. // @gotags: json:"h_time"
  2713. HTime string `protobuf:"bytes,3,opt,name=h_time,json=hTime,proto3" json:"h_time,omitempty"`
  2714. }
  2715. func (x *ItemHistoryDataList) Reset() {
  2716. *x = ItemHistoryDataList{}
  2717. if protoimpl.UnsafeEnabled {
  2718. mi := &file_datacenter_proto_msgTypes[22]
  2719. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2720. ms.StoreMessageInfo(mi)
  2721. }
  2722. }
  2723. func (x *ItemHistoryDataList) String() string {
  2724. return protoimpl.X.MessageStringOf(x)
  2725. }
  2726. func (*ItemHistoryDataList) ProtoMessage() {}
  2727. func (x *ItemHistoryDataList) ProtoReflect() protoreflect.Message {
  2728. mi := &file_datacenter_proto_msgTypes[22]
  2729. if protoimpl.UnsafeEnabled && x != nil {
  2730. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2731. if ms.LoadMessageInfo() == nil {
  2732. ms.StoreMessageInfo(mi)
  2733. }
  2734. return ms
  2735. }
  2736. return mi.MessageOf(x)
  2737. }
  2738. // Deprecated: Use ItemHistoryDataList.ProtoReflect.Descriptor instead.
  2739. func (*ItemHistoryDataList) Descriptor() ([]byte, []int) {
  2740. return file_datacenter_proto_rawDescGZIP(), []int{22}
  2741. }
  2742. func (x *ItemHistoryDataList) GetItemName() string {
  2743. if x != nil {
  2744. return x.ItemName
  2745. }
  2746. return ""
  2747. }
  2748. func (x *ItemHistoryDataList) GetVal() float64 {
  2749. if x != nil {
  2750. return x.Val
  2751. }
  2752. return 0
  2753. }
  2754. func (x *ItemHistoryDataList) GetHTime() string {
  2755. if x != nil {
  2756. return x.HTime
  2757. }
  2758. return ""
  2759. }
  2760. type ItemHistoryDataForChart struct {
  2761. state protoimpl.MessageState
  2762. sizeCache protoimpl.SizeCache
  2763. unknownFields protoimpl.UnknownFields
  2764. // @gotags: json:"name"
  2765. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  2766. // @gotags: json:"val"
  2767. Val float64 `protobuf:"fixed64,2,opt,name=val,proto3" json:"val,omitempty"`
  2768. // @gotags: json:"htime_at"
  2769. HtimeAt string `protobuf:"bytes,3,opt,name=htime_at,json=htimeAt,proto3" json:"htime_at,omitempty"`
  2770. }
  2771. func (x *ItemHistoryDataForChart) Reset() {
  2772. *x = ItemHistoryDataForChart{}
  2773. if protoimpl.UnsafeEnabled {
  2774. mi := &file_datacenter_proto_msgTypes[23]
  2775. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2776. ms.StoreMessageInfo(mi)
  2777. }
  2778. }
  2779. func (x *ItemHistoryDataForChart) String() string {
  2780. return protoimpl.X.MessageStringOf(x)
  2781. }
  2782. func (*ItemHistoryDataForChart) ProtoMessage() {}
  2783. func (x *ItemHistoryDataForChart) ProtoReflect() protoreflect.Message {
  2784. mi := &file_datacenter_proto_msgTypes[23]
  2785. if protoimpl.UnsafeEnabled && x != nil {
  2786. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2787. if ms.LoadMessageInfo() == nil {
  2788. ms.StoreMessageInfo(mi)
  2789. }
  2790. return ms
  2791. }
  2792. return mi.MessageOf(x)
  2793. }
  2794. // Deprecated: Use ItemHistoryDataForChart.ProtoReflect.Descriptor instead.
  2795. func (*ItemHistoryDataForChart) Descriptor() ([]byte, []int) {
  2796. return file_datacenter_proto_rawDescGZIP(), []int{23}
  2797. }
  2798. func (x *ItemHistoryDataForChart) GetName() string {
  2799. if x != nil {
  2800. return x.Name
  2801. }
  2802. return ""
  2803. }
  2804. func (x *ItemHistoryDataForChart) GetVal() float64 {
  2805. if x != nil {
  2806. return x.Val
  2807. }
  2808. return 0
  2809. }
  2810. func (x *ItemHistoryDataForChart) GetHtimeAt() string {
  2811. if x != nil {
  2812. return x.HtimeAt
  2813. }
  2814. return ""
  2815. }
  2816. type ItemHistoryDataForChartReq struct {
  2817. state protoimpl.MessageState
  2818. sizeCache protoimpl.SizeCache
  2819. unknownFields protoimpl.UnknownFields
  2820. // @gotags: json:"project_id"
  2821. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  2822. // @gotags: json:"item_name"
  2823. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  2824. // @gotags: json:"stime"
  2825. Stime string `protobuf:"bytes,3,opt,name=stime,proto3" json:"stime,omitempty"`
  2826. // @gotags: json:"etime"
  2827. Etime string `protobuf:"bytes,4,opt,name=etime,proto3" json:"etime,omitempty"`
  2828. // @gotags: json:"interval"
  2829. Interval string `protobuf:"bytes,5,opt,name=interval,proto3" json:"interval,omitempty"`
  2830. // @gotags: json:"size"
  2831. Size int64 `protobuf:"varint,6,opt,name=size,proto3" json:"size,omitempty"`
  2832. // @gotags: json:"aggregator"
  2833. Aggregator string `protobuf:"bytes,7,opt,name=aggregator,proto3" json:"aggregator,omitempty"`
  2834. // @gotags: json:"order"
  2835. Order string `protobuf:"bytes,8,opt,name=order,proto3" json:"order,omitempty"`
  2836. // @gotags: json:"max_val"
  2837. MaxVal float64 `protobuf:"fixed64,9,opt,name=max_val,json=maxVal,proto3" json:"max_val,omitempty"`
  2838. // @gotags: json:"min_val"
  2839. MinVal float64 `protobuf:"fixed64,10,opt,name=min_val,json=minVal,proto3" json:"min_val,omitempty"`
  2840. }
  2841. func (x *ItemHistoryDataForChartReq) Reset() {
  2842. *x = ItemHistoryDataForChartReq{}
  2843. if protoimpl.UnsafeEnabled {
  2844. mi := &file_datacenter_proto_msgTypes[24]
  2845. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2846. ms.StoreMessageInfo(mi)
  2847. }
  2848. }
  2849. func (x *ItemHistoryDataForChartReq) String() string {
  2850. return protoimpl.X.MessageStringOf(x)
  2851. }
  2852. func (*ItemHistoryDataForChartReq) ProtoMessage() {}
  2853. func (x *ItemHistoryDataForChartReq) ProtoReflect() protoreflect.Message {
  2854. mi := &file_datacenter_proto_msgTypes[24]
  2855. if protoimpl.UnsafeEnabled && x != nil {
  2856. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2857. if ms.LoadMessageInfo() == nil {
  2858. ms.StoreMessageInfo(mi)
  2859. }
  2860. return ms
  2861. }
  2862. return mi.MessageOf(x)
  2863. }
  2864. // Deprecated: Use ItemHistoryDataForChartReq.ProtoReflect.Descriptor instead.
  2865. func (*ItemHistoryDataForChartReq) Descriptor() ([]byte, []int) {
  2866. return file_datacenter_proto_rawDescGZIP(), []int{24}
  2867. }
  2868. func (x *ItemHistoryDataForChartReq) GetProjectId() int64 {
  2869. if x != nil {
  2870. return x.ProjectId
  2871. }
  2872. return 0
  2873. }
  2874. func (x *ItemHistoryDataForChartReq) GetItemName() string {
  2875. if x != nil {
  2876. return x.ItemName
  2877. }
  2878. return ""
  2879. }
  2880. func (x *ItemHistoryDataForChartReq) GetStime() string {
  2881. if x != nil {
  2882. return x.Stime
  2883. }
  2884. return ""
  2885. }
  2886. func (x *ItemHistoryDataForChartReq) GetEtime() string {
  2887. if x != nil {
  2888. return x.Etime
  2889. }
  2890. return ""
  2891. }
  2892. func (x *ItemHistoryDataForChartReq) GetInterval() string {
  2893. if x != nil {
  2894. return x.Interval
  2895. }
  2896. return ""
  2897. }
  2898. func (x *ItemHistoryDataForChartReq) GetSize() int64 {
  2899. if x != nil {
  2900. return x.Size
  2901. }
  2902. return 0
  2903. }
  2904. func (x *ItemHistoryDataForChartReq) GetAggregator() string {
  2905. if x != nil {
  2906. return x.Aggregator
  2907. }
  2908. return ""
  2909. }
  2910. func (x *ItemHistoryDataForChartReq) GetOrder() string {
  2911. if x != nil {
  2912. return x.Order
  2913. }
  2914. return ""
  2915. }
  2916. func (x *ItemHistoryDataForChartReq) GetMaxVal() float64 {
  2917. if x != nil {
  2918. return x.MaxVal
  2919. }
  2920. return 0
  2921. }
  2922. func (x *ItemHistoryDataForChartReq) GetMinVal() float64 {
  2923. if x != nil {
  2924. return x.MinVal
  2925. }
  2926. return 0
  2927. }
  2928. type ItemHistoryDataForChartResp struct {
  2929. state protoimpl.MessageState
  2930. sizeCache protoimpl.SizeCache
  2931. unknownFields protoimpl.UnknownFields
  2932. // @gotags: json:"list"
  2933. List []*ItemHistoryDataForChart `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  2934. }
  2935. func (x *ItemHistoryDataForChartResp) Reset() {
  2936. *x = ItemHistoryDataForChartResp{}
  2937. if protoimpl.UnsafeEnabled {
  2938. mi := &file_datacenter_proto_msgTypes[25]
  2939. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2940. ms.StoreMessageInfo(mi)
  2941. }
  2942. }
  2943. func (x *ItemHistoryDataForChartResp) String() string {
  2944. return protoimpl.X.MessageStringOf(x)
  2945. }
  2946. func (*ItemHistoryDataForChartResp) ProtoMessage() {}
  2947. func (x *ItemHistoryDataForChartResp) ProtoReflect() protoreflect.Message {
  2948. mi := &file_datacenter_proto_msgTypes[25]
  2949. if protoimpl.UnsafeEnabled && x != nil {
  2950. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2951. if ms.LoadMessageInfo() == nil {
  2952. ms.StoreMessageInfo(mi)
  2953. }
  2954. return ms
  2955. }
  2956. return mi.MessageOf(x)
  2957. }
  2958. // Deprecated: Use ItemHistoryDataForChartResp.ProtoReflect.Descriptor instead.
  2959. func (*ItemHistoryDataForChartResp) Descriptor() ([]byte, []int) {
  2960. return file_datacenter_proto_rawDescGZIP(), []int{25}
  2961. }
  2962. func (x *ItemHistoryDataForChartResp) GetList() []*ItemHistoryDataForChart {
  2963. if x != nil {
  2964. return x.List
  2965. }
  2966. return nil
  2967. }
  2968. type ItemHistoryDataListResp struct {
  2969. state protoimpl.MessageState
  2970. sizeCache protoimpl.SizeCache
  2971. unknownFields protoimpl.UnknownFields
  2972. // @gotags: json:"list"
  2973. List []*ItemHistoryDataList `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  2974. }
  2975. func (x *ItemHistoryDataListResp) Reset() {
  2976. *x = ItemHistoryDataListResp{}
  2977. if protoimpl.UnsafeEnabled {
  2978. mi := &file_datacenter_proto_msgTypes[26]
  2979. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2980. ms.StoreMessageInfo(mi)
  2981. }
  2982. }
  2983. func (x *ItemHistoryDataListResp) String() string {
  2984. return protoimpl.X.MessageStringOf(x)
  2985. }
  2986. func (*ItemHistoryDataListResp) ProtoMessage() {}
  2987. func (x *ItemHistoryDataListResp) ProtoReflect() protoreflect.Message {
  2988. mi := &file_datacenter_proto_msgTypes[26]
  2989. if protoimpl.UnsafeEnabled && x != nil {
  2990. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2991. if ms.LoadMessageInfo() == nil {
  2992. ms.StoreMessageInfo(mi)
  2993. }
  2994. return ms
  2995. }
  2996. return mi.MessageOf(x)
  2997. }
  2998. // Deprecated: Use ItemHistoryDataListResp.ProtoReflect.Descriptor instead.
  2999. func (*ItemHistoryDataListResp) Descriptor() ([]byte, []int) {
  3000. return file_datacenter_proto_rawDescGZIP(), []int{26}
  3001. }
  3002. func (x *ItemHistoryDataListResp) GetList() []*ItemHistoryDataList {
  3003. if x != nil {
  3004. return x.List
  3005. }
  3006. return nil
  3007. }
  3008. type GetWorkingUfByCodeResp struct {
  3009. state protoimpl.MessageState
  3010. sizeCache protoimpl.SizeCache
  3011. unknownFields protoimpl.UnknownFields
  3012. // @gotags: json:"list"
  3013. List []*WorkingUf `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3014. }
  3015. func (x *GetWorkingUfByCodeResp) Reset() {
  3016. *x = GetWorkingUfByCodeResp{}
  3017. if protoimpl.UnsafeEnabled {
  3018. mi := &file_datacenter_proto_msgTypes[27]
  3019. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3020. ms.StoreMessageInfo(mi)
  3021. }
  3022. }
  3023. func (x *GetWorkingUfByCodeResp) String() string {
  3024. return protoimpl.X.MessageStringOf(x)
  3025. }
  3026. func (*GetWorkingUfByCodeResp) ProtoMessage() {}
  3027. func (x *GetWorkingUfByCodeResp) ProtoReflect() protoreflect.Message {
  3028. mi := &file_datacenter_proto_msgTypes[27]
  3029. if protoimpl.UnsafeEnabled && x != nil {
  3030. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3031. if ms.LoadMessageInfo() == nil {
  3032. ms.StoreMessageInfo(mi)
  3033. }
  3034. return ms
  3035. }
  3036. return mi.MessageOf(x)
  3037. }
  3038. // Deprecated: Use GetWorkingUfByCodeResp.ProtoReflect.Descriptor instead.
  3039. func (*GetWorkingUfByCodeResp) Descriptor() ([]byte, []int) {
  3040. return file_datacenter_proto_rawDescGZIP(), []int{27}
  3041. }
  3042. func (x *GetWorkingUfByCodeResp) GetList() []*WorkingUf {
  3043. if x != nil {
  3044. return x.List
  3045. }
  3046. return nil
  3047. }
  3048. type FindWorkingUfByCycleReq struct {
  3049. state protoimpl.MessageState
  3050. sizeCache protoimpl.SizeCache
  3051. unknownFields protoimpl.UnknownFields
  3052. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  3053. DeviceCode string `protobuf:"bytes,2,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  3054. FilterCycle int64 `protobuf:"varint,3,opt,name=filter_cycle,json=filterCycle,proto3" json:"filter_cycle,omitempty"`
  3055. Step int64 `protobuf:"varint,4,opt,name=step,proto3" json:"step,omitempty"`
  3056. FilterTimeStart float64 `protobuf:"fixed64,5,opt,name=filter_time_start,json=filterTimeStart,proto3" json:"filter_time_start,omitempty"`
  3057. FilterTimeEnd float64 `protobuf:"fixed64,6,opt,name=filter_time_end,json=filterTimeEnd,proto3" json:"filter_time_end,omitempty"`
  3058. Limit int64 `protobuf:"varint,7,opt,name=limit,proto3" json:"limit,omitempty"`
  3059. }
  3060. func (x *FindWorkingUfByCycleReq) Reset() {
  3061. *x = FindWorkingUfByCycleReq{}
  3062. if protoimpl.UnsafeEnabled {
  3063. mi := &file_datacenter_proto_msgTypes[28]
  3064. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3065. ms.StoreMessageInfo(mi)
  3066. }
  3067. }
  3068. func (x *FindWorkingUfByCycleReq) String() string {
  3069. return protoimpl.X.MessageStringOf(x)
  3070. }
  3071. func (*FindWorkingUfByCycleReq) ProtoMessage() {}
  3072. func (x *FindWorkingUfByCycleReq) ProtoReflect() protoreflect.Message {
  3073. mi := &file_datacenter_proto_msgTypes[28]
  3074. if protoimpl.UnsafeEnabled && x != nil {
  3075. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3076. if ms.LoadMessageInfo() == nil {
  3077. ms.StoreMessageInfo(mi)
  3078. }
  3079. return ms
  3080. }
  3081. return mi.MessageOf(x)
  3082. }
  3083. // Deprecated: Use FindWorkingUfByCycleReq.ProtoReflect.Descriptor instead.
  3084. func (*FindWorkingUfByCycleReq) Descriptor() ([]byte, []int) {
  3085. return file_datacenter_proto_rawDescGZIP(), []int{28}
  3086. }
  3087. func (x *FindWorkingUfByCycleReq) GetProjectId() int64 {
  3088. if x != nil {
  3089. return x.ProjectId
  3090. }
  3091. return 0
  3092. }
  3093. func (x *FindWorkingUfByCycleReq) GetDeviceCode() string {
  3094. if x != nil {
  3095. return x.DeviceCode
  3096. }
  3097. return ""
  3098. }
  3099. func (x *FindWorkingUfByCycleReq) GetFilterCycle() int64 {
  3100. if x != nil {
  3101. return x.FilterCycle
  3102. }
  3103. return 0
  3104. }
  3105. func (x *FindWorkingUfByCycleReq) GetStep() int64 {
  3106. if x != nil {
  3107. return x.Step
  3108. }
  3109. return 0
  3110. }
  3111. func (x *FindWorkingUfByCycleReq) GetFilterTimeStart() float64 {
  3112. if x != nil {
  3113. return x.FilterTimeStart
  3114. }
  3115. return 0
  3116. }
  3117. func (x *FindWorkingUfByCycleReq) GetFilterTimeEnd() float64 {
  3118. if x != nil {
  3119. return x.FilterTimeEnd
  3120. }
  3121. return 0
  3122. }
  3123. func (x *FindWorkingUfByCycleReq) GetLimit() int64 {
  3124. if x != nil {
  3125. return x.Limit
  3126. }
  3127. return 0
  3128. }
  3129. type FindWorkingUfByCycleResp struct {
  3130. state protoimpl.MessageState
  3131. sizeCache protoimpl.SizeCache
  3132. unknownFields protoimpl.UnknownFields
  3133. // @gotags: json:"list"
  3134. List []*WorkingUf `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3135. }
  3136. func (x *FindWorkingUfByCycleResp) Reset() {
  3137. *x = FindWorkingUfByCycleResp{}
  3138. if protoimpl.UnsafeEnabled {
  3139. mi := &file_datacenter_proto_msgTypes[29]
  3140. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3141. ms.StoreMessageInfo(mi)
  3142. }
  3143. }
  3144. func (x *FindWorkingUfByCycleResp) String() string {
  3145. return protoimpl.X.MessageStringOf(x)
  3146. }
  3147. func (*FindWorkingUfByCycleResp) ProtoMessage() {}
  3148. func (x *FindWorkingUfByCycleResp) ProtoReflect() protoreflect.Message {
  3149. mi := &file_datacenter_proto_msgTypes[29]
  3150. if protoimpl.UnsafeEnabled && x != nil {
  3151. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3152. if ms.LoadMessageInfo() == nil {
  3153. ms.StoreMessageInfo(mi)
  3154. }
  3155. return ms
  3156. }
  3157. return mi.MessageOf(x)
  3158. }
  3159. // Deprecated: Use FindWorkingUfByCycleResp.ProtoReflect.Descriptor instead.
  3160. func (*FindWorkingUfByCycleResp) Descriptor() ([]byte, []int) {
  3161. return file_datacenter_proto_rawDescGZIP(), []int{29}
  3162. }
  3163. func (x *FindWorkingUfByCycleResp) GetList() []*WorkingUf {
  3164. if x != nil {
  3165. return x.List
  3166. }
  3167. return nil
  3168. }
  3169. type GetWorkingRoByCodeResp struct {
  3170. state protoimpl.MessageState
  3171. sizeCache protoimpl.SizeCache
  3172. unknownFields protoimpl.UnknownFields
  3173. // @gotags: json:"list"
  3174. List []*WorkingRo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3175. }
  3176. func (x *GetWorkingRoByCodeResp) Reset() {
  3177. *x = GetWorkingRoByCodeResp{}
  3178. if protoimpl.UnsafeEnabled {
  3179. mi := &file_datacenter_proto_msgTypes[30]
  3180. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3181. ms.StoreMessageInfo(mi)
  3182. }
  3183. }
  3184. func (x *GetWorkingRoByCodeResp) String() string {
  3185. return protoimpl.X.MessageStringOf(x)
  3186. }
  3187. func (*GetWorkingRoByCodeResp) ProtoMessage() {}
  3188. func (x *GetWorkingRoByCodeResp) ProtoReflect() protoreflect.Message {
  3189. mi := &file_datacenter_proto_msgTypes[30]
  3190. if protoimpl.UnsafeEnabled && x != nil {
  3191. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3192. if ms.LoadMessageInfo() == nil {
  3193. ms.StoreMessageInfo(mi)
  3194. }
  3195. return ms
  3196. }
  3197. return mi.MessageOf(x)
  3198. }
  3199. // Deprecated: Use GetWorkingRoByCodeResp.ProtoReflect.Descriptor instead.
  3200. func (*GetWorkingRoByCodeResp) Descriptor() ([]byte, []int) {
  3201. return file_datacenter_proto_rawDescGZIP(), []int{30}
  3202. }
  3203. func (x *GetWorkingRoByCodeResp) GetList() []*WorkingRo {
  3204. if x != nil {
  3205. return x.List
  3206. }
  3207. return nil
  3208. }
  3209. type GetWorkingNfByCodeResp struct {
  3210. state protoimpl.MessageState
  3211. sizeCache protoimpl.SizeCache
  3212. unknownFields protoimpl.UnknownFields
  3213. // @gotags: json:"list"
  3214. List []*WorkingNf `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3215. }
  3216. func (x *GetWorkingNfByCodeResp) Reset() {
  3217. *x = GetWorkingNfByCodeResp{}
  3218. if protoimpl.UnsafeEnabled {
  3219. mi := &file_datacenter_proto_msgTypes[31]
  3220. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3221. ms.StoreMessageInfo(mi)
  3222. }
  3223. }
  3224. func (x *GetWorkingNfByCodeResp) String() string {
  3225. return protoimpl.X.MessageStringOf(x)
  3226. }
  3227. func (*GetWorkingNfByCodeResp) ProtoMessage() {}
  3228. func (x *GetWorkingNfByCodeResp) ProtoReflect() protoreflect.Message {
  3229. mi := &file_datacenter_proto_msgTypes[31]
  3230. if protoimpl.UnsafeEnabled && x != nil {
  3231. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3232. if ms.LoadMessageInfo() == nil {
  3233. ms.StoreMessageInfo(mi)
  3234. }
  3235. return ms
  3236. }
  3237. return mi.MessageOf(x)
  3238. }
  3239. // Deprecated: Use GetWorkingNfByCodeResp.ProtoReflect.Descriptor instead.
  3240. func (*GetWorkingNfByCodeResp) Descriptor() ([]byte, []int) {
  3241. return file_datacenter_proto_rawDescGZIP(), []int{31}
  3242. }
  3243. func (x *GetWorkingNfByCodeResp) GetList() []*WorkingNf {
  3244. if x != nil {
  3245. return x.List
  3246. }
  3247. return nil
  3248. }
  3249. type GetWorkingMfByCodeResp struct {
  3250. state protoimpl.MessageState
  3251. sizeCache protoimpl.SizeCache
  3252. unknownFields protoimpl.UnknownFields
  3253. // @gotags: json:"list"
  3254. List []*WorkingMf `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3255. }
  3256. func (x *GetWorkingMfByCodeResp) Reset() {
  3257. *x = GetWorkingMfByCodeResp{}
  3258. if protoimpl.UnsafeEnabled {
  3259. mi := &file_datacenter_proto_msgTypes[32]
  3260. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3261. ms.StoreMessageInfo(mi)
  3262. }
  3263. }
  3264. func (x *GetWorkingMfByCodeResp) String() string {
  3265. return protoimpl.X.MessageStringOf(x)
  3266. }
  3267. func (*GetWorkingMfByCodeResp) ProtoMessage() {}
  3268. func (x *GetWorkingMfByCodeResp) ProtoReflect() protoreflect.Message {
  3269. mi := &file_datacenter_proto_msgTypes[32]
  3270. if protoimpl.UnsafeEnabled && x != nil {
  3271. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3272. if ms.LoadMessageInfo() == nil {
  3273. ms.StoreMessageInfo(mi)
  3274. }
  3275. return ms
  3276. }
  3277. return mi.MessageOf(x)
  3278. }
  3279. // Deprecated: Use GetWorkingMfByCodeResp.ProtoReflect.Descriptor instead.
  3280. func (*GetWorkingMfByCodeResp) Descriptor() ([]byte, []int) {
  3281. return file_datacenter_proto_rawDescGZIP(), []int{32}
  3282. }
  3283. func (x *GetWorkingMfByCodeResp) GetList() []*WorkingMf {
  3284. if x != nil {
  3285. return x.List
  3286. }
  3287. return nil
  3288. }
  3289. type GetWorkingPumpByCodeResp struct {
  3290. state protoimpl.MessageState
  3291. sizeCache protoimpl.SizeCache
  3292. unknownFields protoimpl.UnknownFields
  3293. // @gotags: json:"list"
  3294. List []*WorkingPump `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3295. }
  3296. func (x *GetWorkingPumpByCodeResp) Reset() {
  3297. *x = GetWorkingPumpByCodeResp{}
  3298. if protoimpl.UnsafeEnabled {
  3299. mi := &file_datacenter_proto_msgTypes[33]
  3300. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3301. ms.StoreMessageInfo(mi)
  3302. }
  3303. }
  3304. func (x *GetWorkingPumpByCodeResp) String() string {
  3305. return protoimpl.X.MessageStringOf(x)
  3306. }
  3307. func (*GetWorkingPumpByCodeResp) ProtoMessage() {}
  3308. func (x *GetWorkingPumpByCodeResp) ProtoReflect() protoreflect.Message {
  3309. mi := &file_datacenter_proto_msgTypes[33]
  3310. if protoimpl.UnsafeEnabled && x != nil {
  3311. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3312. if ms.LoadMessageInfo() == nil {
  3313. ms.StoreMessageInfo(mi)
  3314. }
  3315. return ms
  3316. }
  3317. return mi.MessageOf(x)
  3318. }
  3319. // Deprecated: Use GetWorkingPumpByCodeResp.ProtoReflect.Descriptor instead.
  3320. func (*GetWorkingPumpByCodeResp) Descriptor() ([]byte, []int) {
  3321. return file_datacenter_proto_rawDescGZIP(), []int{33}
  3322. }
  3323. func (x *GetWorkingPumpByCodeResp) GetList() []*WorkingPump {
  3324. if x != nil {
  3325. return x.List
  3326. }
  3327. return nil
  3328. }
  3329. type GetWorkingValveByCodeResp struct {
  3330. state protoimpl.MessageState
  3331. sizeCache protoimpl.SizeCache
  3332. unknownFields protoimpl.UnknownFields
  3333. // @gotags: json:"list"
  3334. List []*WorkingValve `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3335. }
  3336. func (x *GetWorkingValveByCodeResp) Reset() {
  3337. *x = GetWorkingValveByCodeResp{}
  3338. if protoimpl.UnsafeEnabled {
  3339. mi := &file_datacenter_proto_msgTypes[34]
  3340. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3341. ms.StoreMessageInfo(mi)
  3342. }
  3343. }
  3344. func (x *GetWorkingValveByCodeResp) String() string {
  3345. return protoimpl.X.MessageStringOf(x)
  3346. }
  3347. func (*GetWorkingValveByCodeResp) ProtoMessage() {}
  3348. func (x *GetWorkingValveByCodeResp) ProtoReflect() protoreflect.Message {
  3349. mi := &file_datacenter_proto_msgTypes[34]
  3350. if protoimpl.UnsafeEnabled && x != nil {
  3351. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3352. if ms.LoadMessageInfo() == nil {
  3353. ms.StoreMessageInfo(mi)
  3354. }
  3355. return ms
  3356. }
  3357. return mi.MessageOf(x)
  3358. }
  3359. // Deprecated: Use GetWorkingValveByCodeResp.ProtoReflect.Descriptor instead.
  3360. func (*GetWorkingValveByCodeResp) Descriptor() ([]byte, []int) {
  3361. return file_datacenter_proto_rawDescGZIP(), []int{34}
  3362. }
  3363. func (x *GetWorkingValveByCodeResp) GetList() []*WorkingValve {
  3364. if x != nil {
  3365. return x.List
  3366. }
  3367. return nil
  3368. }
  3369. type GetWorkingChestByCodeResp struct {
  3370. state protoimpl.MessageState
  3371. sizeCache protoimpl.SizeCache
  3372. unknownFields protoimpl.UnknownFields
  3373. // @gotags: json:"list"
  3374. List []*WorkingChest `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3375. }
  3376. func (x *GetWorkingChestByCodeResp) Reset() {
  3377. *x = GetWorkingChestByCodeResp{}
  3378. if protoimpl.UnsafeEnabled {
  3379. mi := &file_datacenter_proto_msgTypes[35]
  3380. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3381. ms.StoreMessageInfo(mi)
  3382. }
  3383. }
  3384. func (x *GetWorkingChestByCodeResp) String() string {
  3385. return protoimpl.X.MessageStringOf(x)
  3386. }
  3387. func (*GetWorkingChestByCodeResp) ProtoMessage() {}
  3388. func (x *GetWorkingChestByCodeResp) ProtoReflect() protoreflect.Message {
  3389. mi := &file_datacenter_proto_msgTypes[35]
  3390. if protoimpl.UnsafeEnabled && x != nil {
  3391. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3392. if ms.LoadMessageInfo() == nil {
  3393. ms.StoreMessageInfo(mi)
  3394. }
  3395. return ms
  3396. }
  3397. return mi.MessageOf(x)
  3398. }
  3399. // Deprecated: Use GetWorkingChestByCodeResp.ProtoReflect.Descriptor instead.
  3400. func (*GetWorkingChestByCodeResp) Descriptor() ([]byte, []int) {
  3401. return file_datacenter_proto_rawDescGZIP(), []int{35}
  3402. }
  3403. func (x *GetWorkingChestByCodeResp) GetList() []*WorkingChest {
  3404. if x != nil {
  3405. return x.List
  3406. }
  3407. return nil
  3408. }
  3409. type FindAppListReq struct {
  3410. state protoimpl.MessageState
  3411. sizeCache protoimpl.SizeCache
  3412. unknownFields protoimpl.UnknownFields
  3413. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
  3414. PageSize int64 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  3415. Order string `protobuf:"bytes,3,opt,name=order,proto3" json:"order,omitempty"` // 排序字段及方向 例: id desc
  3416. }
  3417. func (x *FindAppListReq) Reset() {
  3418. *x = FindAppListReq{}
  3419. if protoimpl.UnsafeEnabled {
  3420. mi := &file_datacenter_proto_msgTypes[36]
  3421. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3422. ms.StoreMessageInfo(mi)
  3423. }
  3424. }
  3425. func (x *FindAppListReq) String() string {
  3426. return protoimpl.X.MessageStringOf(x)
  3427. }
  3428. func (*FindAppListReq) ProtoMessage() {}
  3429. func (x *FindAppListReq) ProtoReflect() protoreflect.Message {
  3430. mi := &file_datacenter_proto_msgTypes[36]
  3431. if protoimpl.UnsafeEnabled && x != nil {
  3432. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3433. if ms.LoadMessageInfo() == nil {
  3434. ms.StoreMessageInfo(mi)
  3435. }
  3436. return ms
  3437. }
  3438. return mi.MessageOf(x)
  3439. }
  3440. // Deprecated: Use FindAppListReq.ProtoReflect.Descriptor instead.
  3441. func (*FindAppListReq) Descriptor() ([]byte, []int) {
  3442. return file_datacenter_proto_rawDescGZIP(), []int{36}
  3443. }
  3444. func (x *FindAppListReq) GetPage() int64 {
  3445. if x != nil {
  3446. return x.Page
  3447. }
  3448. return 0
  3449. }
  3450. func (x *FindAppListReq) GetPageSize() int64 {
  3451. if x != nil {
  3452. return x.PageSize
  3453. }
  3454. return 0
  3455. }
  3456. func (x *FindAppListReq) GetOrder() string {
  3457. if x != nil {
  3458. return x.Order
  3459. }
  3460. return ""
  3461. }
  3462. type FindAppListResp struct {
  3463. state protoimpl.MessageState
  3464. sizeCache protoimpl.SizeCache
  3465. unknownFields protoimpl.UnknownFields
  3466. List []*AppInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3467. Pagination *Pagination `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
  3468. }
  3469. func (x *FindAppListResp) Reset() {
  3470. *x = FindAppListResp{}
  3471. if protoimpl.UnsafeEnabled {
  3472. mi := &file_datacenter_proto_msgTypes[37]
  3473. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3474. ms.StoreMessageInfo(mi)
  3475. }
  3476. }
  3477. func (x *FindAppListResp) String() string {
  3478. return protoimpl.X.MessageStringOf(x)
  3479. }
  3480. func (*FindAppListResp) ProtoMessage() {}
  3481. func (x *FindAppListResp) ProtoReflect() protoreflect.Message {
  3482. mi := &file_datacenter_proto_msgTypes[37]
  3483. if protoimpl.UnsafeEnabled && x != nil {
  3484. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3485. if ms.LoadMessageInfo() == nil {
  3486. ms.StoreMessageInfo(mi)
  3487. }
  3488. return ms
  3489. }
  3490. return mi.MessageOf(x)
  3491. }
  3492. // Deprecated: Use FindAppListResp.ProtoReflect.Descriptor instead.
  3493. func (*FindAppListResp) Descriptor() ([]byte, []int) {
  3494. return file_datacenter_proto_rawDescGZIP(), []int{37}
  3495. }
  3496. func (x *FindAppListResp) GetList() []*AppInfo {
  3497. if x != nil {
  3498. return x.List
  3499. }
  3500. return nil
  3501. }
  3502. func (x *FindAppListResp) GetPagination() *Pagination {
  3503. if x != nil {
  3504. return x.Pagination
  3505. }
  3506. return nil
  3507. }
  3508. type GetAppInfoReq struct {
  3509. state protoimpl.MessageState
  3510. sizeCache protoimpl.SizeCache
  3511. unknownFields protoimpl.UnknownFields
  3512. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  3513. }
  3514. func (x *GetAppInfoReq) Reset() {
  3515. *x = GetAppInfoReq{}
  3516. if protoimpl.UnsafeEnabled {
  3517. mi := &file_datacenter_proto_msgTypes[38]
  3518. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3519. ms.StoreMessageInfo(mi)
  3520. }
  3521. }
  3522. func (x *GetAppInfoReq) String() string {
  3523. return protoimpl.X.MessageStringOf(x)
  3524. }
  3525. func (*GetAppInfoReq) ProtoMessage() {}
  3526. func (x *GetAppInfoReq) ProtoReflect() protoreflect.Message {
  3527. mi := &file_datacenter_proto_msgTypes[38]
  3528. if protoimpl.UnsafeEnabled && x != nil {
  3529. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3530. if ms.LoadMessageInfo() == nil {
  3531. ms.StoreMessageInfo(mi)
  3532. }
  3533. return ms
  3534. }
  3535. return mi.MessageOf(x)
  3536. }
  3537. // Deprecated: Use GetAppInfoReq.ProtoReflect.Descriptor instead.
  3538. func (*GetAppInfoReq) Descriptor() ([]byte, []int) {
  3539. return file_datacenter_proto_rawDescGZIP(), []int{38}
  3540. }
  3541. func (x *GetAppInfoReq) GetAppName() string {
  3542. if x != nil {
  3543. return x.AppName
  3544. }
  3545. return ""
  3546. }
  3547. type GetAppInfoResp struct {
  3548. state protoimpl.MessageState
  3549. sizeCache protoimpl.SizeCache
  3550. unknownFields protoimpl.UnknownFields
  3551. AppInfo *AppInfo `protobuf:"bytes,1,opt,name=app_info,json=appInfo,proto3" json:"app_info,omitempty"`
  3552. }
  3553. func (x *GetAppInfoResp) Reset() {
  3554. *x = GetAppInfoResp{}
  3555. if protoimpl.UnsafeEnabled {
  3556. mi := &file_datacenter_proto_msgTypes[39]
  3557. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3558. ms.StoreMessageInfo(mi)
  3559. }
  3560. }
  3561. func (x *GetAppInfoResp) String() string {
  3562. return protoimpl.X.MessageStringOf(x)
  3563. }
  3564. func (*GetAppInfoResp) ProtoMessage() {}
  3565. func (x *GetAppInfoResp) ProtoReflect() protoreflect.Message {
  3566. mi := &file_datacenter_proto_msgTypes[39]
  3567. if protoimpl.UnsafeEnabled && x != nil {
  3568. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3569. if ms.LoadMessageInfo() == nil {
  3570. ms.StoreMessageInfo(mi)
  3571. }
  3572. return ms
  3573. }
  3574. return mi.MessageOf(x)
  3575. }
  3576. // Deprecated: Use GetAppInfoResp.ProtoReflect.Descriptor instead.
  3577. func (*GetAppInfoResp) Descriptor() ([]byte, []int) {
  3578. return file_datacenter_proto_rawDescGZIP(), []int{39}
  3579. }
  3580. func (x *GetAppInfoResp) GetAppInfo() *AppInfo {
  3581. if x != nil {
  3582. return x.AppInfo
  3583. }
  3584. return nil
  3585. }
  3586. type CreateAppInfoReq struct {
  3587. state protoimpl.MessageState
  3588. sizeCache protoimpl.SizeCache
  3589. unknownFields protoimpl.UnknownFields
  3590. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  3591. ProjectIds []int64 `protobuf:"varint,2,rep,packed,name=project_ids,json=projectIds,proto3" json:"project_ids,omitempty"`
  3592. Expire int64 `protobuf:"varint,3,opt,name=expire,proto3" json:"expire,omitempty"`
  3593. }
  3594. func (x *CreateAppInfoReq) Reset() {
  3595. *x = CreateAppInfoReq{}
  3596. if protoimpl.UnsafeEnabled {
  3597. mi := &file_datacenter_proto_msgTypes[40]
  3598. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3599. ms.StoreMessageInfo(mi)
  3600. }
  3601. }
  3602. func (x *CreateAppInfoReq) String() string {
  3603. return protoimpl.X.MessageStringOf(x)
  3604. }
  3605. func (*CreateAppInfoReq) ProtoMessage() {}
  3606. func (x *CreateAppInfoReq) ProtoReflect() protoreflect.Message {
  3607. mi := &file_datacenter_proto_msgTypes[40]
  3608. if protoimpl.UnsafeEnabled && x != nil {
  3609. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3610. if ms.LoadMessageInfo() == nil {
  3611. ms.StoreMessageInfo(mi)
  3612. }
  3613. return ms
  3614. }
  3615. return mi.MessageOf(x)
  3616. }
  3617. // Deprecated: Use CreateAppInfoReq.ProtoReflect.Descriptor instead.
  3618. func (*CreateAppInfoReq) Descriptor() ([]byte, []int) {
  3619. return file_datacenter_proto_rawDescGZIP(), []int{40}
  3620. }
  3621. func (x *CreateAppInfoReq) GetAppName() string {
  3622. if x != nil {
  3623. return x.AppName
  3624. }
  3625. return ""
  3626. }
  3627. func (x *CreateAppInfoReq) GetProjectIds() []int64 {
  3628. if x != nil {
  3629. return x.ProjectIds
  3630. }
  3631. return nil
  3632. }
  3633. func (x *CreateAppInfoReq) GetExpire() int64 {
  3634. if x != nil {
  3635. return x.Expire
  3636. }
  3637. return 0
  3638. }
  3639. type CreateAppInfoResp struct {
  3640. state protoimpl.MessageState
  3641. sizeCache protoimpl.SizeCache
  3642. unknownFields protoimpl.UnknownFields
  3643. AppInfo *AppInfo `protobuf:"bytes,1,opt,name=app_info,json=appInfo,proto3" json:"app_info,omitempty"`
  3644. }
  3645. func (x *CreateAppInfoResp) Reset() {
  3646. *x = CreateAppInfoResp{}
  3647. if protoimpl.UnsafeEnabled {
  3648. mi := &file_datacenter_proto_msgTypes[41]
  3649. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3650. ms.StoreMessageInfo(mi)
  3651. }
  3652. }
  3653. func (x *CreateAppInfoResp) String() string {
  3654. return protoimpl.X.MessageStringOf(x)
  3655. }
  3656. func (*CreateAppInfoResp) ProtoMessage() {}
  3657. func (x *CreateAppInfoResp) ProtoReflect() protoreflect.Message {
  3658. mi := &file_datacenter_proto_msgTypes[41]
  3659. if protoimpl.UnsafeEnabled && x != nil {
  3660. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3661. if ms.LoadMessageInfo() == nil {
  3662. ms.StoreMessageInfo(mi)
  3663. }
  3664. return ms
  3665. }
  3666. return mi.MessageOf(x)
  3667. }
  3668. // Deprecated: Use CreateAppInfoResp.ProtoReflect.Descriptor instead.
  3669. func (*CreateAppInfoResp) Descriptor() ([]byte, []int) {
  3670. return file_datacenter_proto_rawDescGZIP(), []int{41}
  3671. }
  3672. func (x *CreateAppInfoResp) GetAppInfo() *AppInfo {
  3673. if x != nil {
  3674. return x.AppInfo
  3675. }
  3676. return nil
  3677. }
  3678. type RemoveAppInfoReq struct {
  3679. state protoimpl.MessageState
  3680. sizeCache protoimpl.SizeCache
  3681. unknownFields protoimpl.UnknownFields
  3682. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  3683. }
  3684. func (x *RemoveAppInfoReq) Reset() {
  3685. *x = RemoveAppInfoReq{}
  3686. if protoimpl.UnsafeEnabled {
  3687. mi := &file_datacenter_proto_msgTypes[42]
  3688. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3689. ms.StoreMessageInfo(mi)
  3690. }
  3691. }
  3692. func (x *RemoveAppInfoReq) String() string {
  3693. return protoimpl.X.MessageStringOf(x)
  3694. }
  3695. func (*RemoveAppInfoReq) ProtoMessage() {}
  3696. func (x *RemoveAppInfoReq) ProtoReflect() protoreflect.Message {
  3697. mi := &file_datacenter_proto_msgTypes[42]
  3698. if protoimpl.UnsafeEnabled && x != nil {
  3699. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3700. if ms.LoadMessageInfo() == nil {
  3701. ms.StoreMessageInfo(mi)
  3702. }
  3703. return ms
  3704. }
  3705. return mi.MessageOf(x)
  3706. }
  3707. // Deprecated: Use RemoveAppInfoReq.ProtoReflect.Descriptor instead.
  3708. func (*RemoveAppInfoReq) Descriptor() ([]byte, []int) {
  3709. return file_datacenter_proto_rawDescGZIP(), []int{42}
  3710. }
  3711. func (x *RemoveAppInfoReq) GetAppName() string {
  3712. if x != nil {
  3713. return x.AppName
  3714. }
  3715. return ""
  3716. }
  3717. type RemoveAppInfoResp struct {
  3718. state protoimpl.MessageState
  3719. sizeCache protoimpl.SizeCache
  3720. unknownFields protoimpl.UnknownFields
  3721. Ok bool `protobuf:"varint,1,opt,name=ok,proto3" json:"ok,omitempty"`
  3722. }
  3723. func (x *RemoveAppInfoResp) Reset() {
  3724. *x = RemoveAppInfoResp{}
  3725. if protoimpl.UnsafeEnabled {
  3726. mi := &file_datacenter_proto_msgTypes[43]
  3727. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3728. ms.StoreMessageInfo(mi)
  3729. }
  3730. }
  3731. func (x *RemoveAppInfoResp) String() string {
  3732. return protoimpl.X.MessageStringOf(x)
  3733. }
  3734. func (*RemoveAppInfoResp) ProtoMessage() {}
  3735. func (x *RemoveAppInfoResp) ProtoReflect() protoreflect.Message {
  3736. mi := &file_datacenter_proto_msgTypes[43]
  3737. if protoimpl.UnsafeEnabled && x != nil {
  3738. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3739. if ms.LoadMessageInfo() == nil {
  3740. ms.StoreMessageInfo(mi)
  3741. }
  3742. return ms
  3743. }
  3744. return mi.MessageOf(x)
  3745. }
  3746. // Deprecated: Use RemoveAppInfoResp.ProtoReflect.Descriptor instead.
  3747. func (*RemoveAppInfoResp) Descriptor() ([]byte, []int) {
  3748. return file_datacenter_proto_rawDescGZIP(), []int{43}
  3749. }
  3750. func (x *RemoveAppInfoResp) GetOk() bool {
  3751. if x != nil {
  3752. return x.Ok
  3753. }
  3754. return false
  3755. }
  3756. type DisableAppInfoReq struct {
  3757. state protoimpl.MessageState
  3758. sizeCache protoimpl.SizeCache
  3759. unknownFields protoimpl.UnknownFields
  3760. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  3761. }
  3762. func (x *DisableAppInfoReq) Reset() {
  3763. *x = DisableAppInfoReq{}
  3764. if protoimpl.UnsafeEnabled {
  3765. mi := &file_datacenter_proto_msgTypes[44]
  3766. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3767. ms.StoreMessageInfo(mi)
  3768. }
  3769. }
  3770. func (x *DisableAppInfoReq) String() string {
  3771. return protoimpl.X.MessageStringOf(x)
  3772. }
  3773. func (*DisableAppInfoReq) ProtoMessage() {}
  3774. func (x *DisableAppInfoReq) ProtoReflect() protoreflect.Message {
  3775. mi := &file_datacenter_proto_msgTypes[44]
  3776. if protoimpl.UnsafeEnabled && x != nil {
  3777. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3778. if ms.LoadMessageInfo() == nil {
  3779. ms.StoreMessageInfo(mi)
  3780. }
  3781. return ms
  3782. }
  3783. return mi.MessageOf(x)
  3784. }
  3785. // Deprecated: Use DisableAppInfoReq.ProtoReflect.Descriptor instead.
  3786. func (*DisableAppInfoReq) Descriptor() ([]byte, []int) {
  3787. return file_datacenter_proto_rawDescGZIP(), []int{44}
  3788. }
  3789. func (x *DisableAppInfoReq) GetAppName() string {
  3790. if x != nil {
  3791. return x.AppName
  3792. }
  3793. return ""
  3794. }
  3795. type DisableAppInfoResp struct {
  3796. state protoimpl.MessageState
  3797. sizeCache protoimpl.SizeCache
  3798. unknownFields protoimpl.UnknownFields
  3799. Ok bool `protobuf:"varint,1,opt,name=ok,proto3" json:"ok,omitempty"`
  3800. }
  3801. func (x *DisableAppInfoResp) Reset() {
  3802. *x = DisableAppInfoResp{}
  3803. if protoimpl.UnsafeEnabled {
  3804. mi := &file_datacenter_proto_msgTypes[45]
  3805. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3806. ms.StoreMessageInfo(mi)
  3807. }
  3808. }
  3809. func (x *DisableAppInfoResp) String() string {
  3810. return protoimpl.X.MessageStringOf(x)
  3811. }
  3812. func (*DisableAppInfoResp) ProtoMessage() {}
  3813. func (x *DisableAppInfoResp) ProtoReflect() protoreflect.Message {
  3814. mi := &file_datacenter_proto_msgTypes[45]
  3815. if protoimpl.UnsafeEnabled && x != nil {
  3816. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3817. if ms.LoadMessageInfo() == nil {
  3818. ms.StoreMessageInfo(mi)
  3819. }
  3820. return ms
  3821. }
  3822. return mi.MessageOf(x)
  3823. }
  3824. // Deprecated: Use DisableAppInfoResp.ProtoReflect.Descriptor instead.
  3825. func (*DisableAppInfoResp) Descriptor() ([]byte, []int) {
  3826. return file_datacenter_proto_rawDescGZIP(), []int{45}
  3827. }
  3828. func (x *DisableAppInfoResp) GetOk() bool {
  3829. if x != nil {
  3830. return x.Ok
  3831. }
  3832. return false
  3833. }
  3834. type EnableAppInfoReq struct {
  3835. state protoimpl.MessageState
  3836. sizeCache protoimpl.SizeCache
  3837. unknownFields protoimpl.UnknownFields
  3838. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  3839. }
  3840. func (x *EnableAppInfoReq) Reset() {
  3841. *x = EnableAppInfoReq{}
  3842. if protoimpl.UnsafeEnabled {
  3843. mi := &file_datacenter_proto_msgTypes[46]
  3844. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3845. ms.StoreMessageInfo(mi)
  3846. }
  3847. }
  3848. func (x *EnableAppInfoReq) String() string {
  3849. return protoimpl.X.MessageStringOf(x)
  3850. }
  3851. func (*EnableAppInfoReq) ProtoMessage() {}
  3852. func (x *EnableAppInfoReq) ProtoReflect() protoreflect.Message {
  3853. mi := &file_datacenter_proto_msgTypes[46]
  3854. if protoimpl.UnsafeEnabled && x != nil {
  3855. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3856. if ms.LoadMessageInfo() == nil {
  3857. ms.StoreMessageInfo(mi)
  3858. }
  3859. return ms
  3860. }
  3861. return mi.MessageOf(x)
  3862. }
  3863. // Deprecated: Use EnableAppInfoReq.ProtoReflect.Descriptor instead.
  3864. func (*EnableAppInfoReq) Descriptor() ([]byte, []int) {
  3865. return file_datacenter_proto_rawDescGZIP(), []int{46}
  3866. }
  3867. func (x *EnableAppInfoReq) GetAppName() string {
  3868. if x != nil {
  3869. return x.AppName
  3870. }
  3871. return ""
  3872. }
  3873. type EnableAppInfoResp struct {
  3874. state protoimpl.MessageState
  3875. sizeCache protoimpl.SizeCache
  3876. unknownFields protoimpl.UnknownFields
  3877. Ok bool `protobuf:"varint,1,opt,name=ok,proto3" json:"ok,omitempty"`
  3878. }
  3879. func (x *EnableAppInfoResp) Reset() {
  3880. *x = EnableAppInfoResp{}
  3881. if protoimpl.UnsafeEnabled {
  3882. mi := &file_datacenter_proto_msgTypes[47]
  3883. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3884. ms.StoreMessageInfo(mi)
  3885. }
  3886. }
  3887. func (x *EnableAppInfoResp) String() string {
  3888. return protoimpl.X.MessageStringOf(x)
  3889. }
  3890. func (*EnableAppInfoResp) ProtoMessage() {}
  3891. func (x *EnableAppInfoResp) ProtoReflect() protoreflect.Message {
  3892. mi := &file_datacenter_proto_msgTypes[47]
  3893. if protoimpl.UnsafeEnabled && x != nil {
  3894. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3895. if ms.LoadMessageInfo() == nil {
  3896. ms.StoreMessageInfo(mi)
  3897. }
  3898. return ms
  3899. }
  3900. return mi.MessageOf(x)
  3901. }
  3902. // Deprecated: Use EnableAppInfoResp.ProtoReflect.Descriptor instead.
  3903. func (*EnableAppInfoResp) Descriptor() ([]byte, []int) {
  3904. return file_datacenter_proto_rawDescGZIP(), []int{47}
  3905. }
  3906. func (x *EnableAppInfoResp) GetOk() bool {
  3907. if x != nil {
  3908. return x.Ok
  3909. }
  3910. return false
  3911. }
  3912. type ResetAppSecretReq struct {
  3913. state protoimpl.MessageState
  3914. sizeCache protoimpl.SizeCache
  3915. unknownFields protoimpl.UnknownFields
  3916. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  3917. }
  3918. func (x *ResetAppSecretReq) Reset() {
  3919. *x = ResetAppSecretReq{}
  3920. if protoimpl.UnsafeEnabled {
  3921. mi := &file_datacenter_proto_msgTypes[48]
  3922. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3923. ms.StoreMessageInfo(mi)
  3924. }
  3925. }
  3926. func (x *ResetAppSecretReq) String() string {
  3927. return protoimpl.X.MessageStringOf(x)
  3928. }
  3929. func (*ResetAppSecretReq) ProtoMessage() {}
  3930. func (x *ResetAppSecretReq) ProtoReflect() protoreflect.Message {
  3931. mi := &file_datacenter_proto_msgTypes[48]
  3932. if protoimpl.UnsafeEnabled && x != nil {
  3933. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3934. if ms.LoadMessageInfo() == nil {
  3935. ms.StoreMessageInfo(mi)
  3936. }
  3937. return ms
  3938. }
  3939. return mi.MessageOf(x)
  3940. }
  3941. // Deprecated: Use ResetAppSecretReq.ProtoReflect.Descriptor instead.
  3942. func (*ResetAppSecretReq) Descriptor() ([]byte, []int) {
  3943. return file_datacenter_proto_rawDescGZIP(), []int{48}
  3944. }
  3945. func (x *ResetAppSecretReq) GetAppName() string {
  3946. if x != nil {
  3947. return x.AppName
  3948. }
  3949. return ""
  3950. }
  3951. type ResetAppSecretResp struct {
  3952. state protoimpl.MessageState
  3953. sizeCache protoimpl.SizeCache
  3954. unknownFields protoimpl.UnknownFields
  3955. Secret string `protobuf:"bytes,1,opt,name=secret,proto3" json:"secret,omitempty"`
  3956. }
  3957. func (x *ResetAppSecretResp) Reset() {
  3958. *x = ResetAppSecretResp{}
  3959. if protoimpl.UnsafeEnabled {
  3960. mi := &file_datacenter_proto_msgTypes[49]
  3961. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3962. ms.StoreMessageInfo(mi)
  3963. }
  3964. }
  3965. func (x *ResetAppSecretResp) String() string {
  3966. return protoimpl.X.MessageStringOf(x)
  3967. }
  3968. func (*ResetAppSecretResp) ProtoMessage() {}
  3969. func (x *ResetAppSecretResp) ProtoReflect() protoreflect.Message {
  3970. mi := &file_datacenter_proto_msgTypes[49]
  3971. if protoimpl.UnsafeEnabled && x != nil {
  3972. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3973. if ms.LoadMessageInfo() == nil {
  3974. ms.StoreMessageInfo(mi)
  3975. }
  3976. return ms
  3977. }
  3978. return mi.MessageOf(x)
  3979. }
  3980. // Deprecated: Use ResetAppSecretResp.ProtoReflect.Descriptor instead.
  3981. func (*ResetAppSecretResp) Descriptor() ([]byte, []int) {
  3982. return file_datacenter_proto_rawDescGZIP(), []int{49}
  3983. }
  3984. func (x *ResetAppSecretResp) GetSecret() string {
  3985. if x != nil {
  3986. return x.Secret
  3987. }
  3988. return ""
  3989. }
  3990. type ExpireAppSecretReq struct {
  3991. state protoimpl.MessageState
  3992. sizeCache protoimpl.SizeCache
  3993. unknownFields protoimpl.UnknownFields
  3994. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  3995. Expire int64 `protobuf:"varint,3,opt,name=expire,proto3" json:"expire,omitempty"`
  3996. }
  3997. func (x *ExpireAppSecretReq) Reset() {
  3998. *x = ExpireAppSecretReq{}
  3999. if protoimpl.UnsafeEnabled {
  4000. mi := &file_datacenter_proto_msgTypes[50]
  4001. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4002. ms.StoreMessageInfo(mi)
  4003. }
  4004. }
  4005. func (x *ExpireAppSecretReq) String() string {
  4006. return protoimpl.X.MessageStringOf(x)
  4007. }
  4008. func (*ExpireAppSecretReq) ProtoMessage() {}
  4009. func (x *ExpireAppSecretReq) ProtoReflect() protoreflect.Message {
  4010. mi := &file_datacenter_proto_msgTypes[50]
  4011. if protoimpl.UnsafeEnabled && x != nil {
  4012. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4013. if ms.LoadMessageInfo() == nil {
  4014. ms.StoreMessageInfo(mi)
  4015. }
  4016. return ms
  4017. }
  4018. return mi.MessageOf(x)
  4019. }
  4020. // Deprecated: Use ExpireAppSecretReq.ProtoReflect.Descriptor instead.
  4021. func (*ExpireAppSecretReq) Descriptor() ([]byte, []int) {
  4022. return file_datacenter_proto_rawDescGZIP(), []int{50}
  4023. }
  4024. func (x *ExpireAppSecretReq) GetAppName() string {
  4025. if x != nil {
  4026. return x.AppName
  4027. }
  4028. return ""
  4029. }
  4030. func (x *ExpireAppSecretReq) GetExpire() int64 {
  4031. if x != nil {
  4032. return x.Expire
  4033. }
  4034. return 0
  4035. }
  4036. type ExpireAppSecretResp struct {
  4037. state protoimpl.MessageState
  4038. sizeCache protoimpl.SizeCache
  4039. unknownFields protoimpl.UnknownFields
  4040. ExpireAt string `protobuf:"bytes,3,opt,name=expire_at,json=expireAt,proto3" json:"expire_at,omitempty"`
  4041. }
  4042. func (x *ExpireAppSecretResp) Reset() {
  4043. *x = ExpireAppSecretResp{}
  4044. if protoimpl.UnsafeEnabled {
  4045. mi := &file_datacenter_proto_msgTypes[51]
  4046. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4047. ms.StoreMessageInfo(mi)
  4048. }
  4049. }
  4050. func (x *ExpireAppSecretResp) String() string {
  4051. return protoimpl.X.MessageStringOf(x)
  4052. }
  4053. func (*ExpireAppSecretResp) ProtoMessage() {}
  4054. func (x *ExpireAppSecretResp) ProtoReflect() protoreflect.Message {
  4055. mi := &file_datacenter_proto_msgTypes[51]
  4056. if protoimpl.UnsafeEnabled && x != nil {
  4057. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4058. if ms.LoadMessageInfo() == nil {
  4059. ms.StoreMessageInfo(mi)
  4060. }
  4061. return ms
  4062. }
  4063. return mi.MessageOf(x)
  4064. }
  4065. // Deprecated: Use ExpireAppSecretResp.ProtoReflect.Descriptor instead.
  4066. func (*ExpireAppSecretResp) Descriptor() ([]byte, []int) {
  4067. return file_datacenter_proto_rawDescGZIP(), []int{51}
  4068. }
  4069. func (x *ExpireAppSecretResp) GetExpireAt() string {
  4070. if x != nil {
  4071. return x.ExpireAt
  4072. }
  4073. return ""
  4074. }
  4075. type ResetAppProjectReq struct {
  4076. state protoimpl.MessageState
  4077. sizeCache protoimpl.SizeCache
  4078. unknownFields protoimpl.UnknownFields
  4079. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  4080. ProjectIds []int64 `protobuf:"varint,2,rep,packed,name=project_ids,json=projectIds,proto3" json:"project_ids,omitempty"`
  4081. }
  4082. func (x *ResetAppProjectReq) Reset() {
  4083. *x = ResetAppProjectReq{}
  4084. if protoimpl.UnsafeEnabled {
  4085. mi := &file_datacenter_proto_msgTypes[52]
  4086. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4087. ms.StoreMessageInfo(mi)
  4088. }
  4089. }
  4090. func (x *ResetAppProjectReq) String() string {
  4091. return protoimpl.X.MessageStringOf(x)
  4092. }
  4093. func (*ResetAppProjectReq) ProtoMessage() {}
  4094. func (x *ResetAppProjectReq) ProtoReflect() protoreflect.Message {
  4095. mi := &file_datacenter_proto_msgTypes[52]
  4096. if protoimpl.UnsafeEnabled && x != nil {
  4097. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4098. if ms.LoadMessageInfo() == nil {
  4099. ms.StoreMessageInfo(mi)
  4100. }
  4101. return ms
  4102. }
  4103. return mi.MessageOf(x)
  4104. }
  4105. // Deprecated: Use ResetAppProjectReq.ProtoReflect.Descriptor instead.
  4106. func (*ResetAppProjectReq) Descriptor() ([]byte, []int) {
  4107. return file_datacenter_proto_rawDescGZIP(), []int{52}
  4108. }
  4109. func (x *ResetAppProjectReq) GetAppName() string {
  4110. if x != nil {
  4111. return x.AppName
  4112. }
  4113. return ""
  4114. }
  4115. func (x *ResetAppProjectReq) GetProjectIds() []int64 {
  4116. if x != nil {
  4117. return x.ProjectIds
  4118. }
  4119. return nil
  4120. }
  4121. type ResetAppProjectResp struct {
  4122. state protoimpl.MessageState
  4123. sizeCache protoimpl.SizeCache
  4124. unknownFields protoimpl.UnknownFields
  4125. RemoveProjectIds []int64 `protobuf:"varint,1,rep,packed,name=remove_project_ids,json=removeProjectIds,proto3" json:"remove_project_ids,omitempty"`
  4126. }
  4127. func (x *ResetAppProjectResp) Reset() {
  4128. *x = ResetAppProjectResp{}
  4129. if protoimpl.UnsafeEnabled {
  4130. mi := &file_datacenter_proto_msgTypes[53]
  4131. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4132. ms.StoreMessageInfo(mi)
  4133. }
  4134. }
  4135. func (x *ResetAppProjectResp) String() string {
  4136. return protoimpl.X.MessageStringOf(x)
  4137. }
  4138. func (*ResetAppProjectResp) ProtoMessage() {}
  4139. func (x *ResetAppProjectResp) ProtoReflect() protoreflect.Message {
  4140. mi := &file_datacenter_proto_msgTypes[53]
  4141. if protoimpl.UnsafeEnabled && x != nil {
  4142. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4143. if ms.LoadMessageInfo() == nil {
  4144. ms.StoreMessageInfo(mi)
  4145. }
  4146. return ms
  4147. }
  4148. return mi.MessageOf(x)
  4149. }
  4150. // Deprecated: Use ResetAppProjectResp.ProtoReflect.Descriptor instead.
  4151. func (*ResetAppProjectResp) Descriptor() ([]byte, []int) {
  4152. return file_datacenter_proto_rawDescGZIP(), []int{53}
  4153. }
  4154. func (x *ResetAppProjectResp) GetRemoveProjectIds() []int64 {
  4155. if x != nil {
  4156. return x.RemoveProjectIds
  4157. }
  4158. return nil
  4159. }
  4160. type FindDataDescribeReq struct {
  4161. state protoimpl.MessageState
  4162. sizeCache protoimpl.SizeCache
  4163. unknownFields protoimpl.UnknownFields
  4164. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  4165. Items []string `protobuf:"bytes,2,rep,name=items,proto3" json:"items,omitempty"`
  4166. St string `protobuf:"bytes,3,opt,name=st,proto3" json:"st,omitempty"`
  4167. Et string `protobuf:"bytes,4,opt,name=et,proto3" json:"et,omitempty"`
  4168. }
  4169. func (x *FindDataDescribeReq) Reset() {
  4170. *x = FindDataDescribeReq{}
  4171. if protoimpl.UnsafeEnabled {
  4172. mi := &file_datacenter_proto_msgTypes[54]
  4173. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4174. ms.StoreMessageInfo(mi)
  4175. }
  4176. }
  4177. func (x *FindDataDescribeReq) String() string {
  4178. return protoimpl.X.MessageStringOf(x)
  4179. }
  4180. func (*FindDataDescribeReq) ProtoMessage() {}
  4181. func (x *FindDataDescribeReq) ProtoReflect() protoreflect.Message {
  4182. mi := &file_datacenter_proto_msgTypes[54]
  4183. if protoimpl.UnsafeEnabled && x != nil {
  4184. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4185. if ms.LoadMessageInfo() == nil {
  4186. ms.StoreMessageInfo(mi)
  4187. }
  4188. return ms
  4189. }
  4190. return mi.MessageOf(x)
  4191. }
  4192. // Deprecated: Use FindDataDescribeReq.ProtoReflect.Descriptor instead.
  4193. func (*FindDataDescribeReq) Descriptor() ([]byte, []int) {
  4194. return file_datacenter_proto_rawDescGZIP(), []int{54}
  4195. }
  4196. func (x *FindDataDescribeReq) GetProjectId() int64 {
  4197. if x != nil {
  4198. return x.ProjectId
  4199. }
  4200. return 0
  4201. }
  4202. func (x *FindDataDescribeReq) GetItems() []string {
  4203. if x != nil {
  4204. return x.Items
  4205. }
  4206. return nil
  4207. }
  4208. func (x *FindDataDescribeReq) GetSt() string {
  4209. if x != nil {
  4210. return x.St
  4211. }
  4212. return ""
  4213. }
  4214. func (x *FindDataDescribeReq) GetEt() string {
  4215. if x != nil {
  4216. return x.Et
  4217. }
  4218. return ""
  4219. }
  4220. type FindDataDescribeResp struct {
  4221. state protoimpl.MessageState
  4222. sizeCache protoimpl.SizeCache
  4223. unknownFields protoimpl.UnknownFields
  4224. List map[string]*DataDescribeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  4225. }
  4226. func (x *FindDataDescribeResp) Reset() {
  4227. *x = FindDataDescribeResp{}
  4228. if protoimpl.UnsafeEnabled {
  4229. mi := &file_datacenter_proto_msgTypes[55]
  4230. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4231. ms.StoreMessageInfo(mi)
  4232. }
  4233. }
  4234. func (x *FindDataDescribeResp) String() string {
  4235. return protoimpl.X.MessageStringOf(x)
  4236. }
  4237. func (*FindDataDescribeResp) ProtoMessage() {}
  4238. func (x *FindDataDescribeResp) ProtoReflect() protoreflect.Message {
  4239. mi := &file_datacenter_proto_msgTypes[55]
  4240. if protoimpl.UnsafeEnabled && x != nil {
  4241. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4242. if ms.LoadMessageInfo() == nil {
  4243. ms.StoreMessageInfo(mi)
  4244. }
  4245. return ms
  4246. }
  4247. return mi.MessageOf(x)
  4248. }
  4249. // Deprecated: Use FindDataDescribeResp.ProtoReflect.Descriptor instead.
  4250. func (*FindDataDescribeResp) Descriptor() ([]byte, []int) {
  4251. return file_datacenter_proto_rawDescGZIP(), []int{55}
  4252. }
  4253. func (x *FindDataDescribeResp) GetList() map[string]*DataDescribeInfo {
  4254. if x != nil {
  4255. return x.List
  4256. }
  4257. return nil
  4258. }
  4259. type FindDataCorrelationReq struct {
  4260. state protoimpl.MessageState
  4261. sizeCache protoimpl.SizeCache
  4262. unknownFields protoimpl.UnknownFields
  4263. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  4264. Items []string `protobuf:"bytes,2,rep,name=items,proto3" json:"items,omitempty"`
  4265. St string `protobuf:"bytes,3,opt,name=st,proto3" json:"st,omitempty"`
  4266. Et string `protobuf:"bytes,4,opt,name=et,proto3" json:"et,omitempty"`
  4267. }
  4268. func (x *FindDataCorrelationReq) Reset() {
  4269. *x = FindDataCorrelationReq{}
  4270. if protoimpl.UnsafeEnabled {
  4271. mi := &file_datacenter_proto_msgTypes[56]
  4272. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4273. ms.StoreMessageInfo(mi)
  4274. }
  4275. }
  4276. func (x *FindDataCorrelationReq) String() string {
  4277. return protoimpl.X.MessageStringOf(x)
  4278. }
  4279. func (*FindDataCorrelationReq) ProtoMessage() {}
  4280. func (x *FindDataCorrelationReq) ProtoReflect() protoreflect.Message {
  4281. mi := &file_datacenter_proto_msgTypes[56]
  4282. if protoimpl.UnsafeEnabled && x != nil {
  4283. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4284. if ms.LoadMessageInfo() == nil {
  4285. ms.StoreMessageInfo(mi)
  4286. }
  4287. return ms
  4288. }
  4289. return mi.MessageOf(x)
  4290. }
  4291. // Deprecated: Use FindDataCorrelationReq.ProtoReflect.Descriptor instead.
  4292. func (*FindDataCorrelationReq) Descriptor() ([]byte, []int) {
  4293. return file_datacenter_proto_rawDescGZIP(), []int{56}
  4294. }
  4295. func (x *FindDataCorrelationReq) GetProjectId() int64 {
  4296. if x != nil {
  4297. return x.ProjectId
  4298. }
  4299. return 0
  4300. }
  4301. func (x *FindDataCorrelationReq) GetItems() []string {
  4302. if x != nil {
  4303. return x.Items
  4304. }
  4305. return nil
  4306. }
  4307. func (x *FindDataCorrelationReq) GetSt() string {
  4308. if x != nil {
  4309. return x.St
  4310. }
  4311. return ""
  4312. }
  4313. func (x *FindDataCorrelationReq) GetEt() string {
  4314. if x != nil {
  4315. return x.Et
  4316. }
  4317. return ""
  4318. }
  4319. type FindDataMinAndMaxReq struct {
  4320. state protoimpl.MessageState
  4321. sizeCache protoimpl.SizeCache
  4322. unknownFields protoimpl.UnknownFields
  4323. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  4324. Items []string `protobuf:"bytes,2,rep,name=items,proto3" json:"items,omitempty"`
  4325. St string `protobuf:"bytes,3,opt,name=st,proto3" json:"st,omitempty"`
  4326. Et string `protobuf:"bytes,4,opt,name=et,proto3" json:"et,omitempty"`
  4327. }
  4328. func (x *FindDataMinAndMaxReq) Reset() {
  4329. *x = FindDataMinAndMaxReq{}
  4330. if protoimpl.UnsafeEnabled {
  4331. mi := &file_datacenter_proto_msgTypes[57]
  4332. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4333. ms.StoreMessageInfo(mi)
  4334. }
  4335. }
  4336. func (x *FindDataMinAndMaxReq) String() string {
  4337. return protoimpl.X.MessageStringOf(x)
  4338. }
  4339. func (*FindDataMinAndMaxReq) ProtoMessage() {}
  4340. func (x *FindDataMinAndMaxReq) ProtoReflect() protoreflect.Message {
  4341. mi := &file_datacenter_proto_msgTypes[57]
  4342. if protoimpl.UnsafeEnabled && x != nil {
  4343. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4344. if ms.LoadMessageInfo() == nil {
  4345. ms.StoreMessageInfo(mi)
  4346. }
  4347. return ms
  4348. }
  4349. return mi.MessageOf(x)
  4350. }
  4351. // Deprecated: Use FindDataMinAndMaxReq.ProtoReflect.Descriptor instead.
  4352. func (*FindDataMinAndMaxReq) Descriptor() ([]byte, []int) {
  4353. return file_datacenter_proto_rawDescGZIP(), []int{57}
  4354. }
  4355. func (x *FindDataMinAndMaxReq) GetProjectId() int64 {
  4356. if x != nil {
  4357. return x.ProjectId
  4358. }
  4359. return 0
  4360. }
  4361. func (x *FindDataMinAndMaxReq) GetItems() []string {
  4362. if x != nil {
  4363. return x.Items
  4364. }
  4365. return nil
  4366. }
  4367. func (x *FindDataMinAndMaxReq) GetSt() string {
  4368. if x != nil {
  4369. return x.St
  4370. }
  4371. return ""
  4372. }
  4373. func (x *FindDataMinAndMaxReq) GetEt() string {
  4374. if x != nil {
  4375. return x.Et
  4376. }
  4377. return ""
  4378. }
  4379. type FindDataMinAndMaxResp struct {
  4380. state protoimpl.MessageState
  4381. sizeCache protoimpl.SizeCache
  4382. unknownFields protoimpl.UnknownFields
  4383. List map[string]*DataMinAndMaxInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  4384. }
  4385. func (x *FindDataMinAndMaxResp) Reset() {
  4386. *x = FindDataMinAndMaxResp{}
  4387. if protoimpl.UnsafeEnabled {
  4388. mi := &file_datacenter_proto_msgTypes[58]
  4389. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4390. ms.StoreMessageInfo(mi)
  4391. }
  4392. }
  4393. func (x *FindDataMinAndMaxResp) String() string {
  4394. return protoimpl.X.MessageStringOf(x)
  4395. }
  4396. func (*FindDataMinAndMaxResp) ProtoMessage() {}
  4397. func (x *FindDataMinAndMaxResp) ProtoReflect() protoreflect.Message {
  4398. mi := &file_datacenter_proto_msgTypes[58]
  4399. if protoimpl.UnsafeEnabled && x != nil {
  4400. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4401. if ms.LoadMessageInfo() == nil {
  4402. ms.StoreMessageInfo(mi)
  4403. }
  4404. return ms
  4405. }
  4406. return mi.MessageOf(x)
  4407. }
  4408. // Deprecated: Use FindDataMinAndMaxResp.ProtoReflect.Descriptor instead.
  4409. func (*FindDataMinAndMaxResp) Descriptor() ([]byte, []int) {
  4410. return file_datacenter_proto_rawDescGZIP(), []int{58}
  4411. }
  4412. func (x *FindDataMinAndMaxResp) GetList() map[string]*DataMinAndMaxInfo {
  4413. if x != nil {
  4414. return x.List
  4415. }
  4416. return nil
  4417. }
  4418. type FindDataCorrelationResp struct {
  4419. state protoimpl.MessageState
  4420. sizeCache protoimpl.SizeCache
  4421. unknownFields protoimpl.UnknownFields
  4422. List map[string]*DataCorrelationInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  4423. }
  4424. func (x *FindDataCorrelationResp) Reset() {
  4425. *x = FindDataCorrelationResp{}
  4426. if protoimpl.UnsafeEnabled {
  4427. mi := &file_datacenter_proto_msgTypes[59]
  4428. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4429. ms.StoreMessageInfo(mi)
  4430. }
  4431. }
  4432. func (x *FindDataCorrelationResp) String() string {
  4433. return protoimpl.X.MessageStringOf(x)
  4434. }
  4435. func (*FindDataCorrelationResp) ProtoMessage() {}
  4436. func (x *FindDataCorrelationResp) ProtoReflect() protoreflect.Message {
  4437. mi := &file_datacenter_proto_msgTypes[59]
  4438. if protoimpl.UnsafeEnabled && x != nil {
  4439. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4440. if ms.LoadMessageInfo() == nil {
  4441. ms.StoreMessageInfo(mi)
  4442. }
  4443. return ms
  4444. }
  4445. return mi.MessageOf(x)
  4446. }
  4447. // Deprecated: Use FindDataCorrelationResp.ProtoReflect.Descriptor instead.
  4448. func (*FindDataCorrelationResp) Descriptor() ([]byte, []int) {
  4449. return file_datacenter_proto_rawDescGZIP(), []int{59}
  4450. }
  4451. func (x *FindDataCorrelationResp) GetList() map[string]*DataCorrelationInfo {
  4452. if x != nil {
  4453. return x.List
  4454. }
  4455. return nil
  4456. }
  4457. type HealthReq struct {
  4458. state protoimpl.MessageState
  4459. sizeCache protoimpl.SizeCache
  4460. unknownFields protoimpl.UnknownFields
  4461. }
  4462. func (x *HealthReq) Reset() {
  4463. *x = HealthReq{}
  4464. if protoimpl.UnsafeEnabled {
  4465. mi := &file_datacenter_proto_msgTypes[60]
  4466. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4467. ms.StoreMessageInfo(mi)
  4468. }
  4469. }
  4470. func (x *HealthReq) String() string {
  4471. return protoimpl.X.MessageStringOf(x)
  4472. }
  4473. func (*HealthReq) ProtoMessage() {}
  4474. func (x *HealthReq) ProtoReflect() protoreflect.Message {
  4475. mi := &file_datacenter_proto_msgTypes[60]
  4476. if protoimpl.UnsafeEnabled && x != nil {
  4477. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4478. if ms.LoadMessageInfo() == nil {
  4479. ms.StoreMessageInfo(mi)
  4480. }
  4481. return ms
  4482. }
  4483. return mi.MessageOf(x)
  4484. }
  4485. // Deprecated: Use HealthReq.ProtoReflect.Descriptor instead.
  4486. func (*HealthReq) Descriptor() ([]byte, []int) {
  4487. return file_datacenter_proto_rawDescGZIP(), []int{60}
  4488. }
  4489. type HealthResp struct {
  4490. state protoimpl.MessageState
  4491. sizeCache protoimpl.SizeCache
  4492. unknownFields protoimpl.UnknownFields
  4493. Db []string `protobuf:"bytes,1,rep,name=db,proto3" json:"db,omitempty"`
  4494. Redis []string `protobuf:"bytes,2,rep,name=redis,proto3" json:"redis,omitempty"`
  4495. Mq []string `protobuf:"bytes,3,rep,name=mq,proto3" json:"mq,omitempty"`
  4496. Msg string `protobuf:"bytes,4,opt,name=msg,proto3" json:"msg,omitempty"`
  4497. }
  4498. func (x *HealthResp) Reset() {
  4499. *x = HealthResp{}
  4500. if protoimpl.UnsafeEnabled {
  4501. mi := &file_datacenter_proto_msgTypes[61]
  4502. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4503. ms.StoreMessageInfo(mi)
  4504. }
  4505. }
  4506. func (x *HealthResp) String() string {
  4507. return protoimpl.X.MessageStringOf(x)
  4508. }
  4509. func (*HealthResp) ProtoMessage() {}
  4510. func (x *HealthResp) ProtoReflect() protoreflect.Message {
  4511. mi := &file_datacenter_proto_msgTypes[61]
  4512. if protoimpl.UnsafeEnabled && x != nil {
  4513. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4514. if ms.LoadMessageInfo() == nil {
  4515. ms.StoreMessageInfo(mi)
  4516. }
  4517. return ms
  4518. }
  4519. return mi.MessageOf(x)
  4520. }
  4521. // Deprecated: Use HealthResp.ProtoReflect.Descriptor instead.
  4522. func (*HealthResp) Descriptor() ([]byte, []int) {
  4523. return file_datacenter_proto_rawDescGZIP(), []int{61}
  4524. }
  4525. func (x *HealthResp) GetDb() []string {
  4526. if x != nil {
  4527. return x.Db
  4528. }
  4529. return nil
  4530. }
  4531. func (x *HealthResp) GetRedis() []string {
  4532. if x != nil {
  4533. return x.Redis
  4534. }
  4535. return nil
  4536. }
  4537. func (x *HealthResp) GetMq() []string {
  4538. if x != nil {
  4539. return x.Mq
  4540. }
  4541. return nil
  4542. }
  4543. func (x *HealthResp) GetMsg() string {
  4544. if x != nil {
  4545. return x.Msg
  4546. }
  4547. return ""
  4548. }
  4549. type CurrentItem struct {
  4550. state protoimpl.MessageState
  4551. sizeCache protoimpl.SizeCache
  4552. unknownFields protoimpl.UnknownFields
  4553. ItemName string `protobuf:"bytes,1,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  4554. Val string `protobuf:"bytes,2,opt,name=val,proto3" json:"val,omitempty"`
  4555. HTime string `protobuf:"bytes,3,opt,name=h_time,json=hTime,proto3" json:"h_time,omitempty"`
  4556. }
  4557. func (x *CurrentItem) Reset() {
  4558. *x = CurrentItem{}
  4559. if protoimpl.UnsafeEnabled {
  4560. mi := &file_datacenter_proto_msgTypes[62]
  4561. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4562. ms.StoreMessageInfo(mi)
  4563. }
  4564. }
  4565. func (x *CurrentItem) String() string {
  4566. return protoimpl.X.MessageStringOf(x)
  4567. }
  4568. func (*CurrentItem) ProtoMessage() {}
  4569. func (x *CurrentItem) ProtoReflect() protoreflect.Message {
  4570. mi := &file_datacenter_proto_msgTypes[62]
  4571. if protoimpl.UnsafeEnabled && x != nil {
  4572. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4573. if ms.LoadMessageInfo() == nil {
  4574. ms.StoreMessageInfo(mi)
  4575. }
  4576. return ms
  4577. }
  4578. return mi.MessageOf(x)
  4579. }
  4580. // Deprecated: Use CurrentItem.ProtoReflect.Descriptor instead.
  4581. func (*CurrentItem) Descriptor() ([]byte, []int) {
  4582. return file_datacenter_proto_rawDescGZIP(), []int{62}
  4583. }
  4584. func (x *CurrentItem) GetItemName() string {
  4585. if x != nil {
  4586. return x.ItemName
  4587. }
  4588. return ""
  4589. }
  4590. func (x *CurrentItem) GetVal() string {
  4591. if x != nil {
  4592. return x.Val
  4593. }
  4594. return ""
  4595. }
  4596. func (x *CurrentItem) GetHTime() string {
  4597. if x != nil {
  4598. return x.HTime
  4599. }
  4600. return ""
  4601. }
  4602. type CurrentDataReq struct {
  4603. state protoimpl.MessageState
  4604. sizeCache protoimpl.SizeCache
  4605. unknownFields protoimpl.UnknownFields
  4606. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  4607. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  4608. }
  4609. func (x *CurrentDataReq) Reset() {
  4610. *x = CurrentDataReq{}
  4611. if protoimpl.UnsafeEnabled {
  4612. mi := &file_datacenter_proto_msgTypes[63]
  4613. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4614. ms.StoreMessageInfo(mi)
  4615. }
  4616. }
  4617. func (x *CurrentDataReq) String() string {
  4618. return protoimpl.X.MessageStringOf(x)
  4619. }
  4620. func (*CurrentDataReq) ProtoMessage() {}
  4621. func (x *CurrentDataReq) ProtoReflect() protoreflect.Message {
  4622. mi := &file_datacenter_proto_msgTypes[63]
  4623. if protoimpl.UnsafeEnabled && x != nil {
  4624. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4625. if ms.LoadMessageInfo() == nil {
  4626. ms.StoreMessageInfo(mi)
  4627. }
  4628. return ms
  4629. }
  4630. return mi.MessageOf(x)
  4631. }
  4632. // Deprecated: Use CurrentDataReq.ProtoReflect.Descriptor instead.
  4633. func (*CurrentDataReq) Descriptor() ([]byte, []int) {
  4634. return file_datacenter_proto_rawDescGZIP(), []int{63}
  4635. }
  4636. func (x *CurrentDataReq) GetProjectId() int64 {
  4637. if x != nil {
  4638. return x.ProjectId
  4639. }
  4640. return 0
  4641. }
  4642. func (x *CurrentDataReq) GetItemName() string {
  4643. if x != nil {
  4644. return x.ItemName
  4645. }
  4646. return ""
  4647. }
  4648. type CurrentDataResp struct {
  4649. state protoimpl.MessageState
  4650. sizeCache protoimpl.SizeCache
  4651. unknownFields protoimpl.UnknownFields
  4652. Item []*CurrentItem `protobuf:"bytes,1,rep,name=item,proto3" json:"item,omitempty"`
  4653. }
  4654. func (x *CurrentDataResp) Reset() {
  4655. *x = CurrentDataResp{}
  4656. if protoimpl.UnsafeEnabled {
  4657. mi := &file_datacenter_proto_msgTypes[64]
  4658. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4659. ms.StoreMessageInfo(mi)
  4660. }
  4661. }
  4662. func (x *CurrentDataResp) String() string {
  4663. return protoimpl.X.MessageStringOf(x)
  4664. }
  4665. func (*CurrentDataResp) ProtoMessage() {}
  4666. func (x *CurrentDataResp) ProtoReflect() protoreflect.Message {
  4667. mi := &file_datacenter_proto_msgTypes[64]
  4668. if protoimpl.UnsafeEnabled && x != nil {
  4669. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4670. if ms.LoadMessageInfo() == nil {
  4671. ms.StoreMessageInfo(mi)
  4672. }
  4673. return ms
  4674. }
  4675. return mi.MessageOf(x)
  4676. }
  4677. // Deprecated: Use CurrentDataResp.ProtoReflect.Descriptor instead.
  4678. func (*CurrentDataResp) Descriptor() ([]byte, []int) {
  4679. return file_datacenter_proto_rawDescGZIP(), []int{64}
  4680. }
  4681. func (x *CurrentDataResp) GetItem() []*CurrentItem {
  4682. if x != nil {
  4683. return x.Item
  4684. }
  4685. return nil
  4686. }
  4687. var File_datacenter_proto protoreflect.FileDescriptor
  4688. var file_datacenter_proto_rawDesc = []byte{
  4689. 0x0a, 0x10, 0x64, 0x61, 0x74, 0x61, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f,
  4690. 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62, 0x22, 0x58, 0x0a, 0x0a, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61,
  4691. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x18,
  4692. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x1a,
  4693. 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d,
  4694. 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f,
  4695. 0x74, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c,
  4696. 0x22, 0xe8, 0x01, 0x0a, 0x10, 0x44, 0x61, 0x74, 0x61, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62,
  4697. 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01,
  4698. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6d,
  4699. 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x6d, 0x69, 0x6e, 0x12, 0x10, 0x0a,
  4700. 0x03, 0x6d, 0x61, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x6d, 0x61, 0x78, 0x12,
  4701. 0x12, 0x0a, 0x04, 0x6d, 0x65, 0x61, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04, 0x6d,
  4702. 0x65, 0x61, 0x6e, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x74, 0x64, 0x5f, 0x64, 0x65, 0x76, 0x18, 0x05,
  4703. 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x73, 0x74, 0x64, 0x44, 0x65, 0x76, 0x12, 0x17, 0x0a, 0x07,
  4704. 0x76, 0x61, 0x72, 0x5f, 0x64, 0x65, 0x76, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x76,
  4705. 0x61, 0x72, 0x44, 0x65, 0x76, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x32, 0x35, 0x18, 0x07, 0x20, 0x01,
  4706. 0x28, 0x01, 0x52, 0x03, 0x70, 0x32, 0x35, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x35, 0x30, 0x18, 0x08,
  4707. 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x70, 0x35, 0x30, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x37, 0x35,
  4708. 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x70, 0x37, 0x35, 0x12, 0x0e, 0x0a, 0x02, 0x73,
  4709. 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x65,
  4710. 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x65, 0x74, 0x22, 0x37, 0x0a, 0x11, 0x44,
  4711. 0x61, 0x74, 0x61, 0x4d, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x4d, 0x61, 0x78, 0x49, 0x6e, 0x66, 0x6f,
  4712. 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x6d,
  4713. 0x69, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x61, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52,
  4714. 0x03, 0x6d, 0x61, 0x78, 0x22, 0x44, 0x0a, 0x0c, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x49,
  4715. 0x74, 0x65, 0x6d, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x01, 0x20, 0x01,
  4716. 0x28, 0x09, 0x52, 0x04, 0x69, 0x74, 0x65, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x65, 0x66,
  4717. 0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0b, 0x63,
  4718. 0x6f, 0x65, 0x66, 0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x74, 0x22, 0xd8, 0x01, 0x0a, 0x13, 0x44,
  4719. 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e,
  4720. 0x66, 0x6f, 0x12, 0x4e, 0x0a, 0x0d, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x74,
  4721. 0x65, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x70, 0x62, 0x2e, 0x44,
  4722. 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e,
  4723. 0x66, 0x6f, 0x2e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x45,
  4724. 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0c, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x49, 0x74, 0x65,
  4725. 0x6d, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x73, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  4726. 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x65, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  4727. 0x65, 0x74, 0x1a, 0x51, 0x0a, 0x11, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x49, 0x74, 0x65,
  4728. 0x6d, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
  4729. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x26, 0x0a, 0x05, 0x76, 0x61, 0x6c,
  4730. 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65,
  4731. 0x6c, 0x61, 0x74, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
  4732. 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xb9, 0x01, 0x0a, 0x07, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66,
  4733. 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69,
  4734. 0x64, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
  4735. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b,
  4736. 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  4737. 0x03, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x73, 0x12, 0x16, 0x0a,
  4738. 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73,
  4739. 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  4740. 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1b, 0x0a,
  4741. 0x09, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x5f, 0x61, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  4742. 0x52, 0x08, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x41, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f,
  4743. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d,
  4744. 0x65, 0x22, 0xc1, 0x01, 0x0a, 0x0c, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52,
  4745. 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
  4746. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
  4747. 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  4748. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f,
  4749. 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  4750. 0x09, 0x52, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x74, 0x69, 0x6d,
  4751. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x12,
  4752. 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x70, 0x61,
  4753. 0x67, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18,
  4754. 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12,
  4755. 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  4756. 0x6f, 0x72, 0x64, 0x65, 0x72, 0x22, 0xa9, 0x07, 0x0a, 0x09, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  4757. 0x67, 0x4d, 0x66, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  4758. 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69,
  4759. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
  4760. 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64,
  4761. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43,
  4762. 0x6f, 0x64, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d,
  4763. 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10,
  4764. 0x77, 0x61, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65,
  4765. 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x05, 0x20,
  4766. 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x19, 0x0a,
  4767. 0x08, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52,
  4768. 0x07, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64,
  4769. 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b,
  4770. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x23, 0x0a, 0x0d, 0x66,
  4771. 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x08, 0x20, 0x01,
  4772. 0x28, 0x01, 0x52, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  4773. 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  4774. 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73,
  4775. 0x75, 0x72, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70,
  4776. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70,
  4777. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x10,
  4778. 0x0a, 0x03, 0x74, 0x6d, 0x70, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x74, 0x6d, 0x70,
  4779. 0x12, 0x12, 0x0a, 0x04, 0x66, 0x6c, 0x75, 0x78, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04,
  4780. 0x66, 0x6c, 0x75, 0x78, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  4781. 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52,
  4782. 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79,
  4783. 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x0e,
  4784. 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x68, 0x12, 0x22,
  4785. 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18,
  4786. 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71,
  4787. 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c,
  4788. 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x41, 0x6c,
  4789. 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x61,
  4790. 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  4791. 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  4792. 0x66, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71,
  4793. 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  4794. 0x5f, 0x66, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75,
  4795. 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77,
  4796. 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64,
  4797. 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  4798. 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f,
  4799. 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64,
  4800. 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a,
  4801. 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72,
  4802. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x17, 0x20,
  4803. 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x53, 0x69,
  4804. 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f,
  4805. 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x43,
  4806. 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  4807. 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64,
  4808. 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64,
  4809. 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x65, 0x65,
  4810. 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  4811. 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x64,
  4812. 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x1c,
  4813. 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f,
  4814. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d,
  4815. 0x65, 0x22, 0x91, 0x08, 0x0a, 0x09, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x12,
  4816. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12,
  4817. 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
  4818. 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f,
  4819. 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20,
  4820. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12,
  4821. 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61,
  4822. 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x77, 0x61, 0x74, 0x65,
  4823. 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  4824. 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52,
  4825. 0x08, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f, 0x6e,
  4826. 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x63, 0x6f, 0x6e,
  4827. 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  4828. 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64,
  4829. 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x23, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f,
  4830. 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c,
  4831. 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x21, 0x0a, 0x0c,
  4832. 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01,
  4833. 0x28, 0x01, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12,
  4834. 0x29, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73,
  4835. 0x75, 0x72, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75,
  4836. 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x6d,
  4837. 0x70, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x74, 0x6d, 0x70, 0x12, 0x12, 0x0a, 0x04,
  4838. 0x66, 0x6c, 0x75, 0x78, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04, 0x66, 0x6c, 0x75, 0x78,
  4839. 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
  4840. 0x18, 0x20, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69,
  4841. 0x6c, 0x69, 0x74, 0x79, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  4842. 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52,
  4843. 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79,
  4844. 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x0e,
  4845. 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x68, 0x12, 0x22,
  4846. 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18,
  4847. 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71,
  4848. 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c,
  4849. 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x41, 0x6c,
  4850. 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x61,
  4851. 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  4852. 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  4853. 0x66, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71,
  4854. 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  4855. 0x5f, 0x66, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75,
  4856. 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77,
  4857. 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64,
  4858. 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  4859. 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f,
  4860. 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64,
  4861. 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a,
  4862. 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72,
  4863. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x17, 0x20,
  4864. 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x53, 0x69,
  4865. 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f,
  4866. 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x43,
  4867. 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  4868. 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64,
  4869. 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64,
  4870. 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x65, 0x65,
  4871. 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  4872. 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x64,
  4873. 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x1c,
  4874. 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x69,
  4875. 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x01, 0x52,
  4876. 0x0a, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66,
  4877. 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x18, 0x1e, 0x20, 0x01, 0x28,
  4878. 0x03, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x12, 0x15,
  4879. 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  4880. 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xba, 0x0d, 0x0a, 0x09, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  4881. 0x67, 0x4e, 0x66, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  4882. 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69,
  4883. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
  4884. 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64,
  4885. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43,
  4886. 0x6f, 0x64, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d,
  4887. 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10,
  4888. 0x77, 0x61, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65,
  4889. 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73,
  4890. 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f,
  4891. 0x77, 0x31, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77,
  4892. 0x5f, 0x31, 0x73, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46,
  4893. 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  4894. 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01,
  4895. 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74,
  4896. 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72,
  4897. 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65,
  4898. 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10,
  4899. 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74,
  4900. 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73,
  4901. 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  4902. 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0a,
  4903. 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65,
  4904. 0x73, 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f,
  4905. 0x31, 0x73, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x31, 0x73,
  4906. 0x74, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0c, 0x20,
  4907. 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x31, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x10,
  4908. 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x31, 0x73, 0x74,
  4909. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69,
  4910. 0x6c, 0x69, 0x74, 0x79, 0x31, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f,
  4911. 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b,
  4912. 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x63,
  4913. 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28,
  4914. 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x28, 0x0a,
  4915. 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e,
  4916. 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  4917. 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f,
  4918. 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x11, 0x20, 0x01,
  4919. 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  4920. 0x32, 0x6e, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73,
  4921. 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63,
  4922. 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x30, 0x0a,
  4923. 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72,
  4924. 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f,
  4925. 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12,
  4926. 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01,
  4927. 0x52, 0x06, 0x74, 0x6d, 0x70, 0x32, 0x6e, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78,
  4928. 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78,
  4929. 0x32, 0x6e, 0x64, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c,
  4930. 0x69, 0x74, 0x79, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70,
  4931. 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x32, 0x6e, 0x64, 0x12, 0x22,
  4932. 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18,
  4933. 0x17, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x33,
  4934. 0x74, 0x68, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33,
  4935. 0x74, 0x68, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f,
  4936. 0x77, 0x33, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  4937. 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e,
  4938. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12, 0x2a,
  4939. 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f,
  4940. 0x33, 0x74, 0x68, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50,
  4941. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f,
  4942. 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1b,
  4943. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72,
  4944. 0x65, 0x33, 0x74, 0x68, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  4945. 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1c, 0x20, 0x01,
  4946. 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73,
  4947. 0x75, 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x33, 0x74,
  4948. 0x68, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x33, 0x74, 0x68, 0x12,
  4949. 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1e, 0x20, 0x01, 0x28,
  4950. 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x33, 0x74, 0x68, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65,
  4951. 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1f,
  4952. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69,
  4953. 0x74, 0x79, 0x33, 0x74, 0x68, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71,
  4954. 0x5f, 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x20, 0x20, 0x01, 0x28, 0x01,
  4955. 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74,
  4956. 0x79, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18,
  4957. 0x21, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x68, 0x12,
  4958. 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68,
  4959. 0x18, 0x22, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57,
  4960. 0x71, 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61,
  4961. 0x6c, 0x18, 0x23, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x41,
  4962. 0x6c, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f,
  4963. 0x61, 0x6c, 0x18, 0x24, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  4964. 0x74, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71,
  4965. 0x5f, 0x66, 0x65, 0x18, 0x25, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57,
  4966. 0x71, 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77,
  4967. 0x71, 0x5f, 0x66, 0x65, 0x18, 0x26, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64,
  4968. 0x75, 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f,
  4969. 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x27, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65,
  4970. 0x64, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  4971. 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x28, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72,
  4972. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65,
  4973. 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x29, 0x20, 0x01, 0x28, 0x01, 0x52,
  4974. 0x0a, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70,
  4975. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x2a,
  4976. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x53,
  4977. 0x69, 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63,
  4978. 0x6f, 0x64, 0x18, 0x2b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71,
  4979. 0x43, 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77,
  4980. 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f,
  4981. 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65,
  4982. 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x65,
  4983. 0x65, 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  4984. 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f,
  4985. 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18,
  4986. 0x2f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x15, 0x0a, 0x06, 0x63,
  4987. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x30, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69,
  4988. 0x6d, 0x65, 0x22, 0xfe, 0x0d, 0x0a, 0x09, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f,
  4989. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64,
  4990. 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02,
  4991. 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12,
  4992. 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03,
  4993. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65,
  4994. 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x65, 0x72,
  4995. 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x77, 0x61, 0x74,
  4996. 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x22, 0x0a,
  4997. 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x05,
  4998. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73,
  4999. 0x74, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73,
  5000. 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77,
  5001. 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66,
  5002. 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70,
  5003. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12, 0x2a, 0x0a,
  5004. 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31,
  5005. 0x73, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72,
  5006. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e,
  5007. 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x09, 0x20,
  5008. 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  5009. 0x31, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70,
  5010. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28,
  5011. 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75,
  5012. 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x31, 0x73, 0x74,
  5013. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x31, 0x73, 0x74, 0x12, 0x19,
  5014. 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01,
  5015. 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x31, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72,
  5016. 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0d, 0x20,
  5017. 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
  5018. 0x79, 0x31, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f,
  5019. 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65,
  5020. 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f,
  5021. 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a,
  5022. 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72,
  5023. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x10,
  5024. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f,
  5025. 0x77, 0x32, 0x6e, 0x64, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65,
  5026. 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52,
  5027. 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64,
  5028. 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  5029. 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50,
  5030. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72,
  5031. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32,
  5032. 0x6e, 0x64, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  5033. 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x17, 0x0a, 0x07,
  5034. 0x74, 0x6d, 0x70, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74,
  5035. 0x6d, 0x70, 0x32, 0x6e, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x32, 0x6e,
  5036. 0x64, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x32, 0x6e, 0x64,
  5037. 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
  5038. 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d,
  5039. 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x32, 0x6e, 0x64, 0x12, 0x22, 0x0a, 0x0d, 0x66,
  5040. 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x17, 0x20, 0x01,
  5041. 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12,
  5042. 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18,
  5043. 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74,
  5044. 0x68, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f,
  5045. 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f,
  5046. 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12, 0x2a, 0x0a, 0x11, 0x66,
  5047. 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68,
  5048. 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73,
  5049. 0x73, 0x75, 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70,
  5050. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1b, 0x20, 0x01, 0x28,
  5051. 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x33, 0x74,
  5052. 0x68, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65,
  5053. 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x01, 0x52,
  5054. 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  5055. 0x33, 0x74, 0x68, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1d,
  5056. 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x33, 0x74, 0x68, 0x12, 0x19, 0x0a, 0x08,
  5057. 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07,
  5058. 0x66, 0x6c, 0x75, 0x78, 0x33, 0x74, 0x68, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65,
  5059. 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1f, 0x20, 0x01, 0x28,
  5060. 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x33,
  5061. 0x74, 0x68, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x74, 0x75,
  5062. 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x20, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66,
  5063. 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x12, 0x1c,
  5064. 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x21, 0x20, 0x01,
  5065. 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x68, 0x12, 0x22, 0x0a, 0x0d,
  5066. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x22, 0x20,
  5067. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x68,
  5068. 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x23,
  5069. 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x22,
  5070. 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18,
  5071. 0x24, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71,
  5072. 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65,
  5073. 0x18, 0x25, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x46, 0x65,
  5074. 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x66,
  5075. 0x65, 0x18, 0x26, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  5076. 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  5077. 0x6d, 0x6e, 0x18, 0x27, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71,
  5078. 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  5079. 0x5f, 0x6d, 0x6e, 0x18, 0x28, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75,
  5080. 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77,
  5081. 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x29, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x66, 0x65,
  5082. 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x64,
  5083. 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x2a, 0x20, 0x01, 0x28,
  5084. 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32,
  5085. 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18,
  5086. 0x2b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x43, 0x6f, 0x64,
  5087. 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x63,
  5088. 0x6f, 0x64, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  5089. 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77,
  5090. 0x71, 0x5f, 0x70, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x65, 0x65, 0x64, 0x57,
  5091. 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  5092. 0x5f, 0x70, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  5093. 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x2f, 0x20, 0x01,
  5094. 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x69, 0x6c, 0x74,
  5095. 0x65, 0x72, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x30, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x66,
  5096. 0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c,
  5097. 0x74, 0x65, 0x72, 0x5f, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x18, 0x31, 0x20, 0x01, 0x28, 0x03, 0x52,
  5098. 0x0b, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x12, 0x15, 0x0a, 0x06,
  5099. 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x32, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54,
  5100. 0x69, 0x6d, 0x65, 0x22, 0xad, 0x02, 0x0a, 0x0c, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43,
  5101. 0x68, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  5102. 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f,
  5103. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
  5104. 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f,
  5105. 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
  5106. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x18, 0x04,
  5107. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x12, 0x14, 0x0a, 0x05,
  5108. 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x6c, 0x65, 0x76,
  5109. 0x65, 0x6c, 0x12, 0x27, 0x0a, 0x0f, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x73,
  5110. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x61, 0x67, 0x69,
  5111. 0x74, 0x61, 0x74, 0x6f, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x61,
  5112. 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  5113. 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72,
  5114. 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x32, 0x0a, 0x15, 0x61, 0x67, 0x69, 0x74,
  5115. 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
  5116. 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x13, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f,
  5117. 0x72, 0x46, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06,
  5118. 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54,
  5119. 0x69, 0x6d, 0x65, 0x22, 0x86, 0x03, 0x0a, 0x0b, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50,
  5120. 0x75, 0x6d, 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  5121. 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69,
  5122. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
  5123. 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64,
  5124. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43,
  5125. 0x6f, 0x64, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73,
  5126. 0x73, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x66, 0x65, 0x65, 0x64,
  5127. 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6f, 0x75, 0x74, 0x5f,
  5128. 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b,
  5129. 0x6f, 0x75, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x64,
  5130. 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x64,
  5131. 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65,
  5132. 0x6e, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e,
  5133. 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x08,
  5134. 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x12,
  5135. 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x66, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04, 0x6c,
  5136. 0x69, 0x66, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x65, 0x66, 0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x63,
  5137. 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x65, 0x66, 0x66, 0x69, 0x63, 0x69, 0x65,
  5138. 0x6e, 0x63, 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x75, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
  5139. 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x72, 0x75, 0x6e, 0x53, 0x74, 0x61, 0x74,
  5140. 0x75, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74,
  5141. 0x75, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53,
  5142. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18,
  5143. 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xfa, 0x01, 0x0a,
  5144. 0x0c, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x76, 0x65, 0x12, 0x0e, 0x0a,
  5145. 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a,
  5146. 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  5147. 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b,
  5148. 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  5149. 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a,
  5150. 0x06, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x61,
  5151. 0x64, 0x6a, 0x75, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x6e, 0x67,
  5152. 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x12,
  5153. 0x16, 0x0a, 0x06, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52,
  5154. 0x06, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x65,
  5155. 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x65, 0x64, 0x12,
  5156. 0x21, 0x0a, 0x0c, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  5157. 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x61, 0x74,
  5158. 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01,
  5159. 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x76, 0x0a, 0x0f, 0x49, 0x74, 0x65,
  5160. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x0a,
  5161. 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  5162. 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69,
  5163. 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  5164. 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x76, 0x61, 0x6c, 0x18,
  5165. 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x76, 0x61, 0x6c, 0x12, 0x15, 0x0a, 0x06, 0x68, 0x5f,
  5166. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x68, 0x54, 0x69, 0x6d,
  5167. 0x65, 0x22, 0x64, 0x0a, 0x1a, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65,
  5168. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x12,
  5169. 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  5170. 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x27,
  5171. 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x70,
  5172. 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74,
  5173. 0x61, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x1d, 0x0a, 0x1b, 0x4d, 0x75, 0x6c, 0x74, 0x69,
  5174. 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61,
  5175. 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x22, 0xe6, 0x01, 0x0a, 0x16, 0x49, 0x74, 0x65, 0x6d, 0x48,
  5176. 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  5177. 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18,
  5178. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64,
  5179. 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
  5180. 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a,
  5181. 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  5182. 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x67, 0x67,
  5183. 0x72, 0x65, 0x67, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61,
  5184. 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69,
  5185. 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12,
  5186. 0x14, 0x0a, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  5187. 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x07, 0x20,
  5188. 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64,
  5189. 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x22,
  5190. 0x98, 0x01, 0x0a, 0x18, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44,
  5191. 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a,
  5192. 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  5193. 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69,
  5194. 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  5195. 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69, 0x6d,
  5196. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14,
  5197. 0x0a, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65,
  5198. 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x05, 0x20,
  5199. 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x22, 0x66, 0x0a, 0x19, 0x49, 0x74,
  5200. 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x61, 0x78,
  5201. 0x4d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x61, 0x78, 0x5f, 0x76,
  5202. 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x6d, 0x61, 0x78, 0x56, 0x61, 0x6c,
  5203. 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x69, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28,
  5204. 0x01, 0x52, 0x06, 0x6d, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x12, 0x17, 0x0a, 0x07, 0x61, 0x76, 0x67,
  5205. 0x5f, 0x76, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x61, 0x76, 0x67, 0x56,
  5206. 0x61, 0x6c, 0x22, 0x48, 0x0a, 0x1c, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  5207. 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x69, 0x72, 0x73, 0x74, 0x4c, 0x61, 0x73, 0x74, 0x52, 0x65,
  5208. 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x69, 0x72, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
  5209. 0x01, 0x52, 0x05, 0x66, 0x69, 0x72, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x61, 0x73, 0x74,
  5210. 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04, 0x6c, 0x61, 0x73, 0x74, 0x22, 0x35, 0x0a, 0x1d,
  5211. 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69,
  5212. 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14, 0x0a,
  5213. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x76, 0x61,
  5214. 0x6c, 0x75, 0x65, 0x22, 0x5b, 0x0a, 0x13, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f,
  5215. 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74,
  5216. 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69,
  5217. 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x76, 0x61, 0x6c, 0x18, 0x02,
  5218. 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x76, 0x61, 0x6c, 0x12, 0x15, 0x0a, 0x06, 0x68, 0x5f, 0x74,
  5219. 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x68, 0x54, 0x69, 0x6d, 0x65,
  5220. 0x22, 0x5a, 0x0a, 0x17, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44,
  5221. 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x43, 0x68, 0x61, 0x72, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e,
  5222. 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  5223. 0x10, 0x0a, 0x03, 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x76, 0x61,
  5224. 0x6c, 0x12, 0x19, 0x0a, 0x08, 0x68, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x61, 0x74, 0x18, 0x03, 0x20,
  5225. 0x01, 0x28, 0x09, 0x52, 0x07, 0x68, 0x74, 0x69, 0x6d, 0x65, 0x41, 0x74, 0x22, 0x9c, 0x02, 0x0a,
  5226. 0x1a, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61,
  5227. 0x46, 0x6f, 0x72, 0x43, 0x68, 0x61, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
  5228. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  5229. 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74,
  5230. 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69,
  5231. 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65,
  5232. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a,
  5233. 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x74,
  5234. 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18,
  5235. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x12,
  5236. 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73,
  5237. 0x69, 0x7a, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x6f,
  5238. 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61,
  5239. 0x74, 0x6f, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01,
  5240. 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x61, 0x78,
  5241. 0x5f, 0x76, 0x61, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x6d, 0x61, 0x78, 0x56,
  5242. 0x61, 0x6c, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x69, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x18, 0x0a, 0x20,
  5243. 0x01, 0x28, 0x01, 0x52, 0x06, 0x6d, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x22, 0x4e, 0x0a, 0x1b, 0x49,
  5244. 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f,
  5245. 0x72, 0x43, 0x68, 0x61, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2f, 0x0a, 0x04, 0x6c, 0x69,
  5246. 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74,
  5247. 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72,
  5248. 0x43, 0x68, 0x61, 0x72, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x46, 0x0a, 0x17, 0x49,
  5249. 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69,
  5250. 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2b, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01,
  5251. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69,
  5252. 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c,
  5253. 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  5254. 0x67, 0x55, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a,
  5255. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62,
  5256. 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
  5257. 0x22, 0xfa, 0x01, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
  5258. 0x55, 0x66, 0x42, 0x79, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a,
  5259. 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  5260. 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64,
  5261. 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  5262. 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x21, 0x0a, 0x0c,
  5263. 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01,
  5264. 0x28, 0x03, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x12,
  5265. 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73,
  5266. 0x74, 0x65, 0x70, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x69,
  5267. 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f,
  5268. 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x12,
  5269. 0x26, 0x0a, 0x0f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x65,
  5270. 0x6e, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
  5271. 0x54, 0x69, 0x6d, 0x65, 0x45, 0x6e, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
  5272. 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x3d, 0x0a,
  5273. 0x18, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79,
  5274. 0x43, 0x79, 0x63, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  5275. 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72,
  5276. 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x16,
  5277. 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x42, 0x79, 0x43, 0x6f,
  5278. 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01,
  5279. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  5280. 0x67, 0x52, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x16, 0x47, 0x65, 0x74,
  5281. 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x4e, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
  5282. 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28,
  5283. 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x4e, 0x66,
  5284. 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72,
  5285. 0x6b, 0x69, 0x6e, 0x67, 0x4d, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70,
  5286. 0x12, 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d,
  5287. 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x4d, 0x66, 0x52, 0x04, 0x6c,
  5288. 0x69, 0x73, 0x74, 0x22, 0x3f, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  5289. 0x67, 0x50, 0x75, 0x6d, 0x70, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12,
  5290. 0x23, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  5291. 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x52, 0x04,
  5292. 0x6c, 0x69, 0x73, 0x74, 0x22, 0x41, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69,
  5293. 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x76, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73,
  5294. 0x70, 0x12, 0x24, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
  5295. 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x76,
  5296. 0x65, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x41, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x57, 0x6f,
  5297. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65, 0x73, 0x74, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65,
  5298. 0x52, 0x65, 0x73, 0x70, 0x12, 0x24, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03,
  5299. 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43,
  5300. 0x68, 0x65, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x57, 0x0a, 0x0e, 0x46, 0x69,
  5301. 0x6e, 0x64, 0x41, 0x70, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04,
  5302. 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65,
  5303. 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20,
  5304. 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x14, 0x0a,
  5305. 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72,
  5306. 0x64, 0x65, 0x72, 0x22, 0x62, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x70, 0x70, 0x4c, 0x69,
  5307. 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1f, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01,
  5308. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66,
  5309. 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e,
  5310. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x62,
  5311. 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0a, 0x70, 0x61, 0x67,
  5312. 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2a, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x41, 0x70,
  5313. 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f,
  5314. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e,
  5315. 0x61, 0x6d, 0x65, 0x22, 0x38, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66,
  5316. 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x26, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x69, 0x6e, 0x66,
  5317. 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x70, 0x70,
  5318. 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x61, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x66, 0x0a,
  5319. 0x10, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  5320. 0x71, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
  5321. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b,
  5322. 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28,
  5323. 0x03, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x73, 0x12, 0x16, 0x0a,
  5324. 0x06, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x65,
  5325. 0x78, 0x70, 0x69, 0x72, 0x65, 0x22, 0x3b, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41,
  5326. 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x26, 0x0a, 0x08, 0x61, 0x70,
  5327. 0x70, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70,
  5328. 0x62, 0x2e, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x61, 0x70, 0x70, 0x49, 0x6e,
  5329. 0x66, 0x6f, 0x22, 0x2d, 0x0a, 0x10, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x70, 0x70, 0x49,
  5330. 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61,
  5331. 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d,
  5332. 0x65, 0x22, 0x23, 0x0a, 0x11, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e,
  5333. 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6b, 0x18, 0x01, 0x20, 0x01,
  5334. 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b, 0x22, 0x2e, 0x0a, 0x11, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c,
  5335. 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x19, 0x0a, 0x08, 0x61,
  5336. 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61,
  5337. 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x24, 0x0a, 0x12, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c,
  5338. 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x0e, 0x0a, 0x02,
  5339. 0x6f, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b, 0x22, 0x2d, 0x0a, 0x10,
  5340. 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71,
  5341. 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
  5342. 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x23, 0x0a, 0x11, 0x45,
  5343. 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70,
  5344. 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b,
  5345. 0x22, 0x2e, 0x0a, 0x11, 0x52, 0x65, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72,
  5346. 0x65, 0x74, 0x52, 0x65, 0x71, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d,
  5347. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65,
  5348. 0x22, 0x2c, 0x0a, 0x12, 0x52, 0x65, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72,
  5349. 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74,
  5350. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x22, 0x47,
  5351. 0x0a, 0x12, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72, 0x65,
  5352. 0x74, 0x52, 0x65, 0x71, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
  5353. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12,
  5354. 0x16, 0x0a, 0x06, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  5355. 0x06, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x22, 0x32, 0x0a, 0x13, 0x45, 0x78, 0x70, 0x69, 0x72,
  5356. 0x65, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1b,
  5357. 0x0a, 0x09, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x5f, 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  5358. 0x09, 0x52, 0x08, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x41, 0x74, 0x22, 0x50, 0x0a, 0x12, 0x52,
  5359. 0x65, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65,
  5360. 0x71, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
  5361. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b,
  5362. 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28,
  5363. 0x03, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x73, 0x22, 0x43, 0x0a,
  5364. 0x13, 0x52, 0x65, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
  5365. 0x52, 0x65, 0x73, 0x70, 0x12, 0x2c, 0x0a, 0x12, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x70,
  5366. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03,
  5367. 0x52, 0x10, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
  5368. 0x64, 0x73, 0x22, 0x6a, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x44, 0x65,
  5369. 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f,
  5370. 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70,
  5371. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d,
  5372. 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x0e,
  5373. 0x0a, 0x02, 0x73, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x73, 0x74, 0x12, 0x0e,
  5374. 0x0a, 0x02, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x65, 0x74, 0x22, 0x9d,
  5375. 0x01, 0x0a, 0x14, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x44, 0x65, 0x73, 0x63, 0x72,
  5376. 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x36, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18,
  5377. 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x44,
  5378. 0x61, 0x74, 0x61, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x2e,
  5379. 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x1a,
  5380. 0x4d, 0x0a, 0x09, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03,
  5381. 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2a,
  5382. 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e,
  5383. 0x70, 0x62, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49,
  5384. 0x6e, 0x66, 0x6f, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x6d,
  5385. 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x6c,
  5386. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a,
  5387. 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72,
  5388. 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73,
  5389. 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x0e, 0x0a,
  5390. 0x02, 0x73, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x73, 0x74, 0x12, 0x0e, 0x0a,
  5391. 0x02, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x65, 0x74, 0x22, 0x6b, 0x0a,
  5392. 0x14, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x4d,
  5393. 0x61, 0x78, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
  5394. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65,
  5395. 0x63, 0x74, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x02, 0x20,
  5396. 0x03, 0x28, 0x09, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x73, 0x74,
  5397. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x65, 0x74,
  5398. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x65, 0x74, 0x22, 0xa0, 0x01, 0x0a, 0x15, 0x46,
  5399. 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x4d, 0x61, 0x78,
  5400. 0x52, 0x65, 0x73, 0x70, 0x12, 0x37, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03,
  5401. 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61,
  5402. 0x4d, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x4d, 0x61, 0x78, 0x52, 0x65, 0x73, 0x70, 0x2e, 0x4c, 0x69,
  5403. 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x1a, 0x4e, 0x0a,
  5404. 0x09, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
  5405. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2b, 0x0a, 0x05,
  5406. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x62,
  5407. 0x2e, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x4d, 0x61, 0x78, 0x49, 0x6e,
  5408. 0x66, 0x6f, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xa6, 0x01,
  5409. 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x6c,
  5410. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x39, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  5411. 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e,
  5412. 0x64, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  5413. 0x52, 0x65, 0x73, 0x70, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04,
  5414. 0x6c, 0x69, 0x73, 0x74, 0x1a, 0x50, 0x0a, 0x09, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72,
  5415. 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  5416. 0x6b, 0x65, 0x79, 0x12, 0x2d, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
  5417. 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72,
  5418. 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x05, 0x76, 0x61, 0x6c,
  5419. 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x0b, 0x0a, 0x09, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68,
  5420. 0x52, 0x65, 0x71, 0x22, 0x54, 0x0a, 0x0a, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x52, 0x65, 0x73,
  5421. 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x64, 0x62, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x02, 0x64,
  5422. 0x62, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x65, 0x64, 0x69, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09,
  5423. 0x52, 0x05, 0x72, 0x65, 0x64, 0x69, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x6d, 0x71, 0x18, 0x03, 0x20,
  5424. 0x03, 0x28, 0x09, 0x52, 0x02, 0x6d, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x04,
  5425. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x22, 0x53, 0x0a, 0x0b, 0x43, 0x75, 0x72,
  5426. 0x72, 0x65, 0x6e, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d,
  5427. 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65,
  5428. 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01,
  5429. 0x28, 0x09, 0x52, 0x03, 0x76, 0x61, 0x6c, 0x12, 0x15, 0x0a, 0x06, 0x68, 0x5f, 0x74, 0x69, 0x6d,
  5430. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x4c,
  5431. 0x0a, 0x0e, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71,
  5432. 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5433. 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12,
  5434. 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
  5435. 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x36, 0x0a, 0x0f,
  5436. 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12,
  5437. 0x23, 0x0a, 0x04, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  5438. 0x70, 0x62, 0x2e, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x04,
  5439. 0x69, 0x74, 0x65, 0x6d, 0x32, 0xb0, 0x0f, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
  5440. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b,
  5441. 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62,
  5442. 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e,
  5443. 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42,
  5444. 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x51, 0x0a, 0x14, 0x46, 0x69, 0x6e,
  5445. 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79, 0x43, 0x79, 0x63, 0x6c,
  5446. 0x65, 0x12, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x69,
  5447. 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1c,
  5448. 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55,
  5449. 0x66, 0x42, 0x79, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x42, 0x0a, 0x12,
  5450. 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x42, 0x79, 0x43, 0x6f,
  5451. 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  5452. 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72,
  5453. 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70,
  5454. 0x12, 0x48, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68,
  5455. 0x65, 0x73, 0x74, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44,
  5456. 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x70, 0x62,
  5457. 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65, 0x73, 0x74,
  5458. 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x46, 0x0a, 0x14, 0x47, 0x65,
  5459. 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x42, 0x79, 0x43, 0x6f,
  5460. 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  5461. 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72,
  5462. 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65,
  5463. 0x73, 0x70, 0x12, 0x48, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
  5464. 0x56, 0x61, 0x6c, 0x76, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62,
  5465. 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e,
  5466. 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c,
  5467. 0x76, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x5a, 0x0a, 0x17,
  5468. 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74,
  5469. 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1e, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x75, 0x6c,
  5470. 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
  5471. 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x75, 0x6c,
  5472. 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
  5473. 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12, 0x4e, 0x0a, 0x13, 0x49, 0x74, 0x65, 0x6d,
  5474. 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x12,
  5475. 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
  5476. 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1b, 0x2e, 0x70, 0x62,
  5477. 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61,
  5478. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x52, 0x0a, 0x15, 0x49, 0x74, 0x65, 0x6d,
  5479. 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d,
  5480. 0x65, 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f,
  5481. 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x1a,
  5482. 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
  5483. 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x5a, 0x0a, 0x1b,
  5484. 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4d,
  5485. 0x61, 0x78, 0x4d, 0x69, 0x6e, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x2e, 0x70, 0x62,
  5486. 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61,
  5487. 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x70, 0x62, 0x2e, 0x49,
  5488. 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x61,
  5489. 0x78, 0x4d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x60, 0x0a, 0x1e, 0x49, 0x74, 0x65, 0x6d,
  5490. 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x69, 0x72, 0x73, 0x74,
  5491. 0x4c, 0x61, 0x73, 0x74, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e,
  5492. 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42,
  5493. 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x20, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74,
  5494. 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x69, 0x72,
  5495. 0x73, 0x74, 0x4c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x5c, 0x0a, 0x19, 0x43, 0x68,
  5496. 0x61, 0x6e, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74,
  5497. 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65,
  5498. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69,
  5499. 0x6d, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x21, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67,
  5500. 0x65, 0x54, 0x79, 0x70, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
  5501. 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12, 0x5a, 0x0a, 0x17, 0x49, 0x74, 0x65, 0x6d,
  5502. 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x43, 0x68,
  5503. 0x61, 0x72, 0x74, 0x12, 0x1e, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73,
  5504. 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x43, 0x68, 0x61, 0x72, 0x74,
  5505. 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73,
  5506. 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x43, 0x68, 0x61, 0x72, 0x74,
  5507. 0x52, 0x65, 0x73, 0x70, 0x12, 0x36, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x70, 0x70, 0x4c,
  5508. 0x69, 0x73, 0x74, 0x12, 0x12, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x70, 0x70,
  5509. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e,
  5510. 0x64, 0x41, 0x70, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x33, 0x0a, 0x0a,
  5511. 0x47, 0x65, 0x74, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x11, 0x2e, 0x70, 0x62, 0x2e,
  5512. 0x47, 0x65, 0x74, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x12, 0x2e,
  5513. 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73,
  5514. 0x70, 0x12, 0x3c, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e,
  5515. 0x66, 0x6f, 0x12, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x70,
  5516. 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72,
  5517. 0x65, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12,
  5518. 0x3c, 0x0a, 0x0d, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f,
  5519. 0x12, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x70, 0x70, 0x49,
  5520. 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f,
  5521. 0x76, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3f, 0x0a,
  5522. 0x0e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  5523. 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x49,
  5524. 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x69, 0x73, 0x61,
  5525. 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3c,
  5526. 0x0a, 0x0d, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  5527. 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e,
  5528. 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x45, 0x6e, 0x61, 0x62, 0x6c,
  5529. 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3f, 0x0a, 0x0e,
  5530. 0x52, 0x65, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x15,
  5531. 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72,
  5532. 0x65, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x74,
  5533. 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x42, 0x0a,
  5534. 0x0f, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74,
  5535. 0x12, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65, 0x41, 0x70, 0x70, 0x53,
  5536. 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x45, 0x78,
  5537. 0x70, 0x69, 0x72, 0x65, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x73,
  5538. 0x70, 0x12, 0x42, 0x0a, 0x0f, 0x52, 0x65, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x50, 0x72, 0x6f,
  5539. 0x6a, 0x65, 0x63, 0x74, 0x12, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x74, 0x41,
  5540. 0x70, 0x70, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e, 0x70,
  5541. 0x62, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
  5542. 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x45, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74,
  5543. 0x61, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x46,
  5544. 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52,
  5545. 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61,
  5546. 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x48, 0x0a, 0x11,
  5547. 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x4d, 0x61,
  5548. 0x78, 0x12, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x4d,
  5549. 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x4d, 0x61, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x19, 0x2e, 0x70, 0x62,
  5550. 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x4d,
  5551. 0x61, 0x78, 0x52, 0x65, 0x73, 0x70, 0x12, 0x4e, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61,
  5552. 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x2e,
  5553. 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65,
  5554. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x46,
  5555. 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69,
  5556. 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x36, 0x0a, 0x0b, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e,
  5557. 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x75, 0x72, 0x72, 0x65,
  5558. 0x6e, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x70, 0x62, 0x2e, 0x43,
  5559. 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27,
  5560. 0x0a, 0x06, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x12, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x48, 0x65,
  5561. 0x61, 0x6c, 0x74, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x48, 0x65, 0x61,
  5562. 0x6c, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62,
  5563. 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  5564. }
  5565. var (
  5566. file_datacenter_proto_rawDescOnce sync.Once
  5567. file_datacenter_proto_rawDescData = file_datacenter_proto_rawDesc
  5568. )
  5569. func file_datacenter_proto_rawDescGZIP() []byte {
  5570. file_datacenter_proto_rawDescOnce.Do(func() {
  5571. file_datacenter_proto_rawDescData = protoimpl.X.CompressGZIP(file_datacenter_proto_rawDescData)
  5572. })
  5573. return file_datacenter_proto_rawDescData
  5574. }
  5575. var file_datacenter_proto_msgTypes = make([]protoimpl.MessageInfo, 69)
  5576. var file_datacenter_proto_goTypes = []interface{}{
  5577. (*Pagination)(nil), // 0: pb.Pagination
  5578. (*DataDescribeInfo)(nil), // 1: pb.DataDescribeInfo
  5579. (*DataMinAndMaxInfo)(nil), // 2: pb.DataMinAndMaxInfo
  5580. (*RelatedItems)(nil), // 3: pb.RelatedItems
  5581. (*DataCorrelationInfo)(nil), // 4: pb.DataCorrelationInfo
  5582. (*AppInfo)(nil), // 5: pb.AppInfo
  5583. (*DcWorkingReq)(nil), // 6: pb.DcWorkingReq
  5584. (*WorkingMf)(nil), // 7: pb.WorkingMf
  5585. (*WorkingUf)(nil), // 8: pb.WorkingUf
  5586. (*WorkingNf)(nil), // 9: pb.WorkingNf
  5587. (*WorkingRo)(nil), // 10: pb.WorkingRo
  5588. (*WorkingChest)(nil), // 11: pb.WorkingChest
  5589. (*WorkingPump)(nil), // 12: pb.WorkingPump
  5590. (*WorkingValve)(nil), // 13: pb.WorkingValve
  5591. (*ItemHistoryData)(nil), // 14: pb.ItemHistoryData
  5592. (*MultiAddItemHistoryDataReq)(nil), // 15: pb.MultiAddItemHistoryDataReq
  5593. (*MultiAddItemHistoryDataResp)(nil), // 16: pb.MultiAddItemHistoryDataResp
  5594. (*ItemHistoryDataListReq)(nil), // 17: pb.ItemHistoryDataListReq
  5595. (*ItemHistoryDataByTimeReq)(nil), // 18: pb.ItemHistoryDataByTimeReq
  5596. (*ItemHistoryDataMaxMinResp)(nil), // 19: pb.ItemHistoryDataMaxMinResp
  5597. (*ItemHistoryDataFirstLastResp)(nil), // 20: pb.ItemHistoryDataFirstLastResp
  5598. (*ChangeTypeItemHistoryDataResp)(nil), // 21: pb.ChangeTypeItemHistoryDataResp
  5599. (*ItemHistoryDataList)(nil), // 22: pb.ItemHistoryDataList
  5600. (*ItemHistoryDataForChart)(nil), // 23: pb.ItemHistoryDataForChart
  5601. (*ItemHistoryDataForChartReq)(nil), // 24: pb.ItemHistoryDataForChartReq
  5602. (*ItemHistoryDataForChartResp)(nil), // 25: pb.ItemHistoryDataForChartResp
  5603. (*ItemHistoryDataListResp)(nil), // 26: pb.ItemHistoryDataListResp
  5604. (*GetWorkingUfByCodeResp)(nil), // 27: pb.GetWorkingUfByCodeResp
  5605. (*FindWorkingUfByCycleReq)(nil), // 28: pb.FindWorkingUfByCycleReq
  5606. (*FindWorkingUfByCycleResp)(nil), // 29: pb.FindWorkingUfByCycleResp
  5607. (*GetWorkingRoByCodeResp)(nil), // 30: pb.GetWorkingRoByCodeResp
  5608. (*GetWorkingNfByCodeResp)(nil), // 31: pb.GetWorkingNfByCodeResp
  5609. (*GetWorkingMfByCodeResp)(nil), // 32: pb.GetWorkingMfByCodeResp
  5610. (*GetWorkingPumpByCodeResp)(nil), // 33: pb.GetWorkingPumpByCodeResp
  5611. (*GetWorkingValveByCodeResp)(nil), // 34: pb.GetWorkingValveByCodeResp
  5612. (*GetWorkingChestByCodeResp)(nil), // 35: pb.GetWorkingChestByCodeResp
  5613. (*FindAppListReq)(nil), // 36: pb.FindAppListReq
  5614. (*FindAppListResp)(nil), // 37: pb.FindAppListResp
  5615. (*GetAppInfoReq)(nil), // 38: pb.GetAppInfoReq
  5616. (*GetAppInfoResp)(nil), // 39: pb.GetAppInfoResp
  5617. (*CreateAppInfoReq)(nil), // 40: pb.CreateAppInfoReq
  5618. (*CreateAppInfoResp)(nil), // 41: pb.CreateAppInfoResp
  5619. (*RemoveAppInfoReq)(nil), // 42: pb.RemoveAppInfoReq
  5620. (*RemoveAppInfoResp)(nil), // 43: pb.RemoveAppInfoResp
  5621. (*DisableAppInfoReq)(nil), // 44: pb.DisableAppInfoReq
  5622. (*DisableAppInfoResp)(nil), // 45: pb.DisableAppInfoResp
  5623. (*EnableAppInfoReq)(nil), // 46: pb.EnableAppInfoReq
  5624. (*EnableAppInfoResp)(nil), // 47: pb.EnableAppInfoResp
  5625. (*ResetAppSecretReq)(nil), // 48: pb.ResetAppSecretReq
  5626. (*ResetAppSecretResp)(nil), // 49: pb.ResetAppSecretResp
  5627. (*ExpireAppSecretReq)(nil), // 50: pb.ExpireAppSecretReq
  5628. (*ExpireAppSecretResp)(nil), // 51: pb.ExpireAppSecretResp
  5629. (*ResetAppProjectReq)(nil), // 52: pb.ResetAppProjectReq
  5630. (*ResetAppProjectResp)(nil), // 53: pb.ResetAppProjectResp
  5631. (*FindDataDescribeReq)(nil), // 54: pb.FindDataDescribeReq
  5632. (*FindDataDescribeResp)(nil), // 55: pb.FindDataDescribeResp
  5633. (*FindDataCorrelationReq)(nil), // 56: pb.FindDataCorrelationReq
  5634. (*FindDataMinAndMaxReq)(nil), // 57: pb.FindDataMinAndMaxReq
  5635. (*FindDataMinAndMaxResp)(nil), // 58: pb.FindDataMinAndMaxResp
  5636. (*FindDataCorrelationResp)(nil), // 59: pb.FindDataCorrelationResp
  5637. (*HealthReq)(nil), // 60: pb.HealthReq
  5638. (*HealthResp)(nil), // 61: pb.HealthResp
  5639. (*CurrentItem)(nil), // 62: pb.CurrentItem
  5640. (*CurrentDataReq)(nil), // 63: pb.CurrentDataReq
  5641. (*CurrentDataResp)(nil), // 64: pb.CurrentDataResp
  5642. nil, // 65: pb.DataCorrelationInfo.RelatedItemsEntry
  5643. nil, // 66: pb.FindDataDescribeResp.ListEntry
  5644. nil, // 67: pb.FindDataMinAndMaxResp.ListEntry
  5645. nil, // 68: pb.FindDataCorrelationResp.ListEntry
  5646. }
  5647. var file_datacenter_proto_depIdxs = []int32{
  5648. 65, // 0: pb.DataCorrelationInfo.related_items:type_name -> pb.DataCorrelationInfo.RelatedItemsEntry
  5649. 14, // 1: pb.MultiAddItemHistoryDataReq.list:type_name -> pb.ItemHistoryData
  5650. 23, // 2: pb.ItemHistoryDataForChartResp.list:type_name -> pb.ItemHistoryDataForChart
  5651. 22, // 3: pb.ItemHistoryDataListResp.list:type_name -> pb.ItemHistoryDataList
  5652. 8, // 4: pb.GetWorkingUfByCodeResp.list:type_name -> pb.WorkingUf
  5653. 8, // 5: pb.FindWorkingUfByCycleResp.list:type_name -> pb.WorkingUf
  5654. 10, // 6: pb.GetWorkingRoByCodeResp.list:type_name -> pb.WorkingRo
  5655. 9, // 7: pb.GetWorkingNfByCodeResp.list:type_name -> pb.WorkingNf
  5656. 7, // 8: pb.GetWorkingMfByCodeResp.list:type_name -> pb.WorkingMf
  5657. 12, // 9: pb.GetWorkingPumpByCodeResp.list:type_name -> pb.WorkingPump
  5658. 13, // 10: pb.GetWorkingValveByCodeResp.list:type_name -> pb.WorkingValve
  5659. 11, // 11: pb.GetWorkingChestByCodeResp.list:type_name -> pb.WorkingChest
  5660. 5, // 12: pb.FindAppListResp.list:type_name -> pb.AppInfo
  5661. 0, // 13: pb.FindAppListResp.pagination:type_name -> pb.Pagination
  5662. 5, // 14: pb.GetAppInfoResp.app_info:type_name -> pb.AppInfo
  5663. 5, // 15: pb.CreateAppInfoResp.app_info:type_name -> pb.AppInfo
  5664. 66, // 16: pb.FindDataDescribeResp.list:type_name -> pb.FindDataDescribeResp.ListEntry
  5665. 67, // 17: pb.FindDataMinAndMaxResp.list:type_name -> pb.FindDataMinAndMaxResp.ListEntry
  5666. 68, // 18: pb.FindDataCorrelationResp.list:type_name -> pb.FindDataCorrelationResp.ListEntry
  5667. 62, // 19: pb.CurrentDataResp.item:type_name -> pb.CurrentItem
  5668. 3, // 20: pb.DataCorrelationInfo.RelatedItemsEntry.value:type_name -> pb.RelatedItems
  5669. 1, // 21: pb.FindDataDescribeResp.ListEntry.value:type_name -> pb.DataDescribeInfo
  5670. 2, // 22: pb.FindDataMinAndMaxResp.ListEntry.value:type_name -> pb.DataMinAndMaxInfo
  5671. 4, // 23: pb.FindDataCorrelationResp.ListEntry.value:type_name -> pb.DataCorrelationInfo
  5672. 6, // 24: pb.Organization.GetWorkingUfByCode:input_type -> pb.DcWorkingReq
  5673. 28, // 25: pb.Organization.FindWorkingUfByCycle:input_type -> pb.FindWorkingUfByCycleReq
  5674. 6, // 26: pb.Organization.GetWorkingRoByCode:input_type -> pb.DcWorkingReq
  5675. 6, // 27: pb.Organization.GetWorkingChestByCode:input_type -> pb.DcWorkingReq
  5676. 6, // 28: pb.Organization.GetWorkingPumpByCode:input_type -> pb.DcWorkingReq
  5677. 6, // 29: pb.Organization.GetWorkingValveByCode:input_type -> pb.DcWorkingReq
  5678. 15, // 30: pb.Organization.MultiAddItemHistoryData:input_type -> pb.MultiAddItemHistoryDataReq
  5679. 17, // 31: pb.Organization.ItemHistoryDataList:input_type -> pb.ItemHistoryDataListReq
  5680. 18, // 32: pb.Organization.ItemHistoryDataByTime:input_type -> pb.ItemHistoryDataByTimeReq
  5681. 18, // 33: pb.Organization.ItemHistoryDataMaxMinByTime:input_type -> pb.ItemHistoryDataByTimeReq
  5682. 18, // 34: pb.Organization.ItemHistoryDataFirstLastByTime:input_type -> pb.ItemHistoryDataByTimeReq
  5683. 18, // 35: pb.Organization.ChangeTypeItemHistoryData:input_type -> pb.ItemHistoryDataByTimeReq
  5684. 24, // 36: pb.Organization.ItemHistoryDataForChart:input_type -> pb.ItemHistoryDataForChartReq
  5685. 36, // 37: pb.Organization.FindAppList:input_type -> pb.FindAppListReq
  5686. 38, // 38: pb.Organization.GetAppInfo:input_type -> pb.GetAppInfoReq
  5687. 40, // 39: pb.Organization.CreateAppInfo:input_type -> pb.CreateAppInfoReq
  5688. 42, // 40: pb.Organization.RemoveAppInfo:input_type -> pb.RemoveAppInfoReq
  5689. 44, // 41: pb.Organization.DisableAppInfo:input_type -> pb.DisableAppInfoReq
  5690. 46, // 42: pb.Organization.EnableAppInfo:input_type -> pb.EnableAppInfoReq
  5691. 48, // 43: pb.Organization.ResetAppSecret:input_type -> pb.ResetAppSecretReq
  5692. 50, // 44: pb.Organization.ExpireAppSecret:input_type -> pb.ExpireAppSecretReq
  5693. 52, // 45: pb.Organization.ResetAppProject:input_type -> pb.ResetAppProjectReq
  5694. 54, // 46: pb.Organization.FindDataDescribe:input_type -> pb.FindDataDescribeReq
  5695. 57, // 47: pb.Organization.FindDataMinAndMax:input_type -> pb.FindDataMinAndMaxReq
  5696. 56, // 48: pb.Organization.FindDataCorrelation:input_type -> pb.FindDataCorrelationReq
  5697. 63, // 49: pb.Organization.CurrentData:input_type -> pb.CurrentDataReq
  5698. 60, // 50: pb.Organization.Health:input_type -> pb.HealthReq
  5699. 27, // 51: pb.Organization.GetWorkingUfByCode:output_type -> pb.GetWorkingUfByCodeResp
  5700. 29, // 52: pb.Organization.FindWorkingUfByCycle:output_type -> pb.FindWorkingUfByCycleResp
  5701. 30, // 53: pb.Organization.GetWorkingRoByCode:output_type -> pb.GetWorkingRoByCodeResp
  5702. 35, // 54: pb.Organization.GetWorkingChestByCode:output_type -> pb.GetWorkingChestByCodeResp
  5703. 33, // 55: pb.Organization.GetWorkingPumpByCode:output_type -> pb.GetWorkingPumpByCodeResp
  5704. 34, // 56: pb.Organization.GetWorkingValveByCode:output_type -> pb.GetWorkingValveByCodeResp
  5705. 16, // 57: pb.Organization.MultiAddItemHistoryData:output_type -> pb.MultiAddItemHistoryDataResp
  5706. 26, // 58: pb.Organization.ItemHistoryDataList:output_type -> pb.ItemHistoryDataListResp
  5707. 26, // 59: pb.Organization.ItemHistoryDataByTime:output_type -> pb.ItemHistoryDataListResp
  5708. 19, // 60: pb.Organization.ItemHistoryDataMaxMinByTime:output_type -> pb.ItemHistoryDataMaxMinResp
  5709. 20, // 61: pb.Organization.ItemHistoryDataFirstLastByTime:output_type -> pb.ItemHistoryDataFirstLastResp
  5710. 21, // 62: pb.Organization.ChangeTypeItemHistoryData:output_type -> pb.ChangeTypeItemHistoryDataResp
  5711. 25, // 63: pb.Organization.ItemHistoryDataForChart:output_type -> pb.ItemHistoryDataForChartResp
  5712. 37, // 64: pb.Organization.FindAppList:output_type -> pb.FindAppListResp
  5713. 39, // 65: pb.Organization.GetAppInfo:output_type -> pb.GetAppInfoResp
  5714. 41, // 66: pb.Organization.CreateAppInfo:output_type -> pb.CreateAppInfoResp
  5715. 43, // 67: pb.Organization.RemoveAppInfo:output_type -> pb.RemoveAppInfoResp
  5716. 45, // 68: pb.Organization.DisableAppInfo:output_type -> pb.DisableAppInfoResp
  5717. 47, // 69: pb.Organization.EnableAppInfo:output_type -> pb.EnableAppInfoResp
  5718. 49, // 70: pb.Organization.ResetAppSecret:output_type -> pb.ResetAppSecretResp
  5719. 51, // 71: pb.Organization.ExpireAppSecret:output_type -> pb.ExpireAppSecretResp
  5720. 53, // 72: pb.Organization.ResetAppProject:output_type -> pb.ResetAppProjectResp
  5721. 55, // 73: pb.Organization.FindDataDescribe:output_type -> pb.FindDataDescribeResp
  5722. 58, // 74: pb.Organization.FindDataMinAndMax:output_type -> pb.FindDataMinAndMaxResp
  5723. 59, // 75: pb.Organization.FindDataCorrelation:output_type -> pb.FindDataCorrelationResp
  5724. 64, // 76: pb.Organization.CurrentData:output_type -> pb.CurrentDataResp
  5725. 61, // 77: pb.Organization.Health:output_type -> pb.HealthResp
  5726. 51, // [51:78] is the sub-list for method output_type
  5727. 24, // [24:51] is the sub-list for method input_type
  5728. 24, // [24:24] is the sub-list for extension type_name
  5729. 24, // [24:24] is the sub-list for extension extendee
  5730. 0, // [0:24] is the sub-list for field type_name
  5731. }
  5732. func init() { file_datacenter_proto_init() }
  5733. func file_datacenter_proto_init() {
  5734. if File_datacenter_proto != nil {
  5735. return
  5736. }
  5737. if !protoimpl.UnsafeEnabled {
  5738. file_datacenter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  5739. switch v := v.(*Pagination); i {
  5740. case 0:
  5741. return &v.state
  5742. case 1:
  5743. return &v.sizeCache
  5744. case 2:
  5745. return &v.unknownFields
  5746. default:
  5747. return nil
  5748. }
  5749. }
  5750. file_datacenter_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  5751. switch v := v.(*DataDescribeInfo); i {
  5752. case 0:
  5753. return &v.state
  5754. case 1:
  5755. return &v.sizeCache
  5756. case 2:
  5757. return &v.unknownFields
  5758. default:
  5759. return nil
  5760. }
  5761. }
  5762. file_datacenter_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  5763. switch v := v.(*DataMinAndMaxInfo); i {
  5764. case 0:
  5765. return &v.state
  5766. case 1:
  5767. return &v.sizeCache
  5768. case 2:
  5769. return &v.unknownFields
  5770. default:
  5771. return nil
  5772. }
  5773. }
  5774. file_datacenter_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  5775. switch v := v.(*RelatedItems); i {
  5776. case 0:
  5777. return &v.state
  5778. case 1:
  5779. return &v.sizeCache
  5780. case 2:
  5781. return &v.unknownFields
  5782. default:
  5783. return nil
  5784. }
  5785. }
  5786. file_datacenter_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  5787. switch v := v.(*DataCorrelationInfo); i {
  5788. case 0:
  5789. return &v.state
  5790. case 1:
  5791. return &v.sizeCache
  5792. case 2:
  5793. return &v.unknownFields
  5794. default:
  5795. return nil
  5796. }
  5797. }
  5798. file_datacenter_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  5799. switch v := v.(*AppInfo); i {
  5800. case 0:
  5801. return &v.state
  5802. case 1:
  5803. return &v.sizeCache
  5804. case 2:
  5805. return &v.unknownFields
  5806. default:
  5807. return nil
  5808. }
  5809. }
  5810. file_datacenter_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  5811. switch v := v.(*DcWorkingReq); i {
  5812. case 0:
  5813. return &v.state
  5814. case 1:
  5815. return &v.sizeCache
  5816. case 2:
  5817. return &v.unknownFields
  5818. default:
  5819. return nil
  5820. }
  5821. }
  5822. file_datacenter_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  5823. switch v := v.(*WorkingMf); i {
  5824. case 0:
  5825. return &v.state
  5826. case 1:
  5827. return &v.sizeCache
  5828. case 2:
  5829. return &v.unknownFields
  5830. default:
  5831. return nil
  5832. }
  5833. }
  5834. file_datacenter_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  5835. switch v := v.(*WorkingUf); i {
  5836. case 0:
  5837. return &v.state
  5838. case 1:
  5839. return &v.sizeCache
  5840. case 2:
  5841. return &v.unknownFields
  5842. default:
  5843. return nil
  5844. }
  5845. }
  5846. file_datacenter_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  5847. switch v := v.(*WorkingNf); i {
  5848. case 0:
  5849. return &v.state
  5850. case 1:
  5851. return &v.sizeCache
  5852. case 2:
  5853. return &v.unknownFields
  5854. default:
  5855. return nil
  5856. }
  5857. }
  5858. file_datacenter_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  5859. switch v := v.(*WorkingRo); i {
  5860. case 0:
  5861. return &v.state
  5862. case 1:
  5863. return &v.sizeCache
  5864. case 2:
  5865. return &v.unknownFields
  5866. default:
  5867. return nil
  5868. }
  5869. }
  5870. file_datacenter_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  5871. switch v := v.(*WorkingChest); i {
  5872. case 0:
  5873. return &v.state
  5874. case 1:
  5875. return &v.sizeCache
  5876. case 2:
  5877. return &v.unknownFields
  5878. default:
  5879. return nil
  5880. }
  5881. }
  5882. file_datacenter_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  5883. switch v := v.(*WorkingPump); i {
  5884. case 0:
  5885. return &v.state
  5886. case 1:
  5887. return &v.sizeCache
  5888. case 2:
  5889. return &v.unknownFields
  5890. default:
  5891. return nil
  5892. }
  5893. }
  5894. file_datacenter_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  5895. switch v := v.(*WorkingValve); i {
  5896. case 0:
  5897. return &v.state
  5898. case 1:
  5899. return &v.sizeCache
  5900. case 2:
  5901. return &v.unknownFields
  5902. default:
  5903. return nil
  5904. }
  5905. }
  5906. file_datacenter_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  5907. switch v := v.(*ItemHistoryData); i {
  5908. case 0:
  5909. return &v.state
  5910. case 1:
  5911. return &v.sizeCache
  5912. case 2:
  5913. return &v.unknownFields
  5914. default:
  5915. return nil
  5916. }
  5917. }
  5918. file_datacenter_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  5919. switch v := v.(*MultiAddItemHistoryDataReq); i {
  5920. case 0:
  5921. return &v.state
  5922. case 1:
  5923. return &v.sizeCache
  5924. case 2:
  5925. return &v.unknownFields
  5926. default:
  5927. return nil
  5928. }
  5929. }
  5930. file_datacenter_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  5931. switch v := v.(*MultiAddItemHistoryDataResp); i {
  5932. case 0:
  5933. return &v.state
  5934. case 1:
  5935. return &v.sizeCache
  5936. case 2:
  5937. return &v.unknownFields
  5938. default:
  5939. return nil
  5940. }
  5941. }
  5942. file_datacenter_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  5943. switch v := v.(*ItemHistoryDataListReq); i {
  5944. case 0:
  5945. return &v.state
  5946. case 1:
  5947. return &v.sizeCache
  5948. case 2:
  5949. return &v.unknownFields
  5950. default:
  5951. return nil
  5952. }
  5953. }
  5954. file_datacenter_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  5955. switch v := v.(*ItemHistoryDataByTimeReq); i {
  5956. case 0:
  5957. return &v.state
  5958. case 1:
  5959. return &v.sizeCache
  5960. case 2:
  5961. return &v.unknownFields
  5962. default:
  5963. return nil
  5964. }
  5965. }
  5966. file_datacenter_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  5967. switch v := v.(*ItemHistoryDataMaxMinResp); i {
  5968. case 0:
  5969. return &v.state
  5970. case 1:
  5971. return &v.sizeCache
  5972. case 2:
  5973. return &v.unknownFields
  5974. default:
  5975. return nil
  5976. }
  5977. }
  5978. file_datacenter_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  5979. switch v := v.(*ItemHistoryDataFirstLastResp); i {
  5980. case 0:
  5981. return &v.state
  5982. case 1:
  5983. return &v.sizeCache
  5984. case 2:
  5985. return &v.unknownFields
  5986. default:
  5987. return nil
  5988. }
  5989. }
  5990. file_datacenter_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  5991. switch v := v.(*ChangeTypeItemHistoryDataResp); i {
  5992. case 0:
  5993. return &v.state
  5994. case 1:
  5995. return &v.sizeCache
  5996. case 2:
  5997. return &v.unknownFields
  5998. default:
  5999. return nil
  6000. }
  6001. }
  6002. file_datacenter_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  6003. switch v := v.(*ItemHistoryDataList); i {
  6004. case 0:
  6005. return &v.state
  6006. case 1:
  6007. return &v.sizeCache
  6008. case 2:
  6009. return &v.unknownFields
  6010. default:
  6011. return nil
  6012. }
  6013. }
  6014. file_datacenter_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  6015. switch v := v.(*ItemHistoryDataForChart); i {
  6016. case 0:
  6017. return &v.state
  6018. case 1:
  6019. return &v.sizeCache
  6020. case 2:
  6021. return &v.unknownFields
  6022. default:
  6023. return nil
  6024. }
  6025. }
  6026. file_datacenter_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  6027. switch v := v.(*ItemHistoryDataForChartReq); i {
  6028. case 0:
  6029. return &v.state
  6030. case 1:
  6031. return &v.sizeCache
  6032. case 2:
  6033. return &v.unknownFields
  6034. default:
  6035. return nil
  6036. }
  6037. }
  6038. file_datacenter_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  6039. switch v := v.(*ItemHistoryDataForChartResp); i {
  6040. case 0:
  6041. return &v.state
  6042. case 1:
  6043. return &v.sizeCache
  6044. case 2:
  6045. return &v.unknownFields
  6046. default:
  6047. return nil
  6048. }
  6049. }
  6050. file_datacenter_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  6051. switch v := v.(*ItemHistoryDataListResp); i {
  6052. case 0:
  6053. return &v.state
  6054. case 1:
  6055. return &v.sizeCache
  6056. case 2:
  6057. return &v.unknownFields
  6058. default:
  6059. return nil
  6060. }
  6061. }
  6062. file_datacenter_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  6063. switch v := v.(*GetWorkingUfByCodeResp); i {
  6064. case 0:
  6065. return &v.state
  6066. case 1:
  6067. return &v.sizeCache
  6068. case 2:
  6069. return &v.unknownFields
  6070. default:
  6071. return nil
  6072. }
  6073. }
  6074. file_datacenter_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  6075. switch v := v.(*FindWorkingUfByCycleReq); i {
  6076. case 0:
  6077. return &v.state
  6078. case 1:
  6079. return &v.sizeCache
  6080. case 2:
  6081. return &v.unknownFields
  6082. default:
  6083. return nil
  6084. }
  6085. }
  6086. file_datacenter_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  6087. switch v := v.(*FindWorkingUfByCycleResp); i {
  6088. case 0:
  6089. return &v.state
  6090. case 1:
  6091. return &v.sizeCache
  6092. case 2:
  6093. return &v.unknownFields
  6094. default:
  6095. return nil
  6096. }
  6097. }
  6098. file_datacenter_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  6099. switch v := v.(*GetWorkingRoByCodeResp); i {
  6100. case 0:
  6101. return &v.state
  6102. case 1:
  6103. return &v.sizeCache
  6104. case 2:
  6105. return &v.unknownFields
  6106. default:
  6107. return nil
  6108. }
  6109. }
  6110. file_datacenter_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  6111. switch v := v.(*GetWorkingNfByCodeResp); i {
  6112. case 0:
  6113. return &v.state
  6114. case 1:
  6115. return &v.sizeCache
  6116. case 2:
  6117. return &v.unknownFields
  6118. default:
  6119. return nil
  6120. }
  6121. }
  6122. file_datacenter_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  6123. switch v := v.(*GetWorkingMfByCodeResp); i {
  6124. case 0:
  6125. return &v.state
  6126. case 1:
  6127. return &v.sizeCache
  6128. case 2:
  6129. return &v.unknownFields
  6130. default:
  6131. return nil
  6132. }
  6133. }
  6134. file_datacenter_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  6135. switch v := v.(*GetWorkingPumpByCodeResp); i {
  6136. case 0:
  6137. return &v.state
  6138. case 1:
  6139. return &v.sizeCache
  6140. case 2:
  6141. return &v.unknownFields
  6142. default:
  6143. return nil
  6144. }
  6145. }
  6146. file_datacenter_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  6147. switch v := v.(*GetWorkingValveByCodeResp); i {
  6148. case 0:
  6149. return &v.state
  6150. case 1:
  6151. return &v.sizeCache
  6152. case 2:
  6153. return &v.unknownFields
  6154. default:
  6155. return nil
  6156. }
  6157. }
  6158. file_datacenter_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  6159. switch v := v.(*GetWorkingChestByCodeResp); i {
  6160. case 0:
  6161. return &v.state
  6162. case 1:
  6163. return &v.sizeCache
  6164. case 2:
  6165. return &v.unknownFields
  6166. default:
  6167. return nil
  6168. }
  6169. }
  6170. file_datacenter_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  6171. switch v := v.(*FindAppListReq); i {
  6172. case 0:
  6173. return &v.state
  6174. case 1:
  6175. return &v.sizeCache
  6176. case 2:
  6177. return &v.unknownFields
  6178. default:
  6179. return nil
  6180. }
  6181. }
  6182. file_datacenter_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  6183. switch v := v.(*FindAppListResp); i {
  6184. case 0:
  6185. return &v.state
  6186. case 1:
  6187. return &v.sizeCache
  6188. case 2:
  6189. return &v.unknownFields
  6190. default:
  6191. return nil
  6192. }
  6193. }
  6194. file_datacenter_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  6195. switch v := v.(*GetAppInfoReq); i {
  6196. case 0:
  6197. return &v.state
  6198. case 1:
  6199. return &v.sizeCache
  6200. case 2:
  6201. return &v.unknownFields
  6202. default:
  6203. return nil
  6204. }
  6205. }
  6206. file_datacenter_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  6207. switch v := v.(*GetAppInfoResp); i {
  6208. case 0:
  6209. return &v.state
  6210. case 1:
  6211. return &v.sizeCache
  6212. case 2:
  6213. return &v.unknownFields
  6214. default:
  6215. return nil
  6216. }
  6217. }
  6218. file_datacenter_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  6219. switch v := v.(*CreateAppInfoReq); i {
  6220. case 0:
  6221. return &v.state
  6222. case 1:
  6223. return &v.sizeCache
  6224. case 2:
  6225. return &v.unknownFields
  6226. default:
  6227. return nil
  6228. }
  6229. }
  6230. file_datacenter_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  6231. switch v := v.(*CreateAppInfoResp); i {
  6232. case 0:
  6233. return &v.state
  6234. case 1:
  6235. return &v.sizeCache
  6236. case 2:
  6237. return &v.unknownFields
  6238. default:
  6239. return nil
  6240. }
  6241. }
  6242. file_datacenter_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  6243. switch v := v.(*RemoveAppInfoReq); i {
  6244. case 0:
  6245. return &v.state
  6246. case 1:
  6247. return &v.sizeCache
  6248. case 2:
  6249. return &v.unknownFields
  6250. default:
  6251. return nil
  6252. }
  6253. }
  6254. file_datacenter_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  6255. switch v := v.(*RemoveAppInfoResp); i {
  6256. case 0:
  6257. return &v.state
  6258. case 1:
  6259. return &v.sizeCache
  6260. case 2:
  6261. return &v.unknownFields
  6262. default:
  6263. return nil
  6264. }
  6265. }
  6266. file_datacenter_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  6267. switch v := v.(*DisableAppInfoReq); i {
  6268. case 0:
  6269. return &v.state
  6270. case 1:
  6271. return &v.sizeCache
  6272. case 2:
  6273. return &v.unknownFields
  6274. default:
  6275. return nil
  6276. }
  6277. }
  6278. file_datacenter_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  6279. switch v := v.(*DisableAppInfoResp); i {
  6280. case 0:
  6281. return &v.state
  6282. case 1:
  6283. return &v.sizeCache
  6284. case 2:
  6285. return &v.unknownFields
  6286. default:
  6287. return nil
  6288. }
  6289. }
  6290. file_datacenter_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  6291. switch v := v.(*EnableAppInfoReq); i {
  6292. case 0:
  6293. return &v.state
  6294. case 1:
  6295. return &v.sizeCache
  6296. case 2:
  6297. return &v.unknownFields
  6298. default:
  6299. return nil
  6300. }
  6301. }
  6302. file_datacenter_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  6303. switch v := v.(*EnableAppInfoResp); i {
  6304. case 0:
  6305. return &v.state
  6306. case 1:
  6307. return &v.sizeCache
  6308. case 2:
  6309. return &v.unknownFields
  6310. default:
  6311. return nil
  6312. }
  6313. }
  6314. file_datacenter_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  6315. switch v := v.(*ResetAppSecretReq); i {
  6316. case 0:
  6317. return &v.state
  6318. case 1:
  6319. return &v.sizeCache
  6320. case 2:
  6321. return &v.unknownFields
  6322. default:
  6323. return nil
  6324. }
  6325. }
  6326. file_datacenter_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  6327. switch v := v.(*ResetAppSecretResp); i {
  6328. case 0:
  6329. return &v.state
  6330. case 1:
  6331. return &v.sizeCache
  6332. case 2:
  6333. return &v.unknownFields
  6334. default:
  6335. return nil
  6336. }
  6337. }
  6338. file_datacenter_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  6339. switch v := v.(*ExpireAppSecretReq); i {
  6340. case 0:
  6341. return &v.state
  6342. case 1:
  6343. return &v.sizeCache
  6344. case 2:
  6345. return &v.unknownFields
  6346. default:
  6347. return nil
  6348. }
  6349. }
  6350. file_datacenter_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  6351. switch v := v.(*ExpireAppSecretResp); i {
  6352. case 0:
  6353. return &v.state
  6354. case 1:
  6355. return &v.sizeCache
  6356. case 2:
  6357. return &v.unknownFields
  6358. default:
  6359. return nil
  6360. }
  6361. }
  6362. file_datacenter_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  6363. switch v := v.(*ResetAppProjectReq); i {
  6364. case 0:
  6365. return &v.state
  6366. case 1:
  6367. return &v.sizeCache
  6368. case 2:
  6369. return &v.unknownFields
  6370. default:
  6371. return nil
  6372. }
  6373. }
  6374. file_datacenter_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  6375. switch v := v.(*ResetAppProjectResp); i {
  6376. case 0:
  6377. return &v.state
  6378. case 1:
  6379. return &v.sizeCache
  6380. case 2:
  6381. return &v.unknownFields
  6382. default:
  6383. return nil
  6384. }
  6385. }
  6386. file_datacenter_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  6387. switch v := v.(*FindDataDescribeReq); i {
  6388. case 0:
  6389. return &v.state
  6390. case 1:
  6391. return &v.sizeCache
  6392. case 2:
  6393. return &v.unknownFields
  6394. default:
  6395. return nil
  6396. }
  6397. }
  6398. file_datacenter_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  6399. switch v := v.(*FindDataDescribeResp); i {
  6400. case 0:
  6401. return &v.state
  6402. case 1:
  6403. return &v.sizeCache
  6404. case 2:
  6405. return &v.unknownFields
  6406. default:
  6407. return nil
  6408. }
  6409. }
  6410. file_datacenter_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  6411. switch v := v.(*FindDataCorrelationReq); i {
  6412. case 0:
  6413. return &v.state
  6414. case 1:
  6415. return &v.sizeCache
  6416. case 2:
  6417. return &v.unknownFields
  6418. default:
  6419. return nil
  6420. }
  6421. }
  6422. file_datacenter_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
  6423. switch v := v.(*FindDataMinAndMaxReq); i {
  6424. case 0:
  6425. return &v.state
  6426. case 1:
  6427. return &v.sizeCache
  6428. case 2:
  6429. return &v.unknownFields
  6430. default:
  6431. return nil
  6432. }
  6433. }
  6434. file_datacenter_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
  6435. switch v := v.(*FindDataMinAndMaxResp); i {
  6436. case 0:
  6437. return &v.state
  6438. case 1:
  6439. return &v.sizeCache
  6440. case 2:
  6441. return &v.unknownFields
  6442. default:
  6443. return nil
  6444. }
  6445. }
  6446. file_datacenter_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
  6447. switch v := v.(*FindDataCorrelationResp); i {
  6448. case 0:
  6449. return &v.state
  6450. case 1:
  6451. return &v.sizeCache
  6452. case 2:
  6453. return &v.unknownFields
  6454. default:
  6455. return nil
  6456. }
  6457. }
  6458. file_datacenter_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
  6459. switch v := v.(*HealthReq); i {
  6460. case 0:
  6461. return &v.state
  6462. case 1:
  6463. return &v.sizeCache
  6464. case 2:
  6465. return &v.unknownFields
  6466. default:
  6467. return nil
  6468. }
  6469. }
  6470. file_datacenter_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
  6471. switch v := v.(*HealthResp); i {
  6472. case 0:
  6473. return &v.state
  6474. case 1:
  6475. return &v.sizeCache
  6476. case 2:
  6477. return &v.unknownFields
  6478. default:
  6479. return nil
  6480. }
  6481. }
  6482. file_datacenter_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
  6483. switch v := v.(*CurrentItem); i {
  6484. case 0:
  6485. return &v.state
  6486. case 1:
  6487. return &v.sizeCache
  6488. case 2:
  6489. return &v.unknownFields
  6490. default:
  6491. return nil
  6492. }
  6493. }
  6494. file_datacenter_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
  6495. switch v := v.(*CurrentDataReq); i {
  6496. case 0:
  6497. return &v.state
  6498. case 1:
  6499. return &v.sizeCache
  6500. case 2:
  6501. return &v.unknownFields
  6502. default:
  6503. return nil
  6504. }
  6505. }
  6506. file_datacenter_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
  6507. switch v := v.(*CurrentDataResp); i {
  6508. case 0:
  6509. return &v.state
  6510. case 1:
  6511. return &v.sizeCache
  6512. case 2:
  6513. return &v.unknownFields
  6514. default:
  6515. return nil
  6516. }
  6517. }
  6518. }
  6519. type x struct{}
  6520. out := protoimpl.TypeBuilder{
  6521. File: protoimpl.DescBuilder{
  6522. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  6523. RawDescriptor: file_datacenter_proto_rawDesc,
  6524. NumEnums: 0,
  6525. NumMessages: 69,
  6526. NumExtensions: 0,
  6527. NumServices: 1,
  6528. },
  6529. GoTypes: file_datacenter_proto_goTypes,
  6530. DependencyIndexes: file_datacenter_proto_depIdxs,
  6531. MessageInfos: file_datacenter_proto_msgTypes,
  6532. }.Build()
  6533. File_datacenter_proto = out.File
  6534. file_datacenter_proto_rawDesc = nil
  6535. file_datacenter_proto_goTypes = nil
  6536. file_datacenter_proto_depIdxs = nil
  6537. }