datacenter.pb.go 249 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.33.0
  4. // protoc v3.21.11
  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:"c_time"
  1571. CTime string `protobuf:"bytes,48,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  1572. }
  1573. func (x *WorkingRo) Reset() {
  1574. *x = WorkingRo{}
  1575. if protoimpl.UnsafeEnabled {
  1576. mi := &file_datacenter_proto_msgTypes[10]
  1577. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1578. ms.StoreMessageInfo(mi)
  1579. }
  1580. }
  1581. func (x *WorkingRo) String() string {
  1582. return protoimpl.X.MessageStringOf(x)
  1583. }
  1584. func (*WorkingRo) ProtoMessage() {}
  1585. func (x *WorkingRo) ProtoReflect() protoreflect.Message {
  1586. mi := &file_datacenter_proto_msgTypes[10]
  1587. if protoimpl.UnsafeEnabled && x != nil {
  1588. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1589. if ms.LoadMessageInfo() == nil {
  1590. ms.StoreMessageInfo(mi)
  1591. }
  1592. return ms
  1593. }
  1594. return mi.MessageOf(x)
  1595. }
  1596. // Deprecated: Use WorkingRo.ProtoReflect.Descriptor instead.
  1597. func (*WorkingRo) Descriptor() ([]byte, []int) {
  1598. return file_datacenter_proto_rawDescGZIP(), []int{10}
  1599. }
  1600. func (x *WorkingRo) GetId() int64 {
  1601. if x != nil {
  1602. return x.Id
  1603. }
  1604. return 0
  1605. }
  1606. func (x *WorkingRo) GetProjectId() int64 {
  1607. if x != nil {
  1608. return x.ProjectId
  1609. }
  1610. return 0
  1611. }
  1612. func (x *WorkingRo) GetDeviceCode() string {
  1613. if x != nil {
  1614. return x.DeviceCode
  1615. }
  1616. return ""
  1617. }
  1618. func (x *WorkingRo) GetWaterTemperature() float64 {
  1619. if x != nil {
  1620. return x.WaterTemperature
  1621. }
  1622. return 0
  1623. }
  1624. func (x *WorkingRo) GetFeedFlow_1St() float64 {
  1625. if x != nil {
  1626. return x.FeedFlow_1St
  1627. }
  1628. return 0
  1629. }
  1630. func (x *WorkingRo) GetConFlow_1St() float64 {
  1631. if x != nil {
  1632. return x.ConFlow_1St
  1633. }
  1634. return 0
  1635. }
  1636. func (x *WorkingRo) GetProductFlow_1St() float64 {
  1637. if x != nil {
  1638. return x.ProductFlow_1St
  1639. }
  1640. return 0
  1641. }
  1642. func (x *WorkingRo) GetFeedPressure_1St() float64 {
  1643. if x != nil {
  1644. return x.FeedPressure_1St
  1645. }
  1646. return 0
  1647. }
  1648. func (x *WorkingRo) GetConPressure_1St() float64 {
  1649. if x != nil {
  1650. return x.ConPressure_1St
  1651. }
  1652. return 0
  1653. }
  1654. func (x *WorkingRo) GetProductPressure_1St() float64 {
  1655. if x != nil {
  1656. return x.ProductPressure_1St
  1657. }
  1658. return 0
  1659. }
  1660. func (x *WorkingRo) GetTmp_1St() float64 {
  1661. if x != nil {
  1662. return x.Tmp_1St
  1663. }
  1664. return 0
  1665. }
  1666. func (x *WorkingRo) GetFlux_1St() float64 {
  1667. if x != nil {
  1668. return x.Flux_1St
  1669. }
  1670. return 0
  1671. }
  1672. func (x *WorkingRo) GetPermeability_1St() float64 {
  1673. if x != nil {
  1674. return x.Permeability_1St
  1675. }
  1676. return 0
  1677. }
  1678. func (x *WorkingRo) GetFeedFlow_2Nd() float64 {
  1679. if x != nil {
  1680. return x.FeedFlow_2Nd
  1681. }
  1682. return 0
  1683. }
  1684. func (x *WorkingRo) GetConFlow_2Nd() float64 {
  1685. if x != nil {
  1686. return x.ConFlow_2Nd
  1687. }
  1688. return 0
  1689. }
  1690. func (x *WorkingRo) GetProductFlow_2Nd() float64 {
  1691. if x != nil {
  1692. return x.ProductFlow_2Nd
  1693. }
  1694. return 0
  1695. }
  1696. func (x *WorkingRo) GetFeedPressure_2Nd() float64 {
  1697. if x != nil {
  1698. return x.FeedPressure_2Nd
  1699. }
  1700. return 0
  1701. }
  1702. func (x *WorkingRo) GetConPressure_2Nd() float64 {
  1703. if x != nil {
  1704. return x.ConPressure_2Nd
  1705. }
  1706. return 0
  1707. }
  1708. func (x *WorkingRo) GetProductPressure_2Nd() float64 {
  1709. if x != nil {
  1710. return x.ProductPressure_2Nd
  1711. }
  1712. return 0
  1713. }
  1714. func (x *WorkingRo) GetTmp_2Nd() float64 {
  1715. if x != nil {
  1716. return x.Tmp_2Nd
  1717. }
  1718. return 0
  1719. }
  1720. func (x *WorkingRo) GetFlux_2Nd() float64 {
  1721. if x != nil {
  1722. return x.Flux_2Nd
  1723. }
  1724. return 0
  1725. }
  1726. func (x *WorkingRo) GetPermeability_2Nd() float64 {
  1727. if x != nil {
  1728. return x.Permeability_2Nd
  1729. }
  1730. return 0
  1731. }
  1732. func (x *WorkingRo) GetFeedFlow_3Th() float64 {
  1733. if x != nil {
  1734. return x.FeedFlow_3Th
  1735. }
  1736. return 0
  1737. }
  1738. func (x *WorkingRo) GetConFlow_3Th() float64 {
  1739. if x != nil {
  1740. return x.ConFlow_3Th
  1741. }
  1742. return 0
  1743. }
  1744. func (x *WorkingRo) GetProductFlow_3Th() float64 {
  1745. if x != nil {
  1746. return x.ProductFlow_3Th
  1747. }
  1748. return 0
  1749. }
  1750. func (x *WorkingRo) GetFeedPressure_3Th() float64 {
  1751. if x != nil {
  1752. return x.FeedPressure_3Th
  1753. }
  1754. return 0
  1755. }
  1756. func (x *WorkingRo) GetConPressure_3Th() float64 {
  1757. if x != nil {
  1758. return x.ConPressure_3Th
  1759. }
  1760. return 0
  1761. }
  1762. func (x *WorkingRo) GetProductPressure_3Th() float64 {
  1763. if x != nil {
  1764. return x.ProductPressure_3Th
  1765. }
  1766. return 0
  1767. }
  1768. func (x *WorkingRo) GetTmp_3Th() float64 {
  1769. if x != nil {
  1770. return x.Tmp_3Th
  1771. }
  1772. return 0
  1773. }
  1774. func (x *WorkingRo) GetFlux_3Th() float64 {
  1775. if x != nil {
  1776. return x.Flux_3Th
  1777. }
  1778. return 0
  1779. }
  1780. func (x *WorkingRo) GetPermeability_3Th() float64 {
  1781. if x != nil {
  1782. return x.Permeability_3Th
  1783. }
  1784. return 0
  1785. }
  1786. func (x *WorkingRo) GetFeedWqTurbidity() float64 {
  1787. if x != nil {
  1788. return x.FeedWqTurbidity
  1789. }
  1790. return 0
  1791. }
  1792. func (x *WorkingRo) GetFeedWqPh() int64 {
  1793. if x != nil {
  1794. return x.FeedWqPh
  1795. }
  1796. return 0
  1797. }
  1798. func (x *WorkingRo) GetProductWqPh() int64 {
  1799. if x != nil {
  1800. return x.ProductWqPh
  1801. }
  1802. return 0
  1803. }
  1804. func (x *WorkingRo) GetFeedWqAl() float64 {
  1805. if x != nil {
  1806. return x.FeedWqAl
  1807. }
  1808. return 0
  1809. }
  1810. func (x *WorkingRo) GetProductWqAl() float64 {
  1811. if x != nil {
  1812. return x.ProductWqAl
  1813. }
  1814. return 0
  1815. }
  1816. func (x *WorkingRo) GetFeedWqFe() float64 {
  1817. if x != nil {
  1818. return x.FeedWqFe
  1819. }
  1820. return 0
  1821. }
  1822. func (x *WorkingRo) GetProductWqFe() float64 {
  1823. if x != nil {
  1824. return x.ProductWqFe
  1825. }
  1826. return 0
  1827. }
  1828. func (x *WorkingRo) GetFeedWqMn() float64 {
  1829. if x != nil {
  1830. return x.FeedWqMn
  1831. }
  1832. return 0
  1833. }
  1834. func (x *WorkingRo) GetProductWqMn() float64 {
  1835. if x != nil {
  1836. return x.ProductWqMn
  1837. }
  1838. return 0
  1839. }
  1840. func (x *WorkingRo) GetFeedWqSio2() float64 {
  1841. if x != nil {
  1842. return x.FeedWqSio2
  1843. }
  1844. return 0
  1845. }
  1846. func (x *WorkingRo) GetProductWqSio2() float64 {
  1847. if x != nil {
  1848. return x.ProductWqSio2
  1849. }
  1850. return 0
  1851. }
  1852. func (x *WorkingRo) GetFeedWqCod() float64 {
  1853. if x != nil {
  1854. return x.FeedWqCod
  1855. }
  1856. return 0
  1857. }
  1858. func (x *WorkingRo) GetProductWqCod() float64 {
  1859. if x != nil {
  1860. return x.ProductWqCod
  1861. }
  1862. return 0
  1863. }
  1864. func (x *WorkingRo) GetFeedWqP() float64 {
  1865. if x != nil {
  1866. return x.FeedWqP
  1867. }
  1868. return 0
  1869. }
  1870. func (x *WorkingRo) GetProductWqP() float64 {
  1871. if x != nil {
  1872. return x.ProductWqP
  1873. }
  1874. return 0
  1875. }
  1876. func (x *WorkingRo) GetStep() int64 {
  1877. if x != nil {
  1878. return x.Step
  1879. }
  1880. return 0
  1881. }
  1882. func (x *WorkingRo) GetCTime() string {
  1883. if x != nil {
  1884. return x.CTime
  1885. }
  1886. return ""
  1887. }
  1888. type WorkingChest struct {
  1889. state protoimpl.MessageState
  1890. sizeCache protoimpl.SizeCache
  1891. unknownFields protoimpl.UnknownFields
  1892. // @gotags: json:"id"
  1893. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1894. // @gotags: json:"project_id"
  1895. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  1896. // @gotags: json:"device_code"
  1897. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  1898. // @gotags: json:"switch"
  1899. Switch int64 `protobuf:"varint,4,opt,name=switch,proto3" json:"switch,omitempty"` // 药箱液位开关 0: 关 1: 开
  1900. // @gotags: json:"level"
  1901. Level float64 `protobuf:"fixed64,5,opt,name=level,proto3" json:"level,omitempty"` // 液位高度
  1902. // @gotags: json:"agitator_status"
  1903. AgitatorStatus int64 `protobuf:"varint,6,opt,name=agitator_status,json=agitatorStatus,proto3" json:"agitator_status,omitempty"` // 搅拌器运行状态 0: 未运行 1:运行中
  1904. // @gotags: json:"agitator_duration"
  1905. AgitatorDuration int64 `protobuf:"varint,7,opt,name=agitator_duration,json=agitatorDuration,proto3" json:"agitator_duration,omitempty"` // 搅拌器运行时长
  1906. // @gotags: json:"agitator_fault_status"
  1907. AgitatorFaultStatus int64 `protobuf:"varint,8,opt,name=agitator_fault_status,json=agitatorFaultStatus,proto3" json:"agitator_fault_status,omitempty"` // 搅拌器故障状态 0:正常 1:故障
  1908. // @gotags: json:"c_time"
  1909. CTime string `protobuf:"bytes,9,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  1910. }
  1911. func (x *WorkingChest) Reset() {
  1912. *x = WorkingChest{}
  1913. if protoimpl.UnsafeEnabled {
  1914. mi := &file_datacenter_proto_msgTypes[11]
  1915. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1916. ms.StoreMessageInfo(mi)
  1917. }
  1918. }
  1919. func (x *WorkingChest) String() string {
  1920. return protoimpl.X.MessageStringOf(x)
  1921. }
  1922. func (*WorkingChest) ProtoMessage() {}
  1923. func (x *WorkingChest) ProtoReflect() protoreflect.Message {
  1924. mi := &file_datacenter_proto_msgTypes[11]
  1925. if protoimpl.UnsafeEnabled && x != nil {
  1926. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1927. if ms.LoadMessageInfo() == nil {
  1928. ms.StoreMessageInfo(mi)
  1929. }
  1930. return ms
  1931. }
  1932. return mi.MessageOf(x)
  1933. }
  1934. // Deprecated: Use WorkingChest.ProtoReflect.Descriptor instead.
  1935. func (*WorkingChest) Descriptor() ([]byte, []int) {
  1936. return file_datacenter_proto_rawDescGZIP(), []int{11}
  1937. }
  1938. func (x *WorkingChest) GetId() int64 {
  1939. if x != nil {
  1940. return x.Id
  1941. }
  1942. return 0
  1943. }
  1944. func (x *WorkingChest) GetProjectId() int64 {
  1945. if x != nil {
  1946. return x.ProjectId
  1947. }
  1948. return 0
  1949. }
  1950. func (x *WorkingChest) GetDeviceCode() string {
  1951. if x != nil {
  1952. return x.DeviceCode
  1953. }
  1954. return ""
  1955. }
  1956. func (x *WorkingChest) GetSwitch() int64 {
  1957. if x != nil {
  1958. return x.Switch
  1959. }
  1960. return 0
  1961. }
  1962. func (x *WorkingChest) GetLevel() float64 {
  1963. if x != nil {
  1964. return x.Level
  1965. }
  1966. return 0
  1967. }
  1968. func (x *WorkingChest) GetAgitatorStatus() int64 {
  1969. if x != nil {
  1970. return x.AgitatorStatus
  1971. }
  1972. return 0
  1973. }
  1974. func (x *WorkingChest) GetAgitatorDuration() int64 {
  1975. if x != nil {
  1976. return x.AgitatorDuration
  1977. }
  1978. return 0
  1979. }
  1980. func (x *WorkingChest) GetAgitatorFaultStatus() int64 {
  1981. if x != nil {
  1982. return x.AgitatorFaultStatus
  1983. }
  1984. return 0
  1985. }
  1986. func (x *WorkingChest) GetCTime() string {
  1987. if x != nil {
  1988. return x.CTime
  1989. }
  1990. return ""
  1991. }
  1992. type WorkingPump struct {
  1993. state protoimpl.MessageState
  1994. sizeCache protoimpl.SizeCache
  1995. unknownFields protoimpl.UnknownFields
  1996. // @gotags: json:"id"
  1997. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1998. // @gotags: json:"project_id"
  1999. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  2000. // @gotags: json:"device_code"
  2001. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  2002. // @gotags: json:"feed_pressure"
  2003. FeedPressure float64 `protobuf:"fixed64,4,opt,name=feed_pressure,json=feedPressure,proto3" json:"feed_pressure,omitempty"` // 进水压力
  2004. // @gotags: json:"out_pressure"
  2005. OutPressure float64 `protobuf:"fixed64,5,opt,name=out_pressure,json=outPressure,proto3" json:"out_pressure,omitempty"` // 出水压力
  2006. // @gotags: json:"duration"
  2007. Duration int64 `protobuf:"varint,6,opt,name=duration,proto3" json:"duration,omitempty"` // 运行时长 单位 s
  2008. // @gotags: json:"current"
  2009. Current float64 `protobuf:"fixed64,7,opt,name=current,proto3" json:"current,omitempty"` // 运行电流
  2010. // @gotags: json:"frequency"
  2011. Frequency float64 `protobuf:"fixed64,8,opt,name=frequency,proto3" json:"frequency,omitempty"` // 运行频率
  2012. // @gotags: json:"lift"
  2013. Lift float64 `protobuf:"fixed64,9,opt,name=lift,proto3" json:"lift,omitempty"` // 工作扬程
  2014. // @gotags: json:"efficiency"
  2015. Efficiency float64 `protobuf:"fixed64,10,opt,name=efficiency,proto3" json:"efficiency,omitempty"` // 运行效率
  2016. // @gotags: json:"run_status"
  2017. RunStatus int64 `protobuf:"varint,11,opt,name=run_status,json=runStatus,proto3" json:"run_status,omitempty"` // 运行状态 0: 停机 1: 运行正常
  2018. // @gotags: json:"fault_status"
  2019. FaultStatus int64 `protobuf:"varint,12,opt,name=fault_status,json=faultStatus,proto3" json:"fault_status,omitempty"` // 故障状态 0: 正常 1: 故障
  2020. // @gotags: json:"c_time"
  2021. CTime string `protobuf:"bytes,13,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  2022. }
  2023. func (x *WorkingPump) Reset() {
  2024. *x = WorkingPump{}
  2025. if protoimpl.UnsafeEnabled {
  2026. mi := &file_datacenter_proto_msgTypes[12]
  2027. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2028. ms.StoreMessageInfo(mi)
  2029. }
  2030. }
  2031. func (x *WorkingPump) String() string {
  2032. return protoimpl.X.MessageStringOf(x)
  2033. }
  2034. func (*WorkingPump) ProtoMessage() {}
  2035. func (x *WorkingPump) ProtoReflect() protoreflect.Message {
  2036. mi := &file_datacenter_proto_msgTypes[12]
  2037. if protoimpl.UnsafeEnabled && x != nil {
  2038. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2039. if ms.LoadMessageInfo() == nil {
  2040. ms.StoreMessageInfo(mi)
  2041. }
  2042. return ms
  2043. }
  2044. return mi.MessageOf(x)
  2045. }
  2046. // Deprecated: Use WorkingPump.ProtoReflect.Descriptor instead.
  2047. func (*WorkingPump) Descriptor() ([]byte, []int) {
  2048. return file_datacenter_proto_rawDescGZIP(), []int{12}
  2049. }
  2050. func (x *WorkingPump) GetId() int64 {
  2051. if x != nil {
  2052. return x.Id
  2053. }
  2054. return 0
  2055. }
  2056. func (x *WorkingPump) GetProjectId() int64 {
  2057. if x != nil {
  2058. return x.ProjectId
  2059. }
  2060. return 0
  2061. }
  2062. func (x *WorkingPump) GetDeviceCode() string {
  2063. if x != nil {
  2064. return x.DeviceCode
  2065. }
  2066. return ""
  2067. }
  2068. func (x *WorkingPump) GetFeedPressure() float64 {
  2069. if x != nil {
  2070. return x.FeedPressure
  2071. }
  2072. return 0
  2073. }
  2074. func (x *WorkingPump) GetOutPressure() float64 {
  2075. if x != nil {
  2076. return x.OutPressure
  2077. }
  2078. return 0
  2079. }
  2080. func (x *WorkingPump) GetDuration() int64 {
  2081. if x != nil {
  2082. return x.Duration
  2083. }
  2084. return 0
  2085. }
  2086. func (x *WorkingPump) GetCurrent() float64 {
  2087. if x != nil {
  2088. return x.Current
  2089. }
  2090. return 0
  2091. }
  2092. func (x *WorkingPump) GetFrequency() float64 {
  2093. if x != nil {
  2094. return x.Frequency
  2095. }
  2096. return 0
  2097. }
  2098. func (x *WorkingPump) GetLift() float64 {
  2099. if x != nil {
  2100. return x.Lift
  2101. }
  2102. return 0
  2103. }
  2104. func (x *WorkingPump) GetEfficiency() float64 {
  2105. if x != nil {
  2106. return x.Efficiency
  2107. }
  2108. return 0
  2109. }
  2110. func (x *WorkingPump) GetRunStatus() int64 {
  2111. if x != nil {
  2112. return x.RunStatus
  2113. }
  2114. return 0
  2115. }
  2116. func (x *WorkingPump) GetFaultStatus() int64 {
  2117. if x != nil {
  2118. return x.FaultStatus
  2119. }
  2120. return 0
  2121. }
  2122. func (x *WorkingPump) GetCTime() string {
  2123. if x != nil {
  2124. return x.CTime
  2125. }
  2126. return ""
  2127. }
  2128. type WorkingValve struct {
  2129. state protoimpl.MessageState
  2130. sizeCache protoimpl.SizeCache
  2131. unknownFields protoimpl.UnknownFields
  2132. // @gotags: json:"id"
  2133. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  2134. // @gotags: json:"project_id"
  2135. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  2136. // @gotags: json:"device_code"
  2137. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  2138. // @gotags: json:"adjust"
  2139. Adjust int64 `protobuf:"varint,4,opt,name=adjust,proto3" json:"adjust,omitempty"` // 是否为调节阀门 0: 否 1: 是
  2140. // @gotags: json:"opening"
  2141. Opening float64 `protobuf:"fixed64,5,opt,name=opening,proto3" json:"opening,omitempty"` // 当前阀门的开度
  2142. // @gotags: json:"closed"
  2143. Closed int64 `protobuf:"varint,6,opt,name=closed,proto3" json:"closed,omitempty"` // 关到位 全关 0: 否 1: 是
  2144. // @gotags: json:"opened"
  2145. Opened int64 `protobuf:"varint,7,opt,name=opened,proto3" json:"opened,omitempty"` // 开到位 开到 设置的开度 0: 否 1: 是
  2146. // @gotags: json:"fault_status"
  2147. FaultStatus int64 `protobuf:"varint,8,opt,name=fault_status,json=faultStatus,proto3" json:"fault_status,omitempty"` // 是否故障 0: 否 1: 是
  2148. // @gotags: json:"c_time"
  2149. CTime string `protobuf:"bytes,9,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  2150. }
  2151. func (x *WorkingValve) Reset() {
  2152. *x = WorkingValve{}
  2153. if protoimpl.UnsafeEnabled {
  2154. mi := &file_datacenter_proto_msgTypes[13]
  2155. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2156. ms.StoreMessageInfo(mi)
  2157. }
  2158. }
  2159. func (x *WorkingValve) String() string {
  2160. return protoimpl.X.MessageStringOf(x)
  2161. }
  2162. func (*WorkingValve) ProtoMessage() {}
  2163. func (x *WorkingValve) ProtoReflect() protoreflect.Message {
  2164. mi := &file_datacenter_proto_msgTypes[13]
  2165. if protoimpl.UnsafeEnabled && x != nil {
  2166. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2167. if ms.LoadMessageInfo() == nil {
  2168. ms.StoreMessageInfo(mi)
  2169. }
  2170. return ms
  2171. }
  2172. return mi.MessageOf(x)
  2173. }
  2174. // Deprecated: Use WorkingValve.ProtoReflect.Descriptor instead.
  2175. func (*WorkingValve) Descriptor() ([]byte, []int) {
  2176. return file_datacenter_proto_rawDescGZIP(), []int{13}
  2177. }
  2178. func (x *WorkingValve) GetId() int64 {
  2179. if x != nil {
  2180. return x.Id
  2181. }
  2182. return 0
  2183. }
  2184. func (x *WorkingValve) GetProjectId() int64 {
  2185. if x != nil {
  2186. return x.ProjectId
  2187. }
  2188. return 0
  2189. }
  2190. func (x *WorkingValve) GetDeviceCode() string {
  2191. if x != nil {
  2192. return x.DeviceCode
  2193. }
  2194. return ""
  2195. }
  2196. func (x *WorkingValve) GetAdjust() int64 {
  2197. if x != nil {
  2198. return x.Adjust
  2199. }
  2200. return 0
  2201. }
  2202. func (x *WorkingValve) GetOpening() float64 {
  2203. if x != nil {
  2204. return x.Opening
  2205. }
  2206. return 0
  2207. }
  2208. func (x *WorkingValve) GetClosed() int64 {
  2209. if x != nil {
  2210. return x.Closed
  2211. }
  2212. return 0
  2213. }
  2214. func (x *WorkingValve) GetOpened() int64 {
  2215. if x != nil {
  2216. return x.Opened
  2217. }
  2218. return 0
  2219. }
  2220. func (x *WorkingValve) GetFaultStatus() int64 {
  2221. if x != nil {
  2222. return x.FaultStatus
  2223. }
  2224. return 0
  2225. }
  2226. func (x *WorkingValve) GetCTime() string {
  2227. if x != nil {
  2228. return x.CTime
  2229. }
  2230. return ""
  2231. }
  2232. type ItemHistoryData struct {
  2233. state protoimpl.MessageState
  2234. sizeCache protoimpl.SizeCache
  2235. unknownFields protoimpl.UnknownFields
  2236. // @gotags: json:"project_id"
  2237. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  2238. // @gotags: json:"item_name"
  2239. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  2240. // @gotags: json:"val"
  2241. Val float64 `protobuf:"fixed64,3,opt,name=val,proto3" json:"val,omitempty"`
  2242. // @gotags: json:"h_time"
  2243. HTime string `protobuf:"bytes,4,opt,name=h_time,json=hTime,proto3" json:"h_time,omitempty"`
  2244. }
  2245. func (x *ItemHistoryData) Reset() {
  2246. *x = ItemHistoryData{}
  2247. if protoimpl.UnsafeEnabled {
  2248. mi := &file_datacenter_proto_msgTypes[14]
  2249. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2250. ms.StoreMessageInfo(mi)
  2251. }
  2252. }
  2253. func (x *ItemHistoryData) String() string {
  2254. return protoimpl.X.MessageStringOf(x)
  2255. }
  2256. func (*ItemHistoryData) ProtoMessage() {}
  2257. func (x *ItemHistoryData) ProtoReflect() protoreflect.Message {
  2258. mi := &file_datacenter_proto_msgTypes[14]
  2259. if protoimpl.UnsafeEnabled && x != nil {
  2260. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2261. if ms.LoadMessageInfo() == nil {
  2262. ms.StoreMessageInfo(mi)
  2263. }
  2264. return ms
  2265. }
  2266. return mi.MessageOf(x)
  2267. }
  2268. // Deprecated: Use ItemHistoryData.ProtoReflect.Descriptor instead.
  2269. func (*ItemHistoryData) Descriptor() ([]byte, []int) {
  2270. return file_datacenter_proto_rawDescGZIP(), []int{14}
  2271. }
  2272. func (x *ItemHistoryData) GetProjectId() int64 {
  2273. if x != nil {
  2274. return x.ProjectId
  2275. }
  2276. return 0
  2277. }
  2278. func (x *ItemHistoryData) GetItemName() string {
  2279. if x != nil {
  2280. return x.ItemName
  2281. }
  2282. return ""
  2283. }
  2284. func (x *ItemHistoryData) GetVal() float64 {
  2285. if x != nil {
  2286. return x.Val
  2287. }
  2288. return 0
  2289. }
  2290. func (x *ItemHistoryData) GetHTime() string {
  2291. if x != nil {
  2292. return x.HTime
  2293. }
  2294. return ""
  2295. }
  2296. type MultiAddItemHistoryDataReq struct {
  2297. state protoimpl.MessageState
  2298. sizeCache protoimpl.SizeCache
  2299. unknownFields protoimpl.UnknownFields
  2300. // @gotags: json:"project_id"
  2301. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  2302. // @gotags: json:"list"
  2303. List []*ItemHistoryData `protobuf:"bytes,2,rep,name=list,proto3" json:"list,omitempty"`
  2304. }
  2305. func (x *MultiAddItemHistoryDataReq) Reset() {
  2306. *x = MultiAddItemHistoryDataReq{}
  2307. if protoimpl.UnsafeEnabled {
  2308. mi := &file_datacenter_proto_msgTypes[15]
  2309. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2310. ms.StoreMessageInfo(mi)
  2311. }
  2312. }
  2313. func (x *MultiAddItemHistoryDataReq) String() string {
  2314. return protoimpl.X.MessageStringOf(x)
  2315. }
  2316. func (*MultiAddItemHistoryDataReq) ProtoMessage() {}
  2317. func (x *MultiAddItemHistoryDataReq) ProtoReflect() protoreflect.Message {
  2318. mi := &file_datacenter_proto_msgTypes[15]
  2319. if protoimpl.UnsafeEnabled && x != nil {
  2320. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2321. if ms.LoadMessageInfo() == nil {
  2322. ms.StoreMessageInfo(mi)
  2323. }
  2324. return ms
  2325. }
  2326. return mi.MessageOf(x)
  2327. }
  2328. // Deprecated: Use MultiAddItemHistoryDataReq.ProtoReflect.Descriptor instead.
  2329. func (*MultiAddItemHistoryDataReq) Descriptor() ([]byte, []int) {
  2330. return file_datacenter_proto_rawDescGZIP(), []int{15}
  2331. }
  2332. func (x *MultiAddItemHistoryDataReq) GetProjectId() int64 {
  2333. if x != nil {
  2334. return x.ProjectId
  2335. }
  2336. return 0
  2337. }
  2338. func (x *MultiAddItemHistoryDataReq) GetList() []*ItemHistoryData {
  2339. if x != nil {
  2340. return x.List
  2341. }
  2342. return nil
  2343. }
  2344. type MultiAddItemHistoryDataResp struct {
  2345. state protoimpl.MessageState
  2346. sizeCache protoimpl.SizeCache
  2347. unknownFields protoimpl.UnknownFields
  2348. }
  2349. func (x *MultiAddItemHistoryDataResp) Reset() {
  2350. *x = MultiAddItemHistoryDataResp{}
  2351. if protoimpl.UnsafeEnabled {
  2352. mi := &file_datacenter_proto_msgTypes[16]
  2353. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2354. ms.StoreMessageInfo(mi)
  2355. }
  2356. }
  2357. func (x *MultiAddItemHistoryDataResp) String() string {
  2358. return protoimpl.X.MessageStringOf(x)
  2359. }
  2360. func (*MultiAddItemHistoryDataResp) ProtoMessage() {}
  2361. func (x *MultiAddItemHistoryDataResp) ProtoReflect() protoreflect.Message {
  2362. mi := &file_datacenter_proto_msgTypes[16]
  2363. if protoimpl.UnsafeEnabled && x != nil {
  2364. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2365. if ms.LoadMessageInfo() == nil {
  2366. ms.StoreMessageInfo(mi)
  2367. }
  2368. return ms
  2369. }
  2370. return mi.MessageOf(x)
  2371. }
  2372. // Deprecated: Use MultiAddItemHistoryDataResp.ProtoReflect.Descriptor instead.
  2373. func (*MultiAddItemHistoryDataResp) Descriptor() ([]byte, []int) {
  2374. return file_datacenter_proto_rawDescGZIP(), []int{16}
  2375. }
  2376. type ItemHistoryDataListReq struct {
  2377. state protoimpl.MessageState
  2378. sizeCache protoimpl.SizeCache
  2379. unknownFields protoimpl.UnknownFields
  2380. // @gotags: json:"project_id"
  2381. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  2382. // @gotags: json:"item_name"
  2383. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  2384. // @gotags: json:"interval"
  2385. Interval string `protobuf:"bytes,3,opt,name=interval,proto3" json:"interval,omitempty"` //时间单位 s,minute,h,day
  2386. // @gotags: json:"aggregator"
  2387. Aggregator string `protobuf:"bytes,4,opt,name=aggregator,proto3" json:"aggregator,omitempty"` //聚合方式 min,max,avg,sum,realtime, new
  2388. // @gotags: json:"stime"
  2389. Stime string `protobuf:"bytes,5,opt,name=stime,proto3" json:"stime,omitempty"`
  2390. // @gotags: json:"etime"
  2391. Etime string `protobuf:"bytes,6,opt,name=etime,proto3" json:"etime,omitempty"`
  2392. // @gotags: json:"size"
  2393. Size int64 `protobuf:"varint,7,opt,name=size,proto3" json:"size,omitempty"`
  2394. // @gotags: json:"order"
  2395. Order string `protobuf:"bytes,8,opt,name=order,proto3" json:"order,omitempty"`
  2396. }
  2397. func (x *ItemHistoryDataListReq) Reset() {
  2398. *x = ItemHistoryDataListReq{}
  2399. if protoimpl.UnsafeEnabled {
  2400. mi := &file_datacenter_proto_msgTypes[17]
  2401. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2402. ms.StoreMessageInfo(mi)
  2403. }
  2404. }
  2405. func (x *ItemHistoryDataListReq) String() string {
  2406. return protoimpl.X.MessageStringOf(x)
  2407. }
  2408. func (*ItemHistoryDataListReq) ProtoMessage() {}
  2409. func (x *ItemHistoryDataListReq) ProtoReflect() protoreflect.Message {
  2410. mi := &file_datacenter_proto_msgTypes[17]
  2411. if protoimpl.UnsafeEnabled && x != nil {
  2412. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2413. if ms.LoadMessageInfo() == nil {
  2414. ms.StoreMessageInfo(mi)
  2415. }
  2416. return ms
  2417. }
  2418. return mi.MessageOf(x)
  2419. }
  2420. // Deprecated: Use ItemHistoryDataListReq.ProtoReflect.Descriptor instead.
  2421. func (*ItemHistoryDataListReq) Descriptor() ([]byte, []int) {
  2422. return file_datacenter_proto_rawDescGZIP(), []int{17}
  2423. }
  2424. func (x *ItemHistoryDataListReq) GetProjectId() int64 {
  2425. if x != nil {
  2426. return x.ProjectId
  2427. }
  2428. return 0
  2429. }
  2430. func (x *ItemHistoryDataListReq) GetItemName() string {
  2431. if x != nil {
  2432. return x.ItemName
  2433. }
  2434. return ""
  2435. }
  2436. func (x *ItemHistoryDataListReq) GetInterval() string {
  2437. if x != nil {
  2438. return x.Interval
  2439. }
  2440. return ""
  2441. }
  2442. func (x *ItemHistoryDataListReq) GetAggregator() string {
  2443. if x != nil {
  2444. return x.Aggregator
  2445. }
  2446. return ""
  2447. }
  2448. func (x *ItemHistoryDataListReq) GetStime() string {
  2449. if x != nil {
  2450. return x.Stime
  2451. }
  2452. return ""
  2453. }
  2454. func (x *ItemHistoryDataListReq) GetEtime() string {
  2455. if x != nil {
  2456. return x.Etime
  2457. }
  2458. return ""
  2459. }
  2460. func (x *ItemHistoryDataListReq) GetSize() int64 {
  2461. if x != nil {
  2462. return x.Size
  2463. }
  2464. return 0
  2465. }
  2466. func (x *ItemHistoryDataListReq) GetOrder() string {
  2467. if x != nil {
  2468. return x.Order
  2469. }
  2470. return ""
  2471. }
  2472. type ItemHistoryDataByTimeReq struct {
  2473. state protoimpl.MessageState
  2474. sizeCache protoimpl.SizeCache
  2475. unknownFields protoimpl.UnknownFields
  2476. // @gotags: json:"project_id"
  2477. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  2478. // @gotags: json:"item_name"
  2479. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  2480. // @gotags: json:"stime"
  2481. Stime string `protobuf:"bytes,3,opt,name=stime,proto3" json:"stime,omitempty"`
  2482. // @gotags: json:"etime"
  2483. Etime string `protobuf:"bytes,4,opt,name=etime,proto3" json:"etime,omitempty"`
  2484. // @gotags: json:"order"
  2485. Order string `protobuf:"bytes,5,opt,name=order,proto3" json:"order,omitempty"`
  2486. }
  2487. func (x *ItemHistoryDataByTimeReq) Reset() {
  2488. *x = ItemHistoryDataByTimeReq{}
  2489. if protoimpl.UnsafeEnabled {
  2490. mi := &file_datacenter_proto_msgTypes[18]
  2491. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2492. ms.StoreMessageInfo(mi)
  2493. }
  2494. }
  2495. func (x *ItemHistoryDataByTimeReq) String() string {
  2496. return protoimpl.X.MessageStringOf(x)
  2497. }
  2498. func (*ItemHistoryDataByTimeReq) ProtoMessage() {}
  2499. func (x *ItemHistoryDataByTimeReq) ProtoReflect() protoreflect.Message {
  2500. mi := &file_datacenter_proto_msgTypes[18]
  2501. if protoimpl.UnsafeEnabled && x != nil {
  2502. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2503. if ms.LoadMessageInfo() == nil {
  2504. ms.StoreMessageInfo(mi)
  2505. }
  2506. return ms
  2507. }
  2508. return mi.MessageOf(x)
  2509. }
  2510. // Deprecated: Use ItemHistoryDataByTimeReq.ProtoReflect.Descriptor instead.
  2511. func (*ItemHistoryDataByTimeReq) Descriptor() ([]byte, []int) {
  2512. return file_datacenter_proto_rawDescGZIP(), []int{18}
  2513. }
  2514. func (x *ItemHistoryDataByTimeReq) GetProjectId() int64 {
  2515. if x != nil {
  2516. return x.ProjectId
  2517. }
  2518. return 0
  2519. }
  2520. func (x *ItemHistoryDataByTimeReq) GetItemName() string {
  2521. if x != nil {
  2522. return x.ItemName
  2523. }
  2524. return ""
  2525. }
  2526. func (x *ItemHistoryDataByTimeReq) GetStime() string {
  2527. if x != nil {
  2528. return x.Stime
  2529. }
  2530. return ""
  2531. }
  2532. func (x *ItemHistoryDataByTimeReq) GetEtime() string {
  2533. if x != nil {
  2534. return x.Etime
  2535. }
  2536. return ""
  2537. }
  2538. func (x *ItemHistoryDataByTimeReq) GetOrder() string {
  2539. if x != nil {
  2540. return x.Order
  2541. }
  2542. return ""
  2543. }
  2544. type ItemHistoryDataMaxMinResp struct {
  2545. state protoimpl.MessageState
  2546. sizeCache protoimpl.SizeCache
  2547. unknownFields protoimpl.UnknownFields
  2548. // @gotags: json:"max_val"
  2549. MaxVal float64 `protobuf:"fixed64,1,opt,name=max_val,json=maxVal,proto3" json:"max_val,omitempty"`
  2550. // @gotags: json:"min_val"
  2551. MinVal float64 `protobuf:"fixed64,2,opt,name=min_val,json=minVal,proto3" json:"min_val,omitempty"`
  2552. // @gotags: json:"avg_val"
  2553. AvgVal float64 `protobuf:"fixed64,3,opt,name=avg_val,json=avgVal,proto3" json:"avg_val,omitempty"`
  2554. }
  2555. func (x *ItemHistoryDataMaxMinResp) Reset() {
  2556. *x = ItemHistoryDataMaxMinResp{}
  2557. if protoimpl.UnsafeEnabled {
  2558. mi := &file_datacenter_proto_msgTypes[19]
  2559. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2560. ms.StoreMessageInfo(mi)
  2561. }
  2562. }
  2563. func (x *ItemHistoryDataMaxMinResp) String() string {
  2564. return protoimpl.X.MessageStringOf(x)
  2565. }
  2566. func (*ItemHistoryDataMaxMinResp) ProtoMessage() {}
  2567. func (x *ItemHistoryDataMaxMinResp) ProtoReflect() protoreflect.Message {
  2568. mi := &file_datacenter_proto_msgTypes[19]
  2569. if protoimpl.UnsafeEnabled && x != nil {
  2570. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2571. if ms.LoadMessageInfo() == nil {
  2572. ms.StoreMessageInfo(mi)
  2573. }
  2574. return ms
  2575. }
  2576. return mi.MessageOf(x)
  2577. }
  2578. // Deprecated: Use ItemHistoryDataMaxMinResp.ProtoReflect.Descriptor instead.
  2579. func (*ItemHistoryDataMaxMinResp) Descriptor() ([]byte, []int) {
  2580. return file_datacenter_proto_rawDescGZIP(), []int{19}
  2581. }
  2582. func (x *ItemHistoryDataMaxMinResp) GetMaxVal() float64 {
  2583. if x != nil {
  2584. return x.MaxVal
  2585. }
  2586. return 0
  2587. }
  2588. func (x *ItemHistoryDataMaxMinResp) GetMinVal() float64 {
  2589. if x != nil {
  2590. return x.MinVal
  2591. }
  2592. return 0
  2593. }
  2594. func (x *ItemHistoryDataMaxMinResp) GetAvgVal() float64 {
  2595. if x != nil {
  2596. return x.AvgVal
  2597. }
  2598. return 0
  2599. }
  2600. type ItemHistoryDataFirstLastResp struct {
  2601. state protoimpl.MessageState
  2602. sizeCache protoimpl.SizeCache
  2603. unknownFields protoimpl.UnknownFields
  2604. // @gotags: json:"first"
  2605. First float64 `protobuf:"fixed64,1,opt,name=first,proto3" json:"first,omitempty"`
  2606. // @gotags: json:"last"
  2607. Last float64 `protobuf:"fixed64,2,opt,name=last,proto3" json:"last,omitempty"`
  2608. }
  2609. func (x *ItemHistoryDataFirstLastResp) Reset() {
  2610. *x = ItemHistoryDataFirstLastResp{}
  2611. if protoimpl.UnsafeEnabled {
  2612. mi := &file_datacenter_proto_msgTypes[20]
  2613. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2614. ms.StoreMessageInfo(mi)
  2615. }
  2616. }
  2617. func (x *ItemHistoryDataFirstLastResp) String() string {
  2618. return protoimpl.X.MessageStringOf(x)
  2619. }
  2620. func (*ItemHistoryDataFirstLastResp) ProtoMessage() {}
  2621. func (x *ItemHistoryDataFirstLastResp) ProtoReflect() protoreflect.Message {
  2622. mi := &file_datacenter_proto_msgTypes[20]
  2623. if protoimpl.UnsafeEnabled && x != nil {
  2624. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2625. if ms.LoadMessageInfo() == nil {
  2626. ms.StoreMessageInfo(mi)
  2627. }
  2628. return ms
  2629. }
  2630. return mi.MessageOf(x)
  2631. }
  2632. // Deprecated: Use ItemHistoryDataFirstLastResp.ProtoReflect.Descriptor instead.
  2633. func (*ItemHistoryDataFirstLastResp) Descriptor() ([]byte, []int) {
  2634. return file_datacenter_proto_rawDescGZIP(), []int{20}
  2635. }
  2636. func (x *ItemHistoryDataFirstLastResp) GetFirst() float64 {
  2637. if x != nil {
  2638. return x.First
  2639. }
  2640. return 0
  2641. }
  2642. func (x *ItemHistoryDataFirstLastResp) GetLast() float64 {
  2643. if x != nil {
  2644. return x.Last
  2645. }
  2646. return 0
  2647. }
  2648. type ChangeTypeItemHistoryDataResp struct {
  2649. state protoimpl.MessageState
  2650. sizeCache protoimpl.SizeCache
  2651. unknownFields protoimpl.UnknownFields
  2652. // @gotags: json:"value"
  2653. Value float64 `protobuf:"fixed64,1,opt,name=value,proto3" json:"value,omitempty"`
  2654. }
  2655. func (x *ChangeTypeItemHistoryDataResp) Reset() {
  2656. *x = ChangeTypeItemHistoryDataResp{}
  2657. if protoimpl.UnsafeEnabled {
  2658. mi := &file_datacenter_proto_msgTypes[21]
  2659. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2660. ms.StoreMessageInfo(mi)
  2661. }
  2662. }
  2663. func (x *ChangeTypeItemHistoryDataResp) String() string {
  2664. return protoimpl.X.MessageStringOf(x)
  2665. }
  2666. func (*ChangeTypeItemHistoryDataResp) ProtoMessage() {}
  2667. func (x *ChangeTypeItemHistoryDataResp) ProtoReflect() protoreflect.Message {
  2668. mi := &file_datacenter_proto_msgTypes[21]
  2669. if protoimpl.UnsafeEnabled && x != nil {
  2670. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2671. if ms.LoadMessageInfo() == nil {
  2672. ms.StoreMessageInfo(mi)
  2673. }
  2674. return ms
  2675. }
  2676. return mi.MessageOf(x)
  2677. }
  2678. // Deprecated: Use ChangeTypeItemHistoryDataResp.ProtoReflect.Descriptor instead.
  2679. func (*ChangeTypeItemHistoryDataResp) Descriptor() ([]byte, []int) {
  2680. return file_datacenter_proto_rawDescGZIP(), []int{21}
  2681. }
  2682. func (x *ChangeTypeItemHistoryDataResp) GetValue() float64 {
  2683. if x != nil {
  2684. return x.Value
  2685. }
  2686. return 0
  2687. }
  2688. type ItemHistoryDataList struct {
  2689. state protoimpl.MessageState
  2690. sizeCache protoimpl.SizeCache
  2691. unknownFields protoimpl.UnknownFields
  2692. // @gotags: json:"item_name"
  2693. ItemName string `protobuf:"bytes,1,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  2694. // @gotags: json:"val"
  2695. Val float64 `protobuf:"fixed64,2,opt,name=val,proto3" json:"val,omitempty"`
  2696. // @gotags: json:"h_time"
  2697. HTime string `protobuf:"bytes,3,opt,name=h_time,json=hTime,proto3" json:"h_time,omitempty"`
  2698. }
  2699. func (x *ItemHistoryDataList) Reset() {
  2700. *x = ItemHistoryDataList{}
  2701. if protoimpl.UnsafeEnabled {
  2702. mi := &file_datacenter_proto_msgTypes[22]
  2703. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2704. ms.StoreMessageInfo(mi)
  2705. }
  2706. }
  2707. func (x *ItemHistoryDataList) String() string {
  2708. return protoimpl.X.MessageStringOf(x)
  2709. }
  2710. func (*ItemHistoryDataList) ProtoMessage() {}
  2711. func (x *ItemHistoryDataList) ProtoReflect() protoreflect.Message {
  2712. mi := &file_datacenter_proto_msgTypes[22]
  2713. if protoimpl.UnsafeEnabled && x != nil {
  2714. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2715. if ms.LoadMessageInfo() == nil {
  2716. ms.StoreMessageInfo(mi)
  2717. }
  2718. return ms
  2719. }
  2720. return mi.MessageOf(x)
  2721. }
  2722. // Deprecated: Use ItemHistoryDataList.ProtoReflect.Descriptor instead.
  2723. func (*ItemHistoryDataList) Descriptor() ([]byte, []int) {
  2724. return file_datacenter_proto_rawDescGZIP(), []int{22}
  2725. }
  2726. func (x *ItemHistoryDataList) GetItemName() string {
  2727. if x != nil {
  2728. return x.ItemName
  2729. }
  2730. return ""
  2731. }
  2732. func (x *ItemHistoryDataList) GetVal() float64 {
  2733. if x != nil {
  2734. return x.Val
  2735. }
  2736. return 0
  2737. }
  2738. func (x *ItemHistoryDataList) GetHTime() string {
  2739. if x != nil {
  2740. return x.HTime
  2741. }
  2742. return ""
  2743. }
  2744. type ItemHistoryDataForChart struct {
  2745. state protoimpl.MessageState
  2746. sizeCache protoimpl.SizeCache
  2747. unknownFields protoimpl.UnknownFields
  2748. // @gotags: json:"name"
  2749. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  2750. // @gotags: json:"val"
  2751. Val float64 `protobuf:"fixed64,2,opt,name=val,proto3" json:"val,omitempty"`
  2752. // @gotags: json:"htime_at"
  2753. HtimeAt string `protobuf:"bytes,3,opt,name=htime_at,json=htimeAt,proto3" json:"htime_at,omitempty"`
  2754. }
  2755. func (x *ItemHistoryDataForChart) Reset() {
  2756. *x = ItemHistoryDataForChart{}
  2757. if protoimpl.UnsafeEnabled {
  2758. mi := &file_datacenter_proto_msgTypes[23]
  2759. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2760. ms.StoreMessageInfo(mi)
  2761. }
  2762. }
  2763. func (x *ItemHistoryDataForChart) String() string {
  2764. return protoimpl.X.MessageStringOf(x)
  2765. }
  2766. func (*ItemHistoryDataForChart) ProtoMessage() {}
  2767. func (x *ItemHistoryDataForChart) ProtoReflect() protoreflect.Message {
  2768. mi := &file_datacenter_proto_msgTypes[23]
  2769. if protoimpl.UnsafeEnabled && x != nil {
  2770. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2771. if ms.LoadMessageInfo() == nil {
  2772. ms.StoreMessageInfo(mi)
  2773. }
  2774. return ms
  2775. }
  2776. return mi.MessageOf(x)
  2777. }
  2778. // Deprecated: Use ItemHistoryDataForChart.ProtoReflect.Descriptor instead.
  2779. func (*ItemHistoryDataForChart) Descriptor() ([]byte, []int) {
  2780. return file_datacenter_proto_rawDescGZIP(), []int{23}
  2781. }
  2782. func (x *ItemHistoryDataForChart) GetName() string {
  2783. if x != nil {
  2784. return x.Name
  2785. }
  2786. return ""
  2787. }
  2788. func (x *ItemHistoryDataForChart) GetVal() float64 {
  2789. if x != nil {
  2790. return x.Val
  2791. }
  2792. return 0
  2793. }
  2794. func (x *ItemHistoryDataForChart) GetHtimeAt() string {
  2795. if x != nil {
  2796. return x.HtimeAt
  2797. }
  2798. return ""
  2799. }
  2800. type ItemHistoryDataForChartReq struct {
  2801. state protoimpl.MessageState
  2802. sizeCache protoimpl.SizeCache
  2803. unknownFields protoimpl.UnknownFields
  2804. // @gotags: json:"project_id"
  2805. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  2806. // @gotags: json:"item_name"
  2807. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  2808. // @gotags: json:"stime"
  2809. Stime string `protobuf:"bytes,3,opt,name=stime,proto3" json:"stime,omitempty"`
  2810. // @gotags: json:"etime"
  2811. Etime string `protobuf:"bytes,4,opt,name=etime,proto3" json:"etime,omitempty"`
  2812. // @gotags: json:"interval"
  2813. Interval string `protobuf:"bytes,5,opt,name=interval,proto3" json:"interval,omitempty"`
  2814. // @gotags: json:"size"
  2815. Size int64 `protobuf:"varint,6,opt,name=size,proto3" json:"size,omitempty"`
  2816. // @gotags: json:"aggregator"
  2817. Aggregator string `protobuf:"bytes,7,opt,name=aggregator,proto3" json:"aggregator,omitempty"`
  2818. // @gotags: json:"order"
  2819. Order string `protobuf:"bytes,8,opt,name=order,proto3" json:"order,omitempty"`
  2820. // @gotags: json:"max_val"
  2821. MaxVal float64 `protobuf:"fixed64,9,opt,name=max_val,json=maxVal,proto3" json:"max_val,omitempty"`
  2822. // @gotags: json:"min_val"
  2823. MinVal float64 `protobuf:"fixed64,10,opt,name=min_val,json=minVal,proto3" json:"min_val,omitempty"`
  2824. }
  2825. func (x *ItemHistoryDataForChartReq) Reset() {
  2826. *x = ItemHistoryDataForChartReq{}
  2827. if protoimpl.UnsafeEnabled {
  2828. mi := &file_datacenter_proto_msgTypes[24]
  2829. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2830. ms.StoreMessageInfo(mi)
  2831. }
  2832. }
  2833. func (x *ItemHistoryDataForChartReq) String() string {
  2834. return protoimpl.X.MessageStringOf(x)
  2835. }
  2836. func (*ItemHistoryDataForChartReq) ProtoMessage() {}
  2837. func (x *ItemHistoryDataForChartReq) ProtoReflect() protoreflect.Message {
  2838. mi := &file_datacenter_proto_msgTypes[24]
  2839. if protoimpl.UnsafeEnabled && x != nil {
  2840. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2841. if ms.LoadMessageInfo() == nil {
  2842. ms.StoreMessageInfo(mi)
  2843. }
  2844. return ms
  2845. }
  2846. return mi.MessageOf(x)
  2847. }
  2848. // Deprecated: Use ItemHistoryDataForChartReq.ProtoReflect.Descriptor instead.
  2849. func (*ItemHistoryDataForChartReq) Descriptor() ([]byte, []int) {
  2850. return file_datacenter_proto_rawDescGZIP(), []int{24}
  2851. }
  2852. func (x *ItemHistoryDataForChartReq) GetProjectId() int64 {
  2853. if x != nil {
  2854. return x.ProjectId
  2855. }
  2856. return 0
  2857. }
  2858. func (x *ItemHistoryDataForChartReq) GetItemName() string {
  2859. if x != nil {
  2860. return x.ItemName
  2861. }
  2862. return ""
  2863. }
  2864. func (x *ItemHistoryDataForChartReq) GetStime() string {
  2865. if x != nil {
  2866. return x.Stime
  2867. }
  2868. return ""
  2869. }
  2870. func (x *ItemHistoryDataForChartReq) GetEtime() string {
  2871. if x != nil {
  2872. return x.Etime
  2873. }
  2874. return ""
  2875. }
  2876. func (x *ItemHistoryDataForChartReq) GetInterval() string {
  2877. if x != nil {
  2878. return x.Interval
  2879. }
  2880. return ""
  2881. }
  2882. func (x *ItemHistoryDataForChartReq) GetSize() int64 {
  2883. if x != nil {
  2884. return x.Size
  2885. }
  2886. return 0
  2887. }
  2888. func (x *ItemHistoryDataForChartReq) GetAggregator() string {
  2889. if x != nil {
  2890. return x.Aggregator
  2891. }
  2892. return ""
  2893. }
  2894. func (x *ItemHistoryDataForChartReq) GetOrder() string {
  2895. if x != nil {
  2896. return x.Order
  2897. }
  2898. return ""
  2899. }
  2900. func (x *ItemHistoryDataForChartReq) GetMaxVal() float64 {
  2901. if x != nil {
  2902. return x.MaxVal
  2903. }
  2904. return 0
  2905. }
  2906. func (x *ItemHistoryDataForChartReq) GetMinVal() float64 {
  2907. if x != nil {
  2908. return x.MinVal
  2909. }
  2910. return 0
  2911. }
  2912. type ItemHistoryDataForChartResp struct {
  2913. state protoimpl.MessageState
  2914. sizeCache protoimpl.SizeCache
  2915. unknownFields protoimpl.UnknownFields
  2916. // @gotags: json:"list"
  2917. List []*ItemHistoryDataForChart `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  2918. }
  2919. func (x *ItemHistoryDataForChartResp) Reset() {
  2920. *x = ItemHistoryDataForChartResp{}
  2921. if protoimpl.UnsafeEnabled {
  2922. mi := &file_datacenter_proto_msgTypes[25]
  2923. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2924. ms.StoreMessageInfo(mi)
  2925. }
  2926. }
  2927. func (x *ItemHistoryDataForChartResp) String() string {
  2928. return protoimpl.X.MessageStringOf(x)
  2929. }
  2930. func (*ItemHistoryDataForChartResp) ProtoMessage() {}
  2931. func (x *ItemHistoryDataForChartResp) ProtoReflect() protoreflect.Message {
  2932. mi := &file_datacenter_proto_msgTypes[25]
  2933. if protoimpl.UnsafeEnabled && x != nil {
  2934. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2935. if ms.LoadMessageInfo() == nil {
  2936. ms.StoreMessageInfo(mi)
  2937. }
  2938. return ms
  2939. }
  2940. return mi.MessageOf(x)
  2941. }
  2942. // Deprecated: Use ItemHistoryDataForChartResp.ProtoReflect.Descriptor instead.
  2943. func (*ItemHistoryDataForChartResp) Descriptor() ([]byte, []int) {
  2944. return file_datacenter_proto_rawDescGZIP(), []int{25}
  2945. }
  2946. func (x *ItemHistoryDataForChartResp) GetList() []*ItemHistoryDataForChart {
  2947. if x != nil {
  2948. return x.List
  2949. }
  2950. return nil
  2951. }
  2952. type ItemHistoryDataListResp struct {
  2953. state protoimpl.MessageState
  2954. sizeCache protoimpl.SizeCache
  2955. unknownFields protoimpl.UnknownFields
  2956. // @gotags: json:"list"
  2957. List []*ItemHistoryDataList `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  2958. }
  2959. func (x *ItemHistoryDataListResp) Reset() {
  2960. *x = ItemHistoryDataListResp{}
  2961. if protoimpl.UnsafeEnabled {
  2962. mi := &file_datacenter_proto_msgTypes[26]
  2963. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2964. ms.StoreMessageInfo(mi)
  2965. }
  2966. }
  2967. func (x *ItemHistoryDataListResp) String() string {
  2968. return protoimpl.X.MessageStringOf(x)
  2969. }
  2970. func (*ItemHistoryDataListResp) ProtoMessage() {}
  2971. func (x *ItemHistoryDataListResp) ProtoReflect() protoreflect.Message {
  2972. mi := &file_datacenter_proto_msgTypes[26]
  2973. if protoimpl.UnsafeEnabled && x != nil {
  2974. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2975. if ms.LoadMessageInfo() == nil {
  2976. ms.StoreMessageInfo(mi)
  2977. }
  2978. return ms
  2979. }
  2980. return mi.MessageOf(x)
  2981. }
  2982. // Deprecated: Use ItemHistoryDataListResp.ProtoReflect.Descriptor instead.
  2983. func (*ItemHistoryDataListResp) Descriptor() ([]byte, []int) {
  2984. return file_datacenter_proto_rawDescGZIP(), []int{26}
  2985. }
  2986. func (x *ItemHistoryDataListResp) GetList() []*ItemHistoryDataList {
  2987. if x != nil {
  2988. return x.List
  2989. }
  2990. return nil
  2991. }
  2992. type GetWorkingUfByCodeResp struct {
  2993. state protoimpl.MessageState
  2994. sizeCache protoimpl.SizeCache
  2995. unknownFields protoimpl.UnknownFields
  2996. // @gotags: json:"list"
  2997. List []*WorkingUf `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  2998. }
  2999. func (x *GetWorkingUfByCodeResp) Reset() {
  3000. *x = GetWorkingUfByCodeResp{}
  3001. if protoimpl.UnsafeEnabled {
  3002. mi := &file_datacenter_proto_msgTypes[27]
  3003. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3004. ms.StoreMessageInfo(mi)
  3005. }
  3006. }
  3007. func (x *GetWorkingUfByCodeResp) String() string {
  3008. return protoimpl.X.MessageStringOf(x)
  3009. }
  3010. func (*GetWorkingUfByCodeResp) ProtoMessage() {}
  3011. func (x *GetWorkingUfByCodeResp) ProtoReflect() protoreflect.Message {
  3012. mi := &file_datacenter_proto_msgTypes[27]
  3013. if protoimpl.UnsafeEnabled && x != nil {
  3014. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3015. if ms.LoadMessageInfo() == nil {
  3016. ms.StoreMessageInfo(mi)
  3017. }
  3018. return ms
  3019. }
  3020. return mi.MessageOf(x)
  3021. }
  3022. // Deprecated: Use GetWorkingUfByCodeResp.ProtoReflect.Descriptor instead.
  3023. func (*GetWorkingUfByCodeResp) Descriptor() ([]byte, []int) {
  3024. return file_datacenter_proto_rawDescGZIP(), []int{27}
  3025. }
  3026. func (x *GetWorkingUfByCodeResp) GetList() []*WorkingUf {
  3027. if x != nil {
  3028. return x.List
  3029. }
  3030. return nil
  3031. }
  3032. type FindWorkingUfByCycleReq struct {
  3033. state protoimpl.MessageState
  3034. sizeCache protoimpl.SizeCache
  3035. unknownFields protoimpl.UnknownFields
  3036. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  3037. DeviceCode string `protobuf:"bytes,2,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  3038. FilterCycle int64 `protobuf:"varint,3,opt,name=filter_cycle,json=filterCycle,proto3" json:"filter_cycle,omitempty"`
  3039. Step int64 `protobuf:"varint,4,opt,name=step,proto3" json:"step,omitempty"`
  3040. FilterTimeStart float64 `protobuf:"fixed64,5,opt,name=filter_time_start,json=filterTimeStart,proto3" json:"filter_time_start,omitempty"`
  3041. FilterTimeEnd float64 `protobuf:"fixed64,6,opt,name=filter_time_end,json=filterTimeEnd,proto3" json:"filter_time_end,omitempty"`
  3042. Limit int64 `protobuf:"varint,7,opt,name=limit,proto3" json:"limit,omitempty"`
  3043. }
  3044. func (x *FindWorkingUfByCycleReq) Reset() {
  3045. *x = FindWorkingUfByCycleReq{}
  3046. if protoimpl.UnsafeEnabled {
  3047. mi := &file_datacenter_proto_msgTypes[28]
  3048. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3049. ms.StoreMessageInfo(mi)
  3050. }
  3051. }
  3052. func (x *FindWorkingUfByCycleReq) String() string {
  3053. return protoimpl.X.MessageStringOf(x)
  3054. }
  3055. func (*FindWorkingUfByCycleReq) ProtoMessage() {}
  3056. func (x *FindWorkingUfByCycleReq) ProtoReflect() protoreflect.Message {
  3057. mi := &file_datacenter_proto_msgTypes[28]
  3058. if protoimpl.UnsafeEnabled && x != nil {
  3059. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3060. if ms.LoadMessageInfo() == nil {
  3061. ms.StoreMessageInfo(mi)
  3062. }
  3063. return ms
  3064. }
  3065. return mi.MessageOf(x)
  3066. }
  3067. // Deprecated: Use FindWorkingUfByCycleReq.ProtoReflect.Descriptor instead.
  3068. func (*FindWorkingUfByCycleReq) Descriptor() ([]byte, []int) {
  3069. return file_datacenter_proto_rawDescGZIP(), []int{28}
  3070. }
  3071. func (x *FindWorkingUfByCycleReq) GetProjectId() int64 {
  3072. if x != nil {
  3073. return x.ProjectId
  3074. }
  3075. return 0
  3076. }
  3077. func (x *FindWorkingUfByCycleReq) GetDeviceCode() string {
  3078. if x != nil {
  3079. return x.DeviceCode
  3080. }
  3081. return ""
  3082. }
  3083. func (x *FindWorkingUfByCycleReq) GetFilterCycle() int64 {
  3084. if x != nil {
  3085. return x.FilterCycle
  3086. }
  3087. return 0
  3088. }
  3089. func (x *FindWorkingUfByCycleReq) GetStep() int64 {
  3090. if x != nil {
  3091. return x.Step
  3092. }
  3093. return 0
  3094. }
  3095. func (x *FindWorkingUfByCycleReq) GetFilterTimeStart() float64 {
  3096. if x != nil {
  3097. return x.FilterTimeStart
  3098. }
  3099. return 0
  3100. }
  3101. func (x *FindWorkingUfByCycleReq) GetFilterTimeEnd() float64 {
  3102. if x != nil {
  3103. return x.FilterTimeEnd
  3104. }
  3105. return 0
  3106. }
  3107. func (x *FindWorkingUfByCycleReq) GetLimit() int64 {
  3108. if x != nil {
  3109. return x.Limit
  3110. }
  3111. return 0
  3112. }
  3113. type FindWorkingUfByCycleResp struct {
  3114. state protoimpl.MessageState
  3115. sizeCache protoimpl.SizeCache
  3116. unknownFields protoimpl.UnknownFields
  3117. // @gotags: json:"list"
  3118. List []*WorkingUf `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3119. }
  3120. func (x *FindWorkingUfByCycleResp) Reset() {
  3121. *x = FindWorkingUfByCycleResp{}
  3122. if protoimpl.UnsafeEnabled {
  3123. mi := &file_datacenter_proto_msgTypes[29]
  3124. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3125. ms.StoreMessageInfo(mi)
  3126. }
  3127. }
  3128. func (x *FindWorkingUfByCycleResp) String() string {
  3129. return protoimpl.X.MessageStringOf(x)
  3130. }
  3131. func (*FindWorkingUfByCycleResp) ProtoMessage() {}
  3132. func (x *FindWorkingUfByCycleResp) ProtoReflect() protoreflect.Message {
  3133. mi := &file_datacenter_proto_msgTypes[29]
  3134. if protoimpl.UnsafeEnabled && x != nil {
  3135. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3136. if ms.LoadMessageInfo() == nil {
  3137. ms.StoreMessageInfo(mi)
  3138. }
  3139. return ms
  3140. }
  3141. return mi.MessageOf(x)
  3142. }
  3143. // Deprecated: Use FindWorkingUfByCycleResp.ProtoReflect.Descriptor instead.
  3144. func (*FindWorkingUfByCycleResp) Descriptor() ([]byte, []int) {
  3145. return file_datacenter_proto_rawDescGZIP(), []int{29}
  3146. }
  3147. func (x *FindWorkingUfByCycleResp) GetList() []*WorkingUf {
  3148. if x != nil {
  3149. return x.List
  3150. }
  3151. return nil
  3152. }
  3153. type GetWorkingRoByCodeResp struct {
  3154. state protoimpl.MessageState
  3155. sizeCache protoimpl.SizeCache
  3156. unknownFields protoimpl.UnknownFields
  3157. // @gotags: json:"list"
  3158. List []*WorkingRo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3159. }
  3160. func (x *GetWorkingRoByCodeResp) Reset() {
  3161. *x = GetWorkingRoByCodeResp{}
  3162. if protoimpl.UnsafeEnabled {
  3163. mi := &file_datacenter_proto_msgTypes[30]
  3164. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3165. ms.StoreMessageInfo(mi)
  3166. }
  3167. }
  3168. func (x *GetWorkingRoByCodeResp) String() string {
  3169. return protoimpl.X.MessageStringOf(x)
  3170. }
  3171. func (*GetWorkingRoByCodeResp) ProtoMessage() {}
  3172. func (x *GetWorkingRoByCodeResp) ProtoReflect() protoreflect.Message {
  3173. mi := &file_datacenter_proto_msgTypes[30]
  3174. if protoimpl.UnsafeEnabled && x != nil {
  3175. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3176. if ms.LoadMessageInfo() == nil {
  3177. ms.StoreMessageInfo(mi)
  3178. }
  3179. return ms
  3180. }
  3181. return mi.MessageOf(x)
  3182. }
  3183. // Deprecated: Use GetWorkingRoByCodeResp.ProtoReflect.Descriptor instead.
  3184. func (*GetWorkingRoByCodeResp) Descriptor() ([]byte, []int) {
  3185. return file_datacenter_proto_rawDescGZIP(), []int{30}
  3186. }
  3187. func (x *GetWorkingRoByCodeResp) GetList() []*WorkingRo {
  3188. if x != nil {
  3189. return x.List
  3190. }
  3191. return nil
  3192. }
  3193. type GetWorkingNfByCodeResp struct {
  3194. state protoimpl.MessageState
  3195. sizeCache protoimpl.SizeCache
  3196. unknownFields protoimpl.UnknownFields
  3197. // @gotags: json:"list"
  3198. List []*WorkingNf `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3199. }
  3200. func (x *GetWorkingNfByCodeResp) Reset() {
  3201. *x = GetWorkingNfByCodeResp{}
  3202. if protoimpl.UnsafeEnabled {
  3203. mi := &file_datacenter_proto_msgTypes[31]
  3204. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3205. ms.StoreMessageInfo(mi)
  3206. }
  3207. }
  3208. func (x *GetWorkingNfByCodeResp) String() string {
  3209. return protoimpl.X.MessageStringOf(x)
  3210. }
  3211. func (*GetWorkingNfByCodeResp) ProtoMessage() {}
  3212. func (x *GetWorkingNfByCodeResp) ProtoReflect() protoreflect.Message {
  3213. mi := &file_datacenter_proto_msgTypes[31]
  3214. if protoimpl.UnsafeEnabled && x != nil {
  3215. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3216. if ms.LoadMessageInfo() == nil {
  3217. ms.StoreMessageInfo(mi)
  3218. }
  3219. return ms
  3220. }
  3221. return mi.MessageOf(x)
  3222. }
  3223. // Deprecated: Use GetWorkingNfByCodeResp.ProtoReflect.Descriptor instead.
  3224. func (*GetWorkingNfByCodeResp) Descriptor() ([]byte, []int) {
  3225. return file_datacenter_proto_rawDescGZIP(), []int{31}
  3226. }
  3227. func (x *GetWorkingNfByCodeResp) GetList() []*WorkingNf {
  3228. if x != nil {
  3229. return x.List
  3230. }
  3231. return nil
  3232. }
  3233. type GetWorkingMfByCodeResp struct {
  3234. state protoimpl.MessageState
  3235. sizeCache protoimpl.SizeCache
  3236. unknownFields protoimpl.UnknownFields
  3237. // @gotags: json:"list"
  3238. List []*WorkingMf `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3239. }
  3240. func (x *GetWorkingMfByCodeResp) Reset() {
  3241. *x = GetWorkingMfByCodeResp{}
  3242. if protoimpl.UnsafeEnabled {
  3243. mi := &file_datacenter_proto_msgTypes[32]
  3244. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3245. ms.StoreMessageInfo(mi)
  3246. }
  3247. }
  3248. func (x *GetWorkingMfByCodeResp) String() string {
  3249. return protoimpl.X.MessageStringOf(x)
  3250. }
  3251. func (*GetWorkingMfByCodeResp) ProtoMessage() {}
  3252. func (x *GetWorkingMfByCodeResp) ProtoReflect() protoreflect.Message {
  3253. mi := &file_datacenter_proto_msgTypes[32]
  3254. if protoimpl.UnsafeEnabled && x != nil {
  3255. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3256. if ms.LoadMessageInfo() == nil {
  3257. ms.StoreMessageInfo(mi)
  3258. }
  3259. return ms
  3260. }
  3261. return mi.MessageOf(x)
  3262. }
  3263. // Deprecated: Use GetWorkingMfByCodeResp.ProtoReflect.Descriptor instead.
  3264. func (*GetWorkingMfByCodeResp) Descriptor() ([]byte, []int) {
  3265. return file_datacenter_proto_rawDescGZIP(), []int{32}
  3266. }
  3267. func (x *GetWorkingMfByCodeResp) GetList() []*WorkingMf {
  3268. if x != nil {
  3269. return x.List
  3270. }
  3271. return nil
  3272. }
  3273. type GetWorkingPumpByCodeResp struct {
  3274. state protoimpl.MessageState
  3275. sizeCache protoimpl.SizeCache
  3276. unknownFields protoimpl.UnknownFields
  3277. // @gotags: json:"list"
  3278. List []*WorkingPump `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3279. }
  3280. func (x *GetWorkingPumpByCodeResp) Reset() {
  3281. *x = GetWorkingPumpByCodeResp{}
  3282. if protoimpl.UnsafeEnabled {
  3283. mi := &file_datacenter_proto_msgTypes[33]
  3284. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3285. ms.StoreMessageInfo(mi)
  3286. }
  3287. }
  3288. func (x *GetWorkingPumpByCodeResp) String() string {
  3289. return protoimpl.X.MessageStringOf(x)
  3290. }
  3291. func (*GetWorkingPumpByCodeResp) ProtoMessage() {}
  3292. func (x *GetWorkingPumpByCodeResp) ProtoReflect() protoreflect.Message {
  3293. mi := &file_datacenter_proto_msgTypes[33]
  3294. if protoimpl.UnsafeEnabled && x != nil {
  3295. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3296. if ms.LoadMessageInfo() == nil {
  3297. ms.StoreMessageInfo(mi)
  3298. }
  3299. return ms
  3300. }
  3301. return mi.MessageOf(x)
  3302. }
  3303. // Deprecated: Use GetWorkingPumpByCodeResp.ProtoReflect.Descriptor instead.
  3304. func (*GetWorkingPumpByCodeResp) Descriptor() ([]byte, []int) {
  3305. return file_datacenter_proto_rawDescGZIP(), []int{33}
  3306. }
  3307. func (x *GetWorkingPumpByCodeResp) GetList() []*WorkingPump {
  3308. if x != nil {
  3309. return x.List
  3310. }
  3311. return nil
  3312. }
  3313. type GetWorkingValveByCodeResp struct {
  3314. state protoimpl.MessageState
  3315. sizeCache protoimpl.SizeCache
  3316. unknownFields protoimpl.UnknownFields
  3317. // @gotags: json:"list"
  3318. List []*WorkingValve `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3319. }
  3320. func (x *GetWorkingValveByCodeResp) Reset() {
  3321. *x = GetWorkingValveByCodeResp{}
  3322. if protoimpl.UnsafeEnabled {
  3323. mi := &file_datacenter_proto_msgTypes[34]
  3324. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3325. ms.StoreMessageInfo(mi)
  3326. }
  3327. }
  3328. func (x *GetWorkingValveByCodeResp) String() string {
  3329. return protoimpl.X.MessageStringOf(x)
  3330. }
  3331. func (*GetWorkingValveByCodeResp) ProtoMessage() {}
  3332. func (x *GetWorkingValveByCodeResp) ProtoReflect() protoreflect.Message {
  3333. mi := &file_datacenter_proto_msgTypes[34]
  3334. if protoimpl.UnsafeEnabled && x != nil {
  3335. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3336. if ms.LoadMessageInfo() == nil {
  3337. ms.StoreMessageInfo(mi)
  3338. }
  3339. return ms
  3340. }
  3341. return mi.MessageOf(x)
  3342. }
  3343. // Deprecated: Use GetWorkingValveByCodeResp.ProtoReflect.Descriptor instead.
  3344. func (*GetWorkingValveByCodeResp) Descriptor() ([]byte, []int) {
  3345. return file_datacenter_proto_rawDescGZIP(), []int{34}
  3346. }
  3347. func (x *GetWorkingValveByCodeResp) GetList() []*WorkingValve {
  3348. if x != nil {
  3349. return x.List
  3350. }
  3351. return nil
  3352. }
  3353. type GetWorkingChestByCodeResp struct {
  3354. state protoimpl.MessageState
  3355. sizeCache protoimpl.SizeCache
  3356. unknownFields protoimpl.UnknownFields
  3357. // @gotags: json:"list"
  3358. List []*WorkingChest `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3359. }
  3360. func (x *GetWorkingChestByCodeResp) Reset() {
  3361. *x = GetWorkingChestByCodeResp{}
  3362. if protoimpl.UnsafeEnabled {
  3363. mi := &file_datacenter_proto_msgTypes[35]
  3364. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3365. ms.StoreMessageInfo(mi)
  3366. }
  3367. }
  3368. func (x *GetWorkingChestByCodeResp) String() string {
  3369. return protoimpl.X.MessageStringOf(x)
  3370. }
  3371. func (*GetWorkingChestByCodeResp) ProtoMessage() {}
  3372. func (x *GetWorkingChestByCodeResp) ProtoReflect() protoreflect.Message {
  3373. mi := &file_datacenter_proto_msgTypes[35]
  3374. if protoimpl.UnsafeEnabled && x != nil {
  3375. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3376. if ms.LoadMessageInfo() == nil {
  3377. ms.StoreMessageInfo(mi)
  3378. }
  3379. return ms
  3380. }
  3381. return mi.MessageOf(x)
  3382. }
  3383. // Deprecated: Use GetWorkingChestByCodeResp.ProtoReflect.Descriptor instead.
  3384. func (*GetWorkingChestByCodeResp) Descriptor() ([]byte, []int) {
  3385. return file_datacenter_proto_rawDescGZIP(), []int{35}
  3386. }
  3387. func (x *GetWorkingChestByCodeResp) GetList() []*WorkingChest {
  3388. if x != nil {
  3389. return x.List
  3390. }
  3391. return nil
  3392. }
  3393. type FindAppListReq struct {
  3394. state protoimpl.MessageState
  3395. sizeCache protoimpl.SizeCache
  3396. unknownFields protoimpl.UnknownFields
  3397. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
  3398. PageSize int64 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  3399. Order string `protobuf:"bytes,3,opt,name=order,proto3" json:"order,omitempty"` // 排序字段及方向 例: id desc
  3400. }
  3401. func (x *FindAppListReq) Reset() {
  3402. *x = FindAppListReq{}
  3403. if protoimpl.UnsafeEnabled {
  3404. mi := &file_datacenter_proto_msgTypes[36]
  3405. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3406. ms.StoreMessageInfo(mi)
  3407. }
  3408. }
  3409. func (x *FindAppListReq) String() string {
  3410. return protoimpl.X.MessageStringOf(x)
  3411. }
  3412. func (*FindAppListReq) ProtoMessage() {}
  3413. func (x *FindAppListReq) ProtoReflect() protoreflect.Message {
  3414. mi := &file_datacenter_proto_msgTypes[36]
  3415. if protoimpl.UnsafeEnabled && x != nil {
  3416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3417. if ms.LoadMessageInfo() == nil {
  3418. ms.StoreMessageInfo(mi)
  3419. }
  3420. return ms
  3421. }
  3422. return mi.MessageOf(x)
  3423. }
  3424. // Deprecated: Use FindAppListReq.ProtoReflect.Descriptor instead.
  3425. func (*FindAppListReq) Descriptor() ([]byte, []int) {
  3426. return file_datacenter_proto_rawDescGZIP(), []int{36}
  3427. }
  3428. func (x *FindAppListReq) GetPage() int64 {
  3429. if x != nil {
  3430. return x.Page
  3431. }
  3432. return 0
  3433. }
  3434. func (x *FindAppListReq) GetPageSize() int64 {
  3435. if x != nil {
  3436. return x.PageSize
  3437. }
  3438. return 0
  3439. }
  3440. func (x *FindAppListReq) GetOrder() string {
  3441. if x != nil {
  3442. return x.Order
  3443. }
  3444. return ""
  3445. }
  3446. type FindAppListResp struct {
  3447. state protoimpl.MessageState
  3448. sizeCache protoimpl.SizeCache
  3449. unknownFields protoimpl.UnknownFields
  3450. List []*AppInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  3451. Pagination *Pagination `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
  3452. }
  3453. func (x *FindAppListResp) Reset() {
  3454. *x = FindAppListResp{}
  3455. if protoimpl.UnsafeEnabled {
  3456. mi := &file_datacenter_proto_msgTypes[37]
  3457. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3458. ms.StoreMessageInfo(mi)
  3459. }
  3460. }
  3461. func (x *FindAppListResp) String() string {
  3462. return protoimpl.X.MessageStringOf(x)
  3463. }
  3464. func (*FindAppListResp) ProtoMessage() {}
  3465. func (x *FindAppListResp) ProtoReflect() protoreflect.Message {
  3466. mi := &file_datacenter_proto_msgTypes[37]
  3467. if protoimpl.UnsafeEnabled && x != nil {
  3468. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3469. if ms.LoadMessageInfo() == nil {
  3470. ms.StoreMessageInfo(mi)
  3471. }
  3472. return ms
  3473. }
  3474. return mi.MessageOf(x)
  3475. }
  3476. // Deprecated: Use FindAppListResp.ProtoReflect.Descriptor instead.
  3477. func (*FindAppListResp) Descriptor() ([]byte, []int) {
  3478. return file_datacenter_proto_rawDescGZIP(), []int{37}
  3479. }
  3480. func (x *FindAppListResp) GetList() []*AppInfo {
  3481. if x != nil {
  3482. return x.List
  3483. }
  3484. return nil
  3485. }
  3486. func (x *FindAppListResp) GetPagination() *Pagination {
  3487. if x != nil {
  3488. return x.Pagination
  3489. }
  3490. return nil
  3491. }
  3492. type GetAppInfoReq struct {
  3493. state protoimpl.MessageState
  3494. sizeCache protoimpl.SizeCache
  3495. unknownFields protoimpl.UnknownFields
  3496. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  3497. }
  3498. func (x *GetAppInfoReq) Reset() {
  3499. *x = GetAppInfoReq{}
  3500. if protoimpl.UnsafeEnabled {
  3501. mi := &file_datacenter_proto_msgTypes[38]
  3502. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3503. ms.StoreMessageInfo(mi)
  3504. }
  3505. }
  3506. func (x *GetAppInfoReq) String() string {
  3507. return protoimpl.X.MessageStringOf(x)
  3508. }
  3509. func (*GetAppInfoReq) ProtoMessage() {}
  3510. func (x *GetAppInfoReq) ProtoReflect() protoreflect.Message {
  3511. mi := &file_datacenter_proto_msgTypes[38]
  3512. if protoimpl.UnsafeEnabled && x != nil {
  3513. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3514. if ms.LoadMessageInfo() == nil {
  3515. ms.StoreMessageInfo(mi)
  3516. }
  3517. return ms
  3518. }
  3519. return mi.MessageOf(x)
  3520. }
  3521. // Deprecated: Use GetAppInfoReq.ProtoReflect.Descriptor instead.
  3522. func (*GetAppInfoReq) Descriptor() ([]byte, []int) {
  3523. return file_datacenter_proto_rawDescGZIP(), []int{38}
  3524. }
  3525. func (x *GetAppInfoReq) GetAppName() string {
  3526. if x != nil {
  3527. return x.AppName
  3528. }
  3529. return ""
  3530. }
  3531. type GetAppInfoResp struct {
  3532. state protoimpl.MessageState
  3533. sizeCache protoimpl.SizeCache
  3534. unknownFields protoimpl.UnknownFields
  3535. AppInfo *AppInfo `protobuf:"bytes,1,opt,name=app_info,json=appInfo,proto3" json:"app_info,omitempty"`
  3536. }
  3537. func (x *GetAppInfoResp) Reset() {
  3538. *x = GetAppInfoResp{}
  3539. if protoimpl.UnsafeEnabled {
  3540. mi := &file_datacenter_proto_msgTypes[39]
  3541. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3542. ms.StoreMessageInfo(mi)
  3543. }
  3544. }
  3545. func (x *GetAppInfoResp) String() string {
  3546. return protoimpl.X.MessageStringOf(x)
  3547. }
  3548. func (*GetAppInfoResp) ProtoMessage() {}
  3549. func (x *GetAppInfoResp) ProtoReflect() protoreflect.Message {
  3550. mi := &file_datacenter_proto_msgTypes[39]
  3551. if protoimpl.UnsafeEnabled && x != nil {
  3552. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3553. if ms.LoadMessageInfo() == nil {
  3554. ms.StoreMessageInfo(mi)
  3555. }
  3556. return ms
  3557. }
  3558. return mi.MessageOf(x)
  3559. }
  3560. // Deprecated: Use GetAppInfoResp.ProtoReflect.Descriptor instead.
  3561. func (*GetAppInfoResp) Descriptor() ([]byte, []int) {
  3562. return file_datacenter_proto_rawDescGZIP(), []int{39}
  3563. }
  3564. func (x *GetAppInfoResp) GetAppInfo() *AppInfo {
  3565. if x != nil {
  3566. return x.AppInfo
  3567. }
  3568. return nil
  3569. }
  3570. type CreateAppInfoReq struct {
  3571. state protoimpl.MessageState
  3572. sizeCache protoimpl.SizeCache
  3573. unknownFields protoimpl.UnknownFields
  3574. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  3575. ProjectIds []int64 `protobuf:"varint,2,rep,packed,name=project_ids,json=projectIds,proto3" json:"project_ids,omitempty"`
  3576. Expire int64 `protobuf:"varint,3,opt,name=expire,proto3" json:"expire,omitempty"`
  3577. }
  3578. func (x *CreateAppInfoReq) Reset() {
  3579. *x = CreateAppInfoReq{}
  3580. if protoimpl.UnsafeEnabled {
  3581. mi := &file_datacenter_proto_msgTypes[40]
  3582. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3583. ms.StoreMessageInfo(mi)
  3584. }
  3585. }
  3586. func (x *CreateAppInfoReq) String() string {
  3587. return protoimpl.X.MessageStringOf(x)
  3588. }
  3589. func (*CreateAppInfoReq) ProtoMessage() {}
  3590. func (x *CreateAppInfoReq) ProtoReflect() protoreflect.Message {
  3591. mi := &file_datacenter_proto_msgTypes[40]
  3592. if protoimpl.UnsafeEnabled && x != nil {
  3593. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3594. if ms.LoadMessageInfo() == nil {
  3595. ms.StoreMessageInfo(mi)
  3596. }
  3597. return ms
  3598. }
  3599. return mi.MessageOf(x)
  3600. }
  3601. // Deprecated: Use CreateAppInfoReq.ProtoReflect.Descriptor instead.
  3602. func (*CreateAppInfoReq) Descriptor() ([]byte, []int) {
  3603. return file_datacenter_proto_rawDescGZIP(), []int{40}
  3604. }
  3605. func (x *CreateAppInfoReq) GetAppName() string {
  3606. if x != nil {
  3607. return x.AppName
  3608. }
  3609. return ""
  3610. }
  3611. func (x *CreateAppInfoReq) GetProjectIds() []int64 {
  3612. if x != nil {
  3613. return x.ProjectIds
  3614. }
  3615. return nil
  3616. }
  3617. func (x *CreateAppInfoReq) GetExpire() int64 {
  3618. if x != nil {
  3619. return x.Expire
  3620. }
  3621. return 0
  3622. }
  3623. type CreateAppInfoResp struct {
  3624. state protoimpl.MessageState
  3625. sizeCache protoimpl.SizeCache
  3626. unknownFields protoimpl.UnknownFields
  3627. AppInfo *AppInfo `protobuf:"bytes,1,opt,name=app_info,json=appInfo,proto3" json:"app_info,omitempty"`
  3628. }
  3629. func (x *CreateAppInfoResp) Reset() {
  3630. *x = CreateAppInfoResp{}
  3631. if protoimpl.UnsafeEnabled {
  3632. mi := &file_datacenter_proto_msgTypes[41]
  3633. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3634. ms.StoreMessageInfo(mi)
  3635. }
  3636. }
  3637. func (x *CreateAppInfoResp) String() string {
  3638. return protoimpl.X.MessageStringOf(x)
  3639. }
  3640. func (*CreateAppInfoResp) ProtoMessage() {}
  3641. func (x *CreateAppInfoResp) ProtoReflect() protoreflect.Message {
  3642. mi := &file_datacenter_proto_msgTypes[41]
  3643. if protoimpl.UnsafeEnabled && x != nil {
  3644. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3645. if ms.LoadMessageInfo() == nil {
  3646. ms.StoreMessageInfo(mi)
  3647. }
  3648. return ms
  3649. }
  3650. return mi.MessageOf(x)
  3651. }
  3652. // Deprecated: Use CreateAppInfoResp.ProtoReflect.Descriptor instead.
  3653. func (*CreateAppInfoResp) Descriptor() ([]byte, []int) {
  3654. return file_datacenter_proto_rawDescGZIP(), []int{41}
  3655. }
  3656. func (x *CreateAppInfoResp) GetAppInfo() *AppInfo {
  3657. if x != nil {
  3658. return x.AppInfo
  3659. }
  3660. return nil
  3661. }
  3662. type RemoveAppInfoReq struct {
  3663. state protoimpl.MessageState
  3664. sizeCache protoimpl.SizeCache
  3665. unknownFields protoimpl.UnknownFields
  3666. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  3667. }
  3668. func (x *RemoveAppInfoReq) Reset() {
  3669. *x = RemoveAppInfoReq{}
  3670. if protoimpl.UnsafeEnabled {
  3671. mi := &file_datacenter_proto_msgTypes[42]
  3672. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3673. ms.StoreMessageInfo(mi)
  3674. }
  3675. }
  3676. func (x *RemoveAppInfoReq) String() string {
  3677. return protoimpl.X.MessageStringOf(x)
  3678. }
  3679. func (*RemoveAppInfoReq) ProtoMessage() {}
  3680. func (x *RemoveAppInfoReq) ProtoReflect() protoreflect.Message {
  3681. mi := &file_datacenter_proto_msgTypes[42]
  3682. if protoimpl.UnsafeEnabled && x != nil {
  3683. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3684. if ms.LoadMessageInfo() == nil {
  3685. ms.StoreMessageInfo(mi)
  3686. }
  3687. return ms
  3688. }
  3689. return mi.MessageOf(x)
  3690. }
  3691. // Deprecated: Use RemoveAppInfoReq.ProtoReflect.Descriptor instead.
  3692. func (*RemoveAppInfoReq) Descriptor() ([]byte, []int) {
  3693. return file_datacenter_proto_rawDescGZIP(), []int{42}
  3694. }
  3695. func (x *RemoveAppInfoReq) GetAppName() string {
  3696. if x != nil {
  3697. return x.AppName
  3698. }
  3699. return ""
  3700. }
  3701. type RemoveAppInfoResp struct {
  3702. state protoimpl.MessageState
  3703. sizeCache protoimpl.SizeCache
  3704. unknownFields protoimpl.UnknownFields
  3705. Ok bool `protobuf:"varint,1,opt,name=ok,proto3" json:"ok,omitempty"`
  3706. }
  3707. func (x *RemoveAppInfoResp) Reset() {
  3708. *x = RemoveAppInfoResp{}
  3709. if protoimpl.UnsafeEnabled {
  3710. mi := &file_datacenter_proto_msgTypes[43]
  3711. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3712. ms.StoreMessageInfo(mi)
  3713. }
  3714. }
  3715. func (x *RemoveAppInfoResp) String() string {
  3716. return protoimpl.X.MessageStringOf(x)
  3717. }
  3718. func (*RemoveAppInfoResp) ProtoMessage() {}
  3719. func (x *RemoveAppInfoResp) ProtoReflect() protoreflect.Message {
  3720. mi := &file_datacenter_proto_msgTypes[43]
  3721. if protoimpl.UnsafeEnabled && x != nil {
  3722. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3723. if ms.LoadMessageInfo() == nil {
  3724. ms.StoreMessageInfo(mi)
  3725. }
  3726. return ms
  3727. }
  3728. return mi.MessageOf(x)
  3729. }
  3730. // Deprecated: Use RemoveAppInfoResp.ProtoReflect.Descriptor instead.
  3731. func (*RemoveAppInfoResp) Descriptor() ([]byte, []int) {
  3732. return file_datacenter_proto_rawDescGZIP(), []int{43}
  3733. }
  3734. func (x *RemoveAppInfoResp) GetOk() bool {
  3735. if x != nil {
  3736. return x.Ok
  3737. }
  3738. return false
  3739. }
  3740. type DisableAppInfoReq struct {
  3741. state protoimpl.MessageState
  3742. sizeCache protoimpl.SizeCache
  3743. unknownFields protoimpl.UnknownFields
  3744. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  3745. }
  3746. func (x *DisableAppInfoReq) Reset() {
  3747. *x = DisableAppInfoReq{}
  3748. if protoimpl.UnsafeEnabled {
  3749. mi := &file_datacenter_proto_msgTypes[44]
  3750. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3751. ms.StoreMessageInfo(mi)
  3752. }
  3753. }
  3754. func (x *DisableAppInfoReq) String() string {
  3755. return protoimpl.X.MessageStringOf(x)
  3756. }
  3757. func (*DisableAppInfoReq) ProtoMessage() {}
  3758. func (x *DisableAppInfoReq) ProtoReflect() protoreflect.Message {
  3759. mi := &file_datacenter_proto_msgTypes[44]
  3760. if protoimpl.UnsafeEnabled && x != nil {
  3761. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3762. if ms.LoadMessageInfo() == nil {
  3763. ms.StoreMessageInfo(mi)
  3764. }
  3765. return ms
  3766. }
  3767. return mi.MessageOf(x)
  3768. }
  3769. // Deprecated: Use DisableAppInfoReq.ProtoReflect.Descriptor instead.
  3770. func (*DisableAppInfoReq) Descriptor() ([]byte, []int) {
  3771. return file_datacenter_proto_rawDescGZIP(), []int{44}
  3772. }
  3773. func (x *DisableAppInfoReq) GetAppName() string {
  3774. if x != nil {
  3775. return x.AppName
  3776. }
  3777. return ""
  3778. }
  3779. type DisableAppInfoResp struct {
  3780. state protoimpl.MessageState
  3781. sizeCache protoimpl.SizeCache
  3782. unknownFields protoimpl.UnknownFields
  3783. Ok bool `protobuf:"varint,1,opt,name=ok,proto3" json:"ok,omitempty"`
  3784. }
  3785. func (x *DisableAppInfoResp) Reset() {
  3786. *x = DisableAppInfoResp{}
  3787. if protoimpl.UnsafeEnabled {
  3788. mi := &file_datacenter_proto_msgTypes[45]
  3789. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3790. ms.StoreMessageInfo(mi)
  3791. }
  3792. }
  3793. func (x *DisableAppInfoResp) String() string {
  3794. return protoimpl.X.MessageStringOf(x)
  3795. }
  3796. func (*DisableAppInfoResp) ProtoMessage() {}
  3797. func (x *DisableAppInfoResp) ProtoReflect() protoreflect.Message {
  3798. mi := &file_datacenter_proto_msgTypes[45]
  3799. if protoimpl.UnsafeEnabled && x != nil {
  3800. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3801. if ms.LoadMessageInfo() == nil {
  3802. ms.StoreMessageInfo(mi)
  3803. }
  3804. return ms
  3805. }
  3806. return mi.MessageOf(x)
  3807. }
  3808. // Deprecated: Use DisableAppInfoResp.ProtoReflect.Descriptor instead.
  3809. func (*DisableAppInfoResp) Descriptor() ([]byte, []int) {
  3810. return file_datacenter_proto_rawDescGZIP(), []int{45}
  3811. }
  3812. func (x *DisableAppInfoResp) GetOk() bool {
  3813. if x != nil {
  3814. return x.Ok
  3815. }
  3816. return false
  3817. }
  3818. type EnableAppInfoReq struct {
  3819. state protoimpl.MessageState
  3820. sizeCache protoimpl.SizeCache
  3821. unknownFields protoimpl.UnknownFields
  3822. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  3823. }
  3824. func (x *EnableAppInfoReq) Reset() {
  3825. *x = EnableAppInfoReq{}
  3826. if protoimpl.UnsafeEnabled {
  3827. mi := &file_datacenter_proto_msgTypes[46]
  3828. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3829. ms.StoreMessageInfo(mi)
  3830. }
  3831. }
  3832. func (x *EnableAppInfoReq) String() string {
  3833. return protoimpl.X.MessageStringOf(x)
  3834. }
  3835. func (*EnableAppInfoReq) ProtoMessage() {}
  3836. func (x *EnableAppInfoReq) ProtoReflect() protoreflect.Message {
  3837. mi := &file_datacenter_proto_msgTypes[46]
  3838. if protoimpl.UnsafeEnabled && x != nil {
  3839. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3840. if ms.LoadMessageInfo() == nil {
  3841. ms.StoreMessageInfo(mi)
  3842. }
  3843. return ms
  3844. }
  3845. return mi.MessageOf(x)
  3846. }
  3847. // Deprecated: Use EnableAppInfoReq.ProtoReflect.Descriptor instead.
  3848. func (*EnableAppInfoReq) Descriptor() ([]byte, []int) {
  3849. return file_datacenter_proto_rawDescGZIP(), []int{46}
  3850. }
  3851. func (x *EnableAppInfoReq) GetAppName() string {
  3852. if x != nil {
  3853. return x.AppName
  3854. }
  3855. return ""
  3856. }
  3857. type EnableAppInfoResp struct {
  3858. state protoimpl.MessageState
  3859. sizeCache protoimpl.SizeCache
  3860. unknownFields protoimpl.UnknownFields
  3861. Ok bool `protobuf:"varint,1,opt,name=ok,proto3" json:"ok,omitempty"`
  3862. }
  3863. func (x *EnableAppInfoResp) Reset() {
  3864. *x = EnableAppInfoResp{}
  3865. if protoimpl.UnsafeEnabled {
  3866. mi := &file_datacenter_proto_msgTypes[47]
  3867. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3868. ms.StoreMessageInfo(mi)
  3869. }
  3870. }
  3871. func (x *EnableAppInfoResp) String() string {
  3872. return protoimpl.X.MessageStringOf(x)
  3873. }
  3874. func (*EnableAppInfoResp) ProtoMessage() {}
  3875. func (x *EnableAppInfoResp) ProtoReflect() protoreflect.Message {
  3876. mi := &file_datacenter_proto_msgTypes[47]
  3877. if protoimpl.UnsafeEnabled && x != nil {
  3878. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3879. if ms.LoadMessageInfo() == nil {
  3880. ms.StoreMessageInfo(mi)
  3881. }
  3882. return ms
  3883. }
  3884. return mi.MessageOf(x)
  3885. }
  3886. // Deprecated: Use EnableAppInfoResp.ProtoReflect.Descriptor instead.
  3887. func (*EnableAppInfoResp) Descriptor() ([]byte, []int) {
  3888. return file_datacenter_proto_rawDescGZIP(), []int{47}
  3889. }
  3890. func (x *EnableAppInfoResp) GetOk() bool {
  3891. if x != nil {
  3892. return x.Ok
  3893. }
  3894. return false
  3895. }
  3896. type ResetAppSecretReq struct {
  3897. state protoimpl.MessageState
  3898. sizeCache protoimpl.SizeCache
  3899. unknownFields protoimpl.UnknownFields
  3900. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  3901. }
  3902. func (x *ResetAppSecretReq) Reset() {
  3903. *x = ResetAppSecretReq{}
  3904. if protoimpl.UnsafeEnabled {
  3905. mi := &file_datacenter_proto_msgTypes[48]
  3906. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3907. ms.StoreMessageInfo(mi)
  3908. }
  3909. }
  3910. func (x *ResetAppSecretReq) String() string {
  3911. return protoimpl.X.MessageStringOf(x)
  3912. }
  3913. func (*ResetAppSecretReq) ProtoMessage() {}
  3914. func (x *ResetAppSecretReq) ProtoReflect() protoreflect.Message {
  3915. mi := &file_datacenter_proto_msgTypes[48]
  3916. if protoimpl.UnsafeEnabled && x != nil {
  3917. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3918. if ms.LoadMessageInfo() == nil {
  3919. ms.StoreMessageInfo(mi)
  3920. }
  3921. return ms
  3922. }
  3923. return mi.MessageOf(x)
  3924. }
  3925. // Deprecated: Use ResetAppSecretReq.ProtoReflect.Descriptor instead.
  3926. func (*ResetAppSecretReq) Descriptor() ([]byte, []int) {
  3927. return file_datacenter_proto_rawDescGZIP(), []int{48}
  3928. }
  3929. func (x *ResetAppSecretReq) GetAppName() string {
  3930. if x != nil {
  3931. return x.AppName
  3932. }
  3933. return ""
  3934. }
  3935. type ResetAppSecretResp struct {
  3936. state protoimpl.MessageState
  3937. sizeCache protoimpl.SizeCache
  3938. unknownFields protoimpl.UnknownFields
  3939. Secret string `protobuf:"bytes,1,opt,name=secret,proto3" json:"secret,omitempty"`
  3940. }
  3941. func (x *ResetAppSecretResp) Reset() {
  3942. *x = ResetAppSecretResp{}
  3943. if protoimpl.UnsafeEnabled {
  3944. mi := &file_datacenter_proto_msgTypes[49]
  3945. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3946. ms.StoreMessageInfo(mi)
  3947. }
  3948. }
  3949. func (x *ResetAppSecretResp) String() string {
  3950. return protoimpl.X.MessageStringOf(x)
  3951. }
  3952. func (*ResetAppSecretResp) ProtoMessage() {}
  3953. func (x *ResetAppSecretResp) ProtoReflect() protoreflect.Message {
  3954. mi := &file_datacenter_proto_msgTypes[49]
  3955. if protoimpl.UnsafeEnabled && x != nil {
  3956. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3957. if ms.LoadMessageInfo() == nil {
  3958. ms.StoreMessageInfo(mi)
  3959. }
  3960. return ms
  3961. }
  3962. return mi.MessageOf(x)
  3963. }
  3964. // Deprecated: Use ResetAppSecretResp.ProtoReflect.Descriptor instead.
  3965. func (*ResetAppSecretResp) Descriptor() ([]byte, []int) {
  3966. return file_datacenter_proto_rawDescGZIP(), []int{49}
  3967. }
  3968. func (x *ResetAppSecretResp) GetSecret() string {
  3969. if x != nil {
  3970. return x.Secret
  3971. }
  3972. return ""
  3973. }
  3974. type ExpireAppSecretReq struct {
  3975. state protoimpl.MessageState
  3976. sizeCache protoimpl.SizeCache
  3977. unknownFields protoimpl.UnknownFields
  3978. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  3979. Expire int64 `protobuf:"varint,3,opt,name=expire,proto3" json:"expire,omitempty"`
  3980. }
  3981. func (x *ExpireAppSecretReq) Reset() {
  3982. *x = ExpireAppSecretReq{}
  3983. if protoimpl.UnsafeEnabled {
  3984. mi := &file_datacenter_proto_msgTypes[50]
  3985. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3986. ms.StoreMessageInfo(mi)
  3987. }
  3988. }
  3989. func (x *ExpireAppSecretReq) String() string {
  3990. return protoimpl.X.MessageStringOf(x)
  3991. }
  3992. func (*ExpireAppSecretReq) ProtoMessage() {}
  3993. func (x *ExpireAppSecretReq) ProtoReflect() protoreflect.Message {
  3994. mi := &file_datacenter_proto_msgTypes[50]
  3995. if protoimpl.UnsafeEnabled && x != nil {
  3996. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3997. if ms.LoadMessageInfo() == nil {
  3998. ms.StoreMessageInfo(mi)
  3999. }
  4000. return ms
  4001. }
  4002. return mi.MessageOf(x)
  4003. }
  4004. // Deprecated: Use ExpireAppSecretReq.ProtoReflect.Descriptor instead.
  4005. func (*ExpireAppSecretReq) Descriptor() ([]byte, []int) {
  4006. return file_datacenter_proto_rawDescGZIP(), []int{50}
  4007. }
  4008. func (x *ExpireAppSecretReq) GetAppName() string {
  4009. if x != nil {
  4010. return x.AppName
  4011. }
  4012. return ""
  4013. }
  4014. func (x *ExpireAppSecretReq) GetExpire() int64 {
  4015. if x != nil {
  4016. return x.Expire
  4017. }
  4018. return 0
  4019. }
  4020. type ExpireAppSecretResp struct {
  4021. state protoimpl.MessageState
  4022. sizeCache protoimpl.SizeCache
  4023. unknownFields protoimpl.UnknownFields
  4024. ExpireAt string `protobuf:"bytes,3,opt,name=expire_at,json=expireAt,proto3" json:"expire_at,omitempty"`
  4025. }
  4026. func (x *ExpireAppSecretResp) Reset() {
  4027. *x = ExpireAppSecretResp{}
  4028. if protoimpl.UnsafeEnabled {
  4029. mi := &file_datacenter_proto_msgTypes[51]
  4030. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4031. ms.StoreMessageInfo(mi)
  4032. }
  4033. }
  4034. func (x *ExpireAppSecretResp) String() string {
  4035. return protoimpl.X.MessageStringOf(x)
  4036. }
  4037. func (*ExpireAppSecretResp) ProtoMessage() {}
  4038. func (x *ExpireAppSecretResp) ProtoReflect() protoreflect.Message {
  4039. mi := &file_datacenter_proto_msgTypes[51]
  4040. if protoimpl.UnsafeEnabled && x != nil {
  4041. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4042. if ms.LoadMessageInfo() == nil {
  4043. ms.StoreMessageInfo(mi)
  4044. }
  4045. return ms
  4046. }
  4047. return mi.MessageOf(x)
  4048. }
  4049. // Deprecated: Use ExpireAppSecretResp.ProtoReflect.Descriptor instead.
  4050. func (*ExpireAppSecretResp) Descriptor() ([]byte, []int) {
  4051. return file_datacenter_proto_rawDescGZIP(), []int{51}
  4052. }
  4053. func (x *ExpireAppSecretResp) GetExpireAt() string {
  4054. if x != nil {
  4055. return x.ExpireAt
  4056. }
  4057. return ""
  4058. }
  4059. type ResetAppProjectReq struct {
  4060. state protoimpl.MessageState
  4061. sizeCache protoimpl.SizeCache
  4062. unknownFields protoimpl.UnknownFields
  4063. AppName string `protobuf:"bytes,1,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
  4064. ProjectIds []int64 `protobuf:"varint,2,rep,packed,name=project_ids,json=projectIds,proto3" json:"project_ids,omitempty"`
  4065. }
  4066. func (x *ResetAppProjectReq) Reset() {
  4067. *x = ResetAppProjectReq{}
  4068. if protoimpl.UnsafeEnabled {
  4069. mi := &file_datacenter_proto_msgTypes[52]
  4070. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4071. ms.StoreMessageInfo(mi)
  4072. }
  4073. }
  4074. func (x *ResetAppProjectReq) String() string {
  4075. return protoimpl.X.MessageStringOf(x)
  4076. }
  4077. func (*ResetAppProjectReq) ProtoMessage() {}
  4078. func (x *ResetAppProjectReq) ProtoReflect() protoreflect.Message {
  4079. mi := &file_datacenter_proto_msgTypes[52]
  4080. if protoimpl.UnsafeEnabled && x != nil {
  4081. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4082. if ms.LoadMessageInfo() == nil {
  4083. ms.StoreMessageInfo(mi)
  4084. }
  4085. return ms
  4086. }
  4087. return mi.MessageOf(x)
  4088. }
  4089. // Deprecated: Use ResetAppProjectReq.ProtoReflect.Descriptor instead.
  4090. func (*ResetAppProjectReq) Descriptor() ([]byte, []int) {
  4091. return file_datacenter_proto_rawDescGZIP(), []int{52}
  4092. }
  4093. func (x *ResetAppProjectReq) GetAppName() string {
  4094. if x != nil {
  4095. return x.AppName
  4096. }
  4097. return ""
  4098. }
  4099. func (x *ResetAppProjectReq) GetProjectIds() []int64 {
  4100. if x != nil {
  4101. return x.ProjectIds
  4102. }
  4103. return nil
  4104. }
  4105. type ResetAppProjectResp struct {
  4106. state protoimpl.MessageState
  4107. sizeCache protoimpl.SizeCache
  4108. unknownFields protoimpl.UnknownFields
  4109. RemoveProjectIds []int64 `protobuf:"varint,1,rep,packed,name=remove_project_ids,json=removeProjectIds,proto3" json:"remove_project_ids,omitempty"`
  4110. }
  4111. func (x *ResetAppProjectResp) Reset() {
  4112. *x = ResetAppProjectResp{}
  4113. if protoimpl.UnsafeEnabled {
  4114. mi := &file_datacenter_proto_msgTypes[53]
  4115. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4116. ms.StoreMessageInfo(mi)
  4117. }
  4118. }
  4119. func (x *ResetAppProjectResp) String() string {
  4120. return protoimpl.X.MessageStringOf(x)
  4121. }
  4122. func (*ResetAppProjectResp) ProtoMessage() {}
  4123. func (x *ResetAppProjectResp) ProtoReflect() protoreflect.Message {
  4124. mi := &file_datacenter_proto_msgTypes[53]
  4125. if protoimpl.UnsafeEnabled && x != nil {
  4126. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4127. if ms.LoadMessageInfo() == nil {
  4128. ms.StoreMessageInfo(mi)
  4129. }
  4130. return ms
  4131. }
  4132. return mi.MessageOf(x)
  4133. }
  4134. // Deprecated: Use ResetAppProjectResp.ProtoReflect.Descriptor instead.
  4135. func (*ResetAppProjectResp) Descriptor() ([]byte, []int) {
  4136. return file_datacenter_proto_rawDescGZIP(), []int{53}
  4137. }
  4138. func (x *ResetAppProjectResp) GetRemoveProjectIds() []int64 {
  4139. if x != nil {
  4140. return x.RemoveProjectIds
  4141. }
  4142. return nil
  4143. }
  4144. type FindDataDescribeReq struct {
  4145. state protoimpl.MessageState
  4146. sizeCache protoimpl.SizeCache
  4147. unknownFields protoimpl.UnknownFields
  4148. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  4149. Items []string `protobuf:"bytes,2,rep,name=items,proto3" json:"items,omitempty"`
  4150. St string `protobuf:"bytes,3,opt,name=st,proto3" json:"st,omitempty"`
  4151. Et string `protobuf:"bytes,4,opt,name=et,proto3" json:"et,omitempty"`
  4152. }
  4153. func (x *FindDataDescribeReq) Reset() {
  4154. *x = FindDataDescribeReq{}
  4155. if protoimpl.UnsafeEnabled {
  4156. mi := &file_datacenter_proto_msgTypes[54]
  4157. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4158. ms.StoreMessageInfo(mi)
  4159. }
  4160. }
  4161. func (x *FindDataDescribeReq) String() string {
  4162. return protoimpl.X.MessageStringOf(x)
  4163. }
  4164. func (*FindDataDescribeReq) ProtoMessage() {}
  4165. func (x *FindDataDescribeReq) ProtoReflect() protoreflect.Message {
  4166. mi := &file_datacenter_proto_msgTypes[54]
  4167. if protoimpl.UnsafeEnabled && x != nil {
  4168. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4169. if ms.LoadMessageInfo() == nil {
  4170. ms.StoreMessageInfo(mi)
  4171. }
  4172. return ms
  4173. }
  4174. return mi.MessageOf(x)
  4175. }
  4176. // Deprecated: Use FindDataDescribeReq.ProtoReflect.Descriptor instead.
  4177. func (*FindDataDescribeReq) Descriptor() ([]byte, []int) {
  4178. return file_datacenter_proto_rawDescGZIP(), []int{54}
  4179. }
  4180. func (x *FindDataDescribeReq) GetProjectId() int64 {
  4181. if x != nil {
  4182. return x.ProjectId
  4183. }
  4184. return 0
  4185. }
  4186. func (x *FindDataDescribeReq) GetItems() []string {
  4187. if x != nil {
  4188. return x.Items
  4189. }
  4190. return nil
  4191. }
  4192. func (x *FindDataDescribeReq) GetSt() string {
  4193. if x != nil {
  4194. return x.St
  4195. }
  4196. return ""
  4197. }
  4198. func (x *FindDataDescribeReq) GetEt() string {
  4199. if x != nil {
  4200. return x.Et
  4201. }
  4202. return ""
  4203. }
  4204. type FindDataDescribeResp struct {
  4205. state protoimpl.MessageState
  4206. sizeCache protoimpl.SizeCache
  4207. unknownFields protoimpl.UnknownFields
  4208. 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"`
  4209. }
  4210. func (x *FindDataDescribeResp) Reset() {
  4211. *x = FindDataDescribeResp{}
  4212. if protoimpl.UnsafeEnabled {
  4213. mi := &file_datacenter_proto_msgTypes[55]
  4214. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4215. ms.StoreMessageInfo(mi)
  4216. }
  4217. }
  4218. func (x *FindDataDescribeResp) String() string {
  4219. return protoimpl.X.MessageStringOf(x)
  4220. }
  4221. func (*FindDataDescribeResp) ProtoMessage() {}
  4222. func (x *FindDataDescribeResp) ProtoReflect() protoreflect.Message {
  4223. mi := &file_datacenter_proto_msgTypes[55]
  4224. if protoimpl.UnsafeEnabled && x != nil {
  4225. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4226. if ms.LoadMessageInfo() == nil {
  4227. ms.StoreMessageInfo(mi)
  4228. }
  4229. return ms
  4230. }
  4231. return mi.MessageOf(x)
  4232. }
  4233. // Deprecated: Use FindDataDescribeResp.ProtoReflect.Descriptor instead.
  4234. func (*FindDataDescribeResp) Descriptor() ([]byte, []int) {
  4235. return file_datacenter_proto_rawDescGZIP(), []int{55}
  4236. }
  4237. func (x *FindDataDescribeResp) GetList() map[string]*DataDescribeInfo {
  4238. if x != nil {
  4239. return x.List
  4240. }
  4241. return nil
  4242. }
  4243. type FindDataCorrelationReq struct {
  4244. state protoimpl.MessageState
  4245. sizeCache protoimpl.SizeCache
  4246. unknownFields protoimpl.UnknownFields
  4247. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  4248. Items []string `protobuf:"bytes,2,rep,name=items,proto3" json:"items,omitempty"`
  4249. St string `protobuf:"bytes,3,opt,name=st,proto3" json:"st,omitempty"`
  4250. Et string `protobuf:"bytes,4,opt,name=et,proto3" json:"et,omitempty"`
  4251. }
  4252. func (x *FindDataCorrelationReq) Reset() {
  4253. *x = FindDataCorrelationReq{}
  4254. if protoimpl.UnsafeEnabled {
  4255. mi := &file_datacenter_proto_msgTypes[56]
  4256. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4257. ms.StoreMessageInfo(mi)
  4258. }
  4259. }
  4260. func (x *FindDataCorrelationReq) String() string {
  4261. return protoimpl.X.MessageStringOf(x)
  4262. }
  4263. func (*FindDataCorrelationReq) ProtoMessage() {}
  4264. func (x *FindDataCorrelationReq) ProtoReflect() protoreflect.Message {
  4265. mi := &file_datacenter_proto_msgTypes[56]
  4266. if protoimpl.UnsafeEnabled && x != nil {
  4267. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4268. if ms.LoadMessageInfo() == nil {
  4269. ms.StoreMessageInfo(mi)
  4270. }
  4271. return ms
  4272. }
  4273. return mi.MessageOf(x)
  4274. }
  4275. // Deprecated: Use FindDataCorrelationReq.ProtoReflect.Descriptor instead.
  4276. func (*FindDataCorrelationReq) Descriptor() ([]byte, []int) {
  4277. return file_datacenter_proto_rawDescGZIP(), []int{56}
  4278. }
  4279. func (x *FindDataCorrelationReq) GetProjectId() int64 {
  4280. if x != nil {
  4281. return x.ProjectId
  4282. }
  4283. return 0
  4284. }
  4285. func (x *FindDataCorrelationReq) GetItems() []string {
  4286. if x != nil {
  4287. return x.Items
  4288. }
  4289. return nil
  4290. }
  4291. func (x *FindDataCorrelationReq) GetSt() string {
  4292. if x != nil {
  4293. return x.St
  4294. }
  4295. return ""
  4296. }
  4297. func (x *FindDataCorrelationReq) GetEt() string {
  4298. if x != nil {
  4299. return x.Et
  4300. }
  4301. return ""
  4302. }
  4303. type FindDataMinAndMaxReq struct {
  4304. state protoimpl.MessageState
  4305. sizeCache protoimpl.SizeCache
  4306. unknownFields protoimpl.UnknownFields
  4307. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  4308. Items []string `protobuf:"bytes,2,rep,name=items,proto3" json:"items,omitempty"`
  4309. St string `protobuf:"bytes,3,opt,name=st,proto3" json:"st,omitempty"`
  4310. Et string `protobuf:"bytes,4,opt,name=et,proto3" json:"et,omitempty"`
  4311. }
  4312. func (x *FindDataMinAndMaxReq) Reset() {
  4313. *x = FindDataMinAndMaxReq{}
  4314. if protoimpl.UnsafeEnabled {
  4315. mi := &file_datacenter_proto_msgTypes[57]
  4316. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4317. ms.StoreMessageInfo(mi)
  4318. }
  4319. }
  4320. func (x *FindDataMinAndMaxReq) String() string {
  4321. return protoimpl.X.MessageStringOf(x)
  4322. }
  4323. func (*FindDataMinAndMaxReq) ProtoMessage() {}
  4324. func (x *FindDataMinAndMaxReq) ProtoReflect() protoreflect.Message {
  4325. mi := &file_datacenter_proto_msgTypes[57]
  4326. if protoimpl.UnsafeEnabled && x != nil {
  4327. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4328. if ms.LoadMessageInfo() == nil {
  4329. ms.StoreMessageInfo(mi)
  4330. }
  4331. return ms
  4332. }
  4333. return mi.MessageOf(x)
  4334. }
  4335. // Deprecated: Use FindDataMinAndMaxReq.ProtoReflect.Descriptor instead.
  4336. func (*FindDataMinAndMaxReq) Descriptor() ([]byte, []int) {
  4337. return file_datacenter_proto_rawDescGZIP(), []int{57}
  4338. }
  4339. func (x *FindDataMinAndMaxReq) GetProjectId() int64 {
  4340. if x != nil {
  4341. return x.ProjectId
  4342. }
  4343. return 0
  4344. }
  4345. func (x *FindDataMinAndMaxReq) GetItems() []string {
  4346. if x != nil {
  4347. return x.Items
  4348. }
  4349. return nil
  4350. }
  4351. func (x *FindDataMinAndMaxReq) GetSt() string {
  4352. if x != nil {
  4353. return x.St
  4354. }
  4355. return ""
  4356. }
  4357. func (x *FindDataMinAndMaxReq) GetEt() string {
  4358. if x != nil {
  4359. return x.Et
  4360. }
  4361. return ""
  4362. }
  4363. type FindDataMinAndMaxResp struct {
  4364. state protoimpl.MessageState
  4365. sizeCache protoimpl.SizeCache
  4366. unknownFields protoimpl.UnknownFields
  4367. 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"`
  4368. }
  4369. func (x *FindDataMinAndMaxResp) Reset() {
  4370. *x = FindDataMinAndMaxResp{}
  4371. if protoimpl.UnsafeEnabled {
  4372. mi := &file_datacenter_proto_msgTypes[58]
  4373. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4374. ms.StoreMessageInfo(mi)
  4375. }
  4376. }
  4377. func (x *FindDataMinAndMaxResp) String() string {
  4378. return protoimpl.X.MessageStringOf(x)
  4379. }
  4380. func (*FindDataMinAndMaxResp) ProtoMessage() {}
  4381. func (x *FindDataMinAndMaxResp) ProtoReflect() protoreflect.Message {
  4382. mi := &file_datacenter_proto_msgTypes[58]
  4383. if protoimpl.UnsafeEnabled && x != nil {
  4384. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4385. if ms.LoadMessageInfo() == nil {
  4386. ms.StoreMessageInfo(mi)
  4387. }
  4388. return ms
  4389. }
  4390. return mi.MessageOf(x)
  4391. }
  4392. // Deprecated: Use FindDataMinAndMaxResp.ProtoReflect.Descriptor instead.
  4393. func (*FindDataMinAndMaxResp) Descriptor() ([]byte, []int) {
  4394. return file_datacenter_proto_rawDescGZIP(), []int{58}
  4395. }
  4396. func (x *FindDataMinAndMaxResp) GetList() map[string]*DataMinAndMaxInfo {
  4397. if x != nil {
  4398. return x.List
  4399. }
  4400. return nil
  4401. }
  4402. type FindDataCorrelationResp struct {
  4403. state protoimpl.MessageState
  4404. sizeCache protoimpl.SizeCache
  4405. unknownFields protoimpl.UnknownFields
  4406. 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"`
  4407. }
  4408. func (x *FindDataCorrelationResp) Reset() {
  4409. *x = FindDataCorrelationResp{}
  4410. if protoimpl.UnsafeEnabled {
  4411. mi := &file_datacenter_proto_msgTypes[59]
  4412. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4413. ms.StoreMessageInfo(mi)
  4414. }
  4415. }
  4416. func (x *FindDataCorrelationResp) String() string {
  4417. return protoimpl.X.MessageStringOf(x)
  4418. }
  4419. func (*FindDataCorrelationResp) ProtoMessage() {}
  4420. func (x *FindDataCorrelationResp) ProtoReflect() protoreflect.Message {
  4421. mi := &file_datacenter_proto_msgTypes[59]
  4422. if protoimpl.UnsafeEnabled && x != nil {
  4423. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4424. if ms.LoadMessageInfo() == nil {
  4425. ms.StoreMessageInfo(mi)
  4426. }
  4427. return ms
  4428. }
  4429. return mi.MessageOf(x)
  4430. }
  4431. // Deprecated: Use FindDataCorrelationResp.ProtoReflect.Descriptor instead.
  4432. func (*FindDataCorrelationResp) Descriptor() ([]byte, []int) {
  4433. return file_datacenter_proto_rawDescGZIP(), []int{59}
  4434. }
  4435. func (x *FindDataCorrelationResp) GetList() map[string]*DataCorrelationInfo {
  4436. if x != nil {
  4437. return x.List
  4438. }
  4439. return nil
  4440. }
  4441. type HealthReq struct {
  4442. state protoimpl.MessageState
  4443. sizeCache protoimpl.SizeCache
  4444. unknownFields protoimpl.UnknownFields
  4445. }
  4446. func (x *HealthReq) Reset() {
  4447. *x = HealthReq{}
  4448. if protoimpl.UnsafeEnabled {
  4449. mi := &file_datacenter_proto_msgTypes[60]
  4450. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4451. ms.StoreMessageInfo(mi)
  4452. }
  4453. }
  4454. func (x *HealthReq) String() string {
  4455. return protoimpl.X.MessageStringOf(x)
  4456. }
  4457. func (*HealthReq) ProtoMessage() {}
  4458. func (x *HealthReq) ProtoReflect() protoreflect.Message {
  4459. mi := &file_datacenter_proto_msgTypes[60]
  4460. if protoimpl.UnsafeEnabled && x != nil {
  4461. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4462. if ms.LoadMessageInfo() == nil {
  4463. ms.StoreMessageInfo(mi)
  4464. }
  4465. return ms
  4466. }
  4467. return mi.MessageOf(x)
  4468. }
  4469. // Deprecated: Use HealthReq.ProtoReflect.Descriptor instead.
  4470. func (*HealthReq) Descriptor() ([]byte, []int) {
  4471. return file_datacenter_proto_rawDescGZIP(), []int{60}
  4472. }
  4473. type HealthResp struct {
  4474. state protoimpl.MessageState
  4475. sizeCache protoimpl.SizeCache
  4476. unknownFields protoimpl.UnknownFields
  4477. Db []string `protobuf:"bytes,1,rep,name=db,proto3" json:"db,omitempty"`
  4478. Redis []string `protobuf:"bytes,2,rep,name=redis,proto3" json:"redis,omitempty"`
  4479. Mq []string `protobuf:"bytes,3,rep,name=mq,proto3" json:"mq,omitempty"`
  4480. Msg string `protobuf:"bytes,4,opt,name=msg,proto3" json:"msg,omitempty"`
  4481. }
  4482. func (x *HealthResp) Reset() {
  4483. *x = HealthResp{}
  4484. if protoimpl.UnsafeEnabled {
  4485. mi := &file_datacenter_proto_msgTypes[61]
  4486. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4487. ms.StoreMessageInfo(mi)
  4488. }
  4489. }
  4490. func (x *HealthResp) String() string {
  4491. return protoimpl.X.MessageStringOf(x)
  4492. }
  4493. func (*HealthResp) ProtoMessage() {}
  4494. func (x *HealthResp) ProtoReflect() protoreflect.Message {
  4495. mi := &file_datacenter_proto_msgTypes[61]
  4496. if protoimpl.UnsafeEnabled && x != nil {
  4497. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4498. if ms.LoadMessageInfo() == nil {
  4499. ms.StoreMessageInfo(mi)
  4500. }
  4501. return ms
  4502. }
  4503. return mi.MessageOf(x)
  4504. }
  4505. // Deprecated: Use HealthResp.ProtoReflect.Descriptor instead.
  4506. func (*HealthResp) Descriptor() ([]byte, []int) {
  4507. return file_datacenter_proto_rawDescGZIP(), []int{61}
  4508. }
  4509. func (x *HealthResp) GetDb() []string {
  4510. if x != nil {
  4511. return x.Db
  4512. }
  4513. return nil
  4514. }
  4515. func (x *HealthResp) GetRedis() []string {
  4516. if x != nil {
  4517. return x.Redis
  4518. }
  4519. return nil
  4520. }
  4521. func (x *HealthResp) GetMq() []string {
  4522. if x != nil {
  4523. return x.Mq
  4524. }
  4525. return nil
  4526. }
  4527. func (x *HealthResp) GetMsg() string {
  4528. if x != nil {
  4529. return x.Msg
  4530. }
  4531. return ""
  4532. }
  4533. var File_datacenter_proto protoreflect.FileDescriptor
  4534. var file_datacenter_proto_rawDesc = []byte{
  4535. 0x0a, 0x10, 0x64, 0x61, 0x74, 0x61, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f,
  4536. 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62, 0x22, 0x58, 0x0a, 0x0a, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61,
  4537. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x18,
  4538. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x1a,
  4539. 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d,
  4540. 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f,
  4541. 0x74, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c,
  4542. 0x22, 0xe8, 0x01, 0x0a, 0x10, 0x44, 0x61, 0x74, 0x61, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62,
  4543. 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01,
  4544. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6d,
  4545. 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x6d, 0x69, 0x6e, 0x12, 0x10, 0x0a,
  4546. 0x03, 0x6d, 0x61, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x6d, 0x61, 0x78, 0x12,
  4547. 0x12, 0x0a, 0x04, 0x6d, 0x65, 0x61, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04, 0x6d,
  4548. 0x65, 0x61, 0x6e, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x74, 0x64, 0x5f, 0x64, 0x65, 0x76, 0x18, 0x05,
  4549. 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x73, 0x74, 0x64, 0x44, 0x65, 0x76, 0x12, 0x17, 0x0a, 0x07,
  4550. 0x76, 0x61, 0x72, 0x5f, 0x64, 0x65, 0x76, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x76,
  4551. 0x61, 0x72, 0x44, 0x65, 0x76, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x32, 0x35, 0x18, 0x07, 0x20, 0x01,
  4552. 0x28, 0x01, 0x52, 0x03, 0x70, 0x32, 0x35, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x35, 0x30, 0x18, 0x08,
  4553. 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x70, 0x35, 0x30, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x37, 0x35,
  4554. 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x70, 0x37, 0x35, 0x12, 0x0e, 0x0a, 0x02, 0x73,
  4555. 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x65,
  4556. 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x65, 0x74, 0x22, 0x37, 0x0a, 0x11, 0x44,
  4557. 0x61, 0x74, 0x61, 0x4d, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x4d, 0x61, 0x78, 0x49, 0x6e, 0x66, 0x6f,
  4558. 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x6d,
  4559. 0x69, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x61, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52,
  4560. 0x03, 0x6d, 0x61, 0x78, 0x22, 0x44, 0x0a, 0x0c, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x49,
  4561. 0x74, 0x65, 0x6d, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x01, 0x20, 0x01,
  4562. 0x28, 0x09, 0x52, 0x04, 0x69, 0x74, 0x65, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x65, 0x66,
  4563. 0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0b, 0x63,
  4564. 0x6f, 0x65, 0x66, 0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x74, 0x22, 0xd8, 0x01, 0x0a, 0x13, 0x44,
  4565. 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e,
  4566. 0x66, 0x6f, 0x12, 0x4e, 0x0a, 0x0d, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x74,
  4567. 0x65, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x70, 0x62, 0x2e, 0x44,
  4568. 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e,
  4569. 0x66, 0x6f, 0x2e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x45,
  4570. 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0c, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x49, 0x74, 0x65,
  4571. 0x6d, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x73, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  4572. 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x65, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  4573. 0x65, 0x74, 0x1a, 0x51, 0x0a, 0x11, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x49, 0x74, 0x65,
  4574. 0x6d, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
  4575. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x26, 0x0a, 0x05, 0x76, 0x61, 0x6c,
  4576. 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65,
  4577. 0x6c, 0x61, 0x74, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
  4578. 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xb9, 0x01, 0x0a, 0x07, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66,
  4579. 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69,
  4580. 0x64, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
  4581. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b,
  4582. 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  4583. 0x03, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x73, 0x12, 0x16, 0x0a,
  4584. 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73,
  4585. 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  4586. 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1b, 0x0a,
  4587. 0x09, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x5f, 0x61, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  4588. 0x52, 0x08, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x41, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f,
  4589. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d,
  4590. 0x65, 0x22, 0xc1, 0x01, 0x0a, 0x0c, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52,
  4591. 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
  4592. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
  4593. 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  4594. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f,
  4595. 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  4596. 0x09, 0x52, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x74, 0x69, 0x6d,
  4597. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x12,
  4598. 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x70, 0x61,
  4599. 0x67, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18,
  4600. 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12,
  4601. 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  4602. 0x6f, 0x72, 0x64, 0x65, 0x72, 0x22, 0xa9, 0x07, 0x0a, 0x09, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  4603. 0x67, 0x4d, 0x66, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  4604. 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69,
  4605. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
  4606. 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64,
  4607. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43,
  4608. 0x6f, 0x64, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d,
  4609. 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10,
  4610. 0x77, 0x61, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65,
  4611. 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x05, 0x20,
  4612. 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x19, 0x0a,
  4613. 0x08, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52,
  4614. 0x07, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64,
  4615. 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b,
  4616. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x23, 0x0a, 0x0d, 0x66,
  4617. 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x08, 0x20, 0x01,
  4618. 0x28, 0x01, 0x52, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  4619. 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  4620. 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73,
  4621. 0x75, 0x72, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70,
  4622. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70,
  4623. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x10,
  4624. 0x0a, 0x03, 0x74, 0x6d, 0x70, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x74, 0x6d, 0x70,
  4625. 0x12, 0x12, 0x0a, 0x04, 0x66, 0x6c, 0x75, 0x78, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04,
  4626. 0x66, 0x6c, 0x75, 0x78, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  4627. 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52,
  4628. 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79,
  4629. 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x0e,
  4630. 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x68, 0x12, 0x22,
  4631. 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18,
  4632. 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71,
  4633. 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c,
  4634. 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x41, 0x6c,
  4635. 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x61,
  4636. 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  4637. 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  4638. 0x66, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71,
  4639. 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  4640. 0x5f, 0x66, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75,
  4641. 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77,
  4642. 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64,
  4643. 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  4644. 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f,
  4645. 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64,
  4646. 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a,
  4647. 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72,
  4648. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x17, 0x20,
  4649. 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x53, 0x69,
  4650. 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f,
  4651. 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x43,
  4652. 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  4653. 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64,
  4654. 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64,
  4655. 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x65, 0x65,
  4656. 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  4657. 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x64,
  4658. 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x1c,
  4659. 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f,
  4660. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d,
  4661. 0x65, 0x22, 0x91, 0x08, 0x0a, 0x09, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x12,
  4662. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12,
  4663. 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
  4664. 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f,
  4665. 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20,
  4666. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12,
  4667. 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61,
  4668. 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x77, 0x61, 0x74, 0x65,
  4669. 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  4670. 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52,
  4671. 0x08, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f, 0x6e,
  4672. 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x63, 0x6f, 0x6e,
  4673. 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  4674. 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64,
  4675. 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x23, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f,
  4676. 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c,
  4677. 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x21, 0x0a, 0x0c,
  4678. 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01,
  4679. 0x28, 0x01, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12,
  4680. 0x29, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73,
  4681. 0x75, 0x72, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75,
  4682. 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x6d,
  4683. 0x70, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x74, 0x6d, 0x70, 0x12, 0x12, 0x0a, 0x04,
  4684. 0x66, 0x6c, 0x75, 0x78, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04, 0x66, 0x6c, 0x75, 0x78,
  4685. 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
  4686. 0x18, 0x20, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69,
  4687. 0x6c, 0x69, 0x74, 0x79, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  4688. 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52,
  4689. 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79,
  4690. 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x0e,
  4691. 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x68, 0x12, 0x22,
  4692. 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18,
  4693. 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71,
  4694. 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c,
  4695. 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x41, 0x6c,
  4696. 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x61,
  4697. 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  4698. 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  4699. 0x66, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71,
  4700. 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  4701. 0x5f, 0x66, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75,
  4702. 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77,
  4703. 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64,
  4704. 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  4705. 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f,
  4706. 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64,
  4707. 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a,
  4708. 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72,
  4709. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x17, 0x20,
  4710. 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x53, 0x69,
  4711. 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f,
  4712. 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x43,
  4713. 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  4714. 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64,
  4715. 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64,
  4716. 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x65, 0x65,
  4717. 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  4718. 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x64,
  4719. 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x1c,
  4720. 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x69,
  4721. 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x01, 0x52,
  4722. 0x0a, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66,
  4723. 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x18, 0x1e, 0x20, 0x01, 0x28,
  4724. 0x03, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x12, 0x15,
  4725. 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  4726. 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xba, 0x0d, 0x0a, 0x09, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  4727. 0x67, 0x4e, 0x66, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  4728. 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69,
  4729. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
  4730. 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64,
  4731. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43,
  4732. 0x6f, 0x64, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d,
  4733. 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10,
  4734. 0x77, 0x61, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65,
  4735. 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73,
  4736. 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f,
  4737. 0x77, 0x31, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77,
  4738. 0x5f, 0x31, 0x73, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46,
  4739. 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  4740. 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01,
  4741. 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74,
  4742. 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72,
  4743. 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65,
  4744. 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10,
  4745. 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74,
  4746. 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73,
  4747. 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  4748. 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0a,
  4749. 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65,
  4750. 0x73, 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f,
  4751. 0x31, 0x73, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x31, 0x73,
  4752. 0x74, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0c, 0x20,
  4753. 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x31, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x10,
  4754. 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x31, 0x73, 0x74,
  4755. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69,
  4756. 0x6c, 0x69, 0x74, 0x79, 0x31, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f,
  4757. 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b,
  4758. 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x63,
  4759. 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28,
  4760. 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x28, 0x0a,
  4761. 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e,
  4762. 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  4763. 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f,
  4764. 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x11, 0x20, 0x01,
  4765. 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  4766. 0x32, 0x6e, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73,
  4767. 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63,
  4768. 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x30, 0x0a,
  4769. 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72,
  4770. 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f,
  4771. 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12,
  4772. 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01,
  4773. 0x52, 0x06, 0x74, 0x6d, 0x70, 0x32, 0x6e, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78,
  4774. 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78,
  4775. 0x32, 0x6e, 0x64, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c,
  4776. 0x69, 0x74, 0x79, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70,
  4777. 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x32, 0x6e, 0x64, 0x12, 0x22,
  4778. 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18,
  4779. 0x17, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x33,
  4780. 0x74, 0x68, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33,
  4781. 0x74, 0x68, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f,
  4782. 0x77, 0x33, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  4783. 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e,
  4784. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12, 0x2a,
  4785. 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f,
  4786. 0x33, 0x74, 0x68, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50,
  4787. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f,
  4788. 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1b,
  4789. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72,
  4790. 0x65, 0x33, 0x74, 0x68, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  4791. 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1c, 0x20, 0x01,
  4792. 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73,
  4793. 0x75, 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x33, 0x74,
  4794. 0x68, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x33, 0x74, 0x68, 0x12,
  4795. 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1e, 0x20, 0x01, 0x28,
  4796. 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x33, 0x74, 0x68, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65,
  4797. 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1f,
  4798. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69,
  4799. 0x74, 0x79, 0x33, 0x74, 0x68, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71,
  4800. 0x5f, 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x20, 0x20, 0x01, 0x28, 0x01,
  4801. 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74,
  4802. 0x79, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18,
  4803. 0x21, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x68, 0x12,
  4804. 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68,
  4805. 0x18, 0x22, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57,
  4806. 0x71, 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61,
  4807. 0x6c, 0x18, 0x23, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x41,
  4808. 0x6c, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f,
  4809. 0x61, 0x6c, 0x18, 0x24, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  4810. 0x74, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71,
  4811. 0x5f, 0x66, 0x65, 0x18, 0x25, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57,
  4812. 0x71, 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77,
  4813. 0x71, 0x5f, 0x66, 0x65, 0x18, 0x26, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64,
  4814. 0x75, 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f,
  4815. 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x27, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65,
  4816. 0x64, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  4817. 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x28, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72,
  4818. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65,
  4819. 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x29, 0x20, 0x01, 0x28, 0x01, 0x52,
  4820. 0x0a, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70,
  4821. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x2a,
  4822. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x53,
  4823. 0x69, 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63,
  4824. 0x6f, 0x64, 0x18, 0x2b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71,
  4825. 0x43, 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77,
  4826. 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f,
  4827. 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65,
  4828. 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x65,
  4829. 0x65, 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  4830. 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f,
  4831. 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18,
  4832. 0x2f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x15, 0x0a, 0x06, 0x63,
  4833. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x30, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69,
  4834. 0x6d, 0x65, 0x22, 0xba, 0x0d, 0x0a, 0x09, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f,
  4835. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64,
  4836. 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02,
  4837. 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12,
  4838. 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03,
  4839. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65,
  4840. 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x65, 0x72,
  4841. 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x77, 0x61, 0x74,
  4842. 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x22, 0x0a,
  4843. 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x05,
  4844. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73,
  4845. 0x74, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73,
  4846. 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77,
  4847. 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66,
  4848. 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70,
  4849. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12, 0x2a, 0x0a,
  4850. 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31,
  4851. 0x73, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72,
  4852. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e,
  4853. 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x09, 0x20,
  4854. 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  4855. 0x31, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70,
  4856. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28,
  4857. 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75,
  4858. 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x31, 0x73, 0x74,
  4859. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x31, 0x73, 0x74, 0x12, 0x19,
  4860. 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01,
  4861. 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x31, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72,
  4862. 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0d, 0x20,
  4863. 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
  4864. 0x79, 0x31, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f,
  4865. 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65,
  4866. 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f,
  4867. 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a,
  4868. 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72,
  4869. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x10,
  4870. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f,
  4871. 0x77, 0x32, 0x6e, 0x64, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65,
  4872. 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52,
  4873. 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64,
  4874. 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  4875. 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50,
  4876. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72,
  4877. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32,
  4878. 0x6e, 0x64, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  4879. 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x17, 0x0a, 0x07,
  4880. 0x74, 0x6d, 0x70, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74,
  4881. 0x6d, 0x70, 0x32, 0x6e, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x32, 0x6e,
  4882. 0x64, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x32, 0x6e, 0x64,
  4883. 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
  4884. 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d,
  4885. 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x32, 0x6e, 0x64, 0x12, 0x22, 0x0a, 0x0d, 0x66,
  4886. 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x17, 0x20, 0x01,
  4887. 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12,
  4888. 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18,
  4889. 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74,
  4890. 0x68, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f,
  4891. 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f,
  4892. 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12, 0x2a, 0x0a, 0x11, 0x66,
  4893. 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68,
  4894. 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73,
  4895. 0x73, 0x75, 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70,
  4896. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1b, 0x20, 0x01, 0x28,
  4897. 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x33, 0x74,
  4898. 0x68, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65,
  4899. 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x01, 0x52,
  4900. 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  4901. 0x33, 0x74, 0x68, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1d,
  4902. 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x33, 0x74, 0x68, 0x12, 0x19, 0x0a, 0x08,
  4903. 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07,
  4904. 0x66, 0x6c, 0x75, 0x78, 0x33, 0x74, 0x68, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65,
  4905. 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1f, 0x20, 0x01, 0x28,
  4906. 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x33,
  4907. 0x74, 0x68, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x74, 0x75,
  4908. 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x20, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66,
  4909. 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x12, 0x1c,
  4910. 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x21, 0x20, 0x01,
  4911. 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x68, 0x12, 0x22, 0x0a, 0x0d,
  4912. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x22, 0x20,
  4913. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x68,
  4914. 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x23,
  4915. 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x22,
  4916. 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18,
  4917. 0x24, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71,
  4918. 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65,
  4919. 0x18, 0x25, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x46, 0x65,
  4920. 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x66,
  4921. 0x65, 0x18, 0x26, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  4922. 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  4923. 0x6d, 0x6e, 0x18, 0x27, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71,
  4924. 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  4925. 0x5f, 0x6d, 0x6e, 0x18, 0x28, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75,
  4926. 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77,
  4927. 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x29, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x66, 0x65,
  4928. 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x64,
  4929. 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x2a, 0x20, 0x01, 0x28,
  4930. 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32,
  4931. 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18,
  4932. 0x2b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x43, 0x6f, 0x64,
  4933. 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x63,
  4934. 0x6f, 0x64, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  4935. 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77,
  4936. 0x71, 0x5f, 0x70, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x65, 0x65, 0x64, 0x57,
  4937. 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  4938. 0x5f, 0x70, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  4939. 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x2f, 0x20, 0x01,
  4940. 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69,
  4941. 0x6d, 0x65, 0x18, 0x30, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22,
  4942. 0xad, 0x02, 0x0a, 0x0c, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65, 0x73, 0x74,
  4943. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64,
  4944. 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02,
  4945. 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12,
  4946. 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03,
  4947. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65,
  4948. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  4949. 0x52, 0x06, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65,
  4950. 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x27,
  4951. 0x0a, 0x0f, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
  4952. 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f,
  4953. 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x61, 0x67, 0x69, 0x74, 0x61,
  4954. 0x74, 0x6f, 0x72, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01,
  4955. 0x28, 0x03, 0x52, 0x10, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x44, 0x75, 0x72, 0x61,
  4956. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x32, 0x0a, 0x15, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72,
  4957. 0x5f, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 0x20,
  4958. 0x01, 0x28, 0x03, 0x52, 0x13, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x46, 0x61, 0x75,
  4959. 0x6c, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69,
  4960. 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22,
  4961. 0x86, 0x03, 0x0a, 0x0b, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x12,
  4962. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12,
  4963. 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
  4964. 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f,
  4965. 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20,
  4966. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12,
  4967. 0x23, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  4968. 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73,
  4969. 0x73, 0x75, 0x72, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6f, 0x75, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73,
  4970. 0x73, 0x75, 0x72, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x6f, 0x75, 0x74, 0x50,
  4971. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74,
  4972. 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74,
  4973. 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x07,
  4974. 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x1c, 0x0a,
  4975. 0x09, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01,
  4976. 0x52, 0x09, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x6c,
  4977. 0x69, 0x66, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04, 0x6c, 0x69, 0x66, 0x74, 0x12,
  4978. 0x1e, 0x0a, 0x0a, 0x65, 0x66, 0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x0a, 0x20,
  4979. 0x01, 0x28, 0x01, 0x52, 0x0a, 0x65, 0x66, 0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x63, 0x79, 0x12,
  4980. 0x1d, 0x0a, 0x0a, 0x72, 0x75, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0b, 0x20,
  4981. 0x01, 0x28, 0x03, 0x52, 0x09, 0x72, 0x75, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x21,
  4982. 0x0a, 0x0c, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0c,
  4983. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75,
  4984. 0x73, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28,
  4985. 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xfa, 0x01, 0x0a, 0x0c, 0x57, 0x6f, 0x72,
  4986. 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x76, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  4987. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f,
  4988. 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70,
  4989. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69,
  4990. 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64,
  4991. 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x64, 0x6a,
  4992. 0x75, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x61, 0x64, 0x6a, 0x75, 0x73,
  4993. 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x18, 0x05, 0x20, 0x01,
  4994. 0x28, 0x01, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x63,
  4995. 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x6c, 0x6f,
  4996. 0x73, 0x65, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x65, 0x64, 0x18, 0x07, 0x20,
  4997. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x65, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x66,
  4998. 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28,
  4999. 0x03, 0x52, 0x0b, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15,
  5000. 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  5001. 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x76, 0x0a, 0x0f, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73,
  5002. 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a,
  5003. 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72,
  5004. 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f,
  5005. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d,
  5006. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x76, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28,
  5007. 0x01, 0x52, 0x03, 0x76, 0x61, 0x6c, 0x12, 0x15, 0x0a, 0x06, 0x68, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  5008. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x64, 0x0a,
  5009. 0x1a, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73,
  5010. 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
  5011. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  5012. 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x27, 0x0a, 0x04, 0x6c, 0x69,
  5013. 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74,
  5014. 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x6c,
  5015. 0x69, 0x73, 0x74, 0x22, 0x1d, 0x0a, 0x1b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49,
  5016. 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65,
  5017. 0x73, 0x70, 0x22, 0xe6, 0x01, 0x0a, 0x16, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f,
  5018. 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a,
  5019. 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5020. 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09,
  5021. 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  5022. 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x74,
  5023. 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x74,
  5024. 0x65, 0x72, 0x76, 0x61, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61,
  5025. 0x74, 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x67, 0x67, 0x72, 0x65,
  5026. 0x67, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05,
  5027. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65,
  5028. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x74, 0x69, 0x6d,
  5029. 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52,
  5030. 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x08,
  5031. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x22, 0x98, 0x01, 0x0a, 0x18,
  5032. 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42,
  5033. 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a,
  5034. 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72,
  5035. 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f,
  5036. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d,
  5037. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20,
  5038. 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x74,
  5039. 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65,
  5040. 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  5041. 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x22, 0x66, 0x0a, 0x19, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69,
  5042. 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x61, 0x78, 0x4d, 0x69, 0x6e, 0x52,
  5043. 0x65, 0x73, 0x70, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x61, 0x78, 0x5f, 0x76, 0x61, 0x6c, 0x18, 0x01,
  5044. 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x6d, 0x61, 0x78, 0x56, 0x61, 0x6c, 0x12, 0x17, 0x0a, 0x07,
  5045. 0x6d, 0x69, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x6d,
  5046. 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x12, 0x17, 0x0a, 0x07, 0x61, 0x76, 0x67, 0x5f, 0x76, 0x61, 0x6c,
  5047. 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x61, 0x76, 0x67, 0x56, 0x61, 0x6c, 0x22, 0x48,
  5048. 0x0a, 0x1c, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74,
  5049. 0x61, 0x46, 0x69, 0x72, 0x73, 0x74, 0x4c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14,
  5050. 0x0a, 0x05, 0x66, 0x69, 0x72, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x66,
  5051. 0x69, 0x72, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x61, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01,
  5052. 0x28, 0x01, 0x52, 0x04, 0x6c, 0x61, 0x73, 0x74, 0x22, 0x35, 0x0a, 0x1d, 0x43, 0x68, 0x61, 0x6e,
  5053. 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  5054. 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
  5055. 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22,
  5056. 0x5b, 0x0a, 0x13, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61,
  5057. 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e,
  5058. 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e,
  5059. 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01,
  5060. 0x52, 0x03, 0x76, 0x61, 0x6c, 0x12, 0x15, 0x0a, 0x06, 0x68, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18,
  5061. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x5a, 0x0a, 0x17,
  5062. 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46,
  5063. 0x6f, 0x72, 0x43, 0x68, 0x61, 0x72, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  5064. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x76,
  5065. 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x76, 0x61, 0x6c, 0x12, 0x19, 0x0a,
  5066. 0x08, 0x68, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  5067. 0x07, 0x68, 0x74, 0x69, 0x6d, 0x65, 0x41, 0x74, 0x22, 0x9c, 0x02, 0x0a, 0x1a, 0x49, 0x74, 0x65,
  5068. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x43,
  5069. 0x68, 0x61, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65,
  5070. 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f,
  5071. 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e,
  5072. 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e,
  5073. 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
  5074. 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x74, 0x69,
  5075. 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12,
  5076. 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28,
  5077. 0x09, 0x52, 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x73,
  5078. 0x69, 0x7a, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12,
  5079. 0x1e, 0x0a, 0x0a, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x07, 0x20,
  5080. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x6f, 0x72, 0x12,
  5081. 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  5082. 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x61, 0x78, 0x5f, 0x76, 0x61, 0x6c,
  5083. 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x6d, 0x61, 0x78, 0x56, 0x61, 0x6c, 0x12, 0x17,
  5084. 0x0a, 0x07, 0x6d, 0x69, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01, 0x52,
  5085. 0x06, 0x6d, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x22, 0x4e, 0x0a, 0x1b, 0x49, 0x74, 0x65, 0x6d, 0x48,
  5086. 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x43, 0x68, 0x61,
  5087. 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2f, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01,
  5088. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69,
  5089. 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x43, 0x68, 0x61, 0x72,
  5090. 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x46, 0x0a, 0x17, 0x49, 0x74, 0x65, 0x6d, 0x48,
  5091. 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  5092. 0x73, 0x70, 0x12, 0x2b, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  5093. 0x32, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  5094. 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22,
  5095. 0x3b, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42,
  5096. 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  5097. 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72,
  5098. 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xfa, 0x01, 0x0a,
  5099. 0x17, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79,
  5100. 0x43, 0x79, 0x63, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a,
  5101. 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72,
  5102. 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63,
  5103. 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65,
  5104. 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x74,
  5105. 0x65, 0x72, 0x5f, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
  5106. 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73,
  5107. 0x74, 0x65, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12,
  5108. 0x2a, 0x0a, 0x11, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73,
  5109. 0x74, 0x61, 0x72, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x69, 0x6c, 0x74,
  5110. 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x66,
  5111. 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x65, 0x6e, 0x64, 0x18, 0x06,
  5112. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65,
  5113. 0x45, 0x6e, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x07, 0x20, 0x01,
  5114. 0x28, 0x03, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x3d, 0x0a, 0x18, 0x46, 0x69, 0x6e,
  5115. 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79, 0x43, 0x79, 0x63, 0x6c,
  5116. 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  5117. 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
  5118. 0x55, 0x66, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x57,
  5119. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65,
  5120. 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  5121. 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x52,
  5122. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b,
  5123. 0x69, 0x6e, 0x67, 0x4e, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12,
  5124. 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e,
  5125. 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x4e, 0x66, 0x52, 0x04, 0x6c, 0x69,
  5126. 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
  5127. 0x4d, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04,
  5128. 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e,
  5129. 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x4d, 0x66, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22,
  5130. 0x3f, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d,
  5131. 0x70, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x23, 0x0a, 0x04, 0x6c,
  5132. 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x57,
  5133. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
  5134. 0x22, 0x41, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61,
  5135. 0x6c, 0x76, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x24, 0x0a,
  5136. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x70, 0x62,
  5137. 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x76, 0x65, 0x52, 0x04, 0x6c,
  5138. 0x69, 0x73, 0x74, 0x22, 0x41, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  5139. 0x67, 0x43, 0x68, 0x65, 0x73, 0x74, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70,
  5140. 0x12, 0x24, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10,
  5141. 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65, 0x73, 0x74,
  5142. 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x57, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x70,
  5143. 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65,
  5144. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  5145. 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  5146. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64,
  5147. 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x22,
  5148. 0x62, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x70, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  5149. 0x73, 0x70, 0x12, 0x1f, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  5150. 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c,
  5151. 0x69, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
  5152. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x61, 0x67,
  5153. 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74,
  5154. 0x69, 0x6f, 0x6e, 0x22, 0x2a, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66,
  5155. 0x6f, 0x52, 0x65, 0x71, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
  5156. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22,
  5157. 0x38, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73,
  5158. 0x70, 0x12, 0x26, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20,
  5159. 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f,
  5160. 0x52, 0x07, 0x61, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x66, 0x0a, 0x10, 0x43, 0x72, 0x65,
  5161. 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x19, 0x0a,
  5162. 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  5163. 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x72, 0x6f, 0x6a,
  5164. 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0a, 0x70,
  5165. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x78, 0x70,
  5166. 0x69, 0x72, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x65, 0x78, 0x70, 0x69, 0x72,
  5167. 0x65, 0x22, 0x3b, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e,
  5168. 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x26, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x69, 0x6e,
  5169. 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x70,
  5170. 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x61, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x2d,
  5171. 0x0a, 0x10, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  5172. 0x65, 0x71, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
  5173. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x23, 0x0a,
  5174. 0x11, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  5175. 0x73, 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02,
  5176. 0x6f, 0x6b, 0x22, 0x2e, 0x0a, 0x11, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70,
  5177. 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e,
  5178. 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61,
  5179. 0x6d, 0x65, 0x22, 0x24, 0x0a, 0x12, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70,
  5180. 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6b, 0x18, 0x01,
  5181. 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b, 0x22, 0x2d, 0x0a, 0x10, 0x45, 0x6e, 0x61, 0x62,
  5182. 0x6c, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x19, 0x0a, 0x08,
  5183. 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  5184. 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x23, 0x0a, 0x11, 0x45, 0x6e, 0x61, 0x62, 0x6c,
  5185. 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x0e, 0x0a, 0x02,
  5186. 0x6f, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b, 0x22, 0x2e, 0x0a, 0x11,
  5187. 0x52, 0x65, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65,
  5188. 0x71, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
  5189. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x2c, 0x0a, 0x12,
  5190. 0x52, 0x65, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65,
  5191. 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01,
  5192. 0x28, 0x09, 0x52, 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x22, 0x47, 0x0a, 0x12, 0x45, 0x78,
  5193. 0x70, 0x69, 0x72, 0x65, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71,
  5194. 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
  5195. 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x65,
  5196. 0x78, 0x70, 0x69, 0x72, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x65, 0x78, 0x70,
  5197. 0x69, 0x72, 0x65, 0x22, 0x32, 0x0a, 0x13, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65, 0x41, 0x70, 0x70,
  5198. 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x78,
  5199. 0x70, 0x69, 0x72, 0x65, 0x5f, 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65,
  5200. 0x78, 0x70, 0x69, 0x72, 0x65, 0x41, 0x74, 0x22, 0x50, 0x0a, 0x12, 0x52, 0x65, 0x73, 0x65, 0x74,
  5201. 0x41, 0x70, 0x70, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x12, 0x19, 0x0a,
  5202. 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  5203. 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x72, 0x6f, 0x6a,
  5204. 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0a, 0x70,
  5205. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x73, 0x22, 0x43, 0x0a, 0x13, 0x52, 0x65, 0x73,
  5206. 0x65, 0x74, 0x41, 0x70, 0x70, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70,
  5207. 0x12, 0x2c, 0x0a, 0x12, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x6a, 0x65,
  5208. 0x63, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x10, 0x72, 0x65,
  5209. 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x73, 0x22, 0x6a,
  5210. 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69,
  5211. 0x62, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
  5212. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65,
  5213. 0x63, 0x74, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x02, 0x20,
  5214. 0x03, 0x28, 0x09, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x73, 0x74,
  5215. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x65, 0x74,
  5216. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x65, 0x74, 0x22, 0x9d, 0x01, 0x0a, 0x14, 0x46,
  5217. 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52,
  5218. 0x65, 0x73, 0x70, 0x12, 0x36, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28,
  5219. 0x0b, 0x32, 0x22, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x44,
  5220. 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x2e, 0x4c, 0x69, 0x73, 0x74,
  5221. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x1a, 0x4d, 0x0a, 0x09, 0x4c,
  5222. 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
  5223. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2a, 0x0a, 0x05, 0x76, 0x61,
  5224. 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x44,
  5225. 0x61, 0x74, 0x61, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  5226. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x6d, 0x0a, 0x16, 0x46, 0x69,
  5227. 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  5228. 0x6e, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f,
  5229. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
  5230. 0x74, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03,
  5231. 0x28, 0x09, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x73, 0x74, 0x18,
  5232. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x65, 0x74, 0x18,
  5233. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x65, 0x74, 0x22, 0x6b, 0x0a, 0x14, 0x46, 0x69, 0x6e,
  5234. 0x64, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x4d, 0x61, 0x78, 0x52, 0x65,
  5235. 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18,
  5236. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64,
  5237. 0x12, 0x14, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52,
  5238. 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x73, 0x74, 0x18, 0x03, 0x20, 0x01,
  5239. 0x28, 0x09, 0x52, 0x02, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01,
  5240. 0x28, 0x09, 0x52, 0x02, 0x65, 0x74, 0x22, 0xa0, 0x01, 0x0a, 0x15, 0x46, 0x69, 0x6e, 0x64, 0x44,
  5241. 0x61, 0x74, 0x61, 0x4d, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x4d, 0x61, 0x78, 0x52, 0x65, 0x73, 0x70,
  5242. 0x12, 0x37, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23,
  5243. 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x69, 0x6e, 0x41,
  5244. 0x6e, 0x64, 0x4d, 0x61, 0x78, 0x52, 0x65, 0x73, 0x70, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e,
  5245. 0x74, 0x72, 0x79, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x1a, 0x4e, 0x0a, 0x09, 0x4c, 0x69, 0x73,
  5246. 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
  5247. 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2b, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
  5248. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x61, 0x74,
  5249. 0x61, 0x4d, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x4d, 0x61, 0x78, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x05,
  5250. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xa6, 0x01, 0x0a, 0x17, 0x46, 0x69,
  5251. 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  5252. 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x39, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  5253. 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74,
  5254. 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70,
  5255. 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
  5256. 0x1a, 0x50, 0x0a, 0x09, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
  5257. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
  5258. 0x2d, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17,
  5259. 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x6c, 0x61, 0x74,
  5260. 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02,
  5261. 0x38, 0x01, 0x22, 0x0b, 0x0a, 0x09, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x52, 0x65, 0x71, 0x22,
  5262. 0x54, 0x0a, 0x0a, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x12, 0x0e, 0x0a,
  5263. 0x02, 0x64, 0x62, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x02, 0x64, 0x62, 0x12, 0x14, 0x0a,
  5264. 0x05, 0x72, 0x65, 0x64, 0x69, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x65,
  5265. 0x64, 0x69, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x6d, 0x71, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52,
  5266. 0x02, 0x6d, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  5267. 0x52, 0x03, 0x6d, 0x73, 0x67, 0x32, 0xf8, 0x0e, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
  5268. 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72,
  5269. 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70,
  5270. 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1a,
  5271. 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66,
  5272. 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x51, 0x0a, 0x14, 0x46, 0x69,
  5273. 0x6e, 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79, 0x43, 0x79, 0x63,
  5274. 0x6c, 0x65, 0x12, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x6f, 0x72, 0x6b,
  5275. 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x1a,
  5276. 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
  5277. 0x55, 0x66, 0x42, 0x79, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x42, 0x0a,
  5278. 0x12, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x42, 0x79, 0x43,
  5279. 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69,
  5280. 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f,
  5281. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73,
  5282. 0x70, 0x12, 0x48, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43,
  5283. 0x68, 0x65, 0x73, 0x74, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e,
  5284. 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x70,
  5285. 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65, 0x73,
  5286. 0x74, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x46, 0x0a, 0x14, 0x47,
  5287. 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x42, 0x79, 0x43,
  5288. 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69,
  5289. 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f,
  5290. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
  5291. 0x65, 0x73, 0x70, 0x12, 0x48, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  5292. 0x67, 0x56, 0x61, 0x6c, 0x76, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70,
  5293. 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1d,
  5294. 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61,
  5295. 0x6c, 0x76, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x5a, 0x0a,
  5296. 0x17, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73,
  5297. 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1e, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x75,
  5298. 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  5299. 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x75,
  5300. 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  5301. 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12, 0x4e, 0x0a, 0x13, 0x49, 0x74, 0x65,
  5302. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74,
  5303. 0x12, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  5304. 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1b, 0x2e, 0x70,
  5305. 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74,
  5306. 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x52, 0x0a, 0x15, 0x49, 0x74, 0x65,
  5307. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69,
  5308. 0x6d, 0x65, 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74,
  5309. 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71,
  5310. 0x1a, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  5311. 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x5a, 0x0a,
  5312. 0x1b, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61,
  5313. 0x4d, 0x61, 0x78, 0x4d, 0x69, 0x6e, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x2e, 0x70,
  5314. 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74,
  5315. 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x70, 0x62, 0x2e,
  5316. 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4d,
  5317. 0x61, 0x78, 0x4d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x60, 0x0a, 0x1e, 0x49, 0x74, 0x65,
  5318. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x69, 0x72, 0x73,
  5319. 0x74, 0x4c, 0x61, 0x73, 0x74, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x2e, 0x70, 0x62,
  5320. 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61,
  5321. 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x20, 0x2e, 0x70, 0x62, 0x2e, 0x49,
  5322. 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x69,
  5323. 0x72, 0x73, 0x74, 0x4c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x5c, 0x0a, 0x19, 0x43,
  5324. 0x68, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73,
  5325. 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74,
  5326. 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54,
  5327. 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x21, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x68, 0x61, 0x6e,
  5328. 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  5329. 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12, 0x5a, 0x0a, 0x17, 0x49, 0x74, 0x65,
  5330. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x43,
  5331. 0x68, 0x61, 0x72, 0x74, 0x12, 0x1e, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69,
  5332. 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x43, 0x68, 0x61, 0x72,
  5333. 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69,
  5334. 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x43, 0x68, 0x61, 0x72,
  5335. 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x36, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x70, 0x70,
  5336. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x70,
  5337. 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69,
  5338. 0x6e, 0x64, 0x41, 0x70, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x33, 0x0a,
  5339. 0x0a, 0x47, 0x65, 0x74, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x11, 0x2e, 0x70, 0x62,
  5340. 0x2e, 0x47, 0x65, 0x74, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x12,
  5341. 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  5342. 0x73, 0x70, 0x12, 0x3c, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x49,
  5343. 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41,
  5344. 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x43,
  5345. 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70,
  5346. 0x12, 0x3c, 0x0a, 0x0d, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66,
  5347. 0x6f, 0x12, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x70, 0x70,
  5348. 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d,
  5349. 0x6f, 0x76, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3f,
  5350. 0x0a, 0x0e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f,
  5351. 0x12, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70,
  5352. 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x69, 0x73,
  5353. 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12,
  5354. 0x3c, 0x0a, 0x0d, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f,
  5355. 0x12, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x49,
  5356. 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x45, 0x6e, 0x61, 0x62,
  5357. 0x6c, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3f, 0x0a,
  5358. 0x0e, 0x52, 0x65, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12,
  5359. 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63,
  5360. 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x65,
  5361. 0x74, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x42,
  5362. 0x0a, 0x0f, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72, 0x65,
  5363. 0x74, 0x12, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65, 0x41, 0x70, 0x70,
  5364. 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x45,
  5365. 0x78, 0x70, 0x69, 0x72, 0x65, 0x41, 0x70, 0x70, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65,
  5366. 0x73, 0x70, 0x12, 0x42, 0x0a, 0x0f, 0x52, 0x65, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x50, 0x72,
  5367. 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x74,
  5368. 0x41, 0x70, 0x70, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e,
  5369. 0x70, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x74, 0x41, 0x70, 0x70, 0x50, 0x72, 0x6f, 0x6a, 0x65,
  5370. 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x45, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61,
  5371. 0x74, 0x61, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x17, 0x2e, 0x70, 0x62, 0x2e,
  5372. 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
  5373. 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74,
  5374. 0x61, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x48, 0x0a,
  5375. 0x11, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x4d,
  5376. 0x61, 0x78, 0x12, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61,
  5377. 0x4d, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x4d, 0x61, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x19, 0x2e, 0x70,
  5378. 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x69, 0x6e, 0x41, 0x6e, 0x64,
  5379. 0x4d, 0x61, 0x78, 0x52, 0x65, 0x73, 0x70, 0x12, 0x4e, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x44,
  5380. 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a,
  5381. 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72,
  5382. 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x1b, 0x2e, 0x70, 0x62, 0x2e,
  5383. 0x46, 0x69, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x6c, 0x61, 0x74,
  5384. 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x6c, 0x74,
  5385. 0x68, 0x12, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x52, 0x65, 0x71,
  5386. 0x1a, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70,
  5387. 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  5388. }
  5389. var (
  5390. file_datacenter_proto_rawDescOnce sync.Once
  5391. file_datacenter_proto_rawDescData = file_datacenter_proto_rawDesc
  5392. )
  5393. func file_datacenter_proto_rawDescGZIP() []byte {
  5394. file_datacenter_proto_rawDescOnce.Do(func() {
  5395. file_datacenter_proto_rawDescData = protoimpl.X.CompressGZIP(file_datacenter_proto_rawDescData)
  5396. })
  5397. return file_datacenter_proto_rawDescData
  5398. }
  5399. var file_datacenter_proto_msgTypes = make([]protoimpl.MessageInfo, 66)
  5400. var file_datacenter_proto_goTypes = []interface{}{
  5401. (*Pagination)(nil), // 0: pb.Pagination
  5402. (*DataDescribeInfo)(nil), // 1: pb.DataDescribeInfo
  5403. (*DataMinAndMaxInfo)(nil), // 2: pb.DataMinAndMaxInfo
  5404. (*RelatedItems)(nil), // 3: pb.RelatedItems
  5405. (*DataCorrelationInfo)(nil), // 4: pb.DataCorrelationInfo
  5406. (*AppInfo)(nil), // 5: pb.AppInfo
  5407. (*DcWorkingReq)(nil), // 6: pb.DcWorkingReq
  5408. (*WorkingMf)(nil), // 7: pb.WorkingMf
  5409. (*WorkingUf)(nil), // 8: pb.WorkingUf
  5410. (*WorkingNf)(nil), // 9: pb.WorkingNf
  5411. (*WorkingRo)(nil), // 10: pb.WorkingRo
  5412. (*WorkingChest)(nil), // 11: pb.WorkingChest
  5413. (*WorkingPump)(nil), // 12: pb.WorkingPump
  5414. (*WorkingValve)(nil), // 13: pb.WorkingValve
  5415. (*ItemHistoryData)(nil), // 14: pb.ItemHistoryData
  5416. (*MultiAddItemHistoryDataReq)(nil), // 15: pb.MultiAddItemHistoryDataReq
  5417. (*MultiAddItemHistoryDataResp)(nil), // 16: pb.MultiAddItemHistoryDataResp
  5418. (*ItemHistoryDataListReq)(nil), // 17: pb.ItemHistoryDataListReq
  5419. (*ItemHistoryDataByTimeReq)(nil), // 18: pb.ItemHistoryDataByTimeReq
  5420. (*ItemHistoryDataMaxMinResp)(nil), // 19: pb.ItemHistoryDataMaxMinResp
  5421. (*ItemHistoryDataFirstLastResp)(nil), // 20: pb.ItemHistoryDataFirstLastResp
  5422. (*ChangeTypeItemHistoryDataResp)(nil), // 21: pb.ChangeTypeItemHistoryDataResp
  5423. (*ItemHistoryDataList)(nil), // 22: pb.ItemHistoryDataList
  5424. (*ItemHistoryDataForChart)(nil), // 23: pb.ItemHistoryDataForChart
  5425. (*ItemHistoryDataForChartReq)(nil), // 24: pb.ItemHistoryDataForChartReq
  5426. (*ItemHistoryDataForChartResp)(nil), // 25: pb.ItemHistoryDataForChartResp
  5427. (*ItemHistoryDataListResp)(nil), // 26: pb.ItemHistoryDataListResp
  5428. (*GetWorkingUfByCodeResp)(nil), // 27: pb.GetWorkingUfByCodeResp
  5429. (*FindWorkingUfByCycleReq)(nil), // 28: pb.FindWorkingUfByCycleReq
  5430. (*FindWorkingUfByCycleResp)(nil), // 29: pb.FindWorkingUfByCycleResp
  5431. (*GetWorkingRoByCodeResp)(nil), // 30: pb.GetWorkingRoByCodeResp
  5432. (*GetWorkingNfByCodeResp)(nil), // 31: pb.GetWorkingNfByCodeResp
  5433. (*GetWorkingMfByCodeResp)(nil), // 32: pb.GetWorkingMfByCodeResp
  5434. (*GetWorkingPumpByCodeResp)(nil), // 33: pb.GetWorkingPumpByCodeResp
  5435. (*GetWorkingValveByCodeResp)(nil), // 34: pb.GetWorkingValveByCodeResp
  5436. (*GetWorkingChestByCodeResp)(nil), // 35: pb.GetWorkingChestByCodeResp
  5437. (*FindAppListReq)(nil), // 36: pb.FindAppListReq
  5438. (*FindAppListResp)(nil), // 37: pb.FindAppListResp
  5439. (*GetAppInfoReq)(nil), // 38: pb.GetAppInfoReq
  5440. (*GetAppInfoResp)(nil), // 39: pb.GetAppInfoResp
  5441. (*CreateAppInfoReq)(nil), // 40: pb.CreateAppInfoReq
  5442. (*CreateAppInfoResp)(nil), // 41: pb.CreateAppInfoResp
  5443. (*RemoveAppInfoReq)(nil), // 42: pb.RemoveAppInfoReq
  5444. (*RemoveAppInfoResp)(nil), // 43: pb.RemoveAppInfoResp
  5445. (*DisableAppInfoReq)(nil), // 44: pb.DisableAppInfoReq
  5446. (*DisableAppInfoResp)(nil), // 45: pb.DisableAppInfoResp
  5447. (*EnableAppInfoReq)(nil), // 46: pb.EnableAppInfoReq
  5448. (*EnableAppInfoResp)(nil), // 47: pb.EnableAppInfoResp
  5449. (*ResetAppSecretReq)(nil), // 48: pb.ResetAppSecretReq
  5450. (*ResetAppSecretResp)(nil), // 49: pb.ResetAppSecretResp
  5451. (*ExpireAppSecretReq)(nil), // 50: pb.ExpireAppSecretReq
  5452. (*ExpireAppSecretResp)(nil), // 51: pb.ExpireAppSecretResp
  5453. (*ResetAppProjectReq)(nil), // 52: pb.ResetAppProjectReq
  5454. (*ResetAppProjectResp)(nil), // 53: pb.ResetAppProjectResp
  5455. (*FindDataDescribeReq)(nil), // 54: pb.FindDataDescribeReq
  5456. (*FindDataDescribeResp)(nil), // 55: pb.FindDataDescribeResp
  5457. (*FindDataCorrelationReq)(nil), // 56: pb.FindDataCorrelationReq
  5458. (*FindDataMinAndMaxReq)(nil), // 57: pb.FindDataMinAndMaxReq
  5459. (*FindDataMinAndMaxResp)(nil), // 58: pb.FindDataMinAndMaxResp
  5460. (*FindDataCorrelationResp)(nil), // 59: pb.FindDataCorrelationResp
  5461. (*HealthReq)(nil), // 60: pb.HealthReq
  5462. (*HealthResp)(nil), // 61: pb.HealthResp
  5463. nil, // 62: pb.DataCorrelationInfo.RelatedItemsEntry
  5464. nil, // 63: pb.FindDataDescribeResp.ListEntry
  5465. nil, // 64: pb.FindDataMinAndMaxResp.ListEntry
  5466. nil, // 65: pb.FindDataCorrelationResp.ListEntry
  5467. }
  5468. var file_datacenter_proto_depIdxs = []int32{
  5469. 62, // 0: pb.DataCorrelationInfo.related_items:type_name -> pb.DataCorrelationInfo.RelatedItemsEntry
  5470. 14, // 1: pb.MultiAddItemHistoryDataReq.list:type_name -> pb.ItemHistoryData
  5471. 23, // 2: pb.ItemHistoryDataForChartResp.list:type_name -> pb.ItemHistoryDataForChart
  5472. 22, // 3: pb.ItemHistoryDataListResp.list:type_name -> pb.ItemHistoryDataList
  5473. 8, // 4: pb.GetWorkingUfByCodeResp.list:type_name -> pb.WorkingUf
  5474. 8, // 5: pb.FindWorkingUfByCycleResp.list:type_name -> pb.WorkingUf
  5475. 10, // 6: pb.GetWorkingRoByCodeResp.list:type_name -> pb.WorkingRo
  5476. 9, // 7: pb.GetWorkingNfByCodeResp.list:type_name -> pb.WorkingNf
  5477. 7, // 8: pb.GetWorkingMfByCodeResp.list:type_name -> pb.WorkingMf
  5478. 12, // 9: pb.GetWorkingPumpByCodeResp.list:type_name -> pb.WorkingPump
  5479. 13, // 10: pb.GetWorkingValveByCodeResp.list:type_name -> pb.WorkingValve
  5480. 11, // 11: pb.GetWorkingChestByCodeResp.list:type_name -> pb.WorkingChest
  5481. 5, // 12: pb.FindAppListResp.list:type_name -> pb.AppInfo
  5482. 0, // 13: pb.FindAppListResp.pagination:type_name -> pb.Pagination
  5483. 5, // 14: pb.GetAppInfoResp.app_info:type_name -> pb.AppInfo
  5484. 5, // 15: pb.CreateAppInfoResp.app_info:type_name -> pb.AppInfo
  5485. 63, // 16: pb.FindDataDescribeResp.list:type_name -> pb.FindDataDescribeResp.ListEntry
  5486. 64, // 17: pb.FindDataMinAndMaxResp.list:type_name -> pb.FindDataMinAndMaxResp.ListEntry
  5487. 65, // 18: pb.FindDataCorrelationResp.list:type_name -> pb.FindDataCorrelationResp.ListEntry
  5488. 3, // 19: pb.DataCorrelationInfo.RelatedItemsEntry.value:type_name -> pb.RelatedItems
  5489. 1, // 20: pb.FindDataDescribeResp.ListEntry.value:type_name -> pb.DataDescribeInfo
  5490. 2, // 21: pb.FindDataMinAndMaxResp.ListEntry.value:type_name -> pb.DataMinAndMaxInfo
  5491. 4, // 22: pb.FindDataCorrelationResp.ListEntry.value:type_name -> pb.DataCorrelationInfo
  5492. 6, // 23: pb.Organization.GetWorkingUfByCode:input_type -> pb.DcWorkingReq
  5493. 28, // 24: pb.Organization.FindWorkingUfByCycle:input_type -> pb.FindWorkingUfByCycleReq
  5494. 6, // 25: pb.Organization.GetWorkingRoByCode:input_type -> pb.DcWorkingReq
  5495. 6, // 26: pb.Organization.GetWorkingChestByCode:input_type -> pb.DcWorkingReq
  5496. 6, // 27: pb.Organization.GetWorkingPumpByCode:input_type -> pb.DcWorkingReq
  5497. 6, // 28: pb.Organization.GetWorkingValveByCode:input_type -> pb.DcWorkingReq
  5498. 15, // 29: pb.Organization.MultiAddItemHistoryData:input_type -> pb.MultiAddItemHistoryDataReq
  5499. 17, // 30: pb.Organization.ItemHistoryDataList:input_type -> pb.ItemHistoryDataListReq
  5500. 18, // 31: pb.Organization.ItemHistoryDataByTime:input_type -> pb.ItemHistoryDataByTimeReq
  5501. 18, // 32: pb.Organization.ItemHistoryDataMaxMinByTime:input_type -> pb.ItemHistoryDataByTimeReq
  5502. 18, // 33: pb.Organization.ItemHistoryDataFirstLastByTime:input_type -> pb.ItemHistoryDataByTimeReq
  5503. 18, // 34: pb.Organization.ChangeTypeItemHistoryData:input_type -> pb.ItemHistoryDataByTimeReq
  5504. 24, // 35: pb.Organization.ItemHistoryDataForChart:input_type -> pb.ItemHistoryDataForChartReq
  5505. 36, // 36: pb.Organization.FindAppList:input_type -> pb.FindAppListReq
  5506. 38, // 37: pb.Organization.GetAppInfo:input_type -> pb.GetAppInfoReq
  5507. 40, // 38: pb.Organization.CreateAppInfo:input_type -> pb.CreateAppInfoReq
  5508. 42, // 39: pb.Organization.RemoveAppInfo:input_type -> pb.RemoveAppInfoReq
  5509. 44, // 40: pb.Organization.DisableAppInfo:input_type -> pb.DisableAppInfoReq
  5510. 46, // 41: pb.Organization.EnableAppInfo:input_type -> pb.EnableAppInfoReq
  5511. 48, // 42: pb.Organization.ResetAppSecret:input_type -> pb.ResetAppSecretReq
  5512. 50, // 43: pb.Organization.ExpireAppSecret:input_type -> pb.ExpireAppSecretReq
  5513. 52, // 44: pb.Organization.ResetAppProject:input_type -> pb.ResetAppProjectReq
  5514. 54, // 45: pb.Organization.FindDataDescribe:input_type -> pb.FindDataDescribeReq
  5515. 57, // 46: pb.Organization.FindDataMinAndMax:input_type -> pb.FindDataMinAndMaxReq
  5516. 56, // 47: pb.Organization.FindDataCorrelation:input_type -> pb.FindDataCorrelationReq
  5517. 60, // 48: pb.Organization.Health:input_type -> pb.HealthReq
  5518. 27, // 49: pb.Organization.GetWorkingUfByCode:output_type -> pb.GetWorkingUfByCodeResp
  5519. 29, // 50: pb.Organization.FindWorkingUfByCycle:output_type -> pb.FindWorkingUfByCycleResp
  5520. 30, // 51: pb.Organization.GetWorkingRoByCode:output_type -> pb.GetWorkingRoByCodeResp
  5521. 35, // 52: pb.Organization.GetWorkingChestByCode:output_type -> pb.GetWorkingChestByCodeResp
  5522. 33, // 53: pb.Organization.GetWorkingPumpByCode:output_type -> pb.GetWorkingPumpByCodeResp
  5523. 34, // 54: pb.Organization.GetWorkingValveByCode:output_type -> pb.GetWorkingValveByCodeResp
  5524. 16, // 55: pb.Organization.MultiAddItemHistoryData:output_type -> pb.MultiAddItemHistoryDataResp
  5525. 26, // 56: pb.Organization.ItemHistoryDataList:output_type -> pb.ItemHistoryDataListResp
  5526. 26, // 57: pb.Organization.ItemHistoryDataByTime:output_type -> pb.ItemHistoryDataListResp
  5527. 19, // 58: pb.Organization.ItemHistoryDataMaxMinByTime:output_type -> pb.ItemHistoryDataMaxMinResp
  5528. 20, // 59: pb.Organization.ItemHistoryDataFirstLastByTime:output_type -> pb.ItemHistoryDataFirstLastResp
  5529. 21, // 60: pb.Organization.ChangeTypeItemHistoryData:output_type -> pb.ChangeTypeItemHistoryDataResp
  5530. 25, // 61: pb.Organization.ItemHistoryDataForChart:output_type -> pb.ItemHistoryDataForChartResp
  5531. 37, // 62: pb.Organization.FindAppList:output_type -> pb.FindAppListResp
  5532. 39, // 63: pb.Organization.GetAppInfo:output_type -> pb.GetAppInfoResp
  5533. 41, // 64: pb.Organization.CreateAppInfo:output_type -> pb.CreateAppInfoResp
  5534. 43, // 65: pb.Organization.RemoveAppInfo:output_type -> pb.RemoveAppInfoResp
  5535. 45, // 66: pb.Organization.DisableAppInfo:output_type -> pb.DisableAppInfoResp
  5536. 47, // 67: pb.Organization.EnableAppInfo:output_type -> pb.EnableAppInfoResp
  5537. 49, // 68: pb.Organization.ResetAppSecret:output_type -> pb.ResetAppSecretResp
  5538. 51, // 69: pb.Organization.ExpireAppSecret:output_type -> pb.ExpireAppSecretResp
  5539. 53, // 70: pb.Organization.ResetAppProject:output_type -> pb.ResetAppProjectResp
  5540. 55, // 71: pb.Organization.FindDataDescribe:output_type -> pb.FindDataDescribeResp
  5541. 58, // 72: pb.Organization.FindDataMinAndMax:output_type -> pb.FindDataMinAndMaxResp
  5542. 59, // 73: pb.Organization.FindDataCorrelation:output_type -> pb.FindDataCorrelationResp
  5543. 61, // 74: pb.Organization.Health:output_type -> pb.HealthResp
  5544. 49, // [49:75] is the sub-list for method output_type
  5545. 23, // [23:49] is the sub-list for method input_type
  5546. 23, // [23:23] is the sub-list for extension type_name
  5547. 23, // [23:23] is the sub-list for extension extendee
  5548. 0, // [0:23] is the sub-list for field type_name
  5549. }
  5550. func init() { file_datacenter_proto_init() }
  5551. func file_datacenter_proto_init() {
  5552. if File_datacenter_proto != nil {
  5553. return
  5554. }
  5555. if !protoimpl.UnsafeEnabled {
  5556. file_datacenter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  5557. switch v := v.(*Pagination); i {
  5558. case 0:
  5559. return &v.state
  5560. case 1:
  5561. return &v.sizeCache
  5562. case 2:
  5563. return &v.unknownFields
  5564. default:
  5565. return nil
  5566. }
  5567. }
  5568. file_datacenter_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  5569. switch v := v.(*DataDescribeInfo); i {
  5570. case 0:
  5571. return &v.state
  5572. case 1:
  5573. return &v.sizeCache
  5574. case 2:
  5575. return &v.unknownFields
  5576. default:
  5577. return nil
  5578. }
  5579. }
  5580. file_datacenter_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  5581. switch v := v.(*DataMinAndMaxInfo); i {
  5582. case 0:
  5583. return &v.state
  5584. case 1:
  5585. return &v.sizeCache
  5586. case 2:
  5587. return &v.unknownFields
  5588. default:
  5589. return nil
  5590. }
  5591. }
  5592. file_datacenter_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  5593. switch v := v.(*RelatedItems); i {
  5594. case 0:
  5595. return &v.state
  5596. case 1:
  5597. return &v.sizeCache
  5598. case 2:
  5599. return &v.unknownFields
  5600. default:
  5601. return nil
  5602. }
  5603. }
  5604. file_datacenter_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  5605. switch v := v.(*DataCorrelationInfo); i {
  5606. case 0:
  5607. return &v.state
  5608. case 1:
  5609. return &v.sizeCache
  5610. case 2:
  5611. return &v.unknownFields
  5612. default:
  5613. return nil
  5614. }
  5615. }
  5616. file_datacenter_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  5617. switch v := v.(*AppInfo); i {
  5618. case 0:
  5619. return &v.state
  5620. case 1:
  5621. return &v.sizeCache
  5622. case 2:
  5623. return &v.unknownFields
  5624. default:
  5625. return nil
  5626. }
  5627. }
  5628. file_datacenter_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  5629. switch v := v.(*DcWorkingReq); i {
  5630. case 0:
  5631. return &v.state
  5632. case 1:
  5633. return &v.sizeCache
  5634. case 2:
  5635. return &v.unknownFields
  5636. default:
  5637. return nil
  5638. }
  5639. }
  5640. file_datacenter_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  5641. switch v := v.(*WorkingMf); i {
  5642. case 0:
  5643. return &v.state
  5644. case 1:
  5645. return &v.sizeCache
  5646. case 2:
  5647. return &v.unknownFields
  5648. default:
  5649. return nil
  5650. }
  5651. }
  5652. file_datacenter_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  5653. switch v := v.(*WorkingUf); i {
  5654. case 0:
  5655. return &v.state
  5656. case 1:
  5657. return &v.sizeCache
  5658. case 2:
  5659. return &v.unknownFields
  5660. default:
  5661. return nil
  5662. }
  5663. }
  5664. file_datacenter_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  5665. switch v := v.(*WorkingNf); i {
  5666. case 0:
  5667. return &v.state
  5668. case 1:
  5669. return &v.sizeCache
  5670. case 2:
  5671. return &v.unknownFields
  5672. default:
  5673. return nil
  5674. }
  5675. }
  5676. file_datacenter_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  5677. switch v := v.(*WorkingRo); i {
  5678. case 0:
  5679. return &v.state
  5680. case 1:
  5681. return &v.sizeCache
  5682. case 2:
  5683. return &v.unknownFields
  5684. default:
  5685. return nil
  5686. }
  5687. }
  5688. file_datacenter_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  5689. switch v := v.(*WorkingChest); i {
  5690. case 0:
  5691. return &v.state
  5692. case 1:
  5693. return &v.sizeCache
  5694. case 2:
  5695. return &v.unknownFields
  5696. default:
  5697. return nil
  5698. }
  5699. }
  5700. file_datacenter_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  5701. switch v := v.(*WorkingPump); i {
  5702. case 0:
  5703. return &v.state
  5704. case 1:
  5705. return &v.sizeCache
  5706. case 2:
  5707. return &v.unknownFields
  5708. default:
  5709. return nil
  5710. }
  5711. }
  5712. file_datacenter_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  5713. switch v := v.(*WorkingValve); i {
  5714. case 0:
  5715. return &v.state
  5716. case 1:
  5717. return &v.sizeCache
  5718. case 2:
  5719. return &v.unknownFields
  5720. default:
  5721. return nil
  5722. }
  5723. }
  5724. file_datacenter_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  5725. switch v := v.(*ItemHistoryData); i {
  5726. case 0:
  5727. return &v.state
  5728. case 1:
  5729. return &v.sizeCache
  5730. case 2:
  5731. return &v.unknownFields
  5732. default:
  5733. return nil
  5734. }
  5735. }
  5736. file_datacenter_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  5737. switch v := v.(*MultiAddItemHistoryDataReq); i {
  5738. case 0:
  5739. return &v.state
  5740. case 1:
  5741. return &v.sizeCache
  5742. case 2:
  5743. return &v.unknownFields
  5744. default:
  5745. return nil
  5746. }
  5747. }
  5748. file_datacenter_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  5749. switch v := v.(*MultiAddItemHistoryDataResp); i {
  5750. case 0:
  5751. return &v.state
  5752. case 1:
  5753. return &v.sizeCache
  5754. case 2:
  5755. return &v.unknownFields
  5756. default:
  5757. return nil
  5758. }
  5759. }
  5760. file_datacenter_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  5761. switch v := v.(*ItemHistoryDataListReq); i {
  5762. case 0:
  5763. return &v.state
  5764. case 1:
  5765. return &v.sizeCache
  5766. case 2:
  5767. return &v.unknownFields
  5768. default:
  5769. return nil
  5770. }
  5771. }
  5772. file_datacenter_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  5773. switch v := v.(*ItemHistoryDataByTimeReq); i {
  5774. case 0:
  5775. return &v.state
  5776. case 1:
  5777. return &v.sizeCache
  5778. case 2:
  5779. return &v.unknownFields
  5780. default:
  5781. return nil
  5782. }
  5783. }
  5784. file_datacenter_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  5785. switch v := v.(*ItemHistoryDataMaxMinResp); i {
  5786. case 0:
  5787. return &v.state
  5788. case 1:
  5789. return &v.sizeCache
  5790. case 2:
  5791. return &v.unknownFields
  5792. default:
  5793. return nil
  5794. }
  5795. }
  5796. file_datacenter_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  5797. switch v := v.(*ItemHistoryDataFirstLastResp); i {
  5798. case 0:
  5799. return &v.state
  5800. case 1:
  5801. return &v.sizeCache
  5802. case 2:
  5803. return &v.unknownFields
  5804. default:
  5805. return nil
  5806. }
  5807. }
  5808. file_datacenter_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  5809. switch v := v.(*ChangeTypeItemHistoryDataResp); i {
  5810. case 0:
  5811. return &v.state
  5812. case 1:
  5813. return &v.sizeCache
  5814. case 2:
  5815. return &v.unknownFields
  5816. default:
  5817. return nil
  5818. }
  5819. }
  5820. file_datacenter_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  5821. switch v := v.(*ItemHistoryDataList); i {
  5822. case 0:
  5823. return &v.state
  5824. case 1:
  5825. return &v.sizeCache
  5826. case 2:
  5827. return &v.unknownFields
  5828. default:
  5829. return nil
  5830. }
  5831. }
  5832. file_datacenter_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  5833. switch v := v.(*ItemHistoryDataForChart); i {
  5834. case 0:
  5835. return &v.state
  5836. case 1:
  5837. return &v.sizeCache
  5838. case 2:
  5839. return &v.unknownFields
  5840. default:
  5841. return nil
  5842. }
  5843. }
  5844. file_datacenter_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  5845. switch v := v.(*ItemHistoryDataForChartReq); i {
  5846. case 0:
  5847. return &v.state
  5848. case 1:
  5849. return &v.sizeCache
  5850. case 2:
  5851. return &v.unknownFields
  5852. default:
  5853. return nil
  5854. }
  5855. }
  5856. file_datacenter_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  5857. switch v := v.(*ItemHistoryDataForChartResp); i {
  5858. case 0:
  5859. return &v.state
  5860. case 1:
  5861. return &v.sizeCache
  5862. case 2:
  5863. return &v.unknownFields
  5864. default:
  5865. return nil
  5866. }
  5867. }
  5868. file_datacenter_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  5869. switch v := v.(*ItemHistoryDataListResp); i {
  5870. case 0:
  5871. return &v.state
  5872. case 1:
  5873. return &v.sizeCache
  5874. case 2:
  5875. return &v.unknownFields
  5876. default:
  5877. return nil
  5878. }
  5879. }
  5880. file_datacenter_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  5881. switch v := v.(*GetWorkingUfByCodeResp); i {
  5882. case 0:
  5883. return &v.state
  5884. case 1:
  5885. return &v.sizeCache
  5886. case 2:
  5887. return &v.unknownFields
  5888. default:
  5889. return nil
  5890. }
  5891. }
  5892. file_datacenter_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  5893. switch v := v.(*FindWorkingUfByCycleReq); i {
  5894. case 0:
  5895. return &v.state
  5896. case 1:
  5897. return &v.sizeCache
  5898. case 2:
  5899. return &v.unknownFields
  5900. default:
  5901. return nil
  5902. }
  5903. }
  5904. file_datacenter_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  5905. switch v := v.(*FindWorkingUfByCycleResp); i {
  5906. case 0:
  5907. return &v.state
  5908. case 1:
  5909. return &v.sizeCache
  5910. case 2:
  5911. return &v.unknownFields
  5912. default:
  5913. return nil
  5914. }
  5915. }
  5916. file_datacenter_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  5917. switch v := v.(*GetWorkingRoByCodeResp); i {
  5918. case 0:
  5919. return &v.state
  5920. case 1:
  5921. return &v.sizeCache
  5922. case 2:
  5923. return &v.unknownFields
  5924. default:
  5925. return nil
  5926. }
  5927. }
  5928. file_datacenter_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  5929. switch v := v.(*GetWorkingNfByCodeResp); i {
  5930. case 0:
  5931. return &v.state
  5932. case 1:
  5933. return &v.sizeCache
  5934. case 2:
  5935. return &v.unknownFields
  5936. default:
  5937. return nil
  5938. }
  5939. }
  5940. file_datacenter_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  5941. switch v := v.(*GetWorkingMfByCodeResp); i {
  5942. case 0:
  5943. return &v.state
  5944. case 1:
  5945. return &v.sizeCache
  5946. case 2:
  5947. return &v.unknownFields
  5948. default:
  5949. return nil
  5950. }
  5951. }
  5952. file_datacenter_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  5953. switch v := v.(*GetWorkingPumpByCodeResp); i {
  5954. case 0:
  5955. return &v.state
  5956. case 1:
  5957. return &v.sizeCache
  5958. case 2:
  5959. return &v.unknownFields
  5960. default:
  5961. return nil
  5962. }
  5963. }
  5964. file_datacenter_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  5965. switch v := v.(*GetWorkingValveByCodeResp); i {
  5966. case 0:
  5967. return &v.state
  5968. case 1:
  5969. return &v.sizeCache
  5970. case 2:
  5971. return &v.unknownFields
  5972. default:
  5973. return nil
  5974. }
  5975. }
  5976. file_datacenter_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  5977. switch v := v.(*GetWorkingChestByCodeResp); i {
  5978. case 0:
  5979. return &v.state
  5980. case 1:
  5981. return &v.sizeCache
  5982. case 2:
  5983. return &v.unknownFields
  5984. default:
  5985. return nil
  5986. }
  5987. }
  5988. file_datacenter_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  5989. switch v := v.(*FindAppListReq); i {
  5990. case 0:
  5991. return &v.state
  5992. case 1:
  5993. return &v.sizeCache
  5994. case 2:
  5995. return &v.unknownFields
  5996. default:
  5997. return nil
  5998. }
  5999. }
  6000. file_datacenter_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  6001. switch v := v.(*FindAppListResp); i {
  6002. case 0:
  6003. return &v.state
  6004. case 1:
  6005. return &v.sizeCache
  6006. case 2:
  6007. return &v.unknownFields
  6008. default:
  6009. return nil
  6010. }
  6011. }
  6012. file_datacenter_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  6013. switch v := v.(*GetAppInfoReq); i {
  6014. case 0:
  6015. return &v.state
  6016. case 1:
  6017. return &v.sizeCache
  6018. case 2:
  6019. return &v.unknownFields
  6020. default:
  6021. return nil
  6022. }
  6023. }
  6024. file_datacenter_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  6025. switch v := v.(*GetAppInfoResp); i {
  6026. case 0:
  6027. return &v.state
  6028. case 1:
  6029. return &v.sizeCache
  6030. case 2:
  6031. return &v.unknownFields
  6032. default:
  6033. return nil
  6034. }
  6035. }
  6036. file_datacenter_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  6037. switch v := v.(*CreateAppInfoReq); i {
  6038. case 0:
  6039. return &v.state
  6040. case 1:
  6041. return &v.sizeCache
  6042. case 2:
  6043. return &v.unknownFields
  6044. default:
  6045. return nil
  6046. }
  6047. }
  6048. file_datacenter_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  6049. switch v := v.(*CreateAppInfoResp); i {
  6050. case 0:
  6051. return &v.state
  6052. case 1:
  6053. return &v.sizeCache
  6054. case 2:
  6055. return &v.unknownFields
  6056. default:
  6057. return nil
  6058. }
  6059. }
  6060. file_datacenter_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  6061. switch v := v.(*RemoveAppInfoReq); i {
  6062. case 0:
  6063. return &v.state
  6064. case 1:
  6065. return &v.sizeCache
  6066. case 2:
  6067. return &v.unknownFields
  6068. default:
  6069. return nil
  6070. }
  6071. }
  6072. file_datacenter_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  6073. switch v := v.(*RemoveAppInfoResp); i {
  6074. case 0:
  6075. return &v.state
  6076. case 1:
  6077. return &v.sizeCache
  6078. case 2:
  6079. return &v.unknownFields
  6080. default:
  6081. return nil
  6082. }
  6083. }
  6084. file_datacenter_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  6085. switch v := v.(*DisableAppInfoReq); i {
  6086. case 0:
  6087. return &v.state
  6088. case 1:
  6089. return &v.sizeCache
  6090. case 2:
  6091. return &v.unknownFields
  6092. default:
  6093. return nil
  6094. }
  6095. }
  6096. file_datacenter_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  6097. switch v := v.(*DisableAppInfoResp); i {
  6098. case 0:
  6099. return &v.state
  6100. case 1:
  6101. return &v.sizeCache
  6102. case 2:
  6103. return &v.unknownFields
  6104. default:
  6105. return nil
  6106. }
  6107. }
  6108. file_datacenter_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  6109. switch v := v.(*EnableAppInfoReq); i {
  6110. case 0:
  6111. return &v.state
  6112. case 1:
  6113. return &v.sizeCache
  6114. case 2:
  6115. return &v.unknownFields
  6116. default:
  6117. return nil
  6118. }
  6119. }
  6120. file_datacenter_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  6121. switch v := v.(*EnableAppInfoResp); i {
  6122. case 0:
  6123. return &v.state
  6124. case 1:
  6125. return &v.sizeCache
  6126. case 2:
  6127. return &v.unknownFields
  6128. default:
  6129. return nil
  6130. }
  6131. }
  6132. file_datacenter_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  6133. switch v := v.(*ResetAppSecretReq); i {
  6134. case 0:
  6135. return &v.state
  6136. case 1:
  6137. return &v.sizeCache
  6138. case 2:
  6139. return &v.unknownFields
  6140. default:
  6141. return nil
  6142. }
  6143. }
  6144. file_datacenter_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  6145. switch v := v.(*ResetAppSecretResp); i {
  6146. case 0:
  6147. return &v.state
  6148. case 1:
  6149. return &v.sizeCache
  6150. case 2:
  6151. return &v.unknownFields
  6152. default:
  6153. return nil
  6154. }
  6155. }
  6156. file_datacenter_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  6157. switch v := v.(*ExpireAppSecretReq); i {
  6158. case 0:
  6159. return &v.state
  6160. case 1:
  6161. return &v.sizeCache
  6162. case 2:
  6163. return &v.unknownFields
  6164. default:
  6165. return nil
  6166. }
  6167. }
  6168. file_datacenter_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  6169. switch v := v.(*ExpireAppSecretResp); i {
  6170. case 0:
  6171. return &v.state
  6172. case 1:
  6173. return &v.sizeCache
  6174. case 2:
  6175. return &v.unknownFields
  6176. default:
  6177. return nil
  6178. }
  6179. }
  6180. file_datacenter_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  6181. switch v := v.(*ResetAppProjectReq); i {
  6182. case 0:
  6183. return &v.state
  6184. case 1:
  6185. return &v.sizeCache
  6186. case 2:
  6187. return &v.unknownFields
  6188. default:
  6189. return nil
  6190. }
  6191. }
  6192. file_datacenter_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  6193. switch v := v.(*ResetAppProjectResp); i {
  6194. case 0:
  6195. return &v.state
  6196. case 1:
  6197. return &v.sizeCache
  6198. case 2:
  6199. return &v.unknownFields
  6200. default:
  6201. return nil
  6202. }
  6203. }
  6204. file_datacenter_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  6205. switch v := v.(*FindDataDescribeReq); i {
  6206. case 0:
  6207. return &v.state
  6208. case 1:
  6209. return &v.sizeCache
  6210. case 2:
  6211. return &v.unknownFields
  6212. default:
  6213. return nil
  6214. }
  6215. }
  6216. file_datacenter_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  6217. switch v := v.(*FindDataDescribeResp); i {
  6218. case 0:
  6219. return &v.state
  6220. case 1:
  6221. return &v.sizeCache
  6222. case 2:
  6223. return &v.unknownFields
  6224. default:
  6225. return nil
  6226. }
  6227. }
  6228. file_datacenter_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  6229. switch v := v.(*FindDataCorrelationReq); i {
  6230. case 0:
  6231. return &v.state
  6232. case 1:
  6233. return &v.sizeCache
  6234. case 2:
  6235. return &v.unknownFields
  6236. default:
  6237. return nil
  6238. }
  6239. }
  6240. file_datacenter_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
  6241. switch v := v.(*FindDataMinAndMaxReq); i {
  6242. case 0:
  6243. return &v.state
  6244. case 1:
  6245. return &v.sizeCache
  6246. case 2:
  6247. return &v.unknownFields
  6248. default:
  6249. return nil
  6250. }
  6251. }
  6252. file_datacenter_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
  6253. switch v := v.(*FindDataMinAndMaxResp); i {
  6254. case 0:
  6255. return &v.state
  6256. case 1:
  6257. return &v.sizeCache
  6258. case 2:
  6259. return &v.unknownFields
  6260. default:
  6261. return nil
  6262. }
  6263. }
  6264. file_datacenter_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
  6265. switch v := v.(*FindDataCorrelationResp); i {
  6266. case 0:
  6267. return &v.state
  6268. case 1:
  6269. return &v.sizeCache
  6270. case 2:
  6271. return &v.unknownFields
  6272. default:
  6273. return nil
  6274. }
  6275. }
  6276. file_datacenter_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
  6277. switch v := v.(*HealthReq); i {
  6278. case 0:
  6279. return &v.state
  6280. case 1:
  6281. return &v.sizeCache
  6282. case 2:
  6283. return &v.unknownFields
  6284. default:
  6285. return nil
  6286. }
  6287. }
  6288. file_datacenter_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
  6289. switch v := v.(*HealthResp); i {
  6290. case 0:
  6291. return &v.state
  6292. case 1:
  6293. return &v.sizeCache
  6294. case 2:
  6295. return &v.unknownFields
  6296. default:
  6297. return nil
  6298. }
  6299. }
  6300. }
  6301. type x struct{}
  6302. out := protoimpl.TypeBuilder{
  6303. File: protoimpl.DescBuilder{
  6304. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  6305. RawDescriptor: file_datacenter_proto_rawDesc,
  6306. NumEnums: 0,
  6307. NumMessages: 66,
  6308. NumExtensions: 0,
  6309. NumServices: 1,
  6310. },
  6311. GoTypes: file_datacenter_proto_goTypes,
  6312. DependencyIndexes: file_datacenter_proto_depIdxs,
  6313. MessageInfos: file_datacenter_proto_msgTypes,
  6314. }.Build()
  6315. File_datacenter_proto = out.File
  6316. file_datacenter_proto_rawDesc = nil
  6317. file_datacenter_proto_goTypes = nil
  6318. file_datacenter_proto_depIdxs = nil
  6319. }