Message.cs 339 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300
  1. // <auto-generated>
  2. // Generated by the protocol buffer compiler. DO NOT EDIT!
  3. // source: Message.proto
  4. // </auto-generated>
  5. #pragma warning disable 1591, 0612, 3021, 8981
  6. #region Designer generated code
  7. using pb = global::Google.Protobuf;
  8. using pbc = global::Google.Protobuf.Collections;
  9. using pbr = global::Google.Protobuf.Reflection;
  10. using scg = global::System.Collections.Generic;
  11. namespace Com.Xzzs.Boiler.Proto {
  12. /// <summary>Holder for reflection information generated from Message.proto</summary>
  13. public static partial class MessageReflection {
  14. #region Descriptor
  15. /// <summary>File descriptor for Message.proto</summary>
  16. public static pbr::FileDescriptor Descriptor {
  17. get { return descriptor; }
  18. }
  19. private static pbr::FileDescriptor descriptor;
  20. static MessageReflection() {
  21. byte[] descriptorData = global::System.Convert.FromBase64String(
  22. string.Concat(
  23. "Cg1NZXNzYWdlLnByb3RvEhVjb20ueHp6cy5ib2lsZXIucHJvdG8ijwYKB01l",
  24. "c3NhZ2USPwoLbWVzc2FnZVR5cGUYASABKA4yKi5jb20ueHp6cy5ib2lsZXIu",
  25. "cHJvdG8uTWVzc2FnZS5NZXNzYWdlVHlwZRIrCgRkYXRhGAIgASgLMhsuY29t",
  26. "Lnh6enMuYm9pbGVyLnByb3RvLkRBVEFIABInCgJncxgDIAEoCzIZLmNvbS54",
  27. "enpzLmJvaWxlci5wcm90by5HU0gAEikKA2pqcRgEIAEoCzIaLmNvbS54enpz",
  28. "LmJvaWxlci5wcm90by5KSlFIABIrCgRzeGdnGAUgASgLMhsuY29tLnh6enMu",
  29. "Ym9pbGVyLnByb3RvLlNYR0dIABIpCgNncnEYBiABKAsyGi5jb20ueHp6cy5i",
  30. "b2lsZXIucHJvdG8uR1JRSAASKQoDY3lxGAcgASgLMhouY29tLnh6enMuYm9p",
  31. "bGVyLnByb3RvLkNZUUgAEicKAmZ5GAggASgLMhkuY29tLnh6enMuYm9pbGVy",
  32. "LnByb3RvLkZZSAASLwoGZ3J6cWp4GAkgASgLMh0uY29tLnh6enMuYm9pbGVy",
  33. "LnByb3RvLkdSWlFKWEgAEicKAnB5GAogASgLMhkuY29tLnh6enMuYm9pbGVy",
  34. "LnByb3RvLlBZSAASNQoJZXhjZXB0aW9uGAsgASgLMiAuY29tLnh6enMuYm9p",
  35. "bGVyLnByb3RvLkVYQ0VQVElPTkgAEi8KBnN0YXR1cxgMIAEoCzIdLmNvbS54",
  36. "enpzLmJvaWxlci5wcm90by5TVEFUVVNIABI3Cgpjb29yZGluYXRlGA0gASgL",
  37. "MiEuY29tLnh6enMuYm9pbGVyLnByb3RvLkNPT1JESU5BVEVIACKLAQoLTWVz",
  38. "c2FnZVR5cGUSCAoEREFUQRAAEgYKAkdTEAESBwoDSkpREAISCAoEU1hHRxAD",
  39. "EgcKA0dSURAEEgcKA0NZURAFEgYKAkZZEAYSCgoGR1JaUUpYEAcSBgoCUFkQ",
  40. "CBINCglFWENFUFRJT04QCRIKCgZTVEFUVVMQChIOCgpDSUlSRElOQVRFEAtC",
  41. "DQoLTWVzc2FnZUJvZHkiFAoEREFUQRIMCgRkYXRhGAEgASgJIpADCgJHUxIT",
  42. "CgtHU19wcmVzc3VyZRgBIAEoCRIWCg5HU190ZW1wZXJhdHVyZRgCIAEoCRIP",
  43. "CgdHU19mbG93GAMgASgJEhAKCEdTX3NjYWxlGAQgASgJEhUKDUdTX2F1dG9f",
  44. "c2NhbGUYBSABKAkSGAoQR1Nfc3RhbmRieV9wb3dlchgGIAEoCRIVCg1HU19w",
  45. "dW1wX3Bvd2VyGAcgASgJEhoKEkdTX3ByZXNzdXJlX3RhcmdldBgIIAEoCRIc",
  46. "ChRHU19hdXRvX3NjYWxlX3RhcmdldBgJIAEoCRIXCg9HU19zY2FsZV90YXJn",
  47. "ZXQYCiABKAkSHAoUR1NfcHJlc3N1cmVfZm9yZWNhc3QYCyABKAkSHwoXR1Nf",
  48. "dGVtcGVyYXR1cmVfZm9yZWNhc3QYDCABKAkSGAoQR1NfZmxvd19mb3JlY2Fz",
  49. "dBgNIAEoCRIeChZHU19wdW1wX3Bvd2VyX2ZvcmVjYXN0GA4gASgJEgwKBHRp",
  50. "bWUYDyABKAkSGAoQZXhjZXB0aW9uX3N0YXR1cxgQIAEoCSLvBQoDSkpREhoK",
  51. "EkpKUV9pbl90ZW1wZXJhdHVyZRgBIAEoCRIXCg9KSlFfaW5fcHJlc3N1cmUY",
  52. "AiABKAkSEwoLSkpRX2luX2Zsb3cYAyABKAkSHgoWSkpRX29uZWF2Z190ZW1w",
  53. "ZXJhdHVyZRgEIAEoCRIbChNKSlFfb25lYXZnX3ByZXNzdXJlGAUgASgJEhcK",
  54. "D0pKUV9vbmVhdmdfZmxvdxgGIAEoCRIeChZKSlFfdHdvYXZnX3RlbXBlcmF0",
  55. "dXJlGAcgASgJEhsKE0pKUV90d29hdmdfcHJlc3N1cmUYCCABKAkSFwoPSkpR",
  56. "X3R3b2F2Z19mbG93GAkgASgJEiAKGEpKUV90aHJlZWF2Z190ZW1wZXJhdHVy",
  57. "ZRgKIAEoCRIdChVKSlFfdGhyZWVhdmdfcHJlc3N1cmUYCyABKAkSGQoRSkpR",
  58. "X3RocmVlYXZnX2Zsb3cYDCABKAkSGwoTSkpRX291dF90ZW1wZXJhdHVyZRgN",
  59. "IAEoCRIYChBKSlFfb3V0X3ByZXNzdXJlGA4gASgJEhQKDEpKUV9vdXRfZmxv",
  60. "dxgPIAEoCRIeChZKSlFfaW5fZ2FzX3RlbXBlcmF0dXJlGBAgASgJEhsKE0pK",
  61. "UV9pbl9nYXNfcHJlc3N1cmUYESABKAkSFwoPSkpRX2luX2dhc19mbG93GBIg",
  62. "ASgJEh8KF0pKUV9vdXRfZ2FzX3RlbXBlcmF0dXJlGBMgASgJEhwKFEpKUV9v",
  63. "dXRfZ2FzX3ByZXNzdXJlGBQgASgJEhgKEEpKUV9vdXRfZ2FzX2Zsb3cYFSAB",
  64. "KAkSKAogSkpRX291dF9nYXNfdGVtcGVyYXR1cmVfZm9yZWNhc3QYFiABKAkS",
  65. "JQodSkpRX291dF9nYXNfcHJlc3N1cmVfZm9yZWNhc3QYFyABKAkSIQoZSkpR",
  66. "X291dF9nYXNfZmxvd19mb3JlY2FzdBgYIAEoCRIMCgR0aW1lGBkgASgJEhgK",
  67. "EGV4Y2VwdGlvbl9zdGF0dXMYGiABKAkiygQKBFNYR0cSHAoUU0dHX3dhdGVy",
  68. "dGVtcGVyYXR1cmUYASABKAkSHAoUU0dHX3N0ZWFtdGVtcGVyYXR1cmUYAiAB",
  69. "KAkSFAoMU0dHX3ByZXNzdXJlGAMgASgJEhYKDlNHR193YXRlcmxldmVsGAQg",
  70. "ASgJEh8KF2RlY2xpbmVfYXZnX3RlbXBlcmF0dXJlGAUgASgJEhwKFGRlY2xp",
  71. "bmVfYXZnX3ByZXNzdXJlGAYgASgJEhgKEGRlY2xpbmVfYXZnX2Zsb3cYByAB",
  72. "KAkSFwoPWEdHX3RlbXBlcmF0dXJlGAggASgJEhQKDFhHR19wcmVzc3VyZRgJ",
  73. "IAEoCRIaChJ1cF9hdmdfdGVtcGVyYXR1cmUYCiABKAkSFwoPdXBfYXZnX3By",
  74. "ZXNzdXJlGAsgASgJEhMKC3VwX2F2Z19mbG93GAwgASgJEh8KF2Z1cm5hY2Vf",
  75. "Z2FzX3RlbXBlcmF0dXJlGA0gASgJEhwKFGZ1cm5hY2VfZ2FzX3ByZXNzdXJl",
  76. "GA4gASgJEhgKEGZ1cm5hY2VfZ2FzX2Zsb3cYDyABKAkSJAocZnVybmFjZV9i",
  77. "YWNrd2FsbF90ZW1wZXJhdHVyZRgQIAEoCRIhChlmdXJuYWNlX2JhY2t3YWxs",
  78. "X3ByZXNzdXJlGBEgASgJEh0KFWZ1cm5hY2VfYmFja3dhbGxfZmxvdxgSIAEo",
  79. "CRIdChVzYWZldHl2YWx2ZV9vcGVyYXRpb24YEyABKAkSDAoEdGltZRgUIAEo",
  80. "CRIYChBleGNlcHRpb25fc3RhdHVzGBUgASgJIpYFCgNHUlESGgoSR1JRX2lu",
  81. "X3RlbXBlcmF0dXJlGAEgASgJEhcKD0dSUV9pbl9wcmVzc3VyZRgCIAEoCRIT",
  82. "CgtHUlFfaW5fZmxvdxgDIAEoCRIeChZHUlFfb25lYXZnX3RlbXBlcmF0dXJl",
  83. "GAQgASgJEhsKE0dSUV9vbmVhdmdfcHJlc3N1cmUYBSABKAkSFwoPR1JRX29u",
  84. "ZWF2Z19mbG93GAYgASgJEh4KFkdSUV90d29hdmdfdGVtcGVyYXR1cmUYByAB",
  85. "KAkSGwoTR1JRX3R3b2F2Z19wcmVzc3VyZRgIIAEoCRIXCg9HUlFfdHdvYXZn",
  86. "X2Zsb3cYCSABKAkSIAoYR1JRX3RocmVlYXZnX3RlbXBlcmF0dXJlGAogASgJ",
  87. "Eh0KFUdSUV90aHJlZWF2Z19wcmVzc3VyZRgLIAEoCRIZChFHUlFfdGhyZWVh",
  88. "dmdfZmxvdxgMIAEoCRIbChNHUlFfb3V0X3RlbXBlcmF0dXJlGA0gASgJEhgK",
  89. "EEdSUV9vdXRfcHJlc3N1cmUYDiABKAkSFAoMR1JRX291dF9mbG93GA8gASgJ",
  90. "Eh4KFkdSUV9pbl9nYXNfdGVtcGVyYXR1cmUYECABKAkSGwoTR1JRX2luX2dh",
  91. "c19wcmVzc3VyZRgRIAEoCRIXCg9HUlFfaW5fZ2FzX2Zsb3cYEiABKAkSKAog",
  92. "R1JRX291dF9nYXNfdGVtcGVyYXR1cmVfZm9yZWNhc3QYEyABKAkSJQodR1JR",
  93. "X291dF9nYXNfcHJlc3N1cmVfZm9yZWNhc3QYFCABKAkSIQoZR1JRX291dF9n",
  94. "YXNfZmxvd19mb3JlY2FzdBgVIAEoCRIMCgR0aW1lGBYgASgJEhgKEGV4Y2Vw",
  95. "dGlvbl9zdGF0dXMYFyABKAkiwwQKA0NZURIjChtDWVFfd2F0ZXJyZWZpbGxf",
  96. "dGVtcGVyYXR1cmUYASABKAkSIAoYQ1lRX3dhdGVycmVmaWxsX3ByZXNzdXJl",
  97. "GAIgASgJEhwKFENZUV93YXRlcnJlZmlsbF9mbG93GAMgASgJEhwKFENZUV9y",
  98. "ZWd1bGF0aW5nX3NjYWxlGAQgASgJEh0KFUNZUV90ZW1wZXJhdHVyZV9zY2Fs",
  99. "ZRgFIAEoCRIZChFDWVFfaGVhZF9wcmVzc3VyZRgGIAEoCRIcChRDWVFfaGVh",
  100. "ZF90ZW1wZXJhdHVyZRgHIAEoCRIeChZDWVFfd2F0ZXJ0YW5rX3ByZXNzdXJl",
  101. "GAggASgJEiEKGUNZUV93YXRlcnRhbmtfdGVtcGVyYXR1cmUYCSABKAkSIAoY",
  102. "Q1lRX3dhdGVydGFua193YXRlcmxldmVsGAogASgJEicKH0NZUV93YXRlcnRh",
  103. "bmtfcHJlc3N1cmVfZm9yZWNhc3QYCyABKAkSKgoiQ1lRX3dhdGVydGFua190",
  104. "ZW1wZXJhdHVyZV9mb3JlY2FzdBgMIAEoCRIpCiFDWVFfd2F0ZXJ0YW5rX3dh",
  105. "dGVybGV2ZWxfZm9yZWNhc3QYDSABKAkSGwoTbWludXNzY2FsZV9wcmVzc3Vy",
  106. "ZRgOIAEoCRIeChZtaW51c3NjYWxlX3RlbXBlcmF0dXJlGA8gASgJEhcKD21p",
  107. "bnVzc2NhbGVfZmxvdxgQIAEoCRIMCgR0aW1lGBEgASgJEhgKEGV4Y2VwdGlv",
  108. "bl9zdGF0dXMYEiABKAkijgMKAkZZEhUKDVJZX3B1bXBfcG93ZXIYASABKAkS",
  109. "FwoPb2lscmV0dXJuX3NjYWxlGAIgASgJEhkKEVJZX21haW5fb3BlcmF0aW9u",
  110. "GAMgASgJEhkKEVJZX3NpZGVfb3BlcmF0aW9uGAQgASgJEh4KFm9pbHJldHVy",
  111. "bl9zY2FsZV90YXJnZXQYBSABKAkSFgoOUllfdGVtcGVyYXR1cmUYBiABKAkS",
  112. "EwoLUllfcHJlc3N1cmUYByABKAkSGgoSUllfcHJlc3N1cmVfdGFyZ2V0GAgg",
  113. "ASgJEg8KB1JZX2Zsb3cYCSABKAkSFAoMR0ZfZnJlcXVlbmN5GAogASgJEhAK",
  114. "CEdGX3Bvd2VyGAsgASgJEhYKDkdGX3RlbXBlcmF0dXJlGAwgASgJEhMKC0dG",
  115. "X3ByZXNzdXJlGA0gASgJEhoKEkdGX3ByZXNzdXJlX3RhcmdldBgOIAEoCRIP",
  116. "CgdHRl9mbG93GA8gASgJEgwKBHRpbWUYECABKAkSGAoQZXhjZXB0aW9uX3N0",
  117. "YXR1cxgRIAEoCSKUAwoGR1JaUUpYEhoKEkdSWlFKWF90ZW1wZXJhdHVyZRgB",
  118. "IAEoCRIXCg9HUlpRSlhfcHJlc3N1cmUYAiABKAkSEwoLR1JaUUpYX2Zsb3cY",
  119. "AyABKAkSGQoRc3RlYW1lbmdpbmVfc2NhbGUYBCABKAkSGAoQc3RvcmVzdGVh",
  120. "bV9zY2FsZRgFIAEoCRIVCg1zaWRlb3V0X3NjYWxlGAYgASgJEhgKEHN0ZWFt",
  121. "ZW5naW5lX2Zsb3cYByABKAkSFwoPc3RvcmVzdGVhbV9mbG93GAggASgJEhQK",
  122. "DHNpZGVvdXRfZmxvdxgJIAEoCRIjChtHUlpRSlhfdGVtcGVyYXR1cmVfZm9y",
  123. "ZWNhc3QYCiABKAkSIAoYR1JaUUpYX3ByZXNzdXJlX2ZvcmVjYXN0GAsgASgJ",
  124. "Eh4KFkdSWlFKWF9wcmVzc3VyZV90YXJnZXQYDCABKAkSHAoUR1JaUUpYX2Zs",
  125. "b3dfZm9yZWNhc3QYDSABKAkSDAoEdGltZRgOIAEoCRIYChBleGNlcHRpb25f",
  126. "c3RhdHVzGA8gASgJIrEBCgJQWRIWCg5QWV9pbl9wcmVzc3VyZRgBIAEoCRIZ",
  127. "ChFQWV9pbl90ZW1wZXJhdHVyZRgCIAEoCRISCgpQWV9pbl9mbG93GAMgASgJ",
  128. "EhMKC1BZX3ByZXNzdXJlGAQgASgJEhYKDlBZX3RlbXBlcmF0dXJlGAUgASgJ",
  129. "Eg8KB1BZX2Zsb3cYBiABKAkSDAoEdGltZRgHIAEoCRIYChBleGNlcHRpb25f",
  130. "c3RhdHVzGAggASgJIp8BCglFWENFUFRJT04SFgoOZXhjZXB0aW9uX3R5cGUY",
  131. "ASABKAkSGAoQZXhjZXB0aW9uX2RlZ3JlZRgCIAEoCRIaChJleGNlcHRpb25f",
  132. "cG9zaXRpb24YAyABKAkSGQoRZXhjZXB0aW9uX21lc3NhZ2UYBCABKAkSGwoT",
  133. "ZXhjZXB0aW9uX2lzY29uZHVjdBgFIAEoCRIMCgR0aW1lGAYgASgJIjkKBlNU",
  134. "QVRVUxIYChBjb25kaXRpb25fc3RhdHVzGAEgASgJEhUKDWhlYWx0aF9zdGF0",
  135. "dXMYAiABKAkikgIKCkNPT1JESU5BVEUSHwoXY29uZGl0aW9uX29uZV9kb3du",
  136. "bGltaXQYASABKAkSHQoVY29uZGl0aW9uX29uZV91cGxpbWl0GAIgASgJEh8K",
  137. "F2NvbmRpdGlvbl90d29fZG93bmxpbWl0GAMgASgJEh0KFWNvbmRpdGlvbl90",
  138. "d29fdXBsaW1pdBgEIAEoCRIhChljb25kaXRpb25fdGhyZWVfZG93bmxpbWl0",
  139. "GAUgASgJEh8KF2NvbmRpdGlvbl90aHJlZV91cGxpbWl0GAYgASgJEiAKGGNv",
  140. "bmRpdGlvbl9mb3VyX2Rvd25saW1pdBgHIAEoCRIeChZjb25kaXRpb25fZm91",
  141. "cl91cGxpbWl0GAggASgJQiEKFWNvbS54enpzLmJvaWxlci5wcm90b0IITWVz",
  142. "c2FnZXNiBnByb3RvMw=="));
  143. descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
  144. new pbr::FileDescriptor[] { },
  145. new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
  146. new pbr::GeneratedClrTypeInfo(typeof(global::Com.Xzzs.Boiler.Proto.Message), global::Com.Xzzs.Boiler.Proto.Message.Parser, new[]{ "MessageType", "Data", "Gs", "Jjq", "Sxgg", "Grq", "Cyq", "Fy", "Grzqjx", "Py", "Exception", "Status", "Coordinate" }, new[]{ "MessageBody" }, new[]{ typeof(global::Com.Xzzs.Boiler.Proto.Message.Types.MessageType) }, null, null),
  147. new pbr::GeneratedClrTypeInfo(typeof(global::Com.Xzzs.Boiler.Proto.DATA), global::Com.Xzzs.Boiler.Proto.DATA.Parser, new[]{ "Data" }, null, null, null, null),
  148. new pbr::GeneratedClrTypeInfo(typeof(global::Com.Xzzs.Boiler.Proto.GS), global::Com.Xzzs.Boiler.Proto.GS.Parser, new[]{ "GSPressure", "GSTemperature", "GSFlow", "GSScale", "GSAutoScale", "GSStandbyPower", "GSPumpPower", "GSPressureTarget", "GSAutoScaleTarget", "GSScaleTarget", "GSPressureForecast", "GSTemperatureForecast", "GSFlowForecast", "GSPumpPowerForecast", "Time", "ExceptionStatus" }, null, null, null, null),
  149. new pbr::GeneratedClrTypeInfo(typeof(global::Com.Xzzs.Boiler.Proto.JJQ), global::Com.Xzzs.Boiler.Proto.JJQ.Parser, new[]{ "JJQInTemperature", "JJQInPressure", "JJQInFlow", "JJQOneavgTemperature", "JJQOneavgPressure", "JJQOneavgFlow", "JJQTwoavgTemperature", "JJQTwoavgPressure", "JJQTwoavgFlow", "JJQThreeavgTemperature", "JJQThreeavgPressure", "JJQThreeavgFlow", "JJQOutTemperature", "JJQOutPressure", "JJQOutFlow", "JJQInGasTemperature", "JJQInGasPressure", "JJQInGasFlow", "JJQOutGasTemperature", "JJQOutGasPressure", "JJQOutGasFlow", "JJQOutGasTemperatureForecast", "JJQOutGasPressureForecast", "JJQOutGasFlowForecast", "Time", "ExceptionStatus" }, null, null, null, null),
  150. new pbr::GeneratedClrTypeInfo(typeof(global::Com.Xzzs.Boiler.Proto.SXGG), global::Com.Xzzs.Boiler.Proto.SXGG.Parser, new[]{ "SGGWatertemperature", "SGGSteamtemperature", "SGGPressure", "SGGWaterlevel", "DeclineAvgTemperature", "DeclineAvgPressure", "DeclineAvgFlow", "XGGTemperature", "XGGPressure", "UpAvgTemperature", "UpAvgPressure", "UpAvgFlow", "FurnaceGasTemperature", "FurnaceGasPressure", "FurnaceGasFlow", "FurnaceBackwallTemperature", "FurnaceBackwallPressure", "FurnaceBackwallFlow", "SafetyvalveOperation", "Time", "ExceptionStatus" }, null, null, null, null),
  151. new pbr::GeneratedClrTypeInfo(typeof(global::Com.Xzzs.Boiler.Proto.GRQ), global::Com.Xzzs.Boiler.Proto.GRQ.Parser, new[]{ "GRQInTemperature", "GRQInPressure", "GRQInFlow", "GRQOneavgTemperature", "GRQOneavgPressure", "GRQOneavgFlow", "GRQTwoavgTemperature", "GRQTwoavgPressure", "GRQTwoavgFlow", "GRQThreeavgTemperature", "GRQThreeavgPressure", "GRQThreeavgFlow", "GRQOutTemperature", "GRQOutPressure", "GRQOutFlow", "GRQInGasTemperature", "GRQInGasPressure", "GRQInGasFlow", "GRQOutGasTemperatureForecast", "GRQOutGasPressureForecast", "GRQOutGasFlowForecast", "Time", "ExceptionStatus" }, null, null, null, null),
  152. new pbr::GeneratedClrTypeInfo(typeof(global::Com.Xzzs.Boiler.Proto.CYQ), global::Com.Xzzs.Boiler.Proto.CYQ.Parser, new[]{ "CYQWaterrefillTemperature", "CYQWaterrefillPressure", "CYQWaterrefillFlow", "CYQRegulatingScale", "CYQTemperatureScale", "CYQHeadPressure", "CYQHeadTemperature", "CYQWatertankPressure", "CYQWatertankTemperature", "CYQWatertankWaterlevel", "CYQWatertankPressureForecast", "CYQWatertankTemperatureForecast", "CYQWatertankWaterlevelForecast", "MinusscalePressure", "MinusscaleTemperature", "MinusscaleFlow", "Time", "ExceptionStatus" }, null, null, null, null),
  153. new pbr::GeneratedClrTypeInfo(typeof(global::Com.Xzzs.Boiler.Proto.FY), global::Com.Xzzs.Boiler.Proto.FY.Parser, new[]{ "RYPumpPower", "OilreturnScale", "RYMainOperation", "RYSideOperation", "OilreturnScaleTarget", "RYTemperature", "RYPressure", "RYPressureTarget", "RYFlow", "GFFrequency", "GFPower", "GFTemperature", "GFPressure", "GFPressureTarget", "GFFlow", "Time", "ExceptionStatus" }, null, null, null, null),
  154. new pbr::GeneratedClrTypeInfo(typeof(global::Com.Xzzs.Boiler.Proto.GRZQJX), global::Com.Xzzs.Boiler.Proto.GRZQJX.Parser, new[]{ "GRZQJXTemperature", "GRZQJXPressure", "GRZQJXFlow", "SteamengineScale", "StoresteamScale", "SideoutScale", "SteamengineFlow", "StoresteamFlow", "SideoutFlow", "GRZQJXTemperatureForecast", "GRZQJXPressureForecast", "GRZQJXPressureTarget", "GRZQJXFlowForecast", "Time", "ExceptionStatus" }, null, null, null, null),
  155. new pbr::GeneratedClrTypeInfo(typeof(global::Com.Xzzs.Boiler.Proto.PY), global::Com.Xzzs.Boiler.Proto.PY.Parser, new[]{ "PYInPressure", "PYInTemperature", "PYInFlow", "PYPressure", "PYTemperature", "PYFlow", "Time", "ExceptionStatus" }, null, null, null, null),
  156. new pbr::GeneratedClrTypeInfo(typeof(global::Com.Xzzs.Boiler.Proto.EXCEPTION), global::Com.Xzzs.Boiler.Proto.EXCEPTION.Parser, new[]{ "ExceptionType", "ExceptionDegree", "ExceptionPosition", "ExceptionMessage", "ExceptionIsconduct", "Time" }, null, null, null, null),
  157. new pbr::GeneratedClrTypeInfo(typeof(global::Com.Xzzs.Boiler.Proto.STATUS), global::Com.Xzzs.Boiler.Proto.STATUS.Parser, new[]{ "ConditionStatus", "HealthStatus" }, null, null, null, null),
  158. new pbr::GeneratedClrTypeInfo(typeof(global::Com.Xzzs.Boiler.Proto.COORDINATE), global::Com.Xzzs.Boiler.Proto.COORDINATE.Parser, new[]{ "ConditionOneDownlimit", "ConditionOneUplimit", "ConditionTwoDownlimit", "ConditionTwoUplimit", "ConditionThreeDownlimit", "ConditionThreeUplimit", "ConditionFourDownlimit", "ConditionFourUplimit" }, null, null, null, null)
  159. }));
  160. }
  161. #endregion
  162. }
  163. #region Messages
  164. /// <summary>
  165. ///新增目标均为压力目标,后续会有异常分数,
  166. /// </summary>
  167. public sealed partial class Message : pb::IMessage<Message>
  168. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  169. , pb::IBufferMessage
  170. #endif
  171. {
  172. private static readonly pb::MessageParser<Message> _parser = new pb::MessageParser<Message>(() => new Message());
  173. private pb::UnknownFieldSet _unknownFields;
  174. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  175. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  176. public static pb::MessageParser<Message> Parser { get { return _parser; } }
  177. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  178. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  179. public static pbr::MessageDescriptor Descriptor {
  180. get { return global::Com.Xzzs.Boiler.Proto.MessageReflection.Descriptor.MessageTypes[0]; }
  181. }
  182. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  183. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  184. pbr::MessageDescriptor pb::IMessage.Descriptor {
  185. get { return Descriptor; }
  186. }
  187. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  188. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  189. public Message() {
  190. OnConstruction();
  191. }
  192. partial void OnConstruction();
  193. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  194. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  195. public Message(Message other) : this() {
  196. messageType_ = other.messageType_;
  197. switch (other.MessageBodyCase) {
  198. case MessageBodyOneofCase.Data:
  199. Data = other.Data.Clone();
  200. break;
  201. case MessageBodyOneofCase.Gs:
  202. Gs = other.Gs.Clone();
  203. break;
  204. case MessageBodyOneofCase.Jjq:
  205. Jjq = other.Jjq.Clone();
  206. break;
  207. case MessageBodyOneofCase.Sxgg:
  208. Sxgg = other.Sxgg.Clone();
  209. break;
  210. case MessageBodyOneofCase.Grq:
  211. Grq = other.Grq.Clone();
  212. break;
  213. case MessageBodyOneofCase.Cyq:
  214. Cyq = other.Cyq.Clone();
  215. break;
  216. case MessageBodyOneofCase.Fy:
  217. Fy = other.Fy.Clone();
  218. break;
  219. case MessageBodyOneofCase.Grzqjx:
  220. Grzqjx = other.Grzqjx.Clone();
  221. break;
  222. case MessageBodyOneofCase.Py:
  223. Py = other.Py.Clone();
  224. break;
  225. case MessageBodyOneofCase.Exception:
  226. Exception = other.Exception.Clone();
  227. break;
  228. case MessageBodyOneofCase.Status:
  229. Status = other.Status.Clone();
  230. break;
  231. case MessageBodyOneofCase.Coordinate:
  232. Coordinate = other.Coordinate.Clone();
  233. break;
  234. }
  235. _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
  236. }
  237. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  238. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  239. public Message Clone() {
  240. return new Message(this);
  241. }
  242. /// <summary>Field number for the "messageType" field.</summary>
  243. public const int MessageTypeFieldNumber = 1;
  244. private global::Com.Xzzs.Boiler.Proto.Message.Types.MessageType messageType_ = global::Com.Xzzs.Boiler.Proto.Message.Types.MessageType.Data;
  245. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  246. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  247. public global::Com.Xzzs.Boiler.Proto.Message.Types.MessageType MessageType {
  248. get { return messageType_; }
  249. set {
  250. messageType_ = value;
  251. }
  252. }
  253. /// <summary>Field number for the "data" field.</summary>
  254. public const int DataFieldNumber = 2;
  255. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  256. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  257. public global::Com.Xzzs.Boiler.Proto.DATA Data {
  258. get { return messageBodyCase_ == MessageBodyOneofCase.Data ? (global::Com.Xzzs.Boiler.Proto.DATA) messageBody_ : null; }
  259. set {
  260. messageBody_ = value;
  261. messageBodyCase_ = value == null ? MessageBodyOneofCase.None : MessageBodyOneofCase.Data;
  262. }
  263. }
  264. /// <summary>Field number for the "gs" field.</summary>
  265. public const int GsFieldNumber = 3;
  266. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  267. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  268. public global::Com.Xzzs.Boiler.Proto.GS Gs {
  269. get { return messageBodyCase_ == MessageBodyOneofCase.Gs ? (global::Com.Xzzs.Boiler.Proto.GS) messageBody_ : null; }
  270. set {
  271. messageBody_ = value;
  272. messageBodyCase_ = value == null ? MessageBodyOneofCase.None : MessageBodyOneofCase.Gs;
  273. }
  274. }
  275. /// <summary>Field number for the "jjq" field.</summary>
  276. public const int JjqFieldNumber = 4;
  277. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  278. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  279. public global::Com.Xzzs.Boiler.Proto.JJQ Jjq {
  280. get { return messageBodyCase_ == MessageBodyOneofCase.Jjq ? (global::Com.Xzzs.Boiler.Proto.JJQ) messageBody_ : null; }
  281. set {
  282. messageBody_ = value;
  283. messageBodyCase_ = value == null ? MessageBodyOneofCase.None : MessageBodyOneofCase.Jjq;
  284. }
  285. }
  286. /// <summary>Field number for the "sxgg" field.</summary>
  287. public const int SxggFieldNumber = 5;
  288. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  289. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  290. public global::Com.Xzzs.Boiler.Proto.SXGG Sxgg {
  291. get { return messageBodyCase_ == MessageBodyOneofCase.Sxgg ? (global::Com.Xzzs.Boiler.Proto.SXGG) messageBody_ : null; }
  292. set {
  293. messageBody_ = value;
  294. messageBodyCase_ = value == null ? MessageBodyOneofCase.None : MessageBodyOneofCase.Sxgg;
  295. }
  296. }
  297. /// <summary>Field number for the "grq" field.</summary>
  298. public const int GrqFieldNumber = 6;
  299. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  300. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  301. public global::Com.Xzzs.Boiler.Proto.GRQ Grq {
  302. get { return messageBodyCase_ == MessageBodyOneofCase.Grq ? (global::Com.Xzzs.Boiler.Proto.GRQ) messageBody_ : null; }
  303. set {
  304. messageBody_ = value;
  305. messageBodyCase_ = value == null ? MessageBodyOneofCase.None : MessageBodyOneofCase.Grq;
  306. }
  307. }
  308. /// <summary>Field number for the "cyq" field.</summary>
  309. public const int CyqFieldNumber = 7;
  310. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  311. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  312. public global::Com.Xzzs.Boiler.Proto.CYQ Cyq {
  313. get { return messageBodyCase_ == MessageBodyOneofCase.Cyq ? (global::Com.Xzzs.Boiler.Proto.CYQ) messageBody_ : null; }
  314. set {
  315. messageBody_ = value;
  316. messageBodyCase_ = value == null ? MessageBodyOneofCase.None : MessageBodyOneofCase.Cyq;
  317. }
  318. }
  319. /// <summary>Field number for the "fy" field.</summary>
  320. public const int FyFieldNumber = 8;
  321. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  322. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  323. public global::Com.Xzzs.Boiler.Proto.FY Fy {
  324. get { return messageBodyCase_ == MessageBodyOneofCase.Fy ? (global::Com.Xzzs.Boiler.Proto.FY) messageBody_ : null; }
  325. set {
  326. messageBody_ = value;
  327. messageBodyCase_ = value == null ? MessageBodyOneofCase.None : MessageBodyOneofCase.Fy;
  328. }
  329. }
  330. /// <summary>Field number for the "grzqjx" field.</summary>
  331. public const int GrzqjxFieldNumber = 9;
  332. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  333. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  334. public global::Com.Xzzs.Boiler.Proto.GRZQJX Grzqjx {
  335. get { return messageBodyCase_ == MessageBodyOneofCase.Grzqjx ? (global::Com.Xzzs.Boiler.Proto.GRZQJX) messageBody_ : null; }
  336. set {
  337. messageBody_ = value;
  338. messageBodyCase_ = value == null ? MessageBodyOneofCase.None : MessageBodyOneofCase.Grzqjx;
  339. }
  340. }
  341. /// <summary>Field number for the "py" field.</summary>
  342. public const int PyFieldNumber = 10;
  343. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  344. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  345. public global::Com.Xzzs.Boiler.Proto.PY Py {
  346. get { return messageBodyCase_ == MessageBodyOneofCase.Py ? (global::Com.Xzzs.Boiler.Proto.PY) messageBody_ : null; }
  347. set {
  348. messageBody_ = value;
  349. messageBodyCase_ = value == null ? MessageBodyOneofCase.None : MessageBodyOneofCase.Py;
  350. }
  351. }
  352. /// <summary>Field number for the "exception" field.</summary>
  353. public const int ExceptionFieldNumber = 11;
  354. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  355. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  356. public global::Com.Xzzs.Boiler.Proto.EXCEPTION Exception {
  357. get { return messageBodyCase_ == MessageBodyOneofCase.Exception ? (global::Com.Xzzs.Boiler.Proto.EXCEPTION) messageBody_ : null; }
  358. set {
  359. messageBody_ = value;
  360. messageBodyCase_ = value == null ? MessageBodyOneofCase.None : MessageBodyOneofCase.Exception;
  361. }
  362. }
  363. /// <summary>Field number for the "status" field.</summary>
  364. public const int StatusFieldNumber = 12;
  365. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  366. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  367. public global::Com.Xzzs.Boiler.Proto.STATUS Status {
  368. get { return messageBodyCase_ == MessageBodyOneofCase.Status ? (global::Com.Xzzs.Boiler.Proto.STATUS) messageBody_ : null; }
  369. set {
  370. messageBody_ = value;
  371. messageBodyCase_ = value == null ? MessageBodyOneofCase.None : MessageBodyOneofCase.Status;
  372. }
  373. }
  374. /// <summary>Field number for the "coordinate" field.</summary>
  375. public const int CoordinateFieldNumber = 13;
  376. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  377. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  378. public global::Com.Xzzs.Boiler.Proto.COORDINATE Coordinate {
  379. get { return messageBodyCase_ == MessageBodyOneofCase.Coordinate ? (global::Com.Xzzs.Boiler.Proto.COORDINATE) messageBody_ : null; }
  380. set {
  381. messageBody_ = value;
  382. messageBodyCase_ = value == null ? MessageBodyOneofCase.None : MessageBodyOneofCase.Coordinate;
  383. }
  384. }
  385. private object messageBody_;
  386. /// <summary>Enum of possible cases for the "MessageBody" oneof.</summary>
  387. public enum MessageBodyOneofCase {
  388. None = 0,
  389. Data = 2,
  390. Gs = 3,
  391. Jjq = 4,
  392. Sxgg = 5,
  393. Grq = 6,
  394. Cyq = 7,
  395. Fy = 8,
  396. Grzqjx = 9,
  397. Py = 10,
  398. Exception = 11,
  399. Status = 12,
  400. Coordinate = 13,
  401. }
  402. private MessageBodyOneofCase messageBodyCase_ = MessageBodyOneofCase.None;
  403. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  404. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  405. public MessageBodyOneofCase MessageBodyCase {
  406. get { return messageBodyCase_; }
  407. }
  408. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  409. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  410. public void ClearMessageBody() {
  411. messageBodyCase_ = MessageBodyOneofCase.None;
  412. messageBody_ = null;
  413. }
  414. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  415. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  416. public override bool Equals(object other) {
  417. return Equals(other as Message);
  418. }
  419. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  420. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  421. public bool Equals(Message other) {
  422. if (ReferenceEquals(other, null)) {
  423. return false;
  424. }
  425. if (ReferenceEquals(other, this)) {
  426. return true;
  427. }
  428. if (MessageType != other.MessageType) return false;
  429. if (!object.Equals(Data, other.Data)) return false;
  430. if (!object.Equals(Gs, other.Gs)) return false;
  431. if (!object.Equals(Jjq, other.Jjq)) return false;
  432. if (!object.Equals(Sxgg, other.Sxgg)) return false;
  433. if (!object.Equals(Grq, other.Grq)) return false;
  434. if (!object.Equals(Cyq, other.Cyq)) return false;
  435. if (!object.Equals(Fy, other.Fy)) return false;
  436. if (!object.Equals(Grzqjx, other.Grzqjx)) return false;
  437. if (!object.Equals(Py, other.Py)) return false;
  438. if (!object.Equals(Exception, other.Exception)) return false;
  439. if (!object.Equals(Status, other.Status)) return false;
  440. if (!object.Equals(Coordinate, other.Coordinate)) return false;
  441. if (MessageBodyCase != other.MessageBodyCase) return false;
  442. return Equals(_unknownFields, other._unknownFields);
  443. }
  444. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  445. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  446. public override int GetHashCode() {
  447. int hash = 1;
  448. if (MessageType != global::Com.Xzzs.Boiler.Proto.Message.Types.MessageType.Data) hash ^= MessageType.GetHashCode();
  449. if (messageBodyCase_ == MessageBodyOneofCase.Data) hash ^= Data.GetHashCode();
  450. if (messageBodyCase_ == MessageBodyOneofCase.Gs) hash ^= Gs.GetHashCode();
  451. if (messageBodyCase_ == MessageBodyOneofCase.Jjq) hash ^= Jjq.GetHashCode();
  452. if (messageBodyCase_ == MessageBodyOneofCase.Sxgg) hash ^= Sxgg.GetHashCode();
  453. if (messageBodyCase_ == MessageBodyOneofCase.Grq) hash ^= Grq.GetHashCode();
  454. if (messageBodyCase_ == MessageBodyOneofCase.Cyq) hash ^= Cyq.GetHashCode();
  455. if (messageBodyCase_ == MessageBodyOneofCase.Fy) hash ^= Fy.GetHashCode();
  456. if (messageBodyCase_ == MessageBodyOneofCase.Grzqjx) hash ^= Grzqjx.GetHashCode();
  457. if (messageBodyCase_ == MessageBodyOneofCase.Py) hash ^= Py.GetHashCode();
  458. if (messageBodyCase_ == MessageBodyOneofCase.Exception) hash ^= Exception.GetHashCode();
  459. if (messageBodyCase_ == MessageBodyOneofCase.Status) hash ^= Status.GetHashCode();
  460. if (messageBodyCase_ == MessageBodyOneofCase.Coordinate) hash ^= Coordinate.GetHashCode();
  461. hash ^= (int) messageBodyCase_;
  462. if (_unknownFields != null) {
  463. hash ^= _unknownFields.GetHashCode();
  464. }
  465. return hash;
  466. }
  467. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  468. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  469. public override string ToString() {
  470. return pb::JsonFormatter.ToDiagnosticString(this);
  471. }
  472. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  473. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  474. public void WriteTo(pb::CodedOutputStream output) {
  475. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  476. output.WriteRawMessage(this);
  477. #else
  478. if (MessageType != global::Com.Xzzs.Boiler.Proto.Message.Types.MessageType.Data) {
  479. output.WriteRawTag(8);
  480. output.WriteEnum((int) MessageType);
  481. }
  482. if (messageBodyCase_ == MessageBodyOneofCase.Data) {
  483. output.WriteRawTag(18);
  484. output.WriteMessage(Data);
  485. }
  486. if (messageBodyCase_ == MessageBodyOneofCase.Gs) {
  487. output.WriteRawTag(26);
  488. output.WriteMessage(Gs);
  489. }
  490. if (messageBodyCase_ == MessageBodyOneofCase.Jjq) {
  491. output.WriteRawTag(34);
  492. output.WriteMessage(Jjq);
  493. }
  494. if (messageBodyCase_ == MessageBodyOneofCase.Sxgg) {
  495. output.WriteRawTag(42);
  496. output.WriteMessage(Sxgg);
  497. }
  498. if (messageBodyCase_ == MessageBodyOneofCase.Grq) {
  499. output.WriteRawTag(50);
  500. output.WriteMessage(Grq);
  501. }
  502. if (messageBodyCase_ == MessageBodyOneofCase.Cyq) {
  503. output.WriteRawTag(58);
  504. output.WriteMessage(Cyq);
  505. }
  506. if (messageBodyCase_ == MessageBodyOneofCase.Fy) {
  507. output.WriteRawTag(66);
  508. output.WriteMessage(Fy);
  509. }
  510. if (messageBodyCase_ == MessageBodyOneofCase.Grzqjx) {
  511. output.WriteRawTag(74);
  512. output.WriteMessage(Grzqjx);
  513. }
  514. if (messageBodyCase_ == MessageBodyOneofCase.Py) {
  515. output.WriteRawTag(82);
  516. output.WriteMessage(Py);
  517. }
  518. if (messageBodyCase_ == MessageBodyOneofCase.Exception) {
  519. output.WriteRawTag(90);
  520. output.WriteMessage(Exception);
  521. }
  522. if (messageBodyCase_ == MessageBodyOneofCase.Status) {
  523. output.WriteRawTag(98);
  524. output.WriteMessage(Status);
  525. }
  526. if (messageBodyCase_ == MessageBodyOneofCase.Coordinate) {
  527. output.WriteRawTag(106);
  528. output.WriteMessage(Coordinate);
  529. }
  530. if (_unknownFields != null) {
  531. _unknownFields.WriteTo(output);
  532. }
  533. #endif
  534. }
  535. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  536. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  537. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  538. void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
  539. if (MessageType != global::Com.Xzzs.Boiler.Proto.Message.Types.MessageType.Data) {
  540. output.WriteRawTag(8);
  541. output.WriteEnum((int) MessageType);
  542. }
  543. if (messageBodyCase_ == MessageBodyOneofCase.Data) {
  544. output.WriteRawTag(18);
  545. output.WriteMessage(Data);
  546. }
  547. if (messageBodyCase_ == MessageBodyOneofCase.Gs) {
  548. output.WriteRawTag(26);
  549. output.WriteMessage(Gs);
  550. }
  551. if (messageBodyCase_ == MessageBodyOneofCase.Jjq) {
  552. output.WriteRawTag(34);
  553. output.WriteMessage(Jjq);
  554. }
  555. if (messageBodyCase_ == MessageBodyOneofCase.Sxgg) {
  556. output.WriteRawTag(42);
  557. output.WriteMessage(Sxgg);
  558. }
  559. if (messageBodyCase_ == MessageBodyOneofCase.Grq) {
  560. output.WriteRawTag(50);
  561. output.WriteMessage(Grq);
  562. }
  563. if (messageBodyCase_ == MessageBodyOneofCase.Cyq) {
  564. output.WriteRawTag(58);
  565. output.WriteMessage(Cyq);
  566. }
  567. if (messageBodyCase_ == MessageBodyOneofCase.Fy) {
  568. output.WriteRawTag(66);
  569. output.WriteMessage(Fy);
  570. }
  571. if (messageBodyCase_ == MessageBodyOneofCase.Grzqjx) {
  572. output.WriteRawTag(74);
  573. output.WriteMessage(Grzqjx);
  574. }
  575. if (messageBodyCase_ == MessageBodyOneofCase.Py) {
  576. output.WriteRawTag(82);
  577. output.WriteMessage(Py);
  578. }
  579. if (messageBodyCase_ == MessageBodyOneofCase.Exception) {
  580. output.WriteRawTag(90);
  581. output.WriteMessage(Exception);
  582. }
  583. if (messageBodyCase_ == MessageBodyOneofCase.Status) {
  584. output.WriteRawTag(98);
  585. output.WriteMessage(Status);
  586. }
  587. if (messageBodyCase_ == MessageBodyOneofCase.Coordinate) {
  588. output.WriteRawTag(106);
  589. output.WriteMessage(Coordinate);
  590. }
  591. if (_unknownFields != null) {
  592. _unknownFields.WriteTo(ref output);
  593. }
  594. }
  595. #endif
  596. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  597. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  598. public int CalculateSize() {
  599. int size = 0;
  600. if (MessageType != global::Com.Xzzs.Boiler.Proto.Message.Types.MessageType.Data) {
  601. size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) MessageType);
  602. }
  603. if (messageBodyCase_ == MessageBodyOneofCase.Data) {
  604. size += 1 + pb::CodedOutputStream.ComputeMessageSize(Data);
  605. }
  606. if (messageBodyCase_ == MessageBodyOneofCase.Gs) {
  607. size += 1 + pb::CodedOutputStream.ComputeMessageSize(Gs);
  608. }
  609. if (messageBodyCase_ == MessageBodyOneofCase.Jjq) {
  610. size += 1 + pb::CodedOutputStream.ComputeMessageSize(Jjq);
  611. }
  612. if (messageBodyCase_ == MessageBodyOneofCase.Sxgg) {
  613. size += 1 + pb::CodedOutputStream.ComputeMessageSize(Sxgg);
  614. }
  615. if (messageBodyCase_ == MessageBodyOneofCase.Grq) {
  616. size += 1 + pb::CodedOutputStream.ComputeMessageSize(Grq);
  617. }
  618. if (messageBodyCase_ == MessageBodyOneofCase.Cyq) {
  619. size += 1 + pb::CodedOutputStream.ComputeMessageSize(Cyq);
  620. }
  621. if (messageBodyCase_ == MessageBodyOneofCase.Fy) {
  622. size += 1 + pb::CodedOutputStream.ComputeMessageSize(Fy);
  623. }
  624. if (messageBodyCase_ == MessageBodyOneofCase.Grzqjx) {
  625. size += 1 + pb::CodedOutputStream.ComputeMessageSize(Grzqjx);
  626. }
  627. if (messageBodyCase_ == MessageBodyOneofCase.Py) {
  628. size += 1 + pb::CodedOutputStream.ComputeMessageSize(Py);
  629. }
  630. if (messageBodyCase_ == MessageBodyOneofCase.Exception) {
  631. size += 1 + pb::CodedOutputStream.ComputeMessageSize(Exception);
  632. }
  633. if (messageBodyCase_ == MessageBodyOneofCase.Status) {
  634. size += 1 + pb::CodedOutputStream.ComputeMessageSize(Status);
  635. }
  636. if (messageBodyCase_ == MessageBodyOneofCase.Coordinate) {
  637. size += 1 + pb::CodedOutputStream.ComputeMessageSize(Coordinate);
  638. }
  639. if (_unknownFields != null) {
  640. size += _unknownFields.CalculateSize();
  641. }
  642. return size;
  643. }
  644. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  645. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  646. public void MergeFrom(Message other) {
  647. if (other == null) {
  648. return;
  649. }
  650. if (other.MessageType != global::Com.Xzzs.Boiler.Proto.Message.Types.MessageType.Data) {
  651. MessageType = other.MessageType;
  652. }
  653. switch (other.MessageBodyCase) {
  654. case MessageBodyOneofCase.Data:
  655. if (Data == null) {
  656. Data = new global::Com.Xzzs.Boiler.Proto.DATA();
  657. }
  658. Data.MergeFrom(other.Data);
  659. break;
  660. case MessageBodyOneofCase.Gs:
  661. if (Gs == null) {
  662. Gs = new global::Com.Xzzs.Boiler.Proto.GS();
  663. }
  664. Gs.MergeFrom(other.Gs);
  665. break;
  666. case MessageBodyOneofCase.Jjq:
  667. if (Jjq == null) {
  668. Jjq = new global::Com.Xzzs.Boiler.Proto.JJQ();
  669. }
  670. Jjq.MergeFrom(other.Jjq);
  671. break;
  672. case MessageBodyOneofCase.Sxgg:
  673. if (Sxgg == null) {
  674. Sxgg = new global::Com.Xzzs.Boiler.Proto.SXGG();
  675. }
  676. Sxgg.MergeFrom(other.Sxgg);
  677. break;
  678. case MessageBodyOneofCase.Grq:
  679. if (Grq == null) {
  680. Grq = new global::Com.Xzzs.Boiler.Proto.GRQ();
  681. }
  682. Grq.MergeFrom(other.Grq);
  683. break;
  684. case MessageBodyOneofCase.Cyq:
  685. if (Cyq == null) {
  686. Cyq = new global::Com.Xzzs.Boiler.Proto.CYQ();
  687. }
  688. Cyq.MergeFrom(other.Cyq);
  689. break;
  690. case MessageBodyOneofCase.Fy:
  691. if (Fy == null) {
  692. Fy = new global::Com.Xzzs.Boiler.Proto.FY();
  693. }
  694. Fy.MergeFrom(other.Fy);
  695. break;
  696. case MessageBodyOneofCase.Grzqjx:
  697. if (Grzqjx == null) {
  698. Grzqjx = new global::Com.Xzzs.Boiler.Proto.GRZQJX();
  699. }
  700. Grzqjx.MergeFrom(other.Grzqjx);
  701. break;
  702. case MessageBodyOneofCase.Py:
  703. if (Py == null) {
  704. Py = new global::Com.Xzzs.Boiler.Proto.PY();
  705. }
  706. Py.MergeFrom(other.Py);
  707. break;
  708. case MessageBodyOneofCase.Exception:
  709. if (Exception == null) {
  710. Exception = new global::Com.Xzzs.Boiler.Proto.EXCEPTION();
  711. }
  712. Exception.MergeFrom(other.Exception);
  713. break;
  714. case MessageBodyOneofCase.Status:
  715. if (Status == null) {
  716. Status = new global::Com.Xzzs.Boiler.Proto.STATUS();
  717. }
  718. Status.MergeFrom(other.Status);
  719. break;
  720. case MessageBodyOneofCase.Coordinate:
  721. if (Coordinate == null) {
  722. Coordinate = new global::Com.Xzzs.Boiler.Proto.COORDINATE();
  723. }
  724. Coordinate.MergeFrom(other.Coordinate);
  725. break;
  726. }
  727. _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
  728. }
  729. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  730. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  731. public void MergeFrom(pb::CodedInputStream input) {
  732. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  733. input.ReadRawMessage(this);
  734. #else
  735. uint tag;
  736. while ((tag = input.ReadTag()) != 0) {
  737. switch(tag) {
  738. default:
  739. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
  740. break;
  741. case 8: {
  742. MessageType = (global::Com.Xzzs.Boiler.Proto.Message.Types.MessageType) input.ReadEnum();
  743. break;
  744. }
  745. case 18: {
  746. global::Com.Xzzs.Boiler.Proto.DATA subBuilder = new global::Com.Xzzs.Boiler.Proto.DATA();
  747. if (messageBodyCase_ == MessageBodyOneofCase.Data) {
  748. subBuilder.MergeFrom(Data);
  749. }
  750. input.ReadMessage(subBuilder);
  751. Data = subBuilder;
  752. break;
  753. }
  754. case 26: {
  755. global::Com.Xzzs.Boiler.Proto.GS subBuilder = new global::Com.Xzzs.Boiler.Proto.GS();
  756. if (messageBodyCase_ == MessageBodyOneofCase.Gs) {
  757. subBuilder.MergeFrom(Gs);
  758. }
  759. input.ReadMessage(subBuilder);
  760. Gs = subBuilder;
  761. break;
  762. }
  763. case 34: {
  764. global::Com.Xzzs.Boiler.Proto.JJQ subBuilder = new global::Com.Xzzs.Boiler.Proto.JJQ();
  765. if (messageBodyCase_ == MessageBodyOneofCase.Jjq) {
  766. subBuilder.MergeFrom(Jjq);
  767. }
  768. input.ReadMessage(subBuilder);
  769. Jjq = subBuilder;
  770. break;
  771. }
  772. case 42: {
  773. global::Com.Xzzs.Boiler.Proto.SXGG subBuilder = new global::Com.Xzzs.Boiler.Proto.SXGG();
  774. if (messageBodyCase_ == MessageBodyOneofCase.Sxgg) {
  775. subBuilder.MergeFrom(Sxgg);
  776. }
  777. input.ReadMessage(subBuilder);
  778. Sxgg = subBuilder;
  779. break;
  780. }
  781. case 50: {
  782. global::Com.Xzzs.Boiler.Proto.GRQ subBuilder = new global::Com.Xzzs.Boiler.Proto.GRQ();
  783. if (messageBodyCase_ == MessageBodyOneofCase.Grq) {
  784. subBuilder.MergeFrom(Grq);
  785. }
  786. input.ReadMessage(subBuilder);
  787. Grq = subBuilder;
  788. break;
  789. }
  790. case 58: {
  791. global::Com.Xzzs.Boiler.Proto.CYQ subBuilder = new global::Com.Xzzs.Boiler.Proto.CYQ();
  792. if (messageBodyCase_ == MessageBodyOneofCase.Cyq) {
  793. subBuilder.MergeFrom(Cyq);
  794. }
  795. input.ReadMessage(subBuilder);
  796. Cyq = subBuilder;
  797. break;
  798. }
  799. case 66: {
  800. global::Com.Xzzs.Boiler.Proto.FY subBuilder = new global::Com.Xzzs.Boiler.Proto.FY();
  801. if (messageBodyCase_ == MessageBodyOneofCase.Fy) {
  802. subBuilder.MergeFrom(Fy);
  803. }
  804. input.ReadMessage(subBuilder);
  805. Fy = subBuilder;
  806. break;
  807. }
  808. case 74: {
  809. global::Com.Xzzs.Boiler.Proto.GRZQJX subBuilder = new global::Com.Xzzs.Boiler.Proto.GRZQJX();
  810. if (messageBodyCase_ == MessageBodyOneofCase.Grzqjx) {
  811. subBuilder.MergeFrom(Grzqjx);
  812. }
  813. input.ReadMessage(subBuilder);
  814. Grzqjx = subBuilder;
  815. break;
  816. }
  817. case 82: {
  818. global::Com.Xzzs.Boiler.Proto.PY subBuilder = new global::Com.Xzzs.Boiler.Proto.PY();
  819. if (messageBodyCase_ == MessageBodyOneofCase.Py) {
  820. subBuilder.MergeFrom(Py);
  821. }
  822. input.ReadMessage(subBuilder);
  823. Py = subBuilder;
  824. break;
  825. }
  826. case 90: {
  827. global::Com.Xzzs.Boiler.Proto.EXCEPTION subBuilder = new global::Com.Xzzs.Boiler.Proto.EXCEPTION();
  828. if (messageBodyCase_ == MessageBodyOneofCase.Exception) {
  829. subBuilder.MergeFrom(Exception);
  830. }
  831. input.ReadMessage(subBuilder);
  832. Exception = subBuilder;
  833. break;
  834. }
  835. case 98: {
  836. global::Com.Xzzs.Boiler.Proto.STATUS subBuilder = new global::Com.Xzzs.Boiler.Proto.STATUS();
  837. if (messageBodyCase_ == MessageBodyOneofCase.Status) {
  838. subBuilder.MergeFrom(Status);
  839. }
  840. input.ReadMessage(subBuilder);
  841. Status = subBuilder;
  842. break;
  843. }
  844. case 106: {
  845. global::Com.Xzzs.Boiler.Proto.COORDINATE subBuilder = new global::Com.Xzzs.Boiler.Proto.COORDINATE();
  846. if (messageBodyCase_ == MessageBodyOneofCase.Coordinate) {
  847. subBuilder.MergeFrom(Coordinate);
  848. }
  849. input.ReadMessage(subBuilder);
  850. Coordinate = subBuilder;
  851. break;
  852. }
  853. }
  854. }
  855. #endif
  856. }
  857. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  858. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  859. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  860. void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
  861. uint tag;
  862. while ((tag = input.ReadTag()) != 0) {
  863. switch(tag) {
  864. default:
  865. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
  866. break;
  867. case 8: {
  868. MessageType = (global::Com.Xzzs.Boiler.Proto.Message.Types.MessageType) input.ReadEnum();
  869. break;
  870. }
  871. case 18: {
  872. global::Com.Xzzs.Boiler.Proto.DATA subBuilder = new global::Com.Xzzs.Boiler.Proto.DATA();
  873. if (messageBodyCase_ == MessageBodyOneofCase.Data) {
  874. subBuilder.MergeFrom(Data);
  875. }
  876. input.ReadMessage(subBuilder);
  877. Data = subBuilder;
  878. break;
  879. }
  880. case 26: {
  881. global::Com.Xzzs.Boiler.Proto.GS subBuilder = new global::Com.Xzzs.Boiler.Proto.GS();
  882. if (messageBodyCase_ == MessageBodyOneofCase.Gs) {
  883. subBuilder.MergeFrom(Gs);
  884. }
  885. input.ReadMessage(subBuilder);
  886. Gs = subBuilder;
  887. break;
  888. }
  889. case 34: {
  890. global::Com.Xzzs.Boiler.Proto.JJQ subBuilder = new global::Com.Xzzs.Boiler.Proto.JJQ();
  891. if (messageBodyCase_ == MessageBodyOneofCase.Jjq) {
  892. subBuilder.MergeFrom(Jjq);
  893. }
  894. input.ReadMessage(subBuilder);
  895. Jjq = subBuilder;
  896. break;
  897. }
  898. case 42: {
  899. global::Com.Xzzs.Boiler.Proto.SXGG subBuilder = new global::Com.Xzzs.Boiler.Proto.SXGG();
  900. if (messageBodyCase_ == MessageBodyOneofCase.Sxgg) {
  901. subBuilder.MergeFrom(Sxgg);
  902. }
  903. input.ReadMessage(subBuilder);
  904. Sxgg = subBuilder;
  905. break;
  906. }
  907. case 50: {
  908. global::Com.Xzzs.Boiler.Proto.GRQ subBuilder = new global::Com.Xzzs.Boiler.Proto.GRQ();
  909. if (messageBodyCase_ == MessageBodyOneofCase.Grq) {
  910. subBuilder.MergeFrom(Grq);
  911. }
  912. input.ReadMessage(subBuilder);
  913. Grq = subBuilder;
  914. break;
  915. }
  916. case 58: {
  917. global::Com.Xzzs.Boiler.Proto.CYQ subBuilder = new global::Com.Xzzs.Boiler.Proto.CYQ();
  918. if (messageBodyCase_ == MessageBodyOneofCase.Cyq) {
  919. subBuilder.MergeFrom(Cyq);
  920. }
  921. input.ReadMessage(subBuilder);
  922. Cyq = subBuilder;
  923. break;
  924. }
  925. case 66: {
  926. global::Com.Xzzs.Boiler.Proto.FY subBuilder = new global::Com.Xzzs.Boiler.Proto.FY();
  927. if (messageBodyCase_ == MessageBodyOneofCase.Fy) {
  928. subBuilder.MergeFrom(Fy);
  929. }
  930. input.ReadMessage(subBuilder);
  931. Fy = subBuilder;
  932. break;
  933. }
  934. case 74: {
  935. global::Com.Xzzs.Boiler.Proto.GRZQJX subBuilder = new global::Com.Xzzs.Boiler.Proto.GRZQJX();
  936. if (messageBodyCase_ == MessageBodyOneofCase.Grzqjx) {
  937. subBuilder.MergeFrom(Grzqjx);
  938. }
  939. input.ReadMessage(subBuilder);
  940. Grzqjx = subBuilder;
  941. break;
  942. }
  943. case 82: {
  944. global::Com.Xzzs.Boiler.Proto.PY subBuilder = new global::Com.Xzzs.Boiler.Proto.PY();
  945. if (messageBodyCase_ == MessageBodyOneofCase.Py) {
  946. subBuilder.MergeFrom(Py);
  947. }
  948. input.ReadMessage(subBuilder);
  949. Py = subBuilder;
  950. break;
  951. }
  952. case 90: {
  953. global::Com.Xzzs.Boiler.Proto.EXCEPTION subBuilder = new global::Com.Xzzs.Boiler.Proto.EXCEPTION();
  954. if (messageBodyCase_ == MessageBodyOneofCase.Exception) {
  955. subBuilder.MergeFrom(Exception);
  956. }
  957. input.ReadMessage(subBuilder);
  958. Exception = subBuilder;
  959. break;
  960. }
  961. case 98: {
  962. global::Com.Xzzs.Boiler.Proto.STATUS subBuilder = new global::Com.Xzzs.Boiler.Proto.STATUS();
  963. if (messageBodyCase_ == MessageBodyOneofCase.Status) {
  964. subBuilder.MergeFrom(Status);
  965. }
  966. input.ReadMessage(subBuilder);
  967. Status = subBuilder;
  968. break;
  969. }
  970. case 106: {
  971. global::Com.Xzzs.Boiler.Proto.COORDINATE subBuilder = new global::Com.Xzzs.Boiler.Proto.COORDINATE();
  972. if (messageBodyCase_ == MessageBodyOneofCase.Coordinate) {
  973. subBuilder.MergeFrom(Coordinate);
  974. }
  975. input.ReadMessage(subBuilder);
  976. Coordinate = subBuilder;
  977. break;
  978. }
  979. }
  980. }
  981. }
  982. #endif
  983. #region Nested types
  984. /// <summary>Container for nested types declared in the Message message type.</summary>
  985. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  986. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  987. public static partial class Types {
  988. /// <summary>
  989. ///枚举
  990. /// </summary>
  991. public enum MessageType {
  992. [pbr::OriginalName("DATA")] Data = 0,
  993. [pbr::OriginalName("GS")] Gs = 1,
  994. [pbr::OriginalName("JJQ")] Jjq = 2,
  995. [pbr::OriginalName("SXGG")] Sxgg = 3,
  996. [pbr::OriginalName("GRQ")] Grq = 4,
  997. [pbr::OriginalName("CYQ")] Cyq = 5,
  998. [pbr::OriginalName("FY")] Fy = 6,
  999. [pbr::OriginalName("GRZQJX")] Grzqjx = 7,
  1000. [pbr::OriginalName("PY")] Py = 8,
  1001. [pbr::OriginalName("EXCEPTION")] Exception = 9,
  1002. [pbr::OriginalName("STATUS")] Status = 10,
  1003. [pbr::OriginalName("CIIRDINATE")] Ciirdinate = 11,
  1004. }
  1005. }
  1006. #endregion
  1007. }
  1008. /// <summary>
  1009. ///供客户端发送心跳数据使用
  1010. /// </summary>
  1011. public sealed partial class DATA : pb::IMessage<DATA>
  1012. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  1013. , pb::IBufferMessage
  1014. #endif
  1015. {
  1016. private static readonly pb::MessageParser<DATA> _parser = new pb::MessageParser<DATA>(() => new DATA());
  1017. private pb::UnknownFieldSet _unknownFields;
  1018. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1019. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1020. public static pb::MessageParser<DATA> Parser { get { return _parser; } }
  1021. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1022. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1023. public static pbr::MessageDescriptor Descriptor {
  1024. get { return global::Com.Xzzs.Boiler.Proto.MessageReflection.Descriptor.MessageTypes[1]; }
  1025. }
  1026. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1027. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1028. pbr::MessageDescriptor pb::IMessage.Descriptor {
  1029. get { return Descriptor; }
  1030. }
  1031. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1032. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1033. public DATA() {
  1034. OnConstruction();
  1035. }
  1036. partial void OnConstruction();
  1037. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1038. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1039. public DATA(DATA other) : this() {
  1040. data_ = other.data_;
  1041. _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
  1042. }
  1043. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1044. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1045. public DATA Clone() {
  1046. return new DATA(this);
  1047. }
  1048. /// <summary>Field number for the "data" field.</summary>
  1049. public const int DataFieldNumber = 1;
  1050. private string data_ = "";
  1051. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1052. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1053. public string Data {
  1054. get { return data_; }
  1055. set {
  1056. data_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1057. }
  1058. }
  1059. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1060. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1061. public override bool Equals(object other) {
  1062. return Equals(other as DATA);
  1063. }
  1064. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1065. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1066. public bool Equals(DATA other) {
  1067. if (ReferenceEquals(other, null)) {
  1068. return false;
  1069. }
  1070. if (ReferenceEquals(other, this)) {
  1071. return true;
  1072. }
  1073. if (Data != other.Data) return false;
  1074. return Equals(_unknownFields, other._unknownFields);
  1075. }
  1076. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1077. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1078. public override int GetHashCode() {
  1079. int hash = 1;
  1080. if (Data.Length != 0) hash ^= Data.GetHashCode();
  1081. if (_unknownFields != null) {
  1082. hash ^= _unknownFields.GetHashCode();
  1083. }
  1084. return hash;
  1085. }
  1086. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1087. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1088. public override string ToString() {
  1089. return pb::JsonFormatter.ToDiagnosticString(this);
  1090. }
  1091. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1092. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1093. public void WriteTo(pb::CodedOutputStream output) {
  1094. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  1095. output.WriteRawMessage(this);
  1096. #else
  1097. if (Data.Length != 0) {
  1098. output.WriteRawTag(10);
  1099. output.WriteString(Data);
  1100. }
  1101. if (_unknownFields != null) {
  1102. _unknownFields.WriteTo(output);
  1103. }
  1104. #endif
  1105. }
  1106. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  1107. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1108. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1109. void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
  1110. if (Data.Length != 0) {
  1111. output.WriteRawTag(10);
  1112. output.WriteString(Data);
  1113. }
  1114. if (_unknownFields != null) {
  1115. _unknownFields.WriteTo(ref output);
  1116. }
  1117. }
  1118. #endif
  1119. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1120. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1121. public int CalculateSize() {
  1122. int size = 0;
  1123. if (Data.Length != 0) {
  1124. size += 1 + pb::CodedOutputStream.ComputeStringSize(Data);
  1125. }
  1126. if (_unknownFields != null) {
  1127. size += _unknownFields.CalculateSize();
  1128. }
  1129. return size;
  1130. }
  1131. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1132. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1133. public void MergeFrom(DATA other) {
  1134. if (other == null) {
  1135. return;
  1136. }
  1137. if (other.Data.Length != 0) {
  1138. Data = other.Data;
  1139. }
  1140. _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
  1141. }
  1142. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1143. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1144. public void MergeFrom(pb::CodedInputStream input) {
  1145. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  1146. input.ReadRawMessage(this);
  1147. #else
  1148. uint tag;
  1149. while ((tag = input.ReadTag()) != 0) {
  1150. switch(tag) {
  1151. default:
  1152. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
  1153. break;
  1154. case 10: {
  1155. Data = input.ReadString();
  1156. break;
  1157. }
  1158. }
  1159. }
  1160. #endif
  1161. }
  1162. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  1163. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1164. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1165. void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
  1166. uint tag;
  1167. while ((tag = input.ReadTag()) != 0) {
  1168. switch(tag) {
  1169. default:
  1170. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
  1171. break;
  1172. case 10: {
  1173. Data = input.ReadString();
  1174. break;
  1175. }
  1176. }
  1177. }
  1178. }
  1179. #endif
  1180. }
  1181. /// <summary>
  1182. ///给水系统
  1183. /// </summary>
  1184. public sealed partial class GS : pb::IMessage<GS>
  1185. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  1186. , pb::IBufferMessage
  1187. #endif
  1188. {
  1189. private static readonly pb::MessageParser<GS> _parser = new pb::MessageParser<GS>(() => new GS());
  1190. private pb::UnknownFieldSet _unknownFields;
  1191. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1192. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1193. public static pb::MessageParser<GS> Parser { get { return _parser; } }
  1194. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1195. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1196. public static pbr::MessageDescriptor Descriptor {
  1197. get { return global::Com.Xzzs.Boiler.Proto.MessageReflection.Descriptor.MessageTypes[2]; }
  1198. }
  1199. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1200. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1201. pbr::MessageDescriptor pb::IMessage.Descriptor {
  1202. get { return Descriptor; }
  1203. }
  1204. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1205. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1206. public GS() {
  1207. OnConstruction();
  1208. }
  1209. partial void OnConstruction();
  1210. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1211. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1212. public GS(GS other) : this() {
  1213. gSPressure_ = other.gSPressure_;
  1214. gSTemperature_ = other.gSTemperature_;
  1215. gSFlow_ = other.gSFlow_;
  1216. gSScale_ = other.gSScale_;
  1217. gSAutoScale_ = other.gSAutoScale_;
  1218. gSStandbyPower_ = other.gSStandbyPower_;
  1219. gSPumpPower_ = other.gSPumpPower_;
  1220. gSPressureTarget_ = other.gSPressureTarget_;
  1221. gSAutoScaleTarget_ = other.gSAutoScaleTarget_;
  1222. gSScaleTarget_ = other.gSScaleTarget_;
  1223. gSPressureForecast_ = other.gSPressureForecast_;
  1224. gSTemperatureForecast_ = other.gSTemperatureForecast_;
  1225. gSFlowForecast_ = other.gSFlowForecast_;
  1226. gSPumpPowerForecast_ = other.gSPumpPowerForecast_;
  1227. time_ = other.time_;
  1228. exceptionStatus_ = other.exceptionStatus_;
  1229. _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
  1230. }
  1231. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1232. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1233. public GS Clone() {
  1234. return new GS(this);
  1235. }
  1236. /// <summary>Field number for the "GS_pressure" field.</summary>
  1237. public const int GSPressureFieldNumber = 1;
  1238. private string gSPressure_ = "";
  1239. /// <summary>
  1240. ///给水压力 .4f Double
  1241. /// </summary>
  1242. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1243. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1244. public string GSPressure {
  1245. get { return gSPressure_; }
  1246. set {
  1247. gSPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1248. }
  1249. }
  1250. /// <summary>Field number for the "GS_temperature" field.</summary>
  1251. public const int GSTemperatureFieldNumber = 2;
  1252. private string gSTemperature_ = "";
  1253. /// <summary>
  1254. ///给水温度 .4f Double
  1255. /// </summary>
  1256. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1257. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1258. public string GSTemperature {
  1259. get { return gSTemperature_; }
  1260. set {
  1261. gSTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1262. }
  1263. }
  1264. /// <summary>Field number for the "GS_flow" field.</summary>
  1265. public const int GSFlowFieldNumber = 3;
  1266. private string gSFlow_ = "";
  1267. /// <summary>
  1268. ///给水流量 .4f Double
  1269. /// </summary>
  1270. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1271. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1272. public string GSFlow {
  1273. get { return gSFlow_; }
  1274. set {
  1275. gSFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1276. }
  1277. }
  1278. /// <summary>Field number for the "GS_scale" field.</summary>
  1279. public const int GSScaleFieldNumber = 4;
  1280. private string gSScale_ = "";
  1281. /// <summary>
  1282. ///回水阀阀位 .4f Double
  1283. /// </summary>
  1284. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1285. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1286. public string GSScale {
  1287. get { return gSScale_; }
  1288. set {
  1289. gSScale_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1290. }
  1291. }
  1292. /// <summary>Field number for the "GS_auto_scale" field.</summary>
  1293. public const int GSAutoScaleFieldNumber = 5;
  1294. private string gSAutoScale_ = "";
  1295. /// <summary>
  1296. ///给水电动调节阀 .4f Double
  1297. /// </summary>
  1298. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1299. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1300. public string GSAutoScale {
  1301. get { return gSAutoScale_; }
  1302. set {
  1303. gSAutoScale_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1304. }
  1305. }
  1306. /// <summary>Field number for the "GS_standby_power" field.</summary>
  1307. public const int GSStandbyPowerFieldNumber = 6;
  1308. private string gSStandbyPower_ = "";
  1309. /// <summary>
  1310. ///备用泵功率 .4f Double
  1311. /// </summary>
  1312. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1313. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1314. public string GSStandbyPower {
  1315. get { return gSStandbyPower_; }
  1316. set {
  1317. gSStandbyPower_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1318. }
  1319. }
  1320. /// <summary>Field number for the "GS_pump_power" field.</summary>
  1321. public const int GSPumpPowerFieldNumber = 7;
  1322. private string gSPumpPower_ = "";
  1323. /// <summary>
  1324. ///给水泵功率 .4f Double
  1325. /// </summary>
  1326. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1327. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1328. public string GSPumpPower {
  1329. get { return gSPumpPower_; }
  1330. set {
  1331. gSPumpPower_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1332. }
  1333. }
  1334. /// <summary>Field number for the "GS_pressure_target" field.</summary>
  1335. public const int GSPressureTargetFieldNumber = 8;
  1336. private string gSPressureTarget_ = "";
  1337. /// <summary>
  1338. ///给水压力目标值 .4f Double
  1339. /// </summary>
  1340. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1341. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1342. public string GSPressureTarget {
  1343. get { return gSPressureTarget_; }
  1344. set {
  1345. gSPressureTarget_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1346. }
  1347. }
  1348. /// <summary>Field number for the "GS_auto_scale_target" field.</summary>
  1349. public const int GSAutoScaleTargetFieldNumber = 9;
  1350. private string gSAutoScaleTarget_ = "";
  1351. /// <summary>
  1352. ///给水电动调节阀目标值 .4f Double
  1353. /// </summary>
  1354. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1355. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1356. public string GSAutoScaleTarget {
  1357. get { return gSAutoScaleTarget_; }
  1358. set {
  1359. gSAutoScaleTarget_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1360. }
  1361. }
  1362. /// <summary>Field number for the "GS_scale_target" field.</summary>
  1363. public const int GSScaleTargetFieldNumber = 10;
  1364. private string gSScaleTarget_ = "";
  1365. /// <summary>
  1366. ///回水阀阀位目标值 .4f Double
  1367. /// </summary>
  1368. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1369. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1370. public string GSScaleTarget {
  1371. get { return gSScaleTarget_; }
  1372. set {
  1373. gSScaleTarget_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1374. }
  1375. }
  1376. /// <summary>Field number for the "GS_pressure_forecast" field.</summary>
  1377. public const int GSPressureForecastFieldNumber = 11;
  1378. private string gSPressureForecast_ = "";
  1379. /// <summary>
  1380. ///给水压力预测值 .4f Double
  1381. /// </summary>
  1382. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1383. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1384. public string GSPressureForecast {
  1385. get { return gSPressureForecast_; }
  1386. set {
  1387. gSPressureForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1388. }
  1389. }
  1390. /// <summary>Field number for the "GS_temperature_forecast" field.</summary>
  1391. public const int GSTemperatureForecastFieldNumber = 12;
  1392. private string gSTemperatureForecast_ = "";
  1393. /// <summary>
  1394. ///给水温度预测值 .4f Double
  1395. /// </summary>
  1396. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1397. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1398. public string GSTemperatureForecast {
  1399. get { return gSTemperatureForecast_; }
  1400. set {
  1401. gSTemperatureForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1402. }
  1403. }
  1404. /// <summary>Field number for the "GS_flow_forecast" field.</summary>
  1405. public const int GSFlowForecastFieldNumber = 13;
  1406. private string gSFlowForecast_ = "";
  1407. /// <summary>
  1408. ///给水流量预测值 .4f Double
  1409. /// </summary>
  1410. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1411. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1412. public string GSFlowForecast {
  1413. get { return gSFlowForecast_; }
  1414. set {
  1415. gSFlowForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1416. }
  1417. }
  1418. /// <summary>Field number for the "GS_pump_power_forecast" field.</summary>
  1419. public const int GSPumpPowerForecastFieldNumber = 14;
  1420. private string gSPumpPowerForecast_ = "";
  1421. /// <summary>
  1422. ///给水泵预测值 .4f Double
  1423. /// </summary>
  1424. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1425. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1426. public string GSPumpPowerForecast {
  1427. get { return gSPumpPowerForecast_; }
  1428. set {
  1429. gSPumpPowerForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1430. }
  1431. }
  1432. /// <summary>Field number for the "time" field.</summary>
  1433. public const int TimeFieldNumber = 15;
  1434. private string time_ = "";
  1435. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1436. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1437. public string Time {
  1438. get { return time_; }
  1439. set {
  1440. time_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1441. }
  1442. }
  1443. /// <summary>Field number for the "exception_status" field.</summary>
  1444. public const int ExceptionStatusFieldNumber = 16;
  1445. private string exceptionStatus_ = "";
  1446. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1447. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1448. public string ExceptionStatus {
  1449. get { return exceptionStatus_; }
  1450. set {
  1451. exceptionStatus_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  1452. }
  1453. }
  1454. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1455. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1456. public override bool Equals(object other) {
  1457. return Equals(other as GS);
  1458. }
  1459. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1460. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1461. public bool Equals(GS other) {
  1462. if (ReferenceEquals(other, null)) {
  1463. return false;
  1464. }
  1465. if (ReferenceEquals(other, this)) {
  1466. return true;
  1467. }
  1468. if (GSPressure != other.GSPressure) return false;
  1469. if (GSTemperature != other.GSTemperature) return false;
  1470. if (GSFlow != other.GSFlow) return false;
  1471. if (GSScale != other.GSScale) return false;
  1472. if (GSAutoScale != other.GSAutoScale) return false;
  1473. if (GSStandbyPower != other.GSStandbyPower) return false;
  1474. if (GSPumpPower != other.GSPumpPower) return false;
  1475. if (GSPressureTarget != other.GSPressureTarget) return false;
  1476. if (GSAutoScaleTarget != other.GSAutoScaleTarget) return false;
  1477. if (GSScaleTarget != other.GSScaleTarget) return false;
  1478. if (GSPressureForecast != other.GSPressureForecast) return false;
  1479. if (GSTemperatureForecast != other.GSTemperatureForecast) return false;
  1480. if (GSFlowForecast != other.GSFlowForecast) return false;
  1481. if (GSPumpPowerForecast != other.GSPumpPowerForecast) return false;
  1482. if (Time != other.Time) return false;
  1483. if (ExceptionStatus != other.ExceptionStatus) return false;
  1484. return Equals(_unknownFields, other._unknownFields);
  1485. }
  1486. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1487. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1488. public override int GetHashCode() {
  1489. int hash = 1;
  1490. if (GSPressure.Length != 0) hash ^= GSPressure.GetHashCode();
  1491. if (GSTemperature.Length != 0) hash ^= GSTemperature.GetHashCode();
  1492. if (GSFlow.Length != 0) hash ^= GSFlow.GetHashCode();
  1493. if (GSScale.Length != 0) hash ^= GSScale.GetHashCode();
  1494. if (GSAutoScale.Length != 0) hash ^= GSAutoScale.GetHashCode();
  1495. if (GSStandbyPower.Length != 0) hash ^= GSStandbyPower.GetHashCode();
  1496. if (GSPumpPower.Length != 0) hash ^= GSPumpPower.GetHashCode();
  1497. if (GSPressureTarget.Length != 0) hash ^= GSPressureTarget.GetHashCode();
  1498. if (GSAutoScaleTarget.Length != 0) hash ^= GSAutoScaleTarget.GetHashCode();
  1499. if (GSScaleTarget.Length != 0) hash ^= GSScaleTarget.GetHashCode();
  1500. if (GSPressureForecast.Length != 0) hash ^= GSPressureForecast.GetHashCode();
  1501. if (GSTemperatureForecast.Length != 0) hash ^= GSTemperatureForecast.GetHashCode();
  1502. if (GSFlowForecast.Length != 0) hash ^= GSFlowForecast.GetHashCode();
  1503. if (GSPumpPowerForecast.Length != 0) hash ^= GSPumpPowerForecast.GetHashCode();
  1504. if (Time.Length != 0) hash ^= Time.GetHashCode();
  1505. if (ExceptionStatus.Length != 0) hash ^= ExceptionStatus.GetHashCode();
  1506. if (_unknownFields != null) {
  1507. hash ^= _unknownFields.GetHashCode();
  1508. }
  1509. return hash;
  1510. }
  1511. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1512. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1513. public override string ToString() {
  1514. return pb::JsonFormatter.ToDiagnosticString(this);
  1515. }
  1516. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1517. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1518. public void WriteTo(pb::CodedOutputStream output) {
  1519. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  1520. output.WriteRawMessage(this);
  1521. #else
  1522. if (GSPressure.Length != 0) {
  1523. output.WriteRawTag(10);
  1524. output.WriteString(GSPressure);
  1525. }
  1526. if (GSTemperature.Length != 0) {
  1527. output.WriteRawTag(18);
  1528. output.WriteString(GSTemperature);
  1529. }
  1530. if (GSFlow.Length != 0) {
  1531. output.WriteRawTag(26);
  1532. output.WriteString(GSFlow);
  1533. }
  1534. if (GSScale.Length != 0) {
  1535. output.WriteRawTag(34);
  1536. output.WriteString(GSScale);
  1537. }
  1538. if (GSAutoScale.Length != 0) {
  1539. output.WriteRawTag(42);
  1540. output.WriteString(GSAutoScale);
  1541. }
  1542. if (GSStandbyPower.Length != 0) {
  1543. output.WriteRawTag(50);
  1544. output.WriteString(GSStandbyPower);
  1545. }
  1546. if (GSPumpPower.Length != 0) {
  1547. output.WriteRawTag(58);
  1548. output.WriteString(GSPumpPower);
  1549. }
  1550. if (GSPressureTarget.Length != 0) {
  1551. output.WriteRawTag(66);
  1552. output.WriteString(GSPressureTarget);
  1553. }
  1554. if (GSAutoScaleTarget.Length != 0) {
  1555. output.WriteRawTag(74);
  1556. output.WriteString(GSAutoScaleTarget);
  1557. }
  1558. if (GSScaleTarget.Length != 0) {
  1559. output.WriteRawTag(82);
  1560. output.WriteString(GSScaleTarget);
  1561. }
  1562. if (GSPressureForecast.Length != 0) {
  1563. output.WriteRawTag(90);
  1564. output.WriteString(GSPressureForecast);
  1565. }
  1566. if (GSTemperatureForecast.Length != 0) {
  1567. output.WriteRawTag(98);
  1568. output.WriteString(GSTemperatureForecast);
  1569. }
  1570. if (GSFlowForecast.Length != 0) {
  1571. output.WriteRawTag(106);
  1572. output.WriteString(GSFlowForecast);
  1573. }
  1574. if (GSPumpPowerForecast.Length != 0) {
  1575. output.WriteRawTag(114);
  1576. output.WriteString(GSPumpPowerForecast);
  1577. }
  1578. if (Time.Length != 0) {
  1579. output.WriteRawTag(122);
  1580. output.WriteString(Time);
  1581. }
  1582. if (ExceptionStatus.Length != 0) {
  1583. output.WriteRawTag(130, 1);
  1584. output.WriteString(ExceptionStatus);
  1585. }
  1586. if (_unknownFields != null) {
  1587. _unknownFields.WriteTo(output);
  1588. }
  1589. #endif
  1590. }
  1591. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  1592. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1593. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1594. void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
  1595. if (GSPressure.Length != 0) {
  1596. output.WriteRawTag(10);
  1597. output.WriteString(GSPressure);
  1598. }
  1599. if (GSTemperature.Length != 0) {
  1600. output.WriteRawTag(18);
  1601. output.WriteString(GSTemperature);
  1602. }
  1603. if (GSFlow.Length != 0) {
  1604. output.WriteRawTag(26);
  1605. output.WriteString(GSFlow);
  1606. }
  1607. if (GSScale.Length != 0) {
  1608. output.WriteRawTag(34);
  1609. output.WriteString(GSScale);
  1610. }
  1611. if (GSAutoScale.Length != 0) {
  1612. output.WriteRawTag(42);
  1613. output.WriteString(GSAutoScale);
  1614. }
  1615. if (GSStandbyPower.Length != 0) {
  1616. output.WriteRawTag(50);
  1617. output.WriteString(GSStandbyPower);
  1618. }
  1619. if (GSPumpPower.Length != 0) {
  1620. output.WriteRawTag(58);
  1621. output.WriteString(GSPumpPower);
  1622. }
  1623. if (GSPressureTarget.Length != 0) {
  1624. output.WriteRawTag(66);
  1625. output.WriteString(GSPressureTarget);
  1626. }
  1627. if (GSAutoScaleTarget.Length != 0) {
  1628. output.WriteRawTag(74);
  1629. output.WriteString(GSAutoScaleTarget);
  1630. }
  1631. if (GSScaleTarget.Length != 0) {
  1632. output.WriteRawTag(82);
  1633. output.WriteString(GSScaleTarget);
  1634. }
  1635. if (GSPressureForecast.Length != 0) {
  1636. output.WriteRawTag(90);
  1637. output.WriteString(GSPressureForecast);
  1638. }
  1639. if (GSTemperatureForecast.Length != 0) {
  1640. output.WriteRawTag(98);
  1641. output.WriteString(GSTemperatureForecast);
  1642. }
  1643. if (GSFlowForecast.Length != 0) {
  1644. output.WriteRawTag(106);
  1645. output.WriteString(GSFlowForecast);
  1646. }
  1647. if (GSPumpPowerForecast.Length != 0) {
  1648. output.WriteRawTag(114);
  1649. output.WriteString(GSPumpPowerForecast);
  1650. }
  1651. if (Time.Length != 0) {
  1652. output.WriteRawTag(122);
  1653. output.WriteString(Time);
  1654. }
  1655. if (ExceptionStatus.Length != 0) {
  1656. output.WriteRawTag(130, 1);
  1657. output.WriteString(ExceptionStatus);
  1658. }
  1659. if (_unknownFields != null) {
  1660. _unknownFields.WriteTo(ref output);
  1661. }
  1662. }
  1663. #endif
  1664. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1665. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1666. public int CalculateSize() {
  1667. int size = 0;
  1668. if (GSPressure.Length != 0) {
  1669. size += 1 + pb::CodedOutputStream.ComputeStringSize(GSPressure);
  1670. }
  1671. if (GSTemperature.Length != 0) {
  1672. size += 1 + pb::CodedOutputStream.ComputeStringSize(GSTemperature);
  1673. }
  1674. if (GSFlow.Length != 0) {
  1675. size += 1 + pb::CodedOutputStream.ComputeStringSize(GSFlow);
  1676. }
  1677. if (GSScale.Length != 0) {
  1678. size += 1 + pb::CodedOutputStream.ComputeStringSize(GSScale);
  1679. }
  1680. if (GSAutoScale.Length != 0) {
  1681. size += 1 + pb::CodedOutputStream.ComputeStringSize(GSAutoScale);
  1682. }
  1683. if (GSStandbyPower.Length != 0) {
  1684. size += 1 + pb::CodedOutputStream.ComputeStringSize(GSStandbyPower);
  1685. }
  1686. if (GSPumpPower.Length != 0) {
  1687. size += 1 + pb::CodedOutputStream.ComputeStringSize(GSPumpPower);
  1688. }
  1689. if (GSPressureTarget.Length != 0) {
  1690. size += 1 + pb::CodedOutputStream.ComputeStringSize(GSPressureTarget);
  1691. }
  1692. if (GSAutoScaleTarget.Length != 0) {
  1693. size += 1 + pb::CodedOutputStream.ComputeStringSize(GSAutoScaleTarget);
  1694. }
  1695. if (GSScaleTarget.Length != 0) {
  1696. size += 1 + pb::CodedOutputStream.ComputeStringSize(GSScaleTarget);
  1697. }
  1698. if (GSPressureForecast.Length != 0) {
  1699. size += 1 + pb::CodedOutputStream.ComputeStringSize(GSPressureForecast);
  1700. }
  1701. if (GSTemperatureForecast.Length != 0) {
  1702. size += 1 + pb::CodedOutputStream.ComputeStringSize(GSTemperatureForecast);
  1703. }
  1704. if (GSFlowForecast.Length != 0) {
  1705. size += 1 + pb::CodedOutputStream.ComputeStringSize(GSFlowForecast);
  1706. }
  1707. if (GSPumpPowerForecast.Length != 0) {
  1708. size += 1 + pb::CodedOutputStream.ComputeStringSize(GSPumpPowerForecast);
  1709. }
  1710. if (Time.Length != 0) {
  1711. size += 1 + pb::CodedOutputStream.ComputeStringSize(Time);
  1712. }
  1713. if (ExceptionStatus.Length != 0) {
  1714. size += 2 + pb::CodedOutputStream.ComputeStringSize(ExceptionStatus);
  1715. }
  1716. if (_unknownFields != null) {
  1717. size += _unknownFields.CalculateSize();
  1718. }
  1719. return size;
  1720. }
  1721. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1722. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1723. public void MergeFrom(GS other) {
  1724. if (other == null) {
  1725. return;
  1726. }
  1727. if (other.GSPressure.Length != 0) {
  1728. GSPressure = other.GSPressure;
  1729. }
  1730. if (other.GSTemperature.Length != 0) {
  1731. GSTemperature = other.GSTemperature;
  1732. }
  1733. if (other.GSFlow.Length != 0) {
  1734. GSFlow = other.GSFlow;
  1735. }
  1736. if (other.GSScale.Length != 0) {
  1737. GSScale = other.GSScale;
  1738. }
  1739. if (other.GSAutoScale.Length != 0) {
  1740. GSAutoScale = other.GSAutoScale;
  1741. }
  1742. if (other.GSStandbyPower.Length != 0) {
  1743. GSStandbyPower = other.GSStandbyPower;
  1744. }
  1745. if (other.GSPumpPower.Length != 0) {
  1746. GSPumpPower = other.GSPumpPower;
  1747. }
  1748. if (other.GSPressureTarget.Length != 0) {
  1749. GSPressureTarget = other.GSPressureTarget;
  1750. }
  1751. if (other.GSAutoScaleTarget.Length != 0) {
  1752. GSAutoScaleTarget = other.GSAutoScaleTarget;
  1753. }
  1754. if (other.GSScaleTarget.Length != 0) {
  1755. GSScaleTarget = other.GSScaleTarget;
  1756. }
  1757. if (other.GSPressureForecast.Length != 0) {
  1758. GSPressureForecast = other.GSPressureForecast;
  1759. }
  1760. if (other.GSTemperatureForecast.Length != 0) {
  1761. GSTemperatureForecast = other.GSTemperatureForecast;
  1762. }
  1763. if (other.GSFlowForecast.Length != 0) {
  1764. GSFlowForecast = other.GSFlowForecast;
  1765. }
  1766. if (other.GSPumpPowerForecast.Length != 0) {
  1767. GSPumpPowerForecast = other.GSPumpPowerForecast;
  1768. }
  1769. if (other.Time.Length != 0) {
  1770. Time = other.Time;
  1771. }
  1772. if (other.ExceptionStatus.Length != 0) {
  1773. ExceptionStatus = other.ExceptionStatus;
  1774. }
  1775. _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
  1776. }
  1777. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1778. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1779. public void MergeFrom(pb::CodedInputStream input) {
  1780. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  1781. input.ReadRawMessage(this);
  1782. #else
  1783. uint tag;
  1784. while ((tag = input.ReadTag()) != 0) {
  1785. switch(tag) {
  1786. default:
  1787. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
  1788. break;
  1789. case 10: {
  1790. GSPressure = input.ReadString();
  1791. break;
  1792. }
  1793. case 18: {
  1794. GSTemperature = input.ReadString();
  1795. break;
  1796. }
  1797. case 26: {
  1798. GSFlow = input.ReadString();
  1799. break;
  1800. }
  1801. case 34: {
  1802. GSScale = input.ReadString();
  1803. break;
  1804. }
  1805. case 42: {
  1806. GSAutoScale = input.ReadString();
  1807. break;
  1808. }
  1809. case 50: {
  1810. GSStandbyPower = input.ReadString();
  1811. break;
  1812. }
  1813. case 58: {
  1814. GSPumpPower = input.ReadString();
  1815. break;
  1816. }
  1817. case 66: {
  1818. GSPressureTarget = input.ReadString();
  1819. break;
  1820. }
  1821. case 74: {
  1822. GSAutoScaleTarget = input.ReadString();
  1823. break;
  1824. }
  1825. case 82: {
  1826. GSScaleTarget = input.ReadString();
  1827. break;
  1828. }
  1829. case 90: {
  1830. GSPressureForecast = input.ReadString();
  1831. break;
  1832. }
  1833. case 98: {
  1834. GSTemperatureForecast = input.ReadString();
  1835. break;
  1836. }
  1837. case 106: {
  1838. GSFlowForecast = input.ReadString();
  1839. break;
  1840. }
  1841. case 114: {
  1842. GSPumpPowerForecast = input.ReadString();
  1843. break;
  1844. }
  1845. case 122: {
  1846. Time = input.ReadString();
  1847. break;
  1848. }
  1849. case 130: {
  1850. ExceptionStatus = input.ReadString();
  1851. break;
  1852. }
  1853. }
  1854. }
  1855. #endif
  1856. }
  1857. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  1858. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1859. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1860. void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
  1861. uint tag;
  1862. while ((tag = input.ReadTag()) != 0) {
  1863. switch(tag) {
  1864. default:
  1865. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
  1866. break;
  1867. case 10: {
  1868. GSPressure = input.ReadString();
  1869. break;
  1870. }
  1871. case 18: {
  1872. GSTemperature = input.ReadString();
  1873. break;
  1874. }
  1875. case 26: {
  1876. GSFlow = input.ReadString();
  1877. break;
  1878. }
  1879. case 34: {
  1880. GSScale = input.ReadString();
  1881. break;
  1882. }
  1883. case 42: {
  1884. GSAutoScale = input.ReadString();
  1885. break;
  1886. }
  1887. case 50: {
  1888. GSStandbyPower = input.ReadString();
  1889. break;
  1890. }
  1891. case 58: {
  1892. GSPumpPower = input.ReadString();
  1893. break;
  1894. }
  1895. case 66: {
  1896. GSPressureTarget = input.ReadString();
  1897. break;
  1898. }
  1899. case 74: {
  1900. GSAutoScaleTarget = input.ReadString();
  1901. break;
  1902. }
  1903. case 82: {
  1904. GSScaleTarget = input.ReadString();
  1905. break;
  1906. }
  1907. case 90: {
  1908. GSPressureForecast = input.ReadString();
  1909. break;
  1910. }
  1911. case 98: {
  1912. GSTemperatureForecast = input.ReadString();
  1913. break;
  1914. }
  1915. case 106: {
  1916. GSFlowForecast = input.ReadString();
  1917. break;
  1918. }
  1919. case 114: {
  1920. GSPumpPowerForecast = input.ReadString();
  1921. break;
  1922. }
  1923. case 122: {
  1924. Time = input.ReadString();
  1925. break;
  1926. }
  1927. case 130: {
  1928. ExceptionStatus = input.ReadString();
  1929. break;
  1930. }
  1931. }
  1932. }
  1933. }
  1934. #endif
  1935. }
  1936. /// <summary>
  1937. ///经济器
  1938. /// </summary>
  1939. public sealed partial class JJQ : pb::IMessage<JJQ>
  1940. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  1941. , pb::IBufferMessage
  1942. #endif
  1943. {
  1944. private static readonly pb::MessageParser<JJQ> _parser = new pb::MessageParser<JJQ>(() => new JJQ());
  1945. private pb::UnknownFieldSet _unknownFields;
  1946. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1947. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1948. public static pb::MessageParser<JJQ> Parser { get { return _parser; } }
  1949. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1950. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1951. public static pbr::MessageDescriptor Descriptor {
  1952. get { return global::Com.Xzzs.Boiler.Proto.MessageReflection.Descriptor.MessageTypes[3]; }
  1953. }
  1954. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1955. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1956. pbr::MessageDescriptor pb::IMessage.Descriptor {
  1957. get { return Descriptor; }
  1958. }
  1959. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1960. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1961. public JJQ() {
  1962. OnConstruction();
  1963. }
  1964. partial void OnConstruction();
  1965. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1966. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1967. public JJQ(JJQ other) : this() {
  1968. jJQInTemperature_ = other.jJQInTemperature_;
  1969. jJQInPressure_ = other.jJQInPressure_;
  1970. jJQInFlow_ = other.jJQInFlow_;
  1971. jJQOneavgTemperature_ = other.jJQOneavgTemperature_;
  1972. jJQOneavgPressure_ = other.jJQOneavgPressure_;
  1973. jJQOneavgFlow_ = other.jJQOneavgFlow_;
  1974. jJQTwoavgTemperature_ = other.jJQTwoavgTemperature_;
  1975. jJQTwoavgPressure_ = other.jJQTwoavgPressure_;
  1976. jJQTwoavgFlow_ = other.jJQTwoavgFlow_;
  1977. jJQThreeavgTemperature_ = other.jJQThreeavgTemperature_;
  1978. jJQThreeavgPressure_ = other.jJQThreeavgPressure_;
  1979. jJQThreeavgFlow_ = other.jJQThreeavgFlow_;
  1980. jJQOutTemperature_ = other.jJQOutTemperature_;
  1981. jJQOutPressure_ = other.jJQOutPressure_;
  1982. jJQOutFlow_ = other.jJQOutFlow_;
  1983. jJQInGasTemperature_ = other.jJQInGasTemperature_;
  1984. jJQInGasPressure_ = other.jJQInGasPressure_;
  1985. jJQInGasFlow_ = other.jJQInGasFlow_;
  1986. jJQOutGasTemperature_ = other.jJQOutGasTemperature_;
  1987. jJQOutGasPressure_ = other.jJQOutGasPressure_;
  1988. jJQOutGasFlow_ = other.jJQOutGasFlow_;
  1989. jJQOutGasTemperatureForecast_ = other.jJQOutGasTemperatureForecast_;
  1990. jJQOutGasPressureForecast_ = other.jJQOutGasPressureForecast_;
  1991. jJQOutGasFlowForecast_ = other.jJQOutGasFlowForecast_;
  1992. time_ = other.time_;
  1993. exceptionStatus_ = other.exceptionStatus_;
  1994. _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
  1995. }
  1996. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  1997. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  1998. public JJQ Clone() {
  1999. return new JJQ(this);
  2000. }
  2001. /// <summary>Field number for the "JJQ_in_temperature" field.</summary>
  2002. public const int JJQInTemperatureFieldNumber = 1;
  2003. private string jJQInTemperature_ = "";
  2004. /// <summary>
  2005. ///经济器入口温度 .4f Double
  2006. /// </summary>
  2007. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2008. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2009. public string JJQInTemperature {
  2010. get { return jJQInTemperature_; }
  2011. set {
  2012. jJQInTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2013. }
  2014. }
  2015. /// <summary>Field number for the "JJQ_in_pressure" field.</summary>
  2016. public const int JJQInPressureFieldNumber = 2;
  2017. private string jJQInPressure_ = "";
  2018. /// <summary>
  2019. ///经济器入口压力 .4f Double
  2020. /// </summary>
  2021. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2022. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2023. public string JJQInPressure {
  2024. get { return jJQInPressure_; }
  2025. set {
  2026. jJQInPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2027. }
  2028. }
  2029. /// <summary>Field number for the "JJQ_in_flow" field.</summary>
  2030. public const int JJQInFlowFieldNumber = 3;
  2031. private string jJQInFlow_ = "";
  2032. /// <summary>
  2033. ///经济器入口流量 .4f Double
  2034. /// </summary>
  2035. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2036. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2037. public string JJQInFlow {
  2038. get { return jJQInFlow_; }
  2039. set {
  2040. jJQInFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2041. }
  2042. }
  2043. /// <summary>Field number for the "JJQ_oneavg_temperature" field.</summary>
  2044. public const int JJQOneavgTemperatureFieldNumber = 4;
  2045. private string jJQOneavgTemperature_ = "";
  2046. /// <summary>
  2047. ///经济器第 1 流程平均温度 .4f Double
  2048. /// </summary>
  2049. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2050. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2051. public string JJQOneavgTemperature {
  2052. get { return jJQOneavgTemperature_; }
  2053. set {
  2054. jJQOneavgTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2055. }
  2056. }
  2057. /// <summary>Field number for the "JJQ_oneavg_pressure" field.</summary>
  2058. public const int JJQOneavgPressureFieldNumber = 5;
  2059. private string jJQOneavgPressure_ = "";
  2060. /// <summary>
  2061. ///经济器第 1 流程平均压力 .4f Double
  2062. /// </summary>
  2063. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2064. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2065. public string JJQOneavgPressure {
  2066. get { return jJQOneavgPressure_; }
  2067. set {
  2068. jJQOneavgPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2069. }
  2070. }
  2071. /// <summary>Field number for the "JJQ_oneavg_flow" field.</summary>
  2072. public const int JJQOneavgFlowFieldNumber = 6;
  2073. private string jJQOneavgFlow_ = "";
  2074. /// <summary>
  2075. ///经济器第 1 流程平均流量 .4f Double
  2076. /// </summary>
  2077. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2078. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2079. public string JJQOneavgFlow {
  2080. get { return jJQOneavgFlow_; }
  2081. set {
  2082. jJQOneavgFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2083. }
  2084. }
  2085. /// <summary>Field number for the "JJQ_twoavg_temperature" field.</summary>
  2086. public const int JJQTwoavgTemperatureFieldNumber = 7;
  2087. private string jJQTwoavgTemperature_ = "";
  2088. /// <summary>
  2089. ///经济器第 2 流程平均温度 .4f Double
  2090. /// </summary>
  2091. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2092. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2093. public string JJQTwoavgTemperature {
  2094. get { return jJQTwoavgTemperature_; }
  2095. set {
  2096. jJQTwoavgTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2097. }
  2098. }
  2099. /// <summary>Field number for the "JJQ_twoavg_pressure" field.</summary>
  2100. public const int JJQTwoavgPressureFieldNumber = 8;
  2101. private string jJQTwoavgPressure_ = "";
  2102. /// <summary>
  2103. ///经济器第 2 流程平均压力 .4f Double
  2104. /// </summary>
  2105. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2106. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2107. public string JJQTwoavgPressure {
  2108. get { return jJQTwoavgPressure_; }
  2109. set {
  2110. jJQTwoavgPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2111. }
  2112. }
  2113. /// <summary>Field number for the "JJQ_twoavg_flow" field.</summary>
  2114. public const int JJQTwoavgFlowFieldNumber = 9;
  2115. private string jJQTwoavgFlow_ = "";
  2116. /// <summary>
  2117. ///经济器第 2 流程平均流量 .4f Double
  2118. /// </summary>
  2119. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2120. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2121. public string JJQTwoavgFlow {
  2122. get { return jJQTwoavgFlow_; }
  2123. set {
  2124. jJQTwoavgFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2125. }
  2126. }
  2127. /// <summary>Field number for the "JJQ_threeavg_temperature" field.</summary>
  2128. public const int JJQThreeavgTemperatureFieldNumber = 10;
  2129. private string jJQThreeavgTemperature_ = "";
  2130. /// <summary>
  2131. ///经济器第 3 流程平均温度 .4f Double
  2132. /// </summary>
  2133. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2134. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2135. public string JJQThreeavgTemperature {
  2136. get { return jJQThreeavgTemperature_; }
  2137. set {
  2138. jJQThreeavgTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2139. }
  2140. }
  2141. /// <summary>Field number for the "JJQ_threeavg_pressure" field.</summary>
  2142. public const int JJQThreeavgPressureFieldNumber = 11;
  2143. private string jJQThreeavgPressure_ = "";
  2144. /// <summary>
  2145. ///经济器第 3 流程平均压力 .4f Double
  2146. /// </summary>
  2147. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2148. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2149. public string JJQThreeavgPressure {
  2150. get { return jJQThreeavgPressure_; }
  2151. set {
  2152. jJQThreeavgPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2153. }
  2154. }
  2155. /// <summary>Field number for the "JJQ_threeavg_flow" field.</summary>
  2156. public const int JJQThreeavgFlowFieldNumber = 12;
  2157. private string jJQThreeavgFlow_ = "";
  2158. /// <summary>
  2159. ///经济器第 3 流程平均流量 .4f Double
  2160. /// </summary>
  2161. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2162. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2163. public string JJQThreeavgFlow {
  2164. get { return jJQThreeavgFlow_; }
  2165. set {
  2166. jJQThreeavgFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2167. }
  2168. }
  2169. /// <summary>Field number for the "JJQ_out_temperature" field.</summary>
  2170. public const int JJQOutTemperatureFieldNumber = 13;
  2171. private string jJQOutTemperature_ = "";
  2172. /// <summary>
  2173. ///经济器出口温度 .4f Double
  2174. /// </summary>
  2175. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2176. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2177. public string JJQOutTemperature {
  2178. get { return jJQOutTemperature_; }
  2179. set {
  2180. jJQOutTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2181. }
  2182. }
  2183. /// <summary>Field number for the "JJQ_out_pressure" field.</summary>
  2184. public const int JJQOutPressureFieldNumber = 14;
  2185. private string jJQOutPressure_ = "";
  2186. /// <summary>
  2187. ///经济器出口压力 .4f Double
  2188. /// </summary>
  2189. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2190. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2191. public string JJQOutPressure {
  2192. get { return jJQOutPressure_; }
  2193. set {
  2194. jJQOutPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2195. }
  2196. }
  2197. /// <summary>Field number for the "JJQ_out_flow" field.</summary>
  2198. public const int JJQOutFlowFieldNumber = 15;
  2199. private string jJQOutFlow_ = "";
  2200. /// <summary>
  2201. ///经济器出口流量 .4f Double
  2202. /// </summary>
  2203. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2204. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2205. public string JJQOutFlow {
  2206. get { return jJQOutFlow_; }
  2207. set {
  2208. jJQOutFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2209. }
  2210. }
  2211. /// <summary>Field number for the "JJQ_in_gas_temperature" field.</summary>
  2212. public const int JJQInGasTemperatureFieldNumber = 16;
  2213. private string jJQInGasTemperature_ = "";
  2214. /// <summary>
  2215. ///经济器进口烟气温度 .4f Double
  2216. /// </summary>
  2217. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2218. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2219. public string JJQInGasTemperature {
  2220. get { return jJQInGasTemperature_; }
  2221. set {
  2222. jJQInGasTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2223. }
  2224. }
  2225. /// <summary>Field number for the "JJQ_in_gas_pressure" field.</summary>
  2226. public const int JJQInGasPressureFieldNumber = 17;
  2227. private string jJQInGasPressure_ = "";
  2228. /// <summary>
  2229. ///经济器入口烟气压力 .4f Double
  2230. /// </summary>
  2231. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2232. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2233. public string JJQInGasPressure {
  2234. get { return jJQInGasPressure_; }
  2235. set {
  2236. jJQInGasPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2237. }
  2238. }
  2239. /// <summary>Field number for the "JJQ_in_gas_flow" field.</summary>
  2240. public const int JJQInGasFlowFieldNumber = 18;
  2241. private string jJQInGasFlow_ = "";
  2242. /// <summary>
  2243. ///经济器入口烟气流量 .4f Double
  2244. /// </summary>
  2245. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2246. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2247. public string JJQInGasFlow {
  2248. get { return jJQInGasFlow_; }
  2249. set {
  2250. jJQInGasFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2251. }
  2252. }
  2253. /// <summary>Field number for the "JJQ_out_gas_temperature" field.</summary>
  2254. public const int JJQOutGasTemperatureFieldNumber = 19;
  2255. private string jJQOutGasTemperature_ = "";
  2256. /// <summary>
  2257. ///经济器出口烟气温度 .4f Double
  2258. /// </summary>
  2259. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2260. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2261. public string JJQOutGasTemperature {
  2262. get { return jJQOutGasTemperature_; }
  2263. set {
  2264. jJQOutGasTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2265. }
  2266. }
  2267. /// <summary>Field number for the "JJQ_out_gas_pressure" field.</summary>
  2268. public const int JJQOutGasPressureFieldNumber = 20;
  2269. private string jJQOutGasPressure_ = "";
  2270. /// <summary>
  2271. ///经济器出口烟气压力 .4f Double
  2272. /// </summary>
  2273. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2274. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2275. public string JJQOutGasPressure {
  2276. get { return jJQOutGasPressure_; }
  2277. set {
  2278. jJQOutGasPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2279. }
  2280. }
  2281. /// <summary>Field number for the "JJQ_out_gas_flow" field.</summary>
  2282. public const int JJQOutGasFlowFieldNumber = 21;
  2283. private string jJQOutGasFlow_ = "";
  2284. /// <summary>
  2285. ///经济器出口烟气流量 .4f Double
  2286. /// </summary>
  2287. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2288. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2289. public string JJQOutGasFlow {
  2290. get { return jJQOutGasFlow_; }
  2291. set {
  2292. jJQOutGasFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2293. }
  2294. }
  2295. /// <summary>Field number for the "JJQ_out_gas_temperature_forecast" field.</summary>
  2296. public const int JJQOutGasTemperatureForecastFieldNumber = 22;
  2297. private string jJQOutGasTemperatureForecast_ = "";
  2298. /// <summary>
  2299. ///经济器出口烟气温度预测值 .4f Double
  2300. /// </summary>
  2301. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2302. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2303. public string JJQOutGasTemperatureForecast {
  2304. get { return jJQOutGasTemperatureForecast_; }
  2305. set {
  2306. jJQOutGasTemperatureForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2307. }
  2308. }
  2309. /// <summary>Field number for the "JJQ_out_gas_pressure_forecast" field.</summary>
  2310. public const int JJQOutGasPressureForecastFieldNumber = 23;
  2311. private string jJQOutGasPressureForecast_ = "";
  2312. /// <summary>
  2313. ///经济器出口烟气压力预测值 .4f Double
  2314. /// </summary>
  2315. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2316. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2317. public string JJQOutGasPressureForecast {
  2318. get { return jJQOutGasPressureForecast_; }
  2319. set {
  2320. jJQOutGasPressureForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2321. }
  2322. }
  2323. /// <summary>Field number for the "JJQ_out_gas_flow_forecast" field.</summary>
  2324. public const int JJQOutGasFlowForecastFieldNumber = 24;
  2325. private string jJQOutGasFlowForecast_ = "";
  2326. /// <summary>
  2327. ///经济器出口烟气流量预测值 .4f Double
  2328. /// </summary>
  2329. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2330. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2331. public string JJQOutGasFlowForecast {
  2332. get { return jJQOutGasFlowForecast_; }
  2333. set {
  2334. jJQOutGasFlowForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2335. }
  2336. }
  2337. /// <summary>Field number for the "time" field.</summary>
  2338. public const int TimeFieldNumber = 25;
  2339. private string time_ = "";
  2340. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2341. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2342. public string Time {
  2343. get { return time_; }
  2344. set {
  2345. time_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2346. }
  2347. }
  2348. /// <summary>Field number for the "exception_status" field.</summary>
  2349. public const int ExceptionStatusFieldNumber = 26;
  2350. private string exceptionStatus_ = "";
  2351. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2352. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2353. public string ExceptionStatus {
  2354. get { return exceptionStatus_; }
  2355. set {
  2356. exceptionStatus_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  2357. }
  2358. }
  2359. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2360. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2361. public override bool Equals(object other) {
  2362. return Equals(other as JJQ);
  2363. }
  2364. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2365. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2366. public bool Equals(JJQ other) {
  2367. if (ReferenceEquals(other, null)) {
  2368. return false;
  2369. }
  2370. if (ReferenceEquals(other, this)) {
  2371. return true;
  2372. }
  2373. if (JJQInTemperature != other.JJQInTemperature) return false;
  2374. if (JJQInPressure != other.JJQInPressure) return false;
  2375. if (JJQInFlow != other.JJQInFlow) return false;
  2376. if (JJQOneavgTemperature != other.JJQOneavgTemperature) return false;
  2377. if (JJQOneavgPressure != other.JJQOneavgPressure) return false;
  2378. if (JJQOneavgFlow != other.JJQOneavgFlow) return false;
  2379. if (JJQTwoavgTemperature != other.JJQTwoavgTemperature) return false;
  2380. if (JJQTwoavgPressure != other.JJQTwoavgPressure) return false;
  2381. if (JJQTwoavgFlow != other.JJQTwoavgFlow) return false;
  2382. if (JJQThreeavgTemperature != other.JJQThreeavgTemperature) return false;
  2383. if (JJQThreeavgPressure != other.JJQThreeavgPressure) return false;
  2384. if (JJQThreeavgFlow != other.JJQThreeavgFlow) return false;
  2385. if (JJQOutTemperature != other.JJQOutTemperature) return false;
  2386. if (JJQOutPressure != other.JJQOutPressure) return false;
  2387. if (JJQOutFlow != other.JJQOutFlow) return false;
  2388. if (JJQInGasTemperature != other.JJQInGasTemperature) return false;
  2389. if (JJQInGasPressure != other.JJQInGasPressure) return false;
  2390. if (JJQInGasFlow != other.JJQInGasFlow) return false;
  2391. if (JJQOutGasTemperature != other.JJQOutGasTemperature) return false;
  2392. if (JJQOutGasPressure != other.JJQOutGasPressure) return false;
  2393. if (JJQOutGasFlow != other.JJQOutGasFlow) return false;
  2394. if (JJQOutGasTemperatureForecast != other.JJQOutGasTemperatureForecast) return false;
  2395. if (JJQOutGasPressureForecast != other.JJQOutGasPressureForecast) return false;
  2396. if (JJQOutGasFlowForecast != other.JJQOutGasFlowForecast) return false;
  2397. if (Time != other.Time) return false;
  2398. if (ExceptionStatus != other.ExceptionStatus) return false;
  2399. return Equals(_unknownFields, other._unknownFields);
  2400. }
  2401. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2402. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2403. public override int GetHashCode() {
  2404. int hash = 1;
  2405. if (JJQInTemperature.Length != 0) hash ^= JJQInTemperature.GetHashCode();
  2406. if (JJQInPressure.Length != 0) hash ^= JJQInPressure.GetHashCode();
  2407. if (JJQInFlow.Length != 0) hash ^= JJQInFlow.GetHashCode();
  2408. if (JJQOneavgTemperature.Length != 0) hash ^= JJQOneavgTemperature.GetHashCode();
  2409. if (JJQOneavgPressure.Length != 0) hash ^= JJQOneavgPressure.GetHashCode();
  2410. if (JJQOneavgFlow.Length != 0) hash ^= JJQOneavgFlow.GetHashCode();
  2411. if (JJQTwoavgTemperature.Length != 0) hash ^= JJQTwoavgTemperature.GetHashCode();
  2412. if (JJQTwoavgPressure.Length != 0) hash ^= JJQTwoavgPressure.GetHashCode();
  2413. if (JJQTwoavgFlow.Length != 0) hash ^= JJQTwoavgFlow.GetHashCode();
  2414. if (JJQThreeavgTemperature.Length != 0) hash ^= JJQThreeavgTemperature.GetHashCode();
  2415. if (JJQThreeavgPressure.Length != 0) hash ^= JJQThreeavgPressure.GetHashCode();
  2416. if (JJQThreeavgFlow.Length != 0) hash ^= JJQThreeavgFlow.GetHashCode();
  2417. if (JJQOutTemperature.Length != 0) hash ^= JJQOutTemperature.GetHashCode();
  2418. if (JJQOutPressure.Length != 0) hash ^= JJQOutPressure.GetHashCode();
  2419. if (JJQOutFlow.Length != 0) hash ^= JJQOutFlow.GetHashCode();
  2420. if (JJQInGasTemperature.Length != 0) hash ^= JJQInGasTemperature.GetHashCode();
  2421. if (JJQInGasPressure.Length != 0) hash ^= JJQInGasPressure.GetHashCode();
  2422. if (JJQInGasFlow.Length != 0) hash ^= JJQInGasFlow.GetHashCode();
  2423. if (JJQOutGasTemperature.Length != 0) hash ^= JJQOutGasTemperature.GetHashCode();
  2424. if (JJQOutGasPressure.Length != 0) hash ^= JJQOutGasPressure.GetHashCode();
  2425. if (JJQOutGasFlow.Length != 0) hash ^= JJQOutGasFlow.GetHashCode();
  2426. if (JJQOutGasTemperatureForecast.Length != 0) hash ^= JJQOutGasTemperatureForecast.GetHashCode();
  2427. if (JJQOutGasPressureForecast.Length != 0) hash ^= JJQOutGasPressureForecast.GetHashCode();
  2428. if (JJQOutGasFlowForecast.Length != 0) hash ^= JJQOutGasFlowForecast.GetHashCode();
  2429. if (Time.Length != 0) hash ^= Time.GetHashCode();
  2430. if (ExceptionStatus.Length != 0) hash ^= ExceptionStatus.GetHashCode();
  2431. if (_unknownFields != null) {
  2432. hash ^= _unknownFields.GetHashCode();
  2433. }
  2434. return hash;
  2435. }
  2436. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2437. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2438. public override string ToString() {
  2439. return pb::JsonFormatter.ToDiagnosticString(this);
  2440. }
  2441. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2442. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2443. public void WriteTo(pb::CodedOutputStream output) {
  2444. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  2445. output.WriteRawMessage(this);
  2446. #else
  2447. if (JJQInTemperature.Length != 0) {
  2448. output.WriteRawTag(10);
  2449. output.WriteString(JJQInTemperature);
  2450. }
  2451. if (JJQInPressure.Length != 0) {
  2452. output.WriteRawTag(18);
  2453. output.WriteString(JJQInPressure);
  2454. }
  2455. if (JJQInFlow.Length != 0) {
  2456. output.WriteRawTag(26);
  2457. output.WriteString(JJQInFlow);
  2458. }
  2459. if (JJQOneavgTemperature.Length != 0) {
  2460. output.WriteRawTag(34);
  2461. output.WriteString(JJQOneavgTemperature);
  2462. }
  2463. if (JJQOneavgPressure.Length != 0) {
  2464. output.WriteRawTag(42);
  2465. output.WriteString(JJQOneavgPressure);
  2466. }
  2467. if (JJQOneavgFlow.Length != 0) {
  2468. output.WriteRawTag(50);
  2469. output.WriteString(JJQOneavgFlow);
  2470. }
  2471. if (JJQTwoavgTemperature.Length != 0) {
  2472. output.WriteRawTag(58);
  2473. output.WriteString(JJQTwoavgTemperature);
  2474. }
  2475. if (JJQTwoavgPressure.Length != 0) {
  2476. output.WriteRawTag(66);
  2477. output.WriteString(JJQTwoavgPressure);
  2478. }
  2479. if (JJQTwoavgFlow.Length != 0) {
  2480. output.WriteRawTag(74);
  2481. output.WriteString(JJQTwoavgFlow);
  2482. }
  2483. if (JJQThreeavgTemperature.Length != 0) {
  2484. output.WriteRawTag(82);
  2485. output.WriteString(JJQThreeavgTemperature);
  2486. }
  2487. if (JJQThreeavgPressure.Length != 0) {
  2488. output.WriteRawTag(90);
  2489. output.WriteString(JJQThreeavgPressure);
  2490. }
  2491. if (JJQThreeavgFlow.Length != 0) {
  2492. output.WriteRawTag(98);
  2493. output.WriteString(JJQThreeavgFlow);
  2494. }
  2495. if (JJQOutTemperature.Length != 0) {
  2496. output.WriteRawTag(106);
  2497. output.WriteString(JJQOutTemperature);
  2498. }
  2499. if (JJQOutPressure.Length != 0) {
  2500. output.WriteRawTag(114);
  2501. output.WriteString(JJQOutPressure);
  2502. }
  2503. if (JJQOutFlow.Length != 0) {
  2504. output.WriteRawTag(122);
  2505. output.WriteString(JJQOutFlow);
  2506. }
  2507. if (JJQInGasTemperature.Length != 0) {
  2508. output.WriteRawTag(130, 1);
  2509. output.WriteString(JJQInGasTemperature);
  2510. }
  2511. if (JJQInGasPressure.Length != 0) {
  2512. output.WriteRawTag(138, 1);
  2513. output.WriteString(JJQInGasPressure);
  2514. }
  2515. if (JJQInGasFlow.Length != 0) {
  2516. output.WriteRawTag(146, 1);
  2517. output.WriteString(JJQInGasFlow);
  2518. }
  2519. if (JJQOutGasTemperature.Length != 0) {
  2520. output.WriteRawTag(154, 1);
  2521. output.WriteString(JJQOutGasTemperature);
  2522. }
  2523. if (JJQOutGasPressure.Length != 0) {
  2524. output.WriteRawTag(162, 1);
  2525. output.WriteString(JJQOutGasPressure);
  2526. }
  2527. if (JJQOutGasFlow.Length != 0) {
  2528. output.WriteRawTag(170, 1);
  2529. output.WriteString(JJQOutGasFlow);
  2530. }
  2531. if (JJQOutGasTemperatureForecast.Length != 0) {
  2532. output.WriteRawTag(178, 1);
  2533. output.WriteString(JJQOutGasTemperatureForecast);
  2534. }
  2535. if (JJQOutGasPressureForecast.Length != 0) {
  2536. output.WriteRawTag(186, 1);
  2537. output.WriteString(JJQOutGasPressureForecast);
  2538. }
  2539. if (JJQOutGasFlowForecast.Length != 0) {
  2540. output.WriteRawTag(194, 1);
  2541. output.WriteString(JJQOutGasFlowForecast);
  2542. }
  2543. if (Time.Length != 0) {
  2544. output.WriteRawTag(202, 1);
  2545. output.WriteString(Time);
  2546. }
  2547. if (ExceptionStatus.Length != 0) {
  2548. output.WriteRawTag(210, 1);
  2549. output.WriteString(ExceptionStatus);
  2550. }
  2551. if (_unknownFields != null) {
  2552. _unknownFields.WriteTo(output);
  2553. }
  2554. #endif
  2555. }
  2556. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  2557. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2558. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2559. void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
  2560. if (JJQInTemperature.Length != 0) {
  2561. output.WriteRawTag(10);
  2562. output.WriteString(JJQInTemperature);
  2563. }
  2564. if (JJQInPressure.Length != 0) {
  2565. output.WriteRawTag(18);
  2566. output.WriteString(JJQInPressure);
  2567. }
  2568. if (JJQInFlow.Length != 0) {
  2569. output.WriteRawTag(26);
  2570. output.WriteString(JJQInFlow);
  2571. }
  2572. if (JJQOneavgTemperature.Length != 0) {
  2573. output.WriteRawTag(34);
  2574. output.WriteString(JJQOneavgTemperature);
  2575. }
  2576. if (JJQOneavgPressure.Length != 0) {
  2577. output.WriteRawTag(42);
  2578. output.WriteString(JJQOneavgPressure);
  2579. }
  2580. if (JJQOneavgFlow.Length != 0) {
  2581. output.WriteRawTag(50);
  2582. output.WriteString(JJQOneavgFlow);
  2583. }
  2584. if (JJQTwoavgTemperature.Length != 0) {
  2585. output.WriteRawTag(58);
  2586. output.WriteString(JJQTwoavgTemperature);
  2587. }
  2588. if (JJQTwoavgPressure.Length != 0) {
  2589. output.WriteRawTag(66);
  2590. output.WriteString(JJQTwoavgPressure);
  2591. }
  2592. if (JJQTwoavgFlow.Length != 0) {
  2593. output.WriteRawTag(74);
  2594. output.WriteString(JJQTwoavgFlow);
  2595. }
  2596. if (JJQThreeavgTemperature.Length != 0) {
  2597. output.WriteRawTag(82);
  2598. output.WriteString(JJQThreeavgTemperature);
  2599. }
  2600. if (JJQThreeavgPressure.Length != 0) {
  2601. output.WriteRawTag(90);
  2602. output.WriteString(JJQThreeavgPressure);
  2603. }
  2604. if (JJQThreeavgFlow.Length != 0) {
  2605. output.WriteRawTag(98);
  2606. output.WriteString(JJQThreeavgFlow);
  2607. }
  2608. if (JJQOutTemperature.Length != 0) {
  2609. output.WriteRawTag(106);
  2610. output.WriteString(JJQOutTemperature);
  2611. }
  2612. if (JJQOutPressure.Length != 0) {
  2613. output.WriteRawTag(114);
  2614. output.WriteString(JJQOutPressure);
  2615. }
  2616. if (JJQOutFlow.Length != 0) {
  2617. output.WriteRawTag(122);
  2618. output.WriteString(JJQOutFlow);
  2619. }
  2620. if (JJQInGasTemperature.Length != 0) {
  2621. output.WriteRawTag(130, 1);
  2622. output.WriteString(JJQInGasTemperature);
  2623. }
  2624. if (JJQInGasPressure.Length != 0) {
  2625. output.WriteRawTag(138, 1);
  2626. output.WriteString(JJQInGasPressure);
  2627. }
  2628. if (JJQInGasFlow.Length != 0) {
  2629. output.WriteRawTag(146, 1);
  2630. output.WriteString(JJQInGasFlow);
  2631. }
  2632. if (JJQOutGasTemperature.Length != 0) {
  2633. output.WriteRawTag(154, 1);
  2634. output.WriteString(JJQOutGasTemperature);
  2635. }
  2636. if (JJQOutGasPressure.Length != 0) {
  2637. output.WriteRawTag(162, 1);
  2638. output.WriteString(JJQOutGasPressure);
  2639. }
  2640. if (JJQOutGasFlow.Length != 0) {
  2641. output.WriteRawTag(170, 1);
  2642. output.WriteString(JJQOutGasFlow);
  2643. }
  2644. if (JJQOutGasTemperatureForecast.Length != 0) {
  2645. output.WriteRawTag(178, 1);
  2646. output.WriteString(JJQOutGasTemperatureForecast);
  2647. }
  2648. if (JJQOutGasPressureForecast.Length != 0) {
  2649. output.WriteRawTag(186, 1);
  2650. output.WriteString(JJQOutGasPressureForecast);
  2651. }
  2652. if (JJQOutGasFlowForecast.Length != 0) {
  2653. output.WriteRawTag(194, 1);
  2654. output.WriteString(JJQOutGasFlowForecast);
  2655. }
  2656. if (Time.Length != 0) {
  2657. output.WriteRawTag(202, 1);
  2658. output.WriteString(Time);
  2659. }
  2660. if (ExceptionStatus.Length != 0) {
  2661. output.WriteRawTag(210, 1);
  2662. output.WriteString(ExceptionStatus);
  2663. }
  2664. if (_unknownFields != null) {
  2665. _unknownFields.WriteTo(ref output);
  2666. }
  2667. }
  2668. #endif
  2669. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2670. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2671. public int CalculateSize() {
  2672. int size = 0;
  2673. if (JJQInTemperature.Length != 0) {
  2674. size += 1 + pb::CodedOutputStream.ComputeStringSize(JJQInTemperature);
  2675. }
  2676. if (JJQInPressure.Length != 0) {
  2677. size += 1 + pb::CodedOutputStream.ComputeStringSize(JJQInPressure);
  2678. }
  2679. if (JJQInFlow.Length != 0) {
  2680. size += 1 + pb::CodedOutputStream.ComputeStringSize(JJQInFlow);
  2681. }
  2682. if (JJQOneavgTemperature.Length != 0) {
  2683. size += 1 + pb::CodedOutputStream.ComputeStringSize(JJQOneavgTemperature);
  2684. }
  2685. if (JJQOneavgPressure.Length != 0) {
  2686. size += 1 + pb::CodedOutputStream.ComputeStringSize(JJQOneavgPressure);
  2687. }
  2688. if (JJQOneavgFlow.Length != 0) {
  2689. size += 1 + pb::CodedOutputStream.ComputeStringSize(JJQOneavgFlow);
  2690. }
  2691. if (JJQTwoavgTemperature.Length != 0) {
  2692. size += 1 + pb::CodedOutputStream.ComputeStringSize(JJQTwoavgTemperature);
  2693. }
  2694. if (JJQTwoavgPressure.Length != 0) {
  2695. size += 1 + pb::CodedOutputStream.ComputeStringSize(JJQTwoavgPressure);
  2696. }
  2697. if (JJQTwoavgFlow.Length != 0) {
  2698. size += 1 + pb::CodedOutputStream.ComputeStringSize(JJQTwoavgFlow);
  2699. }
  2700. if (JJQThreeavgTemperature.Length != 0) {
  2701. size += 1 + pb::CodedOutputStream.ComputeStringSize(JJQThreeavgTemperature);
  2702. }
  2703. if (JJQThreeavgPressure.Length != 0) {
  2704. size += 1 + pb::CodedOutputStream.ComputeStringSize(JJQThreeavgPressure);
  2705. }
  2706. if (JJQThreeavgFlow.Length != 0) {
  2707. size += 1 + pb::CodedOutputStream.ComputeStringSize(JJQThreeavgFlow);
  2708. }
  2709. if (JJQOutTemperature.Length != 0) {
  2710. size += 1 + pb::CodedOutputStream.ComputeStringSize(JJQOutTemperature);
  2711. }
  2712. if (JJQOutPressure.Length != 0) {
  2713. size += 1 + pb::CodedOutputStream.ComputeStringSize(JJQOutPressure);
  2714. }
  2715. if (JJQOutFlow.Length != 0) {
  2716. size += 1 + pb::CodedOutputStream.ComputeStringSize(JJQOutFlow);
  2717. }
  2718. if (JJQInGasTemperature.Length != 0) {
  2719. size += 2 + pb::CodedOutputStream.ComputeStringSize(JJQInGasTemperature);
  2720. }
  2721. if (JJQInGasPressure.Length != 0) {
  2722. size += 2 + pb::CodedOutputStream.ComputeStringSize(JJQInGasPressure);
  2723. }
  2724. if (JJQInGasFlow.Length != 0) {
  2725. size += 2 + pb::CodedOutputStream.ComputeStringSize(JJQInGasFlow);
  2726. }
  2727. if (JJQOutGasTemperature.Length != 0) {
  2728. size += 2 + pb::CodedOutputStream.ComputeStringSize(JJQOutGasTemperature);
  2729. }
  2730. if (JJQOutGasPressure.Length != 0) {
  2731. size += 2 + pb::CodedOutputStream.ComputeStringSize(JJQOutGasPressure);
  2732. }
  2733. if (JJQOutGasFlow.Length != 0) {
  2734. size += 2 + pb::CodedOutputStream.ComputeStringSize(JJQOutGasFlow);
  2735. }
  2736. if (JJQOutGasTemperatureForecast.Length != 0) {
  2737. size += 2 + pb::CodedOutputStream.ComputeStringSize(JJQOutGasTemperatureForecast);
  2738. }
  2739. if (JJQOutGasPressureForecast.Length != 0) {
  2740. size += 2 + pb::CodedOutputStream.ComputeStringSize(JJQOutGasPressureForecast);
  2741. }
  2742. if (JJQOutGasFlowForecast.Length != 0) {
  2743. size += 2 + pb::CodedOutputStream.ComputeStringSize(JJQOutGasFlowForecast);
  2744. }
  2745. if (Time.Length != 0) {
  2746. size += 2 + pb::CodedOutputStream.ComputeStringSize(Time);
  2747. }
  2748. if (ExceptionStatus.Length != 0) {
  2749. size += 2 + pb::CodedOutputStream.ComputeStringSize(ExceptionStatus);
  2750. }
  2751. if (_unknownFields != null) {
  2752. size += _unknownFields.CalculateSize();
  2753. }
  2754. return size;
  2755. }
  2756. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2757. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2758. public void MergeFrom(JJQ other) {
  2759. if (other == null) {
  2760. return;
  2761. }
  2762. if (other.JJQInTemperature.Length != 0) {
  2763. JJQInTemperature = other.JJQInTemperature;
  2764. }
  2765. if (other.JJQInPressure.Length != 0) {
  2766. JJQInPressure = other.JJQInPressure;
  2767. }
  2768. if (other.JJQInFlow.Length != 0) {
  2769. JJQInFlow = other.JJQInFlow;
  2770. }
  2771. if (other.JJQOneavgTemperature.Length != 0) {
  2772. JJQOneavgTemperature = other.JJQOneavgTemperature;
  2773. }
  2774. if (other.JJQOneavgPressure.Length != 0) {
  2775. JJQOneavgPressure = other.JJQOneavgPressure;
  2776. }
  2777. if (other.JJQOneavgFlow.Length != 0) {
  2778. JJQOneavgFlow = other.JJQOneavgFlow;
  2779. }
  2780. if (other.JJQTwoavgTemperature.Length != 0) {
  2781. JJQTwoavgTemperature = other.JJQTwoavgTemperature;
  2782. }
  2783. if (other.JJQTwoavgPressure.Length != 0) {
  2784. JJQTwoavgPressure = other.JJQTwoavgPressure;
  2785. }
  2786. if (other.JJQTwoavgFlow.Length != 0) {
  2787. JJQTwoavgFlow = other.JJQTwoavgFlow;
  2788. }
  2789. if (other.JJQThreeavgTemperature.Length != 0) {
  2790. JJQThreeavgTemperature = other.JJQThreeavgTemperature;
  2791. }
  2792. if (other.JJQThreeavgPressure.Length != 0) {
  2793. JJQThreeavgPressure = other.JJQThreeavgPressure;
  2794. }
  2795. if (other.JJQThreeavgFlow.Length != 0) {
  2796. JJQThreeavgFlow = other.JJQThreeavgFlow;
  2797. }
  2798. if (other.JJQOutTemperature.Length != 0) {
  2799. JJQOutTemperature = other.JJQOutTemperature;
  2800. }
  2801. if (other.JJQOutPressure.Length != 0) {
  2802. JJQOutPressure = other.JJQOutPressure;
  2803. }
  2804. if (other.JJQOutFlow.Length != 0) {
  2805. JJQOutFlow = other.JJQOutFlow;
  2806. }
  2807. if (other.JJQInGasTemperature.Length != 0) {
  2808. JJQInGasTemperature = other.JJQInGasTemperature;
  2809. }
  2810. if (other.JJQInGasPressure.Length != 0) {
  2811. JJQInGasPressure = other.JJQInGasPressure;
  2812. }
  2813. if (other.JJQInGasFlow.Length != 0) {
  2814. JJQInGasFlow = other.JJQInGasFlow;
  2815. }
  2816. if (other.JJQOutGasTemperature.Length != 0) {
  2817. JJQOutGasTemperature = other.JJQOutGasTemperature;
  2818. }
  2819. if (other.JJQOutGasPressure.Length != 0) {
  2820. JJQOutGasPressure = other.JJQOutGasPressure;
  2821. }
  2822. if (other.JJQOutGasFlow.Length != 0) {
  2823. JJQOutGasFlow = other.JJQOutGasFlow;
  2824. }
  2825. if (other.JJQOutGasTemperatureForecast.Length != 0) {
  2826. JJQOutGasTemperatureForecast = other.JJQOutGasTemperatureForecast;
  2827. }
  2828. if (other.JJQOutGasPressureForecast.Length != 0) {
  2829. JJQOutGasPressureForecast = other.JJQOutGasPressureForecast;
  2830. }
  2831. if (other.JJQOutGasFlowForecast.Length != 0) {
  2832. JJQOutGasFlowForecast = other.JJQOutGasFlowForecast;
  2833. }
  2834. if (other.Time.Length != 0) {
  2835. Time = other.Time;
  2836. }
  2837. if (other.ExceptionStatus.Length != 0) {
  2838. ExceptionStatus = other.ExceptionStatus;
  2839. }
  2840. _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
  2841. }
  2842. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2843. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2844. public void MergeFrom(pb::CodedInputStream input) {
  2845. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  2846. input.ReadRawMessage(this);
  2847. #else
  2848. uint tag;
  2849. while ((tag = input.ReadTag()) != 0) {
  2850. switch(tag) {
  2851. default:
  2852. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
  2853. break;
  2854. case 10: {
  2855. JJQInTemperature = input.ReadString();
  2856. break;
  2857. }
  2858. case 18: {
  2859. JJQInPressure = input.ReadString();
  2860. break;
  2861. }
  2862. case 26: {
  2863. JJQInFlow = input.ReadString();
  2864. break;
  2865. }
  2866. case 34: {
  2867. JJQOneavgTemperature = input.ReadString();
  2868. break;
  2869. }
  2870. case 42: {
  2871. JJQOneavgPressure = input.ReadString();
  2872. break;
  2873. }
  2874. case 50: {
  2875. JJQOneavgFlow = input.ReadString();
  2876. break;
  2877. }
  2878. case 58: {
  2879. JJQTwoavgTemperature = input.ReadString();
  2880. break;
  2881. }
  2882. case 66: {
  2883. JJQTwoavgPressure = input.ReadString();
  2884. break;
  2885. }
  2886. case 74: {
  2887. JJQTwoavgFlow = input.ReadString();
  2888. break;
  2889. }
  2890. case 82: {
  2891. JJQThreeavgTemperature = input.ReadString();
  2892. break;
  2893. }
  2894. case 90: {
  2895. JJQThreeavgPressure = input.ReadString();
  2896. break;
  2897. }
  2898. case 98: {
  2899. JJQThreeavgFlow = input.ReadString();
  2900. break;
  2901. }
  2902. case 106: {
  2903. JJQOutTemperature = input.ReadString();
  2904. break;
  2905. }
  2906. case 114: {
  2907. JJQOutPressure = input.ReadString();
  2908. break;
  2909. }
  2910. case 122: {
  2911. JJQOutFlow = input.ReadString();
  2912. break;
  2913. }
  2914. case 130: {
  2915. JJQInGasTemperature = input.ReadString();
  2916. break;
  2917. }
  2918. case 138: {
  2919. JJQInGasPressure = input.ReadString();
  2920. break;
  2921. }
  2922. case 146: {
  2923. JJQInGasFlow = input.ReadString();
  2924. break;
  2925. }
  2926. case 154: {
  2927. JJQOutGasTemperature = input.ReadString();
  2928. break;
  2929. }
  2930. case 162: {
  2931. JJQOutGasPressure = input.ReadString();
  2932. break;
  2933. }
  2934. case 170: {
  2935. JJQOutGasFlow = input.ReadString();
  2936. break;
  2937. }
  2938. case 178: {
  2939. JJQOutGasTemperatureForecast = input.ReadString();
  2940. break;
  2941. }
  2942. case 186: {
  2943. JJQOutGasPressureForecast = input.ReadString();
  2944. break;
  2945. }
  2946. case 194: {
  2947. JJQOutGasFlowForecast = input.ReadString();
  2948. break;
  2949. }
  2950. case 202: {
  2951. Time = input.ReadString();
  2952. break;
  2953. }
  2954. case 210: {
  2955. ExceptionStatus = input.ReadString();
  2956. break;
  2957. }
  2958. }
  2959. }
  2960. #endif
  2961. }
  2962. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  2963. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  2964. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  2965. void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
  2966. uint tag;
  2967. while ((tag = input.ReadTag()) != 0) {
  2968. switch(tag) {
  2969. default:
  2970. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
  2971. break;
  2972. case 10: {
  2973. JJQInTemperature = input.ReadString();
  2974. break;
  2975. }
  2976. case 18: {
  2977. JJQInPressure = input.ReadString();
  2978. break;
  2979. }
  2980. case 26: {
  2981. JJQInFlow = input.ReadString();
  2982. break;
  2983. }
  2984. case 34: {
  2985. JJQOneavgTemperature = input.ReadString();
  2986. break;
  2987. }
  2988. case 42: {
  2989. JJQOneavgPressure = input.ReadString();
  2990. break;
  2991. }
  2992. case 50: {
  2993. JJQOneavgFlow = input.ReadString();
  2994. break;
  2995. }
  2996. case 58: {
  2997. JJQTwoavgTemperature = input.ReadString();
  2998. break;
  2999. }
  3000. case 66: {
  3001. JJQTwoavgPressure = input.ReadString();
  3002. break;
  3003. }
  3004. case 74: {
  3005. JJQTwoavgFlow = input.ReadString();
  3006. break;
  3007. }
  3008. case 82: {
  3009. JJQThreeavgTemperature = input.ReadString();
  3010. break;
  3011. }
  3012. case 90: {
  3013. JJQThreeavgPressure = input.ReadString();
  3014. break;
  3015. }
  3016. case 98: {
  3017. JJQThreeavgFlow = input.ReadString();
  3018. break;
  3019. }
  3020. case 106: {
  3021. JJQOutTemperature = input.ReadString();
  3022. break;
  3023. }
  3024. case 114: {
  3025. JJQOutPressure = input.ReadString();
  3026. break;
  3027. }
  3028. case 122: {
  3029. JJQOutFlow = input.ReadString();
  3030. break;
  3031. }
  3032. case 130: {
  3033. JJQInGasTemperature = input.ReadString();
  3034. break;
  3035. }
  3036. case 138: {
  3037. JJQInGasPressure = input.ReadString();
  3038. break;
  3039. }
  3040. case 146: {
  3041. JJQInGasFlow = input.ReadString();
  3042. break;
  3043. }
  3044. case 154: {
  3045. JJQOutGasTemperature = input.ReadString();
  3046. break;
  3047. }
  3048. case 162: {
  3049. JJQOutGasPressure = input.ReadString();
  3050. break;
  3051. }
  3052. case 170: {
  3053. JJQOutGasFlow = input.ReadString();
  3054. break;
  3055. }
  3056. case 178: {
  3057. JJQOutGasTemperatureForecast = input.ReadString();
  3058. break;
  3059. }
  3060. case 186: {
  3061. JJQOutGasPressureForecast = input.ReadString();
  3062. break;
  3063. }
  3064. case 194: {
  3065. JJQOutGasFlowForecast = input.ReadString();
  3066. break;
  3067. }
  3068. case 202: {
  3069. Time = input.ReadString();
  3070. break;
  3071. }
  3072. case 210: {
  3073. ExceptionStatus = input.ReadString();
  3074. break;
  3075. }
  3076. }
  3077. }
  3078. }
  3079. #endif
  3080. }
  3081. /// <summary>
  3082. ///上下锅筒
  3083. /// </summary>
  3084. public sealed partial class SXGG : pb::IMessage<SXGG>
  3085. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  3086. , pb::IBufferMessage
  3087. #endif
  3088. {
  3089. private static readonly pb::MessageParser<SXGG> _parser = new pb::MessageParser<SXGG>(() => new SXGG());
  3090. private pb::UnknownFieldSet _unknownFields;
  3091. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3092. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3093. public static pb::MessageParser<SXGG> Parser { get { return _parser; } }
  3094. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3095. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3096. public static pbr::MessageDescriptor Descriptor {
  3097. get { return global::Com.Xzzs.Boiler.Proto.MessageReflection.Descriptor.MessageTypes[4]; }
  3098. }
  3099. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3100. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3101. pbr::MessageDescriptor pb::IMessage.Descriptor {
  3102. get { return Descriptor; }
  3103. }
  3104. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3105. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3106. public SXGG() {
  3107. OnConstruction();
  3108. }
  3109. partial void OnConstruction();
  3110. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3111. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3112. public SXGG(SXGG other) : this() {
  3113. sGGWatertemperature_ = other.sGGWatertemperature_;
  3114. sGGSteamtemperature_ = other.sGGSteamtemperature_;
  3115. sGGPressure_ = other.sGGPressure_;
  3116. sGGWaterlevel_ = other.sGGWaterlevel_;
  3117. declineAvgTemperature_ = other.declineAvgTemperature_;
  3118. declineAvgPressure_ = other.declineAvgPressure_;
  3119. declineAvgFlow_ = other.declineAvgFlow_;
  3120. xGGTemperature_ = other.xGGTemperature_;
  3121. xGGPressure_ = other.xGGPressure_;
  3122. upAvgTemperature_ = other.upAvgTemperature_;
  3123. upAvgPressure_ = other.upAvgPressure_;
  3124. upAvgFlow_ = other.upAvgFlow_;
  3125. furnaceGasTemperature_ = other.furnaceGasTemperature_;
  3126. furnaceGasPressure_ = other.furnaceGasPressure_;
  3127. furnaceGasFlow_ = other.furnaceGasFlow_;
  3128. furnaceBackwallTemperature_ = other.furnaceBackwallTemperature_;
  3129. furnaceBackwallPressure_ = other.furnaceBackwallPressure_;
  3130. furnaceBackwallFlow_ = other.furnaceBackwallFlow_;
  3131. safetyvalveOperation_ = other.safetyvalveOperation_;
  3132. time_ = other.time_;
  3133. exceptionStatus_ = other.exceptionStatus_;
  3134. _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
  3135. }
  3136. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3137. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3138. public SXGG Clone() {
  3139. return new SXGG(this);
  3140. }
  3141. /// <summary>Field number for the "SGG_watertemperature" field.</summary>
  3142. public const int SGGWatertemperatureFieldNumber = 1;
  3143. private string sGGWatertemperature_ = "";
  3144. /// <summary>
  3145. ///上锅筒水温 .4f Double
  3146. /// </summary>
  3147. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3148. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3149. public string SGGWatertemperature {
  3150. get { return sGGWatertemperature_; }
  3151. set {
  3152. sGGWatertemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3153. }
  3154. }
  3155. /// <summary>Field number for the "SGG_steamtemperature" field.</summary>
  3156. public const int SGGSteamtemperatureFieldNumber = 2;
  3157. private string sGGSteamtemperature_ = "";
  3158. /// <summary>
  3159. ///上锅筒汽温 .4f Double
  3160. /// </summary>
  3161. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3162. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3163. public string SGGSteamtemperature {
  3164. get { return sGGSteamtemperature_; }
  3165. set {
  3166. sGGSteamtemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3167. }
  3168. }
  3169. /// <summary>Field number for the "SGG_pressure" field.</summary>
  3170. public const int SGGPressureFieldNumber = 3;
  3171. private string sGGPressure_ = "";
  3172. /// <summary>
  3173. ///上锅筒压力 .4f Double
  3174. /// </summary>
  3175. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3176. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3177. public string SGGPressure {
  3178. get { return sGGPressure_; }
  3179. set {
  3180. sGGPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3181. }
  3182. }
  3183. /// <summary>Field number for the "SGG_waterlevel" field.</summary>
  3184. public const int SGGWaterlevelFieldNumber = 4;
  3185. private string sGGWaterlevel_ = "";
  3186. /// <summary>
  3187. ///上锅筒水位 .4f Double
  3188. /// </summary>
  3189. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3190. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3191. public string SGGWaterlevel {
  3192. get { return sGGWaterlevel_; }
  3193. set {
  3194. sGGWaterlevel_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3195. }
  3196. }
  3197. /// <summary>Field number for the "decline_avg_temperature" field.</summary>
  3198. public const int DeclineAvgTemperatureFieldNumber = 5;
  3199. private string declineAvgTemperature_ = "";
  3200. /// <summary>
  3201. ///下降管平均温度 .4f Double
  3202. /// </summary>
  3203. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3204. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3205. public string DeclineAvgTemperature {
  3206. get { return declineAvgTemperature_; }
  3207. set {
  3208. declineAvgTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3209. }
  3210. }
  3211. /// <summary>Field number for the "decline_avg_pressure" field.</summary>
  3212. public const int DeclineAvgPressureFieldNumber = 6;
  3213. private string declineAvgPressure_ = "";
  3214. /// <summary>
  3215. ///下降管平均压力 .4f Double
  3216. /// </summary>
  3217. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3218. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3219. public string DeclineAvgPressure {
  3220. get { return declineAvgPressure_; }
  3221. set {
  3222. declineAvgPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3223. }
  3224. }
  3225. /// <summary>Field number for the "decline_avg_flow" field.</summary>
  3226. public const int DeclineAvgFlowFieldNumber = 7;
  3227. private string declineAvgFlow_ = "";
  3228. /// <summary>
  3229. ///下降管平均流量 .4f Double
  3230. /// </summary>
  3231. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3232. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3233. public string DeclineAvgFlow {
  3234. get { return declineAvgFlow_; }
  3235. set {
  3236. declineAvgFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3237. }
  3238. }
  3239. /// <summary>Field number for the "XGG_temperature" field.</summary>
  3240. public const int XGGTemperatureFieldNumber = 8;
  3241. private string xGGTemperature_ = "";
  3242. /// <summary>
  3243. ///下锅筒温度 .4f Double
  3244. /// </summary>
  3245. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3246. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3247. public string XGGTemperature {
  3248. get { return xGGTemperature_; }
  3249. set {
  3250. xGGTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3251. }
  3252. }
  3253. /// <summary>Field number for the "XGG_pressure" field.</summary>
  3254. public const int XGGPressureFieldNumber = 9;
  3255. private string xGGPressure_ = "";
  3256. /// <summary>
  3257. ///下锅筒压力 .4f Double
  3258. /// </summary>
  3259. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3260. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3261. public string XGGPressure {
  3262. get { return xGGPressure_; }
  3263. set {
  3264. xGGPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3265. }
  3266. }
  3267. /// <summary>Field number for the "up_avg_temperature" field.</summary>
  3268. public const int UpAvgTemperatureFieldNumber = 10;
  3269. private string upAvgTemperature_ = "";
  3270. /// <summary>
  3271. ///上升管平均温度 .4f Double
  3272. /// </summary>
  3273. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3274. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3275. public string UpAvgTemperature {
  3276. get { return upAvgTemperature_; }
  3277. set {
  3278. upAvgTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3279. }
  3280. }
  3281. /// <summary>Field number for the "up_avg_pressure" field.</summary>
  3282. public const int UpAvgPressureFieldNumber = 11;
  3283. private string upAvgPressure_ = "";
  3284. /// <summary>
  3285. ///上升管平均压力 .4f Double
  3286. /// </summary>
  3287. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3288. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3289. public string UpAvgPressure {
  3290. get { return upAvgPressure_; }
  3291. set {
  3292. upAvgPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3293. }
  3294. }
  3295. /// <summary>Field number for the "up_avg_flow" field.</summary>
  3296. public const int UpAvgFlowFieldNumber = 12;
  3297. private string upAvgFlow_ = "";
  3298. /// <summary>
  3299. ///上升管平均流量 .4f Double
  3300. /// </summary>
  3301. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3302. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3303. public string UpAvgFlow {
  3304. get { return upAvgFlow_; }
  3305. set {
  3306. upAvgFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3307. }
  3308. }
  3309. /// <summary>Field number for the "furnace_gas_temperature" field.</summary>
  3310. public const int FurnaceGasTemperatureFieldNumber = 13;
  3311. private string furnaceGasTemperature_ = "";
  3312. /// <summary>
  3313. ///炉膛烟气温度 .4f Double
  3314. /// </summary>
  3315. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3316. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3317. public string FurnaceGasTemperature {
  3318. get { return furnaceGasTemperature_; }
  3319. set {
  3320. furnaceGasTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3321. }
  3322. }
  3323. /// <summary>Field number for the "furnace_gas_pressure" field.</summary>
  3324. public const int FurnaceGasPressureFieldNumber = 14;
  3325. private string furnaceGasPressure_ = "";
  3326. /// <summary>
  3327. ///炉膛烟气压力 .4f Double
  3328. /// </summary>
  3329. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3330. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3331. public string FurnaceGasPressure {
  3332. get { return furnaceGasPressure_; }
  3333. set {
  3334. furnaceGasPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3335. }
  3336. }
  3337. /// <summary>Field number for the "furnace_gas_flow" field.</summary>
  3338. public const int FurnaceGasFlowFieldNumber = 15;
  3339. private string furnaceGasFlow_ = "";
  3340. /// <summary>
  3341. ///炉膛烟气流量 .4f Double
  3342. /// </summary>
  3343. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3344. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3345. public string FurnaceGasFlow {
  3346. get { return furnaceGasFlow_; }
  3347. set {
  3348. furnaceGasFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3349. }
  3350. }
  3351. /// <summary>Field number for the "furnace_backwall_temperature" field.</summary>
  3352. public const int FurnaceBackwallTemperatureFieldNumber = 16;
  3353. private string furnaceBackwallTemperature_ = "";
  3354. /// <summary>
  3355. ///炉膛后壁烟气温度 .4f Double
  3356. /// </summary>
  3357. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3358. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3359. public string FurnaceBackwallTemperature {
  3360. get { return furnaceBackwallTemperature_; }
  3361. set {
  3362. furnaceBackwallTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3363. }
  3364. }
  3365. /// <summary>Field number for the "furnace_backwall_pressure" field.</summary>
  3366. public const int FurnaceBackwallPressureFieldNumber = 17;
  3367. private string furnaceBackwallPressure_ = "";
  3368. /// <summary>
  3369. ///炉膛后壁烟气压力 .4f Double
  3370. /// </summary>
  3371. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3372. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3373. public string FurnaceBackwallPressure {
  3374. get { return furnaceBackwallPressure_; }
  3375. set {
  3376. furnaceBackwallPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3377. }
  3378. }
  3379. /// <summary>Field number for the "furnace_backwall_flow" field.</summary>
  3380. public const int FurnaceBackwallFlowFieldNumber = 18;
  3381. private string furnaceBackwallFlow_ = "";
  3382. /// <summary>
  3383. ///炉膛后壁烟气流量 .4f Double
  3384. /// </summary>
  3385. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3386. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3387. public string FurnaceBackwallFlow {
  3388. get { return furnaceBackwallFlow_; }
  3389. set {
  3390. furnaceBackwallFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3391. }
  3392. }
  3393. /// <summary>Field number for the "safetyvalve_operation" field.</summary>
  3394. public const int SafetyvalveOperationFieldNumber = 19;
  3395. private string safetyvalveOperation_ = "";
  3396. /// <summary>
  3397. ///安全阀是否起跳 0/1 boolean
  3398. /// </summary>
  3399. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3400. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3401. public string SafetyvalveOperation {
  3402. get { return safetyvalveOperation_; }
  3403. set {
  3404. safetyvalveOperation_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3405. }
  3406. }
  3407. /// <summary>Field number for the "time" field.</summary>
  3408. public const int TimeFieldNumber = 20;
  3409. private string time_ = "";
  3410. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3411. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3412. public string Time {
  3413. get { return time_; }
  3414. set {
  3415. time_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3416. }
  3417. }
  3418. /// <summary>Field number for the "exception_status" field.</summary>
  3419. public const int ExceptionStatusFieldNumber = 21;
  3420. private string exceptionStatus_ = "";
  3421. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3422. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3423. public string ExceptionStatus {
  3424. get { return exceptionStatus_; }
  3425. set {
  3426. exceptionStatus_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  3427. }
  3428. }
  3429. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3430. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3431. public override bool Equals(object other) {
  3432. return Equals(other as SXGG);
  3433. }
  3434. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3435. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3436. public bool Equals(SXGG other) {
  3437. if (ReferenceEquals(other, null)) {
  3438. return false;
  3439. }
  3440. if (ReferenceEquals(other, this)) {
  3441. return true;
  3442. }
  3443. if (SGGWatertemperature != other.SGGWatertemperature) return false;
  3444. if (SGGSteamtemperature != other.SGGSteamtemperature) return false;
  3445. if (SGGPressure != other.SGGPressure) return false;
  3446. if (SGGWaterlevel != other.SGGWaterlevel) return false;
  3447. if (DeclineAvgTemperature != other.DeclineAvgTemperature) return false;
  3448. if (DeclineAvgPressure != other.DeclineAvgPressure) return false;
  3449. if (DeclineAvgFlow != other.DeclineAvgFlow) return false;
  3450. if (XGGTemperature != other.XGGTemperature) return false;
  3451. if (XGGPressure != other.XGGPressure) return false;
  3452. if (UpAvgTemperature != other.UpAvgTemperature) return false;
  3453. if (UpAvgPressure != other.UpAvgPressure) return false;
  3454. if (UpAvgFlow != other.UpAvgFlow) return false;
  3455. if (FurnaceGasTemperature != other.FurnaceGasTemperature) return false;
  3456. if (FurnaceGasPressure != other.FurnaceGasPressure) return false;
  3457. if (FurnaceGasFlow != other.FurnaceGasFlow) return false;
  3458. if (FurnaceBackwallTemperature != other.FurnaceBackwallTemperature) return false;
  3459. if (FurnaceBackwallPressure != other.FurnaceBackwallPressure) return false;
  3460. if (FurnaceBackwallFlow != other.FurnaceBackwallFlow) return false;
  3461. if (SafetyvalveOperation != other.SafetyvalveOperation) return false;
  3462. if (Time != other.Time) return false;
  3463. if (ExceptionStatus != other.ExceptionStatus) return false;
  3464. return Equals(_unknownFields, other._unknownFields);
  3465. }
  3466. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3467. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3468. public override int GetHashCode() {
  3469. int hash = 1;
  3470. if (SGGWatertemperature.Length != 0) hash ^= SGGWatertemperature.GetHashCode();
  3471. if (SGGSteamtemperature.Length != 0) hash ^= SGGSteamtemperature.GetHashCode();
  3472. if (SGGPressure.Length != 0) hash ^= SGGPressure.GetHashCode();
  3473. if (SGGWaterlevel.Length != 0) hash ^= SGGWaterlevel.GetHashCode();
  3474. if (DeclineAvgTemperature.Length != 0) hash ^= DeclineAvgTemperature.GetHashCode();
  3475. if (DeclineAvgPressure.Length != 0) hash ^= DeclineAvgPressure.GetHashCode();
  3476. if (DeclineAvgFlow.Length != 0) hash ^= DeclineAvgFlow.GetHashCode();
  3477. if (XGGTemperature.Length != 0) hash ^= XGGTemperature.GetHashCode();
  3478. if (XGGPressure.Length != 0) hash ^= XGGPressure.GetHashCode();
  3479. if (UpAvgTemperature.Length != 0) hash ^= UpAvgTemperature.GetHashCode();
  3480. if (UpAvgPressure.Length != 0) hash ^= UpAvgPressure.GetHashCode();
  3481. if (UpAvgFlow.Length != 0) hash ^= UpAvgFlow.GetHashCode();
  3482. if (FurnaceGasTemperature.Length != 0) hash ^= FurnaceGasTemperature.GetHashCode();
  3483. if (FurnaceGasPressure.Length != 0) hash ^= FurnaceGasPressure.GetHashCode();
  3484. if (FurnaceGasFlow.Length != 0) hash ^= FurnaceGasFlow.GetHashCode();
  3485. if (FurnaceBackwallTemperature.Length != 0) hash ^= FurnaceBackwallTemperature.GetHashCode();
  3486. if (FurnaceBackwallPressure.Length != 0) hash ^= FurnaceBackwallPressure.GetHashCode();
  3487. if (FurnaceBackwallFlow.Length != 0) hash ^= FurnaceBackwallFlow.GetHashCode();
  3488. if (SafetyvalveOperation.Length != 0) hash ^= SafetyvalveOperation.GetHashCode();
  3489. if (Time.Length != 0) hash ^= Time.GetHashCode();
  3490. if (ExceptionStatus.Length != 0) hash ^= ExceptionStatus.GetHashCode();
  3491. if (_unknownFields != null) {
  3492. hash ^= _unknownFields.GetHashCode();
  3493. }
  3494. return hash;
  3495. }
  3496. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3497. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3498. public override string ToString() {
  3499. return pb::JsonFormatter.ToDiagnosticString(this);
  3500. }
  3501. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3502. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3503. public void WriteTo(pb::CodedOutputStream output) {
  3504. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  3505. output.WriteRawMessage(this);
  3506. #else
  3507. if (SGGWatertemperature.Length != 0) {
  3508. output.WriteRawTag(10);
  3509. output.WriteString(SGGWatertemperature);
  3510. }
  3511. if (SGGSteamtemperature.Length != 0) {
  3512. output.WriteRawTag(18);
  3513. output.WriteString(SGGSteamtemperature);
  3514. }
  3515. if (SGGPressure.Length != 0) {
  3516. output.WriteRawTag(26);
  3517. output.WriteString(SGGPressure);
  3518. }
  3519. if (SGGWaterlevel.Length != 0) {
  3520. output.WriteRawTag(34);
  3521. output.WriteString(SGGWaterlevel);
  3522. }
  3523. if (DeclineAvgTemperature.Length != 0) {
  3524. output.WriteRawTag(42);
  3525. output.WriteString(DeclineAvgTemperature);
  3526. }
  3527. if (DeclineAvgPressure.Length != 0) {
  3528. output.WriteRawTag(50);
  3529. output.WriteString(DeclineAvgPressure);
  3530. }
  3531. if (DeclineAvgFlow.Length != 0) {
  3532. output.WriteRawTag(58);
  3533. output.WriteString(DeclineAvgFlow);
  3534. }
  3535. if (XGGTemperature.Length != 0) {
  3536. output.WriteRawTag(66);
  3537. output.WriteString(XGGTemperature);
  3538. }
  3539. if (XGGPressure.Length != 0) {
  3540. output.WriteRawTag(74);
  3541. output.WriteString(XGGPressure);
  3542. }
  3543. if (UpAvgTemperature.Length != 0) {
  3544. output.WriteRawTag(82);
  3545. output.WriteString(UpAvgTemperature);
  3546. }
  3547. if (UpAvgPressure.Length != 0) {
  3548. output.WriteRawTag(90);
  3549. output.WriteString(UpAvgPressure);
  3550. }
  3551. if (UpAvgFlow.Length != 0) {
  3552. output.WriteRawTag(98);
  3553. output.WriteString(UpAvgFlow);
  3554. }
  3555. if (FurnaceGasTemperature.Length != 0) {
  3556. output.WriteRawTag(106);
  3557. output.WriteString(FurnaceGasTemperature);
  3558. }
  3559. if (FurnaceGasPressure.Length != 0) {
  3560. output.WriteRawTag(114);
  3561. output.WriteString(FurnaceGasPressure);
  3562. }
  3563. if (FurnaceGasFlow.Length != 0) {
  3564. output.WriteRawTag(122);
  3565. output.WriteString(FurnaceGasFlow);
  3566. }
  3567. if (FurnaceBackwallTemperature.Length != 0) {
  3568. output.WriteRawTag(130, 1);
  3569. output.WriteString(FurnaceBackwallTemperature);
  3570. }
  3571. if (FurnaceBackwallPressure.Length != 0) {
  3572. output.WriteRawTag(138, 1);
  3573. output.WriteString(FurnaceBackwallPressure);
  3574. }
  3575. if (FurnaceBackwallFlow.Length != 0) {
  3576. output.WriteRawTag(146, 1);
  3577. output.WriteString(FurnaceBackwallFlow);
  3578. }
  3579. if (SafetyvalveOperation.Length != 0) {
  3580. output.WriteRawTag(154, 1);
  3581. output.WriteString(SafetyvalveOperation);
  3582. }
  3583. if (Time.Length != 0) {
  3584. output.WriteRawTag(162, 1);
  3585. output.WriteString(Time);
  3586. }
  3587. if (ExceptionStatus.Length != 0) {
  3588. output.WriteRawTag(170, 1);
  3589. output.WriteString(ExceptionStatus);
  3590. }
  3591. if (_unknownFields != null) {
  3592. _unknownFields.WriteTo(output);
  3593. }
  3594. #endif
  3595. }
  3596. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  3597. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3598. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3599. void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
  3600. if (SGGWatertemperature.Length != 0) {
  3601. output.WriteRawTag(10);
  3602. output.WriteString(SGGWatertemperature);
  3603. }
  3604. if (SGGSteamtemperature.Length != 0) {
  3605. output.WriteRawTag(18);
  3606. output.WriteString(SGGSteamtemperature);
  3607. }
  3608. if (SGGPressure.Length != 0) {
  3609. output.WriteRawTag(26);
  3610. output.WriteString(SGGPressure);
  3611. }
  3612. if (SGGWaterlevel.Length != 0) {
  3613. output.WriteRawTag(34);
  3614. output.WriteString(SGGWaterlevel);
  3615. }
  3616. if (DeclineAvgTemperature.Length != 0) {
  3617. output.WriteRawTag(42);
  3618. output.WriteString(DeclineAvgTemperature);
  3619. }
  3620. if (DeclineAvgPressure.Length != 0) {
  3621. output.WriteRawTag(50);
  3622. output.WriteString(DeclineAvgPressure);
  3623. }
  3624. if (DeclineAvgFlow.Length != 0) {
  3625. output.WriteRawTag(58);
  3626. output.WriteString(DeclineAvgFlow);
  3627. }
  3628. if (XGGTemperature.Length != 0) {
  3629. output.WriteRawTag(66);
  3630. output.WriteString(XGGTemperature);
  3631. }
  3632. if (XGGPressure.Length != 0) {
  3633. output.WriteRawTag(74);
  3634. output.WriteString(XGGPressure);
  3635. }
  3636. if (UpAvgTemperature.Length != 0) {
  3637. output.WriteRawTag(82);
  3638. output.WriteString(UpAvgTemperature);
  3639. }
  3640. if (UpAvgPressure.Length != 0) {
  3641. output.WriteRawTag(90);
  3642. output.WriteString(UpAvgPressure);
  3643. }
  3644. if (UpAvgFlow.Length != 0) {
  3645. output.WriteRawTag(98);
  3646. output.WriteString(UpAvgFlow);
  3647. }
  3648. if (FurnaceGasTemperature.Length != 0) {
  3649. output.WriteRawTag(106);
  3650. output.WriteString(FurnaceGasTemperature);
  3651. }
  3652. if (FurnaceGasPressure.Length != 0) {
  3653. output.WriteRawTag(114);
  3654. output.WriteString(FurnaceGasPressure);
  3655. }
  3656. if (FurnaceGasFlow.Length != 0) {
  3657. output.WriteRawTag(122);
  3658. output.WriteString(FurnaceGasFlow);
  3659. }
  3660. if (FurnaceBackwallTemperature.Length != 0) {
  3661. output.WriteRawTag(130, 1);
  3662. output.WriteString(FurnaceBackwallTemperature);
  3663. }
  3664. if (FurnaceBackwallPressure.Length != 0) {
  3665. output.WriteRawTag(138, 1);
  3666. output.WriteString(FurnaceBackwallPressure);
  3667. }
  3668. if (FurnaceBackwallFlow.Length != 0) {
  3669. output.WriteRawTag(146, 1);
  3670. output.WriteString(FurnaceBackwallFlow);
  3671. }
  3672. if (SafetyvalveOperation.Length != 0) {
  3673. output.WriteRawTag(154, 1);
  3674. output.WriteString(SafetyvalveOperation);
  3675. }
  3676. if (Time.Length != 0) {
  3677. output.WriteRawTag(162, 1);
  3678. output.WriteString(Time);
  3679. }
  3680. if (ExceptionStatus.Length != 0) {
  3681. output.WriteRawTag(170, 1);
  3682. output.WriteString(ExceptionStatus);
  3683. }
  3684. if (_unknownFields != null) {
  3685. _unknownFields.WriteTo(ref output);
  3686. }
  3687. }
  3688. #endif
  3689. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3690. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3691. public int CalculateSize() {
  3692. int size = 0;
  3693. if (SGGWatertemperature.Length != 0) {
  3694. size += 1 + pb::CodedOutputStream.ComputeStringSize(SGGWatertemperature);
  3695. }
  3696. if (SGGSteamtemperature.Length != 0) {
  3697. size += 1 + pb::CodedOutputStream.ComputeStringSize(SGGSteamtemperature);
  3698. }
  3699. if (SGGPressure.Length != 0) {
  3700. size += 1 + pb::CodedOutputStream.ComputeStringSize(SGGPressure);
  3701. }
  3702. if (SGGWaterlevel.Length != 0) {
  3703. size += 1 + pb::CodedOutputStream.ComputeStringSize(SGGWaterlevel);
  3704. }
  3705. if (DeclineAvgTemperature.Length != 0) {
  3706. size += 1 + pb::CodedOutputStream.ComputeStringSize(DeclineAvgTemperature);
  3707. }
  3708. if (DeclineAvgPressure.Length != 0) {
  3709. size += 1 + pb::CodedOutputStream.ComputeStringSize(DeclineAvgPressure);
  3710. }
  3711. if (DeclineAvgFlow.Length != 0) {
  3712. size += 1 + pb::CodedOutputStream.ComputeStringSize(DeclineAvgFlow);
  3713. }
  3714. if (XGGTemperature.Length != 0) {
  3715. size += 1 + pb::CodedOutputStream.ComputeStringSize(XGGTemperature);
  3716. }
  3717. if (XGGPressure.Length != 0) {
  3718. size += 1 + pb::CodedOutputStream.ComputeStringSize(XGGPressure);
  3719. }
  3720. if (UpAvgTemperature.Length != 0) {
  3721. size += 1 + pb::CodedOutputStream.ComputeStringSize(UpAvgTemperature);
  3722. }
  3723. if (UpAvgPressure.Length != 0) {
  3724. size += 1 + pb::CodedOutputStream.ComputeStringSize(UpAvgPressure);
  3725. }
  3726. if (UpAvgFlow.Length != 0) {
  3727. size += 1 + pb::CodedOutputStream.ComputeStringSize(UpAvgFlow);
  3728. }
  3729. if (FurnaceGasTemperature.Length != 0) {
  3730. size += 1 + pb::CodedOutputStream.ComputeStringSize(FurnaceGasTemperature);
  3731. }
  3732. if (FurnaceGasPressure.Length != 0) {
  3733. size += 1 + pb::CodedOutputStream.ComputeStringSize(FurnaceGasPressure);
  3734. }
  3735. if (FurnaceGasFlow.Length != 0) {
  3736. size += 1 + pb::CodedOutputStream.ComputeStringSize(FurnaceGasFlow);
  3737. }
  3738. if (FurnaceBackwallTemperature.Length != 0) {
  3739. size += 2 + pb::CodedOutputStream.ComputeStringSize(FurnaceBackwallTemperature);
  3740. }
  3741. if (FurnaceBackwallPressure.Length != 0) {
  3742. size += 2 + pb::CodedOutputStream.ComputeStringSize(FurnaceBackwallPressure);
  3743. }
  3744. if (FurnaceBackwallFlow.Length != 0) {
  3745. size += 2 + pb::CodedOutputStream.ComputeStringSize(FurnaceBackwallFlow);
  3746. }
  3747. if (SafetyvalveOperation.Length != 0) {
  3748. size += 2 + pb::CodedOutputStream.ComputeStringSize(SafetyvalveOperation);
  3749. }
  3750. if (Time.Length != 0) {
  3751. size += 2 + pb::CodedOutputStream.ComputeStringSize(Time);
  3752. }
  3753. if (ExceptionStatus.Length != 0) {
  3754. size += 2 + pb::CodedOutputStream.ComputeStringSize(ExceptionStatus);
  3755. }
  3756. if (_unknownFields != null) {
  3757. size += _unknownFields.CalculateSize();
  3758. }
  3759. return size;
  3760. }
  3761. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3762. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3763. public void MergeFrom(SXGG other) {
  3764. if (other == null) {
  3765. return;
  3766. }
  3767. if (other.SGGWatertemperature.Length != 0) {
  3768. SGGWatertemperature = other.SGGWatertemperature;
  3769. }
  3770. if (other.SGGSteamtemperature.Length != 0) {
  3771. SGGSteamtemperature = other.SGGSteamtemperature;
  3772. }
  3773. if (other.SGGPressure.Length != 0) {
  3774. SGGPressure = other.SGGPressure;
  3775. }
  3776. if (other.SGGWaterlevel.Length != 0) {
  3777. SGGWaterlevel = other.SGGWaterlevel;
  3778. }
  3779. if (other.DeclineAvgTemperature.Length != 0) {
  3780. DeclineAvgTemperature = other.DeclineAvgTemperature;
  3781. }
  3782. if (other.DeclineAvgPressure.Length != 0) {
  3783. DeclineAvgPressure = other.DeclineAvgPressure;
  3784. }
  3785. if (other.DeclineAvgFlow.Length != 0) {
  3786. DeclineAvgFlow = other.DeclineAvgFlow;
  3787. }
  3788. if (other.XGGTemperature.Length != 0) {
  3789. XGGTemperature = other.XGGTemperature;
  3790. }
  3791. if (other.XGGPressure.Length != 0) {
  3792. XGGPressure = other.XGGPressure;
  3793. }
  3794. if (other.UpAvgTemperature.Length != 0) {
  3795. UpAvgTemperature = other.UpAvgTemperature;
  3796. }
  3797. if (other.UpAvgPressure.Length != 0) {
  3798. UpAvgPressure = other.UpAvgPressure;
  3799. }
  3800. if (other.UpAvgFlow.Length != 0) {
  3801. UpAvgFlow = other.UpAvgFlow;
  3802. }
  3803. if (other.FurnaceGasTemperature.Length != 0) {
  3804. FurnaceGasTemperature = other.FurnaceGasTemperature;
  3805. }
  3806. if (other.FurnaceGasPressure.Length != 0) {
  3807. FurnaceGasPressure = other.FurnaceGasPressure;
  3808. }
  3809. if (other.FurnaceGasFlow.Length != 0) {
  3810. FurnaceGasFlow = other.FurnaceGasFlow;
  3811. }
  3812. if (other.FurnaceBackwallTemperature.Length != 0) {
  3813. FurnaceBackwallTemperature = other.FurnaceBackwallTemperature;
  3814. }
  3815. if (other.FurnaceBackwallPressure.Length != 0) {
  3816. FurnaceBackwallPressure = other.FurnaceBackwallPressure;
  3817. }
  3818. if (other.FurnaceBackwallFlow.Length != 0) {
  3819. FurnaceBackwallFlow = other.FurnaceBackwallFlow;
  3820. }
  3821. if (other.SafetyvalveOperation.Length != 0) {
  3822. SafetyvalveOperation = other.SafetyvalveOperation;
  3823. }
  3824. if (other.Time.Length != 0) {
  3825. Time = other.Time;
  3826. }
  3827. if (other.ExceptionStatus.Length != 0) {
  3828. ExceptionStatus = other.ExceptionStatus;
  3829. }
  3830. _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
  3831. }
  3832. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3833. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3834. public void MergeFrom(pb::CodedInputStream input) {
  3835. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  3836. input.ReadRawMessage(this);
  3837. #else
  3838. uint tag;
  3839. while ((tag = input.ReadTag()) != 0) {
  3840. switch(tag) {
  3841. default:
  3842. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
  3843. break;
  3844. case 10: {
  3845. SGGWatertemperature = input.ReadString();
  3846. break;
  3847. }
  3848. case 18: {
  3849. SGGSteamtemperature = input.ReadString();
  3850. break;
  3851. }
  3852. case 26: {
  3853. SGGPressure = input.ReadString();
  3854. break;
  3855. }
  3856. case 34: {
  3857. SGGWaterlevel = input.ReadString();
  3858. break;
  3859. }
  3860. case 42: {
  3861. DeclineAvgTemperature = input.ReadString();
  3862. break;
  3863. }
  3864. case 50: {
  3865. DeclineAvgPressure = input.ReadString();
  3866. break;
  3867. }
  3868. case 58: {
  3869. DeclineAvgFlow = input.ReadString();
  3870. break;
  3871. }
  3872. case 66: {
  3873. XGGTemperature = input.ReadString();
  3874. break;
  3875. }
  3876. case 74: {
  3877. XGGPressure = input.ReadString();
  3878. break;
  3879. }
  3880. case 82: {
  3881. UpAvgTemperature = input.ReadString();
  3882. break;
  3883. }
  3884. case 90: {
  3885. UpAvgPressure = input.ReadString();
  3886. break;
  3887. }
  3888. case 98: {
  3889. UpAvgFlow = input.ReadString();
  3890. break;
  3891. }
  3892. case 106: {
  3893. FurnaceGasTemperature = input.ReadString();
  3894. break;
  3895. }
  3896. case 114: {
  3897. FurnaceGasPressure = input.ReadString();
  3898. break;
  3899. }
  3900. case 122: {
  3901. FurnaceGasFlow = input.ReadString();
  3902. break;
  3903. }
  3904. case 130: {
  3905. FurnaceBackwallTemperature = input.ReadString();
  3906. break;
  3907. }
  3908. case 138: {
  3909. FurnaceBackwallPressure = input.ReadString();
  3910. break;
  3911. }
  3912. case 146: {
  3913. FurnaceBackwallFlow = input.ReadString();
  3914. break;
  3915. }
  3916. case 154: {
  3917. SafetyvalveOperation = input.ReadString();
  3918. break;
  3919. }
  3920. case 162: {
  3921. Time = input.ReadString();
  3922. break;
  3923. }
  3924. case 170: {
  3925. ExceptionStatus = input.ReadString();
  3926. break;
  3927. }
  3928. }
  3929. }
  3930. #endif
  3931. }
  3932. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  3933. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  3934. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  3935. void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
  3936. uint tag;
  3937. while ((tag = input.ReadTag()) != 0) {
  3938. switch(tag) {
  3939. default:
  3940. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
  3941. break;
  3942. case 10: {
  3943. SGGWatertemperature = input.ReadString();
  3944. break;
  3945. }
  3946. case 18: {
  3947. SGGSteamtemperature = input.ReadString();
  3948. break;
  3949. }
  3950. case 26: {
  3951. SGGPressure = input.ReadString();
  3952. break;
  3953. }
  3954. case 34: {
  3955. SGGWaterlevel = input.ReadString();
  3956. break;
  3957. }
  3958. case 42: {
  3959. DeclineAvgTemperature = input.ReadString();
  3960. break;
  3961. }
  3962. case 50: {
  3963. DeclineAvgPressure = input.ReadString();
  3964. break;
  3965. }
  3966. case 58: {
  3967. DeclineAvgFlow = input.ReadString();
  3968. break;
  3969. }
  3970. case 66: {
  3971. XGGTemperature = input.ReadString();
  3972. break;
  3973. }
  3974. case 74: {
  3975. XGGPressure = input.ReadString();
  3976. break;
  3977. }
  3978. case 82: {
  3979. UpAvgTemperature = input.ReadString();
  3980. break;
  3981. }
  3982. case 90: {
  3983. UpAvgPressure = input.ReadString();
  3984. break;
  3985. }
  3986. case 98: {
  3987. UpAvgFlow = input.ReadString();
  3988. break;
  3989. }
  3990. case 106: {
  3991. FurnaceGasTemperature = input.ReadString();
  3992. break;
  3993. }
  3994. case 114: {
  3995. FurnaceGasPressure = input.ReadString();
  3996. break;
  3997. }
  3998. case 122: {
  3999. FurnaceGasFlow = input.ReadString();
  4000. break;
  4001. }
  4002. case 130: {
  4003. FurnaceBackwallTemperature = input.ReadString();
  4004. break;
  4005. }
  4006. case 138: {
  4007. FurnaceBackwallPressure = input.ReadString();
  4008. break;
  4009. }
  4010. case 146: {
  4011. FurnaceBackwallFlow = input.ReadString();
  4012. break;
  4013. }
  4014. case 154: {
  4015. SafetyvalveOperation = input.ReadString();
  4016. break;
  4017. }
  4018. case 162: {
  4019. Time = input.ReadString();
  4020. break;
  4021. }
  4022. case 170: {
  4023. ExceptionStatus = input.ReadString();
  4024. break;
  4025. }
  4026. }
  4027. }
  4028. }
  4029. #endif
  4030. }
  4031. /// <summary>
  4032. ///过热器
  4033. /// </summary>
  4034. public sealed partial class GRQ : pb::IMessage<GRQ>
  4035. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  4036. , pb::IBufferMessage
  4037. #endif
  4038. {
  4039. private static readonly pb::MessageParser<GRQ> _parser = new pb::MessageParser<GRQ>(() => new GRQ());
  4040. private pb::UnknownFieldSet _unknownFields;
  4041. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4042. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4043. public static pb::MessageParser<GRQ> Parser { get { return _parser; } }
  4044. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4045. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4046. public static pbr::MessageDescriptor Descriptor {
  4047. get { return global::Com.Xzzs.Boiler.Proto.MessageReflection.Descriptor.MessageTypes[5]; }
  4048. }
  4049. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4050. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4051. pbr::MessageDescriptor pb::IMessage.Descriptor {
  4052. get { return Descriptor; }
  4053. }
  4054. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4055. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4056. public GRQ() {
  4057. OnConstruction();
  4058. }
  4059. partial void OnConstruction();
  4060. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4061. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4062. public GRQ(GRQ other) : this() {
  4063. gRQInTemperature_ = other.gRQInTemperature_;
  4064. gRQInPressure_ = other.gRQInPressure_;
  4065. gRQInFlow_ = other.gRQInFlow_;
  4066. gRQOneavgTemperature_ = other.gRQOneavgTemperature_;
  4067. gRQOneavgPressure_ = other.gRQOneavgPressure_;
  4068. gRQOneavgFlow_ = other.gRQOneavgFlow_;
  4069. gRQTwoavgTemperature_ = other.gRQTwoavgTemperature_;
  4070. gRQTwoavgPressure_ = other.gRQTwoavgPressure_;
  4071. gRQTwoavgFlow_ = other.gRQTwoavgFlow_;
  4072. gRQThreeavgTemperature_ = other.gRQThreeavgTemperature_;
  4073. gRQThreeavgPressure_ = other.gRQThreeavgPressure_;
  4074. gRQThreeavgFlow_ = other.gRQThreeavgFlow_;
  4075. gRQOutTemperature_ = other.gRQOutTemperature_;
  4076. gRQOutPressure_ = other.gRQOutPressure_;
  4077. gRQOutFlow_ = other.gRQOutFlow_;
  4078. gRQInGasTemperature_ = other.gRQInGasTemperature_;
  4079. gRQInGasPressure_ = other.gRQInGasPressure_;
  4080. gRQInGasFlow_ = other.gRQInGasFlow_;
  4081. gRQOutGasTemperatureForecast_ = other.gRQOutGasTemperatureForecast_;
  4082. gRQOutGasPressureForecast_ = other.gRQOutGasPressureForecast_;
  4083. gRQOutGasFlowForecast_ = other.gRQOutGasFlowForecast_;
  4084. time_ = other.time_;
  4085. exceptionStatus_ = other.exceptionStatus_;
  4086. _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
  4087. }
  4088. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4089. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4090. public GRQ Clone() {
  4091. return new GRQ(this);
  4092. }
  4093. /// <summary>Field number for the "GRQ_in_temperature" field.</summary>
  4094. public const int GRQInTemperatureFieldNumber = 1;
  4095. private string gRQInTemperature_ = "";
  4096. /// <summary>
  4097. ///过热器入口温度 .4f Double
  4098. /// </summary>
  4099. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4100. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4101. public string GRQInTemperature {
  4102. get { return gRQInTemperature_; }
  4103. set {
  4104. gRQInTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4105. }
  4106. }
  4107. /// <summary>Field number for the "GRQ_in_pressure" field.</summary>
  4108. public const int GRQInPressureFieldNumber = 2;
  4109. private string gRQInPressure_ = "";
  4110. /// <summary>
  4111. ///过热器入口压力 .4f Double
  4112. /// </summary>
  4113. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4114. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4115. public string GRQInPressure {
  4116. get { return gRQInPressure_; }
  4117. set {
  4118. gRQInPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4119. }
  4120. }
  4121. /// <summary>Field number for the "GRQ_in_flow" field.</summary>
  4122. public const int GRQInFlowFieldNumber = 3;
  4123. private string gRQInFlow_ = "";
  4124. /// <summary>
  4125. ///过热器入口流量 .4f Double
  4126. /// </summary>
  4127. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4128. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4129. public string GRQInFlow {
  4130. get { return gRQInFlow_; }
  4131. set {
  4132. gRQInFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4133. }
  4134. }
  4135. /// <summary>Field number for the "GRQ_oneavg_temperature" field.</summary>
  4136. public const int GRQOneavgTemperatureFieldNumber = 4;
  4137. private string gRQOneavgTemperature_ = "";
  4138. /// <summary>
  4139. ///过热器第 1 流程平均温度 .4f Double
  4140. /// </summary>
  4141. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4142. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4143. public string GRQOneavgTemperature {
  4144. get { return gRQOneavgTemperature_; }
  4145. set {
  4146. gRQOneavgTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4147. }
  4148. }
  4149. /// <summary>Field number for the "GRQ_oneavg_pressure" field.</summary>
  4150. public const int GRQOneavgPressureFieldNumber = 5;
  4151. private string gRQOneavgPressure_ = "";
  4152. /// <summary>
  4153. ///过热器第 1 流程平均压力 .4f Double
  4154. /// </summary>
  4155. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4156. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4157. public string GRQOneavgPressure {
  4158. get { return gRQOneavgPressure_; }
  4159. set {
  4160. gRQOneavgPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4161. }
  4162. }
  4163. /// <summary>Field number for the "GRQ_oneavg_flow" field.</summary>
  4164. public const int GRQOneavgFlowFieldNumber = 6;
  4165. private string gRQOneavgFlow_ = "";
  4166. /// <summary>
  4167. ///过热器第 1 流程平均流量 .4f Double
  4168. /// </summary>
  4169. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4170. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4171. public string GRQOneavgFlow {
  4172. get { return gRQOneavgFlow_; }
  4173. set {
  4174. gRQOneavgFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4175. }
  4176. }
  4177. /// <summary>Field number for the "GRQ_twoavg_temperature" field.</summary>
  4178. public const int GRQTwoavgTemperatureFieldNumber = 7;
  4179. private string gRQTwoavgTemperature_ = "";
  4180. /// <summary>
  4181. ///过热器第 2 流程平均温度 .4f Double
  4182. /// </summary>
  4183. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4184. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4185. public string GRQTwoavgTemperature {
  4186. get { return gRQTwoavgTemperature_; }
  4187. set {
  4188. gRQTwoavgTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4189. }
  4190. }
  4191. /// <summary>Field number for the "GRQ_twoavg_pressure" field.</summary>
  4192. public const int GRQTwoavgPressureFieldNumber = 8;
  4193. private string gRQTwoavgPressure_ = "";
  4194. /// <summary>
  4195. ///过热器第 2 流程平均压力 .4f Double
  4196. /// </summary>
  4197. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4198. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4199. public string GRQTwoavgPressure {
  4200. get { return gRQTwoavgPressure_; }
  4201. set {
  4202. gRQTwoavgPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4203. }
  4204. }
  4205. /// <summary>Field number for the "GRQ_twoavg_flow" field.</summary>
  4206. public const int GRQTwoavgFlowFieldNumber = 9;
  4207. private string gRQTwoavgFlow_ = "";
  4208. /// <summary>
  4209. ///过热器第 2 流程平均流量 .4f Double
  4210. /// </summary>
  4211. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4212. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4213. public string GRQTwoavgFlow {
  4214. get { return gRQTwoavgFlow_; }
  4215. set {
  4216. gRQTwoavgFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4217. }
  4218. }
  4219. /// <summary>Field number for the "GRQ_threeavg_temperature" field.</summary>
  4220. public const int GRQThreeavgTemperatureFieldNumber = 10;
  4221. private string gRQThreeavgTemperature_ = "";
  4222. /// <summary>
  4223. ///过热器第 3 流程平均温度 .4f Double
  4224. /// </summary>
  4225. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4226. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4227. public string GRQThreeavgTemperature {
  4228. get { return gRQThreeavgTemperature_; }
  4229. set {
  4230. gRQThreeavgTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4231. }
  4232. }
  4233. /// <summary>Field number for the "GRQ_threeavg_pressure" field.</summary>
  4234. public const int GRQThreeavgPressureFieldNumber = 11;
  4235. private string gRQThreeavgPressure_ = "";
  4236. /// <summary>
  4237. ///过热器第 3 流程平均压力 .4f Double
  4238. /// </summary>
  4239. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4240. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4241. public string GRQThreeavgPressure {
  4242. get { return gRQThreeavgPressure_; }
  4243. set {
  4244. gRQThreeavgPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4245. }
  4246. }
  4247. /// <summary>Field number for the "GRQ_threeavg_flow" field.</summary>
  4248. public const int GRQThreeavgFlowFieldNumber = 12;
  4249. private string gRQThreeavgFlow_ = "";
  4250. /// <summary>
  4251. ///过热器第 3 流程平均流量 .4f Double
  4252. /// </summary>
  4253. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4254. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4255. public string GRQThreeavgFlow {
  4256. get { return gRQThreeavgFlow_; }
  4257. set {
  4258. gRQThreeavgFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4259. }
  4260. }
  4261. /// <summary>Field number for the "GRQ_out_temperature" field.</summary>
  4262. public const int GRQOutTemperatureFieldNumber = 13;
  4263. private string gRQOutTemperature_ = "";
  4264. /// <summary>
  4265. ///过热器出口温度 .4f Double
  4266. /// </summary>
  4267. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4268. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4269. public string GRQOutTemperature {
  4270. get { return gRQOutTemperature_; }
  4271. set {
  4272. gRQOutTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4273. }
  4274. }
  4275. /// <summary>Field number for the "GRQ_out_pressure" field.</summary>
  4276. public const int GRQOutPressureFieldNumber = 14;
  4277. private string gRQOutPressure_ = "";
  4278. /// <summary>
  4279. ///过热器出口压力 .4f Double
  4280. /// </summary>
  4281. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4282. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4283. public string GRQOutPressure {
  4284. get { return gRQOutPressure_; }
  4285. set {
  4286. gRQOutPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4287. }
  4288. }
  4289. /// <summary>Field number for the "GRQ_out_flow" field.</summary>
  4290. public const int GRQOutFlowFieldNumber = 15;
  4291. private string gRQOutFlow_ = "";
  4292. /// <summary>
  4293. ///过热器出口流量 .4f Double
  4294. /// </summary>
  4295. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4296. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4297. public string GRQOutFlow {
  4298. get { return gRQOutFlow_; }
  4299. set {
  4300. gRQOutFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4301. }
  4302. }
  4303. /// <summary>Field number for the "GRQ_in_gas_temperature" field.</summary>
  4304. public const int GRQInGasTemperatureFieldNumber = 16;
  4305. private string gRQInGasTemperature_ = "";
  4306. /// <summary>
  4307. ///过热器进口烟气温度 .4f Double
  4308. /// </summary>
  4309. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4310. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4311. public string GRQInGasTemperature {
  4312. get { return gRQInGasTemperature_; }
  4313. set {
  4314. gRQInGasTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4315. }
  4316. }
  4317. /// <summary>Field number for the "GRQ_in_gas_pressure" field.</summary>
  4318. public const int GRQInGasPressureFieldNumber = 17;
  4319. private string gRQInGasPressure_ = "";
  4320. /// <summary>
  4321. ///过热器入口烟气压力 .4f Double
  4322. /// </summary>
  4323. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4324. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4325. public string GRQInGasPressure {
  4326. get { return gRQInGasPressure_; }
  4327. set {
  4328. gRQInGasPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4329. }
  4330. }
  4331. /// <summary>Field number for the "GRQ_in_gas_flow" field.</summary>
  4332. public const int GRQInGasFlowFieldNumber = 18;
  4333. private string gRQInGasFlow_ = "";
  4334. /// <summary>
  4335. ///过热器入口烟气流量 .4f Double
  4336. /// </summary>
  4337. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4338. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4339. public string GRQInGasFlow {
  4340. get { return gRQInGasFlow_; }
  4341. set {
  4342. gRQInGasFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4343. }
  4344. }
  4345. /// <summary>Field number for the "GRQ_out_gas_temperature_forecast" field.</summary>
  4346. public const int GRQOutGasTemperatureForecastFieldNumber = 19;
  4347. private string gRQOutGasTemperatureForecast_ = "";
  4348. /// <summary>
  4349. ///过热器出口烟气温度预测值 .4f Double
  4350. /// </summary>
  4351. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4352. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4353. public string GRQOutGasTemperatureForecast {
  4354. get { return gRQOutGasTemperatureForecast_; }
  4355. set {
  4356. gRQOutGasTemperatureForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4357. }
  4358. }
  4359. /// <summary>Field number for the "GRQ_out_gas_pressure_forecast" field.</summary>
  4360. public const int GRQOutGasPressureForecastFieldNumber = 20;
  4361. private string gRQOutGasPressureForecast_ = "";
  4362. /// <summary>
  4363. ///过热器出口烟气压力预测值 .4f Double
  4364. /// </summary>
  4365. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4366. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4367. public string GRQOutGasPressureForecast {
  4368. get { return gRQOutGasPressureForecast_; }
  4369. set {
  4370. gRQOutGasPressureForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4371. }
  4372. }
  4373. /// <summary>Field number for the "GRQ_out_gas_flow_forecast" field.</summary>
  4374. public const int GRQOutGasFlowForecastFieldNumber = 21;
  4375. private string gRQOutGasFlowForecast_ = "";
  4376. /// <summary>
  4377. ///过热器出口烟气流量预测值 .4f Double
  4378. /// </summary>
  4379. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4380. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4381. public string GRQOutGasFlowForecast {
  4382. get { return gRQOutGasFlowForecast_; }
  4383. set {
  4384. gRQOutGasFlowForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4385. }
  4386. }
  4387. /// <summary>Field number for the "time" field.</summary>
  4388. public const int TimeFieldNumber = 22;
  4389. private string time_ = "";
  4390. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4391. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4392. public string Time {
  4393. get { return time_; }
  4394. set {
  4395. time_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4396. }
  4397. }
  4398. /// <summary>Field number for the "exception_status" field.</summary>
  4399. public const int ExceptionStatusFieldNumber = 23;
  4400. private string exceptionStatus_ = "";
  4401. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4402. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4403. public string ExceptionStatus {
  4404. get { return exceptionStatus_; }
  4405. set {
  4406. exceptionStatus_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  4407. }
  4408. }
  4409. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4410. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4411. public override bool Equals(object other) {
  4412. return Equals(other as GRQ);
  4413. }
  4414. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4415. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4416. public bool Equals(GRQ other) {
  4417. if (ReferenceEquals(other, null)) {
  4418. return false;
  4419. }
  4420. if (ReferenceEquals(other, this)) {
  4421. return true;
  4422. }
  4423. if (GRQInTemperature != other.GRQInTemperature) return false;
  4424. if (GRQInPressure != other.GRQInPressure) return false;
  4425. if (GRQInFlow != other.GRQInFlow) return false;
  4426. if (GRQOneavgTemperature != other.GRQOneavgTemperature) return false;
  4427. if (GRQOneavgPressure != other.GRQOneavgPressure) return false;
  4428. if (GRQOneavgFlow != other.GRQOneavgFlow) return false;
  4429. if (GRQTwoavgTemperature != other.GRQTwoavgTemperature) return false;
  4430. if (GRQTwoavgPressure != other.GRQTwoavgPressure) return false;
  4431. if (GRQTwoavgFlow != other.GRQTwoavgFlow) return false;
  4432. if (GRQThreeavgTemperature != other.GRQThreeavgTemperature) return false;
  4433. if (GRQThreeavgPressure != other.GRQThreeavgPressure) return false;
  4434. if (GRQThreeavgFlow != other.GRQThreeavgFlow) return false;
  4435. if (GRQOutTemperature != other.GRQOutTemperature) return false;
  4436. if (GRQOutPressure != other.GRQOutPressure) return false;
  4437. if (GRQOutFlow != other.GRQOutFlow) return false;
  4438. if (GRQInGasTemperature != other.GRQInGasTemperature) return false;
  4439. if (GRQInGasPressure != other.GRQInGasPressure) return false;
  4440. if (GRQInGasFlow != other.GRQInGasFlow) return false;
  4441. if (GRQOutGasTemperatureForecast != other.GRQOutGasTemperatureForecast) return false;
  4442. if (GRQOutGasPressureForecast != other.GRQOutGasPressureForecast) return false;
  4443. if (GRQOutGasFlowForecast != other.GRQOutGasFlowForecast) return false;
  4444. if (Time != other.Time) return false;
  4445. if (ExceptionStatus != other.ExceptionStatus) return false;
  4446. return Equals(_unknownFields, other._unknownFields);
  4447. }
  4448. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4449. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4450. public override int GetHashCode() {
  4451. int hash = 1;
  4452. if (GRQInTemperature.Length != 0) hash ^= GRQInTemperature.GetHashCode();
  4453. if (GRQInPressure.Length != 0) hash ^= GRQInPressure.GetHashCode();
  4454. if (GRQInFlow.Length != 0) hash ^= GRQInFlow.GetHashCode();
  4455. if (GRQOneavgTemperature.Length != 0) hash ^= GRQOneavgTemperature.GetHashCode();
  4456. if (GRQOneavgPressure.Length != 0) hash ^= GRQOneavgPressure.GetHashCode();
  4457. if (GRQOneavgFlow.Length != 0) hash ^= GRQOneavgFlow.GetHashCode();
  4458. if (GRQTwoavgTemperature.Length != 0) hash ^= GRQTwoavgTemperature.GetHashCode();
  4459. if (GRQTwoavgPressure.Length != 0) hash ^= GRQTwoavgPressure.GetHashCode();
  4460. if (GRQTwoavgFlow.Length != 0) hash ^= GRQTwoavgFlow.GetHashCode();
  4461. if (GRQThreeavgTemperature.Length != 0) hash ^= GRQThreeavgTemperature.GetHashCode();
  4462. if (GRQThreeavgPressure.Length != 0) hash ^= GRQThreeavgPressure.GetHashCode();
  4463. if (GRQThreeavgFlow.Length != 0) hash ^= GRQThreeavgFlow.GetHashCode();
  4464. if (GRQOutTemperature.Length != 0) hash ^= GRQOutTemperature.GetHashCode();
  4465. if (GRQOutPressure.Length != 0) hash ^= GRQOutPressure.GetHashCode();
  4466. if (GRQOutFlow.Length != 0) hash ^= GRQOutFlow.GetHashCode();
  4467. if (GRQInGasTemperature.Length != 0) hash ^= GRQInGasTemperature.GetHashCode();
  4468. if (GRQInGasPressure.Length != 0) hash ^= GRQInGasPressure.GetHashCode();
  4469. if (GRQInGasFlow.Length != 0) hash ^= GRQInGasFlow.GetHashCode();
  4470. if (GRQOutGasTemperatureForecast.Length != 0) hash ^= GRQOutGasTemperatureForecast.GetHashCode();
  4471. if (GRQOutGasPressureForecast.Length != 0) hash ^= GRQOutGasPressureForecast.GetHashCode();
  4472. if (GRQOutGasFlowForecast.Length != 0) hash ^= GRQOutGasFlowForecast.GetHashCode();
  4473. if (Time.Length != 0) hash ^= Time.GetHashCode();
  4474. if (ExceptionStatus.Length != 0) hash ^= ExceptionStatus.GetHashCode();
  4475. if (_unknownFields != null) {
  4476. hash ^= _unknownFields.GetHashCode();
  4477. }
  4478. return hash;
  4479. }
  4480. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4481. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4482. public override string ToString() {
  4483. return pb::JsonFormatter.ToDiagnosticString(this);
  4484. }
  4485. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4486. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4487. public void WriteTo(pb::CodedOutputStream output) {
  4488. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  4489. output.WriteRawMessage(this);
  4490. #else
  4491. if (GRQInTemperature.Length != 0) {
  4492. output.WriteRawTag(10);
  4493. output.WriteString(GRQInTemperature);
  4494. }
  4495. if (GRQInPressure.Length != 0) {
  4496. output.WriteRawTag(18);
  4497. output.WriteString(GRQInPressure);
  4498. }
  4499. if (GRQInFlow.Length != 0) {
  4500. output.WriteRawTag(26);
  4501. output.WriteString(GRQInFlow);
  4502. }
  4503. if (GRQOneavgTemperature.Length != 0) {
  4504. output.WriteRawTag(34);
  4505. output.WriteString(GRQOneavgTemperature);
  4506. }
  4507. if (GRQOneavgPressure.Length != 0) {
  4508. output.WriteRawTag(42);
  4509. output.WriteString(GRQOneavgPressure);
  4510. }
  4511. if (GRQOneavgFlow.Length != 0) {
  4512. output.WriteRawTag(50);
  4513. output.WriteString(GRQOneavgFlow);
  4514. }
  4515. if (GRQTwoavgTemperature.Length != 0) {
  4516. output.WriteRawTag(58);
  4517. output.WriteString(GRQTwoavgTemperature);
  4518. }
  4519. if (GRQTwoavgPressure.Length != 0) {
  4520. output.WriteRawTag(66);
  4521. output.WriteString(GRQTwoavgPressure);
  4522. }
  4523. if (GRQTwoavgFlow.Length != 0) {
  4524. output.WriteRawTag(74);
  4525. output.WriteString(GRQTwoavgFlow);
  4526. }
  4527. if (GRQThreeavgTemperature.Length != 0) {
  4528. output.WriteRawTag(82);
  4529. output.WriteString(GRQThreeavgTemperature);
  4530. }
  4531. if (GRQThreeavgPressure.Length != 0) {
  4532. output.WriteRawTag(90);
  4533. output.WriteString(GRQThreeavgPressure);
  4534. }
  4535. if (GRQThreeavgFlow.Length != 0) {
  4536. output.WriteRawTag(98);
  4537. output.WriteString(GRQThreeavgFlow);
  4538. }
  4539. if (GRQOutTemperature.Length != 0) {
  4540. output.WriteRawTag(106);
  4541. output.WriteString(GRQOutTemperature);
  4542. }
  4543. if (GRQOutPressure.Length != 0) {
  4544. output.WriteRawTag(114);
  4545. output.WriteString(GRQOutPressure);
  4546. }
  4547. if (GRQOutFlow.Length != 0) {
  4548. output.WriteRawTag(122);
  4549. output.WriteString(GRQOutFlow);
  4550. }
  4551. if (GRQInGasTemperature.Length != 0) {
  4552. output.WriteRawTag(130, 1);
  4553. output.WriteString(GRQInGasTemperature);
  4554. }
  4555. if (GRQInGasPressure.Length != 0) {
  4556. output.WriteRawTag(138, 1);
  4557. output.WriteString(GRQInGasPressure);
  4558. }
  4559. if (GRQInGasFlow.Length != 0) {
  4560. output.WriteRawTag(146, 1);
  4561. output.WriteString(GRQInGasFlow);
  4562. }
  4563. if (GRQOutGasTemperatureForecast.Length != 0) {
  4564. output.WriteRawTag(154, 1);
  4565. output.WriteString(GRQOutGasTemperatureForecast);
  4566. }
  4567. if (GRQOutGasPressureForecast.Length != 0) {
  4568. output.WriteRawTag(162, 1);
  4569. output.WriteString(GRQOutGasPressureForecast);
  4570. }
  4571. if (GRQOutGasFlowForecast.Length != 0) {
  4572. output.WriteRawTag(170, 1);
  4573. output.WriteString(GRQOutGasFlowForecast);
  4574. }
  4575. if (Time.Length != 0) {
  4576. output.WriteRawTag(178, 1);
  4577. output.WriteString(Time);
  4578. }
  4579. if (ExceptionStatus.Length != 0) {
  4580. output.WriteRawTag(186, 1);
  4581. output.WriteString(ExceptionStatus);
  4582. }
  4583. if (_unknownFields != null) {
  4584. _unknownFields.WriteTo(output);
  4585. }
  4586. #endif
  4587. }
  4588. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  4589. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4590. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4591. void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
  4592. if (GRQInTemperature.Length != 0) {
  4593. output.WriteRawTag(10);
  4594. output.WriteString(GRQInTemperature);
  4595. }
  4596. if (GRQInPressure.Length != 0) {
  4597. output.WriteRawTag(18);
  4598. output.WriteString(GRQInPressure);
  4599. }
  4600. if (GRQInFlow.Length != 0) {
  4601. output.WriteRawTag(26);
  4602. output.WriteString(GRQInFlow);
  4603. }
  4604. if (GRQOneavgTemperature.Length != 0) {
  4605. output.WriteRawTag(34);
  4606. output.WriteString(GRQOneavgTemperature);
  4607. }
  4608. if (GRQOneavgPressure.Length != 0) {
  4609. output.WriteRawTag(42);
  4610. output.WriteString(GRQOneavgPressure);
  4611. }
  4612. if (GRQOneavgFlow.Length != 0) {
  4613. output.WriteRawTag(50);
  4614. output.WriteString(GRQOneavgFlow);
  4615. }
  4616. if (GRQTwoavgTemperature.Length != 0) {
  4617. output.WriteRawTag(58);
  4618. output.WriteString(GRQTwoavgTemperature);
  4619. }
  4620. if (GRQTwoavgPressure.Length != 0) {
  4621. output.WriteRawTag(66);
  4622. output.WriteString(GRQTwoavgPressure);
  4623. }
  4624. if (GRQTwoavgFlow.Length != 0) {
  4625. output.WriteRawTag(74);
  4626. output.WriteString(GRQTwoavgFlow);
  4627. }
  4628. if (GRQThreeavgTemperature.Length != 0) {
  4629. output.WriteRawTag(82);
  4630. output.WriteString(GRQThreeavgTemperature);
  4631. }
  4632. if (GRQThreeavgPressure.Length != 0) {
  4633. output.WriteRawTag(90);
  4634. output.WriteString(GRQThreeavgPressure);
  4635. }
  4636. if (GRQThreeavgFlow.Length != 0) {
  4637. output.WriteRawTag(98);
  4638. output.WriteString(GRQThreeavgFlow);
  4639. }
  4640. if (GRQOutTemperature.Length != 0) {
  4641. output.WriteRawTag(106);
  4642. output.WriteString(GRQOutTemperature);
  4643. }
  4644. if (GRQOutPressure.Length != 0) {
  4645. output.WriteRawTag(114);
  4646. output.WriteString(GRQOutPressure);
  4647. }
  4648. if (GRQOutFlow.Length != 0) {
  4649. output.WriteRawTag(122);
  4650. output.WriteString(GRQOutFlow);
  4651. }
  4652. if (GRQInGasTemperature.Length != 0) {
  4653. output.WriteRawTag(130, 1);
  4654. output.WriteString(GRQInGasTemperature);
  4655. }
  4656. if (GRQInGasPressure.Length != 0) {
  4657. output.WriteRawTag(138, 1);
  4658. output.WriteString(GRQInGasPressure);
  4659. }
  4660. if (GRQInGasFlow.Length != 0) {
  4661. output.WriteRawTag(146, 1);
  4662. output.WriteString(GRQInGasFlow);
  4663. }
  4664. if (GRQOutGasTemperatureForecast.Length != 0) {
  4665. output.WriteRawTag(154, 1);
  4666. output.WriteString(GRQOutGasTemperatureForecast);
  4667. }
  4668. if (GRQOutGasPressureForecast.Length != 0) {
  4669. output.WriteRawTag(162, 1);
  4670. output.WriteString(GRQOutGasPressureForecast);
  4671. }
  4672. if (GRQOutGasFlowForecast.Length != 0) {
  4673. output.WriteRawTag(170, 1);
  4674. output.WriteString(GRQOutGasFlowForecast);
  4675. }
  4676. if (Time.Length != 0) {
  4677. output.WriteRawTag(178, 1);
  4678. output.WriteString(Time);
  4679. }
  4680. if (ExceptionStatus.Length != 0) {
  4681. output.WriteRawTag(186, 1);
  4682. output.WriteString(ExceptionStatus);
  4683. }
  4684. if (_unknownFields != null) {
  4685. _unknownFields.WriteTo(ref output);
  4686. }
  4687. }
  4688. #endif
  4689. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4690. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4691. public int CalculateSize() {
  4692. int size = 0;
  4693. if (GRQInTemperature.Length != 0) {
  4694. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRQInTemperature);
  4695. }
  4696. if (GRQInPressure.Length != 0) {
  4697. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRQInPressure);
  4698. }
  4699. if (GRQInFlow.Length != 0) {
  4700. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRQInFlow);
  4701. }
  4702. if (GRQOneavgTemperature.Length != 0) {
  4703. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRQOneavgTemperature);
  4704. }
  4705. if (GRQOneavgPressure.Length != 0) {
  4706. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRQOneavgPressure);
  4707. }
  4708. if (GRQOneavgFlow.Length != 0) {
  4709. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRQOneavgFlow);
  4710. }
  4711. if (GRQTwoavgTemperature.Length != 0) {
  4712. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRQTwoavgTemperature);
  4713. }
  4714. if (GRQTwoavgPressure.Length != 0) {
  4715. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRQTwoavgPressure);
  4716. }
  4717. if (GRQTwoavgFlow.Length != 0) {
  4718. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRQTwoavgFlow);
  4719. }
  4720. if (GRQThreeavgTemperature.Length != 0) {
  4721. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRQThreeavgTemperature);
  4722. }
  4723. if (GRQThreeavgPressure.Length != 0) {
  4724. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRQThreeavgPressure);
  4725. }
  4726. if (GRQThreeavgFlow.Length != 0) {
  4727. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRQThreeavgFlow);
  4728. }
  4729. if (GRQOutTemperature.Length != 0) {
  4730. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRQOutTemperature);
  4731. }
  4732. if (GRQOutPressure.Length != 0) {
  4733. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRQOutPressure);
  4734. }
  4735. if (GRQOutFlow.Length != 0) {
  4736. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRQOutFlow);
  4737. }
  4738. if (GRQInGasTemperature.Length != 0) {
  4739. size += 2 + pb::CodedOutputStream.ComputeStringSize(GRQInGasTemperature);
  4740. }
  4741. if (GRQInGasPressure.Length != 0) {
  4742. size += 2 + pb::CodedOutputStream.ComputeStringSize(GRQInGasPressure);
  4743. }
  4744. if (GRQInGasFlow.Length != 0) {
  4745. size += 2 + pb::CodedOutputStream.ComputeStringSize(GRQInGasFlow);
  4746. }
  4747. if (GRQOutGasTemperatureForecast.Length != 0) {
  4748. size += 2 + pb::CodedOutputStream.ComputeStringSize(GRQOutGasTemperatureForecast);
  4749. }
  4750. if (GRQOutGasPressureForecast.Length != 0) {
  4751. size += 2 + pb::CodedOutputStream.ComputeStringSize(GRQOutGasPressureForecast);
  4752. }
  4753. if (GRQOutGasFlowForecast.Length != 0) {
  4754. size += 2 + pb::CodedOutputStream.ComputeStringSize(GRQOutGasFlowForecast);
  4755. }
  4756. if (Time.Length != 0) {
  4757. size += 2 + pb::CodedOutputStream.ComputeStringSize(Time);
  4758. }
  4759. if (ExceptionStatus.Length != 0) {
  4760. size += 2 + pb::CodedOutputStream.ComputeStringSize(ExceptionStatus);
  4761. }
  4762. if (_unknownFields != null) {
  4763. size += _unknownFields.CalculateSize();
  4764. }
  4765. return size;
  4766. }
  4767. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4768. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4769. public void MergeFrom(GRQ other) {
  4770. if (other == null) {
  4771. return;
  4772. }
  4773. if (other.GRQInTemperature.Length != 0) {
  4774. GRQInTemperature = other.GRQInTemperature;
  4775. }
  4776. if (other.GRQInPressure.Length != 0) {
  4777. GRQInPressure = other.GRQInPressure;
  4778. }
  4779. if (other.GRQInFlow.Length != 0) {
  4780. GRQInFlow = other.GRQInFlow;
  4781. }
  4782. if (other.GRQOneavgTemperature.Length != 0) {
  4783. GRQOneavgTemperature = other.GRQOneavgTemperature;
  4784. }
  4785. if (other.GRQOneavgPressure.Length != 0) {
  4786. GRQOneavgPressure = other.GRQOneavgPressure;
  4787. }
  4788. if (other.GRQOneavgFlow.Length != 0) {
  4789. GRQOneavgFlow = other.GRQOneavgFlow;
  4790. }
  4791. if (other.GRQTwoavgTemperature.Length != 0) {
  4792. GRQTwoavgTemperature = other.GRQTwoavgTemperature;
  4793. }
  4794. if (other.GRQTwoavgPressure.Length != 0) {
  4795. GRQTwoavgPressure = other.GRQTwoavgPressure;
  4796. }
  4797. if (other.GRQTwoavgFlow.Length != 0) {
  4798. GRQTwoavgFlow = other.GRQTwoavgFlow;
  4799. }
  4800. if (other.GRQThreeavgTemperature.Length != 0) {
  4801. GRQThreeavgTemperature = other.GRQThreeavgTemperature;
  4802. }
  4803. if (other.GRQThreeavgPressure.Length != 0) {
  4804. GRQThreeavgPressure = other.GRQThreeavgPressure;
  4805. }
  4806. if (other.GRQThreeavgFlow.Length != 0) {
  4807. GRQThreeavgFlow = other.GRQThreeavgFlow;
  4808. }
  4809. if (other.GRQOutTemperature.Length != 0) {
  4810. GRQOutTemperature = other.GRQOutTemperature;
  4811. }
  4812. if (other.GRQOutPressure.Length != 0) {
  4813. GRQOutPressure = other.GRQOutPressure;
  4814. }
  4815. if (other.GRQOutFlow.Length != 0) {
  4816. GRQOutFlow = other.GRQOutFlow;
  4817. }
  4818. if (other.GRQInGasTemperature.Length != 0) {
  4819. GRQInGasTemperature = other.GRQInGasTemperature;
  4820. }
  4821. if (other.GRQInGasPressure.Length != 0) {
  4822. GRQInGasPressure = other.GRQInGasPressure;
  4823. }
  4824. if (other.GRQInGasFlow.Length != 0) {
  4825. GRQInGasFlow = other.GRQInGasFlow;
  4826. }
  4827. if (other.GRQOutGasTemperatureForecast.Length != 0) {
  4828. GRQOutGasTemperatureForecast = other.GRQOutGasTemperatureForecast;
  4829. }
  4830. if (other.GRQOutGasPressureForecast.Length != 0) {
  4831. GRQOutGasPressureForecast = other.GRQOutGasPressureForecast;
  4832. }
  4833. if (other.GRQOutGasFlowForecast.Length != 0) {
  4834. GRQOutGasFlowForecast = other.GRQOutGasFlowForecast;
  4835. }
  4836. if (other.Time.Length != 0) {
  4837. Time = other.Time;
  4838. }
  4839. if (other.ExceptionStatus.Length != 0) {
  4840. ExceptionStatus = other.ExceptionStatus;
  4841. }
  4842. _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
  4843. }
  4844. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4845. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4846. public void MergeFrom(pb::CodedInputStream input) {
  4847. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  4848. input.ReadRawMessage(this);
  4849. #else
  4850. uint tag;
  4851. while ((tag = input.ReadTag()) != 0) {
  4852. switch(tag) {
  4853. default:
  4854. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
  4855. break;
  4856. case 10: {
  4857. GRQInTemperature = input.ReadString();
  4858. break;
  4859. }
  4860. case 18: {
  4861. GRQInPressure = input.ReadString();
  4862. break;
  4863. }
  4864. case 26: {
  4865. GRQInFlow = input.ReadString();
  4866. break;
  4867. }
  4868. case 34: {
  4869. GRQOneavgTemperature = input.ReadString();
  4870. break;
  4871. }
  4872. case 42: {
  4873. GRQOneavgPressure = input.ReadString();
  4874. break;
  4875. }
  4876. case 50: {
  4877. GRQOneavgFlow = input.ReadString();
  4878. break;
  4879. }
  4880. case 58: {
  4881. GRQTwoavgTemperature = input.ReadString();
  4882. break;
  4883. }
  4884. case 66: {
  4885. GRQTwoavgPressure = input.ReadString();
  4886. break;
  4887. }
  4888. case 74: {
  4889. GRQTwoavgFlow = input.ReadString();
  4890. break;
  4891. }
  4892. case 82: {
  4893. GRQThreeavgTemperature = input.ReadString();
  4894. break;
  4895. }
  4896. case 90: {
  4897. GRQThreeavgPressure = input.ReadString();
  4898. break;
  4899. }
  4900. case 98: {
  4901. GRQThreeavgFlow = input.ReadString();
  4902. break;
  4903. }
  4904. case 106: {
  4905. GRQOutTemperature = input.ReadString();
  4906. break;
  4907. }
  4908. case 114: {
  4909. GRQOutPressure = input.ReadString();
  4910. break;
  4911. }
  4912. case 122: {
  4913. GRQOutFlow = input.ReadString();
  4914. break;
  4915. }
  4916. case 130: {
  4917. GRQInGasTemperature = input.ReadString();
  4918. break;
  4919. }
  4920. case 138: {
  4921. GRQInGasPressure = input.ReadString();
  4922. break;
  4923. }
  4924. case 146: {
  4925. GRQInGasFlow = input.ReadString();
  4926. break;
  4927. }
  4928. case 154: {
  4929. GRQOutGasTemperatureForecast = input.ReadString();
  4930. break;
  4931. }
  4932. case 162: {
  4933. GRQOutGasPressureForecast = input.ReadString();
  4934. break;
  4935. }
  4936. case 170: {
  4937. GRQOutGasFlowForecast = input.ReadString();
  4938. break;
  4939. }
  4940. case 178: {
  4941. Time = input.ReadString();
  4942. break;
  4943. }
  4944. case 186: {
  4945. ExceptionStatus = input.ReadString();
  4946. break;
  4947. }
  4948. }
  4949. }
  4950. #endif
  4951. }
  4952. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  4953. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  4954. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  4955. void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
  4956. uint tag;
  4957. while ((tag = input.ReadTag()) != 0) {
  4958. switch(tag) {
  4959. default:
  4960. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
  4961. break;
  4962. case 10: {
  4963. GRQInTemperature = input.ReadString();
  4964. break;
  4965. }
  4966. case 18: {
  4967. GRQInPressure = input.ReadString();
  4968. break;
  4969. }
  4970. case 26: {
  4971. GRQInFlow = input.ReadString();
  4972. break;
  4973. }
  4974. case 34: {
  4975. GRQOneavgTemperature = input.ReadString();
  4976. break;
  4977. }
  4978. case 42: {
  4979. GRQOneavgPressure = input.ReadString();
  4980. break;
  4981. }
  4982. case 50: {
  4983. GRQOneavgFlow = input.ReadString();
  4984. break;
  4985. }
  4986. case 58: {
  4987. GRQTwoavgTemperature = input.ReadString();
  4988. break;
  4989. }
  4990. case 66: {
  4991. GRQTwoavgPressure = input.ReadString();
  4992. break;
  4993. }
  4994. case 74: {
  4995. GRQTwoavgFlow = input.ReadString();
  4996. break;
  4997. }
  4998. case 82: {
  4999. GRQThreeavgTemperature = input.ReadString();
  5000. break;
  5001. }
  5002. case 90: {
  5003. GRQThreeavgPressure = input.ReadString();
  5004. break;
  5005. }
  5006. case 98: {
  5007. GRQThreeavgFlow = input.ReadString();
  5008. break;
  5009. }
  5010. case 106: {
  5011. GRQOutTemperature = input.ReadString();
  5012. break;
  5013. }
  5014. case 114: {
  5015. GRQOutPressure = input.ReadString();
  5016. break;
  5017. }
  5018. case 122: {
  5019. GRQOutFlow = input.ReadString();
  5020. break;
  5021. }
  5022. case 130: {
  5023. GRQInGasTemperature = input.ReadString();
  5024. break;
  5025. }
  5026. case 138: {
  5027. GRQInGasPressure = input.ReadString();
  5028. break;
  5029. }
  5030. case 146: {
  5031. GRQInGasFlow = input.ReadString();
  5032. break;
  5033. }
  5034. case 154: {
  5035. GRQOutGasTemperatureForecast = input.ReadString();
  5036. break;
  5037. }
  5038. case 162: {
  5039. GRQOutGasPressureForecast = input.ReadString();
  5040. break;
  5041. }
  5042. case 170: {
  5043. GRQOutGasFlowForecast = input.ReadString();
  5044. break;
  5045. }
  5046. case 178: {
  5047. Time = input.ReadString();
  5048. break;
  5049. }
  5050. case 186: {
  5051. ExceptionStatus = input.ReadString();
  5052. break;
  5053. }
  5054. }
  5055. }
  5056. }
  5057. #endif
  5058. }
  5059. /// <summary>
  5060. ///除氧器
  5061. /// </summary>
  5062. public sealed partial class CYQ : pb::IMessage<CYQ>
  5063. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  5064. , pb::IBufferMessage
  5065. #endif
  5066. {
  5067. private static readonly pb::MessageParser<CYQ> _parser = new pb::MessageParser<CYQ>(() => new CYQ());
  5068. private pb::UnknownFieldSet _unknownFields;
  5069. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5070. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5071. public static pb::MessageParser<CYQ> Parser { get { return _parser; } }
  5072. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5073. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5074. public static pbr::MessageDescriptor Descriptor {
  5075. get { return global::Com.Xzzs.Boiler.Proto.MessageReflection.Descriptor.MessageTypes[6]; }
  5076. }
  5077. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5078. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5079. pbr::MessageDescriptor pb::IMessage.Descriptor {
  5080. get { return Descriptor; }
  5081. }
  5082. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5083. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5084. public CYQ() {
  5085. OnConstruction();
  5086. }
  5087. partial void OnConstruction();
  5088. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5089. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5090. public CYQ(CYQ other) : this() {
  5091. cYQWaterrefillTemperature_ = other.cYQWaterrefillTemperature_;
  5092. cYQWaterrefillPressure_ = other.cYQWaterrefillPressure_;
  5093. cYQWaterrefillFlow_ = other.cYQWaterrefillFlow_;
  5094. cYQRegulatingScale_ = other.cYQRegulatingScale_;
  5095. cYQTemperatureScale_ = other.cYQTemperatureScale_;
  5096. cYQHeadPressure_ = other.cYQHeadPressure_;
  5097. cYQHeadTemperature_ = other.cYQHeadTemperature_;
  5098. cYQWatertankPressure_ = other.cYQWatertankPressure_;
  5099. cYQWatertankTemperature_ = other.cYQWatertankTemperature_;
  5100. cYQWatertankWaterlevel_ = other.cYQWatertankWaterlevel_;
  5101. cYQWatertankPressureForecast_ = other.cYQWatertankPressureForecast_;
  5102. cYQWatertankTemperatureForecast_ = other.cYQWatertankTemperatureForecast_;
  5103. cYQWatertankWaterlevelForecast_ = other.cYQWatertankWaterlevelForecast_;
  5104. minusscalePressure_ = other.minusscalePressure_;
  5105. minusscaleTemperature_ = other.minusscaleTemperature_;
  5106. minusscaleFlow_ = other.minusscaleFlow_;
  5107. time_ = other.time_;
  5108. exceptionStatus_ = other.exceptionStatus_;
  5109. _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
  5110. }
  5111. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5112. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5113. public CYQ Clone() {
  5114. return new CYQ(this);
  5115. }
  5116. /// <summary>Field number for the "CYQ_waterrefill_temperature" field.</summary>
  5117. public const int CYQWaterrefillTemperatureFieldNumber = 1;
  5118. private string cYQWaterrefillTemperature_ = "";
  5119. /// <summary>
  5120. ///除氧器补水温度 .4f Double
  5121. /// </summary>
  5122. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5123. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5124. public string CYQWaterrefillTemperature {
  5125. get { return cYQWaterrefillTemperature_; }
  5126. set {
  5127. cYQWaterrefillTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5128. }
  5129. }
  5130. /// <summary>Field number for the "CYQ_waterrefill_pressure" field.</summary>
  5131. public const int CYQWaterrefillPressureFieldNumber = 2;
  5132. private string cYQWaterrefillPressure_ = "";
  5133. /// <summary>
  5134. ///除氧器补水压力 .4f Double
  5135. /// </summary>
  5136. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5137. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5138. public string CYQWaterrefillPressure {
  5139. get { return cYQWaterrefillPressure_; }
  5140. set {
  5141. cYQWaterrefillPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5142. }
  5143. }
  5144. /// <summary>Field number for the "CYQ_waterrefill_flow" field.</summary>
  5145. public const int CYQWaterrefillFlowFieldNumber = 3;
  5146. private string cYQWaterrefillFlow_ = "";
  5147. /// <summary>
  5148. ///除氧器补水流量 .4f Double
  5149. /// </summary>
  5150. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5151. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5152. public string CYQWaterrefillFlow {
  5153. get { return cYQWaterrefillFlow_; }
  5154. set {
  5155. cYQWaterrefillFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5156. }
  5157. }
  5158. /// <summary>Field number for the "CYQ_regulating_scale" field.</summary>
  5159. public const int CYQRegulatingScaleFieldNumber = 4;
  5160. private string cYQRegulatingScale_ = "";
  5161. /// <summary>
  5162. ///除氧器水位调节阀阀位 .4f Double
  5163. /// </summary>
  5164. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5165. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5166. public string CYQRegulatingScale {
  5167. get { return cYQRegulatingScale_; }
  5168. set {
  5169. cYQRegulatingScale_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5170. }
  5171. }
  5172. /// <summary>Field number for the "CYQ_temperature_scale" field.</summary>
  5173. public const int CYQTemperatureScaleFieldNumber = 5;
  5174. private string cYQTemperatureScale_ = "";
  5175. /// <summary>
  5176. ///除氧器温度调节阀阀位 .4f Double
  5177. /// </summary>
  5178. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5179. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5180. public string CYQTemperatureScale {
  5181. get { return cYQTemperatureScale_; }
  5182. set {
  5183. cYQTemperatureScale_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5184. }
  5185. }
  5186. /// <summary>Field number for the "CYQ_head_pressure" field.</summary>
  5187. public const int CYQHeadPressureFieldNumber = 6;
  5188. private string cYQHeadPressure_ = "";
  5189. /// <summary>
  5190. ///除氧器头压力 .4f Double
  5191. /// </summary>
  5192. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5193. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5194. public string CYQHeadPressure {
  5195. get { return cYQHeadPressure_; }
  5196. set {
  5197. cYQHeadPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5198. }
  5199. }
  5200. /// <summary>Field number for the "CYQ_head_temperature" field.</summary>
  5201. public const int CYQHeadTemperatureFieldNumber = 7;
  5202. private string cYQHeadTemperature_ = "";
  5203. /// <summary>
  5204. ///除氧器头温度 .4f Double
  5205. /// </summary>
  5206. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5207. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5208. public string CYQHeadTemperature {
  5209. get { return cYQHeadTemperature_; }
  5210. set {
  5211. cYQHeadTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5212. }
  5213. }
  5214. /// <summary>Field number for the "CYQ_watertank_pressure" field.</summary>
  5215. public const int CYQWatertankPressureFieldNumber = 8;
  5216. private string cYQWatertankPressure_ = "";
  5217. /// <summary>
  5218. ///除氧器水箱压力 .4f Double
  5219. /// </summary>
  5220. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5221. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5222. public string CYQWatertankPressure {
  5223. get { return cYQWatertankPressure_; }
  5224. set {
  5225. cYQWatertankPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5226. }
  5227. }
  5228. /// <summary>Field number for the "CYQ_watertank_temperature" field.</summary>
  5229. public const int CYQWatertankTemperatureFieldNumber = 9;
  5230. private string cYQWatertankTemperature_ = "";
  5231. /// <summary>
  5232. ///除氧器水箱温度 .4f Double
  5233. /// </summary>
  5234. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5235. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5236. public string CYQWatertankTemperature {
  5237. get { return cYQWatertankTemperature_; }
  5238. set {
  5239. cYQWatertankTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5240. }
  5241. }
  5242. /// <summary>Field number for the "CYQ_watertank_waterlevel" field.</summary>
  5243. public const int CYQWatertankWaterlevelFieldNumber = 10;
  5244. private string cYQWatertankWaterlevel_ = "";
  5245. /// <summary>
  5246. ///除氧器水箱水位 .4f Double
  5247. /// </summary>
  5248. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5249. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5250. public string CYQWatertankWaterlevel {
  5251. get { return cYQWatertankWaterlevel_; }
  5252. set {
  5253. cYQWatertankWaterlevel_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5254. }
  5255. }
  5256. /// <summary>Field number for the "CYQ_watertank_pressure_forecast" field.</summary>
  5257. public const int CYQWatertankPressureForecastFieldNumber = 11;
  5258. private string cYQWatertankPressureForecast_ = "";
  5259. /// <summary>
  5260. ///除氧器水箱压力预测值 .4f Double
  5261. /// </summary>
  5262. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5263. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5264. public string CYQWatertankPressureForecast {
  5265. get { return cYQWatertankPressureForecast_; }
  5266. set {
  5267. cYQWatertankPressureForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5268. }
  5269. }
  5270. /// <summary>Field number for the "CYQ_watertank_temperature_forecast" field.</summary>
  5271. public const int CYQWatertankTemperatureForecastFieldNumber = 12;
  5272. private string cYQWatertankTemperatureForecast_ = "";
  5273. /// <summary>
  5274. ///除氧器水箱温度预测值 .4f Double
  5275. /// </summary>
  5276. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5277. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5278. public string CYQWatertankTemperatureForecast {
  5279. get { return cYQWatertankTemperatureForecast_; }
  5280. set {
  5281. cYQWatertankTemperatureForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5282. }
  5283. }
  5284. /// <summary>Field number for the "CYQ_watertank_waterlevel_forecast" field.</summary>
  5285. public const int CYQWatertankWaterlevelForecastFieldNumber = 13;
  5286. private string cYQWatertankWaterlevelForecast_ = "";
  5287. /// <summary>
  5288. ///除氧器水箱水位预测值 .4f Double
  5289. /// </summary>
  5290. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5291. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5292. public string CYQWatertankWaterlevelForecast {
  5293. get { return cYQWatertankWaterlevelForecast_; }
  5294. set {
  5295. cYQWatertankWaterlevelForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5296. }
  5297. }
  5298. /// <summary>Field number for the "minusscale_pressure" field.</summary>
  5299. public const int MinusscalePressureFieldNumber = 14;
  5300. private string minusscalePressure_ = "";
  5301. /// <summary>
  5302. ///减阀后压力
  5303. /// </summary>
  5304. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5305. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5306. public string MinusscalePressure {
  5307. get { return minusscalePressure_; }
  5308. set {
  5309. minusscalePressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5310. }
  5311. }
  5312. /// <summary>Field number for the "minusscale_temperature" field.</summary>
  5313. public const int MinusscaleTemperatureFieldNumber = 15;
  5314. private string minusscaleTemperature_ = "";
  5315. /// <summary>
  5316. ///减阀后温度
  5317. /// </summary>
  5318. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5319. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5320. public string MinusscaleTemperature {
  5321. get { return minusscaleTemperature_; }
  5322. set {
  5323. minusscaleTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5324. }
  5325. }
  5326. /// <summary>Field number for the "minusscale_flow" field.</summary>
  5327. public const int MinusscaleFlowFieldNumber = 16;
  5328. private string minusscaleFlow_ = "";
  5329. /// <summary>
  5330. ///减阀后流量
  5331. /// </summary>
  5332. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5333. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5334. public string MinusscaleFlow {
  5335. get { return minusscaleFlow_; }
  5336. set {
  5337. minusscaleFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5338. }
  5339. }
  5340. /// <summary>Field number for the "time" field.</summary>
  5341. public const int TimeFieldNumber = 17;
  5342. private string time_ = "";
  5343. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5344. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5345. public string Time {
  5346. get { return time_; }
  5347. set {
  5348. time_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5349. }
  5350. }
  5351. /// <summary>Field number for the "exception_status" field.</summary>
  5352. public const int ExceptionStatusFieldNumber = 18;
  5353. private string exceptionStatus_ = "";
  5354. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5355. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5356. public string ExceptionStatus {
  5357. get { return exceptionStatus_; }
  5358. set {
  5359. exceptionStatus_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5360. }
  5361. }
  5362. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5363. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5364. public override bool Equals(object other) {
  5365. return Equals(other as CYQ);
  5366. }
  5367. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5368. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5369. public bool Equals(CYQ other) {
  5370. if (ReferenceEquals(other, null)) {
  5371. return false;
  5372. }
  5373. if (ReferenceEquals(other, this)) {
  5374. return true;
  5375. }
  5376. if (CYQWaterrefillTemperature != other.CYQWaterrefillTemperature) return false;
  5377. if (CYQWaterrefillPressure != other.CYQWaterrefillPressure) return false;
  5378. if (CYQWaterrefillFlow != other.CYQWaterrefillFlow) return false;
  5379. if (CYQRegulatingScale != other.CYQRegulatingScale) return false;
  5380. if (CYQTemperatureScale != other.CYQTemperatureScale) return false;
  5381. if (CYQHeadPressure != other.CYQHeadPressure) return false;
  5382. if (CYQHeadTemperature != other.CYQHeadTemperature) return false;
  5383. if (CYQWatertankPressure != other.CYQWatertankPressure) return false;
  5384. if (CYQWatertankTemperature != other.CYQWatertankTemperature) return false;
  5385. if (CYQWatertankWaterlevel != other.CYQWatertankWaterlevel) return false;
  5386. if (CYQWatertankPressureForecast != other.CYQWatertankPressureForecast) return false;
  5387. if (CYQWatertankTemperatureForecast != other.CYQWatertankTemperatureForecast) return false;
  5388. if (CYQWatertankWaterlevelForecast != other.CYQWatertankWaterlevelForecast) return false;
  5389. if (MinusscalePressure != other.MinusscalePressure) return false;
  5390. if (MinusscaleTemperature != other.MinusscaleTemperature) return false;
  5391. if (MinusscaleFlow != other.MinusscaleFlow) return false;
  5392. if (Time != other.Time) return false;
  5393. if (ExceptionStatus != other.ExceptionStatus) return false;
  5394. return Equals(_unknownFields, other._unknownFields);
  5395. }
  5396. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5397. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5398. public override int GetHashCode() {
  5399. int hash = 1;
  5400. if (CYQWaterrefillTemperature.Length != 0) hash ^= CYQWaterrefillTemperature.GetHashCode();
  5401. if (CYQWaterrefillPressure.Length != 0) hash ^= CYQWaterrefillPressure.GetHashCode();
  5402. if (CYQWaterrefillFlow.Length != 0) hash ^= CYQWaterrefillFlow.GetHashCode();
  5403. if (CYQRegulatingScale.Length != 0) hash ^= CYQRegulatingScale.GetHashCode();
  5404. if (CYQTemperatureScale.Length != 0) hash ^= CYQTemperatureScale.GetHashCode();
  5405. if (CYQHeadPressure.Length != 0) hash ^= CYQHeadPressure.GetHashCode();
  5406. if (CYQHeadTemperature.Length != 0) hash ^= CYQHeadTemperature.GetHashCode();
  5407. if (CYQWatertankPressure.Length != 0) hash ^= CYQWatertankPressure.GetHashCode();
  5408. if (CYQWatertankTemperature.Length != 0) hash ^= CYQWatertankTemperature.GetHashCode();
  5409. if (CYQWatertankWaterlevel.Length != 0) hash ^= CYQWatertankWaterlevel.GetHashCode();
  5410. if (CYQWatertankPressureForecast.Length != 0) hash ^= CYQWatertankPressureForecast.GetHashCode();
  5411. if (CYQWatertankTemperatureForecast.Length != 0) hash ^= CYQWatertankTemperatureForecast.GetHashCode();
  5412. if (CYQWatertankWaterlevelForecast.Length != 0) hash ^= CYQWatertankWaterlevelForecast.GetHashCode();
  5413. if (MinusscalePressure.Length != 0) hash ^= MinusscalePressure.GetHashCode();
  5414. if (MinusscaleTemperature.Length != 0) hash ^= MinusscaleTemperature.GetHashCode();
  5415. if (MinusscaleFlow.Length != 0) hash ^= MinusscaleFlow.GetHashCode();
  5416. if (Time.Length != 0) hash ^= Time.GetHashCode();
  5417. if (ExceptionStatus.Length != 0) hash ^= ExceptionStatus.GetHashCode();
  5418. if (_unknownFields != null) {
  5419. hash ^= _unknownFields.GetHashCode();
  5420. }
  5421. return hash;
  5422. }
  5423. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5424. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5425. public override string ToString() {
  5426. return pb::JsonFormatter.ToDiagnosticString(this);
  5427. }
  5428. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5429. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5430. public void WriteTo(pb::CodedOutputStream output) {
  5431. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  5432. output.WriteRawMessage(this);
  5433. #else
  5434. if (CYQWaterrefillTemperature.Length != 0) {
  5435. output.WriteRawTag(10);
  5436. output.WriteString(CYQWaterrefillTemperature);
  5437. }
  5438. if (CYQWaterrefillPressure.Length != 0) {
  5439. output.WriteRawTag(18);
  5440. output.WriteString(CYQWaterrefillPressure);
  5441. }
  5442. if (CYQWaterrefillFlow.Length != 0) {
  5443. output.WriteRawTag(26);
  5444. output.WriteString(CYQWaterrefillFlow);
  5445. }
  5446. if (CYQRegulatingScale.Length != 0) {
  5447. output.WriteRawTag(34);
  5448. output.WriteString(CYQRegulatingScale);
  5449. }
  5450. if (CYQTemperatureScale.Length != 0) {
  5451. output.WriteRawTag(42);
  5452. output.WriteString(CYQTemperatureScale);
  5453. }
  5454. if (CYQHeadPressure.Length != 0) {
  5455. output.WriteRawTag(50);
  5456. output.WriteString(CYQHeadPressure);
  5457. }
  5458. if (CYQHeadTemperature.Length != 0) {
  5459. output.WriteRawTag(58);
  5460. output.WriteString(CYQHeadTemperature);
  5461. }
  5462. if (CYQWatertankPressure.Length != 0) {
  5463. output.WriteRawTag(66);
  5464. output.WriteString(CYQWatertankPressure);
  5465. }
  5466. if (CYQWatertankTemperature.Length != 0) {
  5467. output.WriteRawTag(74);
  5468. output.WriteString(CYQWatertankTemperature);
  5469. }
  5470. if (CYQWatertankWaterlevel.Length != 0) {
  5471. output.WriteRawTag(82);
  5472. output.WriteString(CYQWatertankWaterlevel);
  5473. }
  5474. if (CYQWatertankPressureForecast.Length != 0) {
  5475. output.WriteRawTag(90);
  5476. output.WriteString(CYQWatertankPressureForecast);
  5477. }
  5478. if (CYQWatertankTemperatureForecast.Length != 0) {
  5479. output.WriteRawTag(98);
  5480. output.WriteString(CYQWatertankTemperatureForecast);
  5481. }
  5482. if (CYQWatertankWaterlevelForecast.Length != 0) {
  5483. output.WriteRawTag(106);
  5484. output.WriteString(CYQWatertankWaterlevelForecast);
  5485. }
  5486. if (MinusscalePressure.Length != 0) {
  5487. output.WriteRawTag(114);
  5488. output.WriteString(MinusscalePressure);
  5489. }
  5490. if (MinusscaleTemperature.Length != 0) {
  5491. output.WriteRawTag(122);
  5492. output.WriteString(MinusscaleTemperature);
  5493. }
  5494. if (MinusscaleFlow.Length != 0) {
  5495. output.WriteRawTag(130, 1);
  5496. output.WriteString(MinusscaleFlow);
  5497. }
  5498. if (Time.Length != 0) {
  5499. output.WriteRawTag(138, 1);
  5500. output.WriteString(Time);
  5501. }
  5502. if (ExceptionStatus.Length != 0) {
  5503. output.WriteRawTag(146, 1);
  5504. output.WriteString(ExceptionStatus);
  5505. }
  5506. if (_unknownFields != null) {
  5507. _unknownFields.WriteTo(output);
  5508. }
  5509. #endif
  5510. }
  5511. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  5512. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5513. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5514. void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
  5515. if (CYQWaterrefillTemperature.Length != 0) {
  5516. output.WriteRawTag(10);
  5517. output.WriteString(CYQWaterrefillTemperature);
  5518. }
  5519. if (CYQWaterrefillPressure.Length != 0) {
  5520. output.WriteRawTag(18);
  5521. output.WriteString(CYQWaterrefillPressure);
  5522. }
  5523. if (CYQWaterrefillFlow.Length != 0) {
  5524. output.WriteRawTag(26);
  5525. output.WriteString(CYQWaterrefillFlow);
  5526. }
  5527. if (CYQRegulatingScale.Length != 0) {
  5528. output.WriteRawTag(34);
  5529. output.WriteString(CYQRegulatingScale);
  5530. }
  5531. if (CYQTemperatureScale.Length != 0) {
  5532. output.WriteRawTag(42);
  5533. output.WriteString(CYQTemperatureScale);
  5534. }
  5535. if (CYQHeadPressure.Length != 0) {
  5536. output.WriteRawTag(50);
  5537. output.WriteString(CYQHeadPressure);
  5538. }
  5539. if (CYQHeadTemperature.Length != 0) {
  5540. output.WriteRawTag(58);
  5541. output.WriteString(CYQHeadTemperature);
  5542. }
  5543. if (CYQWatertankPressure.Length != 0) {
  5544. output.WriteRawTag(66);
  5545. output.WriteString(CYQWatertankPressure);
  5546. }
  5547. if (CYQWatertankTemperature.Length != 0) {
  5548. output.WriteRawTag(74);
  5549. output.WriteString(CYQWatertankTemperature);
  5550. }
  5551. if (CYQWatertankWaterlevel.Length != 0) {
  5552. output.WriteRawTag(82);
  5553. output.WriteString(CYQWatertankWaterlevel);
  5554. }
  5555. if (CYQWatertankPressureForecast.Length != 0) {
  5556. output.WriteRawTag(90);
  5557. output.WriteString(CYQWatertankPressureForecast);
  5558. }
  5559. if (CYQWatertankTemperatureForecast.Length != 0) {
  5560. output.WriteRawTag(98);
  5561. output.WriteString(CYQWatertankTemperatureForecast);
  5562. }
  5563. if (CYQWatertankWaterlevelForecast.Length != 0) {
  5564. output.WriteRawTag(106);
  5565. output.WriteString(CYQWatertankWaterlevelForecast);
  5566. }
  5567. if (MinusscalePressure.Length != 0) {
  5568. output.WriteRawTag(114);
  5569. output.WriteString(MinusscalePressure);
  5570. }
  5571. if (MinusscaleTemperature.Length != 0) {
  5572. output.WriteRawTag(122);
  5573. output.WriteString(MinusscaleTemperature);
  5574. }
  5575. if (MinusscaleFlow.Length != 0) {
  5576. output.WriteRawTag(130, 1);
  5577. output.WriteString(MinusscaleFlow);
  5578. }
  5579. if (Time.Length != 0) {
  5580. output.WriteRawTag(138, 1);
  5581. output.WriteString(Time);
  5582. }
  5583. if (ExceptionStatus.Length != 0) {
  5584. output.WriteRawTag(146, 1);
  5585. output.WriteString(ExceptionStatus);
  5586. }
  5587. if (_unknownFields != null) {
  5588. _unknownFields.WriteTo(ref output);
  5589. }
  5590. }
  5591. #endif
  5592. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5593. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5594. public int CalculateSize() {
  5595. int size = 0;
  5596. if (CYQWaterrefillTemperature.Length != 0) {
  5597. size += 1 + pb::CodedOutputStream.ComputeStringSize(CYQWaterrefillTemperature);
  5598. }
  5599. if (CYQWaterrefillPressure.Length != 0) {
  5600. size += 1 + pb::CodedOutputStream.ComputeStringSize(CYQWaterrefillPressure);
  5601. }
  5602. if (CYQWaterrefillFlow.Length != 0) {
  5603. size += 1 + pb::CodedOutputStream.ComputeStringSize(CYQWaterrefillFlow);
  5604. }
  5605. if (CYQRegulatingScale.Length != 0) {
  5606. size += 1 + pb::CodedOutputStream.ComputeStringSize(CYQRegulatingScale);
  5607. }
  5608. if (CYQTemperatureScale.Length != 0) {
  5609. size += 1 + pb::CodedOutputStream.ComputeStringSize(CYQTemperatureScale);
  5610. }
  5611. if (CYQHeadPressure.Length != 0) {
  5612. size += 1 + pb::CodedOutputStream.ComputeStringSize(CYQHeadPressure);
  5613. }
  5614. if (CYQHeadTemperature.Length != 0) {
  5615. size += 1 + pb::CodedOutputStream.ComputeStringSize(CYQHeadTemperature);
  5616. }
  5617. if (CYQWatertankPressure.Length != 0) {
  5618. size += 1 + pb::CodedOutputStream.ComputeStringSize(CYQWatertankPressure);
  5619. }
  5620. if (CYQWatertankTemperature.Length != 0) {
  5621. size += 1 + pb::CodedOutputStream.ComputeStringSize(CYQWatertankTemperature);
  5622. }
  5623. if (CYQWatertankWaterlevel.Length != 0) {
  5624. size += 1 + pb::CodedOutputStream.ComputeStringSize(CYQWatertankWaterlevel);
  5625. }
  5626. if (CYQWatertankPressureForecast.Length != 0) {
  5627. size += 1 + pb::CodedOutputStream.ComputeStringSize(CYQWatertankPressureForecast);
  5628. }
  5629. if (CYQWatertankTemperatureForecast.Length != 0) {
  5630. size += 1 + pb::CodedOutputStream.ComputeStringSize(CYQWatertankTemperatureForecast);
  5631. }
  5632. if (CYQWatertankWaterlevelForecast.Length != 0) {
  5633. size += 1 + pb::CodedOutputStream.ComputeStringSize(CYQWatertankWaterlevelForecast);
  5634. }
  5635. if (MinusscalePressure.Length != 0) {
  5636. size += 1 + pb::CodedOutputStream.ComputeStringSize(MinusscalePressure);
  5637. }
  5638. if (MinusscaleTemperature.Length != 0) {
  5639. size += 1 + pb::CodedOutputStream.ComputeStringSize(MinusscaleTemperature);
  5640. }
  5641. if (MinusscaleFlow.Length != 0) {
  5642. size += 2 + pb::CodedOutputStream.ComputeStringSize(MinusscaleFlow);
  5643. }
  5644. if (Time.Length != 0) {
  5645. size += 2 + pb::CodedOutputStream.ComputeStringSize(Time);
  5646. }
  5647. if (ExceptionStatus.Length != 0) {
  5648. size += 2 + pb::CodedOutputStream.ComputeStringSize(ExceptionStatus);
  5649. }
  5650. if (_unknownFields != null) {
  5651. size += _unknownFields.CalculateSize();
  5652. }
  5653. return size;
  5654. }
  5655. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5656. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5657. public void MergeFrom(CYQ other) {
  5658. if (other == null) {
  5659. return;
  5660. }
  5661. if (other.CYQWaterrefillTemperature.Length != 0) {
  5662. CYQWaterrefillTemperature = other.CYQWaterrefillTemperature;
  5663. }
  5664. if (other.CYQWaterrefillPressure.Length != 0) {
  5665. CYQWaterrefillPressure = other.CYQWaterrefillPressure;
  5666. }
  5667. if (other.CYQWaterrefillFlow.Length != 0) {
  5668. CYQWaterrefillFlow = other.CYQWaterrefillFlow;
  5669. }
  5670. if (other.CYQRegulatingScale.Length != 0) {
  5671. CYQRegulatingScale = other.CYQRegulatingScale;
  5672. }
  5673. if (other.CYQTemperatureScale.Length != 0) {
  5674. CYQTemperatureScale = other.CYQTemperatureScale;
  5675. }
  5676. if (other.CYQHeadPressure.Length != 0) {
  5677. CYQHeadPressure = other.CYQHeadPressure;
  5678. }
  5679. if (other.CYQHeadTemperature.Length != 0) {
  5680. CYQHeadTemperature = other.CYQHeadTemperature;
  5681. }
  5682. if (other.CYQWatertankPressure.Length != 0) {
  5683. CYQWatertankPressure = other.CYQWatertankPressure;
  5684. }
  5685. if (other.CYQWatertankTemperature.Length != 0) {
  5686. CYQWatertankTemperature = other.CYQWatertankTemperature;
  5687. }
  5688. if (other.CYQWatertankWaterlevel.Length != 0) {
  5689. CYQWatertankWaterlevel = other.CYQWatertankWaterlevel;
  5690. }
  5691. if (other.CYQWatertankPressureForecast.Length != 0) {
  5692. CYQWatertankPressureForecast = other.CYQWatertankPressureForecast;
  5693. }
  5694. if (other.CYQWatertankTemperatureForecast.Length != 0) {
  5695. CYQWatertankTemperatureForecast = other.CYQWatertankTemperatureForecast;
  5696. }
  5697. if (other.CYQWatertankWaterlevelForecast.Length != 0) {
  5698. CYQWatertankWaterlevelForecast = other.CYQWatertankWaterlevelForecast;
  5699. }
  5700. if (other.MinusscalePressure.Length != 0) {
  5701. MinusscalePressure = other.MinusscalePressure;
  5702. }
  5703. if (other.MinusscaleTemperature.Length != 0) {
  5704. MinusscaleTemperature = other.MinusscaleTemperature;
  5705. }
  5706. if (other.MinusscaleFlow.Length != 0) {
  5707. MinusscaleFlow = other.MinusscaleFlow;
  5708. }
  5709. if (other.Time.Length != 0) {
  5710. Time = other.Time;
  5711. }
  5712. if (other.ExceptionStatus.Length != 0) {
  5713. ExceptionStatus = other.ExceptionStatus;
  5714. }
  5715. _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
  5716. }
  5717. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5718. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5719. public void MergeFrom(pb::CodedInputStream input) {
  5720. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  5721. input.ReadRawMessage(this);
  5722. #else
  5723. uint tag;
  5724. while ((tag = input.ReadTag()) != 0) {
  5725. switch(tag) {
  5726. default:
  5727. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
  5728. break;
  5729. case 10: {
  5730. CYQWaterrefillTemperature = input.ReadString();
  5731. break;
  5732. }
  5733. case 18: {
  5734. CYQWaterrefillPressure = input.ReadString();
  5735. break;
  5736. }
  5737. case 26: {
  5738. CYQWaterrefillFlow = input.ReadString();
  5739. break;
  5740. }
  5741. case 34: {
  5742. CYQRegulatingScale = input.ReadString();
  5743. break;
  5744. }
  5745. case 42: {
  5746. CYQTemperatureScale = input.ReadString();
  5747. break;
  5748. }
  5749. case 50: {
  5750. CYQHeadPressure = input.ReadString();
  5751. break;
  5752. }
  5753. case 58: {
  5754. CYQHeadTemperature = input.ReadString();
  5755. break;
  5756. }
  5757. case 66: {
  5758. CYQWatertankPressure = input.ReadString();
  5759. break;
  5760. }
  5761. case 74: {
  5762. CYQWatertankTemperature = input.ReadString();
  5763. break;
  5764. }
  5765. case 82: {
  5766. CYQWatertankWaterlevel = input.ReadString();
  5767. break;
  5768. }
  5769. case 90: {
  5770. CYQWatertankPressureForecast = input.ReadString();
  5771. break;
  5772. }
  5773. case 98: {
  5774. CYQWatertankTemperatureForecast = input.ReadString();
  5775. break;
  5776. }
  5777. case 106: {
  5778. CYQWatertankWaterlevelForecast = input.ReadString();
  5779. break;
  5780. }
  5781. case 114: {
  5782. MinusscalePressure = input.ReadString();
  5783. break;
  5784. }
  5785. case 122: {
  5786. MinusscaleTemperature = input.ReadString();
  5787. break;
  5788. }
  5789. case 130: {
  5790. MinusscaleFlow = input.ReadString();
  5791. break;
  5792. }
  5793. case 138: {
  5794. Time = input.ReadString();
  5795. break;
  5796. }
  5797. case 146: {
  5798. ExceptionStatus = input.ReadString();
  5799. break;
  5800. }
  5801. }
  5802. }
  5803. #endif
  5804. }
  5805. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  5806. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5807. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5808. void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
  5809. uint tag;
  5810. while ((tag = input.ReadTag()) != 0) {
  5811. switch(tag) {
  5812. default:
  5813. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
  5814. break;
  5815. case 10: {
  5816. CYQWaterrefillTemperature = input.ReadString();
  5817. break;
  5818. }
  5819. case 18: {
  5820. CYQWaterrefillPressure = input.ReadString();
  5821. break;
  5822. }
  5823. case 26: {
  5824. CYQWaterrefillFlow = input.ReadString();
  5825. break;
  5826. }
  5827. case 34: {
  5828. CYQRegulatingScale = input.ReadString();
  5829. break;
  5830. }
  5831. case 42: {
  5832. CYQTemperatureScale = input.ReadString();
  5833. break;
  5834. }
  5835. case 50: {
  5836. CYQHeadPressure = input.ReadString();
  5837. break;
  5838. }
  5839. case 58: {
  5840. CYQHeadTemperature = input.ReadString();
  5841. break;
  5842. }
  5843. case 66: {
  5844. CYQWatertankPressure = input.ReadString();
  5845. break;
  5846. }
  5847. case 74: {
  5848. CYQWatertankTemperature = input.ReadString();
  5849. break;
  5850. }
  5851. case 82: {
  5852. CYQWatertankWaterlevel = input.ReadString();
  5853. break;
  5854. }
  5855. case 90: {
  5856. CYQWatertankPressureForecast = input.ReadString();
  5857. break;
  5858. }
  5859. case 98: {
  5860. CYQWatertankTemperatureForecast = input.ReadString();
  5861. break;
  5862. }
  5863. case 106: {
  5864. CYQWatertankWaterlevelForecast = input.ReadString();
  5865. break;
  5866. }
  5867. case 114: {
  5868. MinusscalePressure = input.ReadString();
  5869. break;
  5870. }
  5871. case 122: {
  5872. MinusscaleTemperature = input.ReadString();
  5873. break;
  5874. }
  5875. case 130: {
  5876. MinusscaleFlow = input.ReadString();
  5877. break;
  5878. }
  5879. case 138: {
  5880. Time = input.ReadString();
  5881. break;
  5882. }
  5883. case 146: {
  5884. ExceptionStatus = input.ReadString();
  5885. break;
  5886. }
  5887. }
  5888. }
  5889. }
  5890. #endif
  5891. }
  5892. /// <summary>
  5893. ///风油系统
  5894. /// </summary>
  5895. public sealed partial class FY : pb::IMessage<FY>
  5896. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  5897. , pb::IBufferMessage
  5898. #endif
  5899. {
  5900. private static readonly pb::MessageParser<FY> _parser = new pb::MessageParser<FY>(() => new FY());
  5901. private pb::UnknownFieldSet _unknownFields;
  5902. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5903. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5904. public static pb::MessageParser<FY> Parser { get { return _parser; } }
  5905. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5906. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5907. public static pbr::MessageDescriptor Descriptor {
  5908. get { return global::Com.Xzzs.Boiler.Proto.MessageReflection.Descriptor.MessageTypes[7]; }
  5909. }
  5910. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5911. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5912. pbr::MessageDescriptor pb::IMessage.Descriptor {
  5913. get { return Descriptor; }
  5914. }
  5915. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5916. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5917. public FY() {
  5918. OnConstruction();
  5919. }
  5920. partial void OnConstruction();
  5921. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5922. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5923. public FY(FY other) : this() {
  5924. rYPumpPower_ = other.rYPumpPower_;
  5925. oilreturnScale_ = other.oilreturnScale_;
  5926. rYMainOperation_ = other.rYMainOperation_;
  5927. rYSideOperation_ = other.rYSideOperation_;
  5928. oilreturnScaleTarget_ = other.oilreturnScaleTarget_;
  5929. rYTemperature_ = other.rYTemperature_;
  5930. rYPressure_ = other.rYPressure_;
  5931. rYPressureTarget_ = other.rYPressureTarget_;
  5932. rYFlow_ = other.rYFlow_;
  5933. gFFrequency_ = other.gFFrequency_;
  5934. gFPower_ = other.gFPower_;
  5935. gFTemperature_ = other.gFTemperature_;
  5936. gFPressure_ = other.gFPressure_;
  5937. gFPressureTarget_ = other.gFPressureTarget_;
  5938. gFFlow_ = other.gFFlow_;
  5939. time_ = other.time_;
  5940. exceptionStatus_ = other.exceptionStatus_;
  5941. _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
  5942. }
  5943. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5944. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5945. public FY Clone() {
  5946. return new FY(this);
  5947. }
  5948. /// <summary>Field number for the "RY_pump_power" field.</summary>
  5949. public const int RYPumpPowerFieldNumber = 1;
  5950. private string rYPumpPower_ = "";
  5951. /// <summary>
  5952. ///燃油泵功率 .4f Double
  5953. /// </summary>
  5954. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5955. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5956. public string RYPumpPower {
  5957. get { return rYPumpPower_; }
  5958. set {
  5959. rYPumpPower_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5960. }
  5961. }
  5962. /// <summary>Field number for the "oilreturn_scale" field.</summary>
  5963. public const int OilreturnScaleFieldNumber = 2;
  5964. private string oilreturnScale_ = "";
  5965. /// <summary>
  5966. ///回油阀阀位.4f Double
  5967. /// </summary>
  5968. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5969. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5970. public string OilreturnScale {
  5971. get { return oilreturnScale_; }
  5972. set {
  5973. oilreturnScale_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5974. }
  5975. }
  5976. /// <summary>Field number for the "RY_main_operation" field.</summary>
  5977. public const int RYMainOperationFieldNumber = 3;
  5978. private string rYMainOperation_ = "";
  5979. /// <summary>
  5980. ///燃油主电磁阀开闭信号 boolean 0/1
  5981. /// </summary>
  5982. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5983. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5984. public string RYMainOperation {
  5985. get { return rYMainOperation_; }
  5986. set {
  5987. rYMainOperation_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  5988. }
  5989. }
  5990. /// <summary>Field number for the "RY_side_operation" field.</summary>
  5991. public const int RYSideOperationFieldNumber = 4;
  5992. private string rYSideOperation_ = "";
  5993. /// <summary>
  5994. ///燃油旁路电磁阀开闭信号 boolean 0/1
  5995. /// </summary>
  5996. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  5997. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  5998. public string RYSideOperation {
  5999. get { return rYSideOperation_; }
  6000. set {
  6001. rYSideOperation_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6002. }
  6003. }
  6004. /// <summary>Field number for the "oilreturn_scale_target" field.</summary>
  6005. public const int OilreturnScaleTargetFieldNumber = 5;
  6006. private string oilreturnScaleTarget_ = "";
  6007. /// <summary>
  6008. ///回油阀阀位目标值.4f Double
  6009. /// </summary>
  6010. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6011. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6012. public string OilreturnScaleTarget {
  6013. get { return oilreturnScaleTarget_; }
  6014. set {
  6015. oilreturnScaleTarget_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6016. }
  6017. }
  6018. /// <summary>Field number for the "RY_temperature" field.</summary>
  6019. public const int RYTemperatureFieldNumber = 6;
  6020. private string rYTemperature_ = "";
  6021. /// <summary>
  6022. ///燃油温度.4f Double
  6023. /// </summary>
  6024. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6025. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6026. public string RYTemperature {
  6027. get { return rYTemperature_; }
  6028. set {
  6029. rYTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6030. }
  6031. }
  6032. /// <summary>Field number for the "RY_pressure" field.</summary>
  6033. public const int RYPressureFieldNumber = 7;
  6034. private string rYPressure_ = "";
  6035. /// <summary>
  6036. ///燃油压力 .4f Double
  6037. /// </summary>
  6038. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6039. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6040. public string RYPressure {
  6041. get { return rYPressure_; }
  6042. set {
  6043. rYPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6044. }
  6045. }
  6046. /// <summary>Field number for the "RY_pressure_target" field.</summary>
  6047. public const int RYPressureTargetFieldNumber = 8;
  6048. private string rYPressureTarget_ = "";
  6049. /// <summary>
  6050. ///燃油压力目标值 .4f Double
  6051. /// </summary>
  6052. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6053. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6054. public string RYPressureTarget {
  6055. get { return rYPressureTarget_; }
  6056. set {
  6057. rYPressureTarget_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6058. }
  6059. }
  6060. /// <summary>Field number for the "RY_flow" field.</summary>
  6061. public const int RYFlowFieldNumber = 9;
  6062. private string rYFlow_ = "";
  6063. /// <summary>
  6064. ///燃油流量 .4f Double
  6065. /// </summary>
  6066. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6067. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6068. public string RYFlow {
  6069. get { return rYFlow_; }
  6070. set {
  6071. rYFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6072. }
  6073. }
  6074. /// <summary>Field number for the "GF_frequency" field.</summary>
  6075. public const int GFFrequencyFieldNumber = 10;
  6076. private string gFFrequency_ = "";
  6077. /// <summary>
  6078. ///风机频率 .4f double
  6079. /// </summary>
  6080. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6081. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6082. public string GFFrequency {
  6083. get { return gFFrequency_; }
  6084. set {
  6085. gFFrequency_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6086. }
  6087. }
  6088. /// <summary>Field number for the "GF_power" field.</summary>
  6089. public const int GFPowerFieldNumber = 11;
  6090. private string gFPower_ = "";
  6091. /// <summary>
  6092. ///风机功率 .4f double
  6093. /// </summary>
  6094. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6095. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6096. public string GFPower {
  6097. get { return gFPower_; }
  6098. set {
  6099. gFPower_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6100. }
  6101. }
  6102. /// <summary>Field number for the "GF_temperature" field.</summary>
  6103. public const int GFTemperatureFieldNumber = 12;
  6104. private string gFTemperature_ = "";
  6105. /// <summary>
  6106. ///进风温度 .4f Double
  6107. /// </summary>
  6108. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6109. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6110. public string GFTemperature {
  6111. get { return gFTemperature_; }
  6112. set {
  6113. gFTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6114. }
  6115. }
  6116. /// <summary>Field number for the "GF_pressure" field.</summary>
  6117. public const int GFPressureFieldNumber = 13;
  6118. private string gFPressure_ = "";
  6119. /// <summary>
  6120. ///进风压力 .4f Double
  6121. /// </summary>
  6122. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6123. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6124. public string GFPressure {
  6125. get { return gFPressure_; }
  6126. set {
  6127. gFPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6128. }
  6129. }
  6130. /// <summary>Field number for the "GF_pressure_target" field.</summary>
  6131. public const int GFPressureTargetFieldNumber = 14;
  6132. private string gFPressureTarget_ = "";
  6133. /// <summary>
  6134. ///进风压力目标值 .4f Double
  6135. /// </summary>
  6136. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6137. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6138. public string GFPressureTarget {
  6139. get { return gFPressureTarget_; }
  6140. set {
  6141. gFPressureTarget_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6142. }
  6143. }
  6144. /// <summary>Field number for the "GF_flow" field.</summary>
  6145. public const int GFFlowFieldNumber = 15;
  6146. private string gFFlow_ = "";
  6147. /// <summary>
  6148. ///进风流量 .4f Double
  6149. /// </summary>
  6150. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6151. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6152. public string GFFlow {
  6153. get { return gFFlow_; }
  6154. set {
  6155. gFFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6156. }
  6157. }
  6158. /// <summary>Field number for the "time" field.</summary>
  6159. public const int TimeFieldNumber = 16;
  6160. private string time_ = "";
  6161. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6162. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6163. public string Time {
  6164. get { return time_; }
  6165. set {
  6166. time_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6167. }
  6168. }
  6169. /// <summary>Field number for the "exception_status" field.</summary>
  6170. public const int ExceptionStatusFieldNumber = 17;
  6171. private string exceptionStatus_ = "";
  6172. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6173. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6174. public string ExceptionStatus {
  6175. get { return exceptionStatus_; }
  6176. set {
  6177. exceptionStatus_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6178. }
  6179. }
  6180. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6181. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6182. public override bool Equals(object other) {
  6183. return Equals(other as FY);
  6184. }
  6185. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6186. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6187. public bool Equals(FY other) {
  6188. if (ReferenceEquals(other, null)) {
  6189. return false;
  6190. }
  6191. if (ReferenceEquals(other, this)) {
  6192. return true;
  6193. }
  6194. if (RYPumpPower != other.RYPumpPower) return false;
  6195. if (OilreturnScale != other.OilreturnScale) return false;
  6196. if (RYMainOperation != other.RYMainOperation) return false;
  6197. if (RYSideOperation != other.RYSideOperation) return false;
  6198. if (OilreturnScaleTarget != other.OilreturnScaleTarget) return false;
  6199. if (RYTemperature != other.RYTemperature) return false;
  6200. if (RYPressure != other.RYPressure) return false;
  6201. if (RYPressureTarget != other.RYPressureTarget) return false;
  6202. if (RYFlow != other.RYFlow) return false;
  6203. if (GFFrequency != other.GFFrequency) return false;
  6204. if (GFPower != other.GFPower) return false;
  6205. if (GFTemperature != other.GFTemperature) return false;
  6206. if (GFPressure != other.GFPressure) return false;
  6207. if (GFPressureTarget != other.GFPressureTarget) return false;
  6208. if (GFFlow != other.GFFlow) return false;
  6209. if (Time != other.Time) return false;
  6210. if (ExceptionStatus != other.ExceptionStatus) return false;
  6211. return Equals(_unknownFields, other._unknownFields);
  6212. }
  6213. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6214. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6215. public override int GetHashCode() {
  6216. int hash = 1;
  6217. if (RYPumpPower.Length != 0) hash ^= RYPumpPower.GetHashCode();
  6218. if (OilreturnScale.Length != 0) hash ^= OilreturnScale.GetHashCode();
  6219. if (RYMainOperation.Length != 0) hash ^= RYMainOperation.GetHashCode();
  6220. if (RYSideOperation.Length != 0) hash ^= RYSideOperation.GetHashCode();
  6221. if (OilreturnScaleTarget.Length != 0) hash ^= OilreturnScaleTarget.GetHashCode();
  6222. if (RYTemperature.Length != 0) hash ^= RYTemperature.GetHashCode();
  6223. if (RYPressure.Length != 0) hash ^= RYPressure.GetHashCode();
  6224. if (RYPressureTarget.Length != 0) hash ^= RYPressureTarget.GetHashCode();
  6225. if (RYFlow.Length != 0) hash ^= RYFlow.GetHashCode();
  6226. if (GFFrequency.Length != 0) hash ^= GFFrequency.GetHashCode();
  6227. if (GFPower.Length != 0) hash ^= GFPower.GetHashCode();
  6228. if (GFTemperature.Length != 0) hash ^= GFTemperature.GetHashCode();
  6229. if (GFPressure.Length != 0) hash ^= GFPressure.GetHashCode();
  6230. if (GFPressureTarget.Length != 0) hash ^= GFPressureTarget.GetHashCode();
  6231. if (GFFlow.Length != 0) hash ^= GFFlow.GetHashCode();
  6232. if (Time.Length != 0) hash ^= Time.GetHashCode();
  6233. if (ExceptionStatus.Length != 0) hash ^= ExceptionStatus.GetHashCode();
  6234. if (_unknownFields != null) {
  6235. hash ^= _unknownFields.GetHashCode();
  6236. }
  6237. return hash;
  6238. }
  6239. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6240. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6241. public override string ToString() {
  6242. return pb::JsonFormatter.ToDiagnosticString(this);
  6243. }
  6244. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6245. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6246. public void WriteTo(pb::CodedOutputStream output) {
  6247. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  6248. output.WriteRawMessage(this);
  6249. #else
  6250. if (RYPumpPower.Length != 0) {
  6251. output.WriteRawTag(10);
  6252. output.WriteString(RYPumpPower);
  6253. }
  6254. if (OilreturnScale.Length != 0) {
  6255. output.WriteRawTag(18);
  6256. output.WriteString(OilreturnScale);
  6257. }
  6258. if (RYMainOperation.Length != 0) {
  6259. output.WriteRawTag(26);
  6260. output.WriteString(RYMainOperation);
  6261. }
  6262. if (RYSideOperation.Length != 0) {
  6263. output.WriteRawTag(34);
  6264. output.WriteString(RYSideOperation);
  6265. }
  6266. if (OilreturnScaleTarget.Length != 0) {
  6267. output.WriteRawTag(42);
  6268. output.WriteString(OilreturnScaleTarget);
  6269. }
  6270. if (RYTemperature.Length != 0) {
  6271. output.WriteRawTag(50);
  6272. output.WriteString(RYTemperature);
  6273. }
  6274. if (RYPressure.Length != 0) {
  6275. output.WriteRawTag(58);
  6276. output.WriteString(RYPressure);
  6277. }
  6278. if (RYPressureTarget.Length != 0) {
  6279. output.WriteRawTag(66);
  6280. output.WriteString(RYPressureTarget);
  6281. }
  6282. if (RYFlow.Length != 0) {
  6283. output.WriteRawTag(74);
  6284. output.WriteString(RYFlow);
  6285. }
  6286. if (GFFrequency.Length != 0) {
  6287. output.WriteRawTag(82);
  6288. output.WriteString(GFFrequency);
  6289. }
  6290. if (GFPower.Length != 0) {
  6291. output.WriteRawTag(90);
  6292. output.WriteString(GFPower);
  6293. }
  6294. if (GFTemperature.Length != 0) {
  6295. output.WriteRawTag(98);
  6296. output.WriteString(GFTemperature);
  6297. }
  6298. if (GFPressure.Length != 0) {
  6299. output.WriteRawTag(106);
  6300. output.WriteString(GFPressure);
  6301. }
  6302. if (GFPressureTarget.Length != 0) {
  6303. output.WriteRawTag(114);
  6304. output.WriteString(GFPressureTarget);
  6305. }
  6306. if (GFFlow.Length != 0) {
  6307. output.WriteRawTag(122);
  6308. output.WriteString(GFFlow);
  6309. }
  6310. if (Time.Length != 0) {
  6311. output.WriteRawTag(130, 1);
  6312. output.WriteString(Time);
  6313. }
  6314. if (ExceptionStatus.Length != 0) {
  6315. output.WriteRawTag(138, 1);
  6316. output.WriteString(ExceptionStatus);
  6317. }
  6318. if (_unknownFields != null) {
  6319. _unknownFields.WriteTo(output);
  6320. }
  6321. #endif
  6322. }
  6323. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  6324. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6325. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6326. void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
  6327. if (RYPumpPower.Length != 0) {
  6328. output.WriteRawTag(10);
  6329. output.WriteString(RYPumpPower);
  6330. }
  6331. if (OilreturnScale.Length != 0) {
  6332. output.WriteRawTag(18);
  6333. output.WriteString(OilreturnScale);
  6334. }
  6335. if (RYMainOperation.Length != 0) {
  6336. output.WriteRawTag(26);
  6337. output.WriteString(RYMainOperation);
  6338. }
  6339. if (RYSideOperation.Length != 0) {
  6340. output.WriteRawTag(34);
  6341. output.WriteString(RYSideOperation);
  6342. }
  6343. if (OilreturnScaleTarget.Length != 0) {
  6344. output.WriteRawTag(42);
  6345. output.WriteString(OilreturnScaleTarget);
  6346. }
  6347. if (RYTemperature.Length != 0) {
  6348. output.WriteRawTag(50);
  6349. output.WriteString(RYTemperature);
  6350. }
  6351. if (RYPressure.Length != 0) {
  6352. output.WriteRawTag(58);
  6353. output.WriteString(RYPressure);
  6354. }
  6355. if (RYPressureTarget.Length != 0) {
  6356. output.WriteRawTag(66);
  6357. output.WriteString(RYPressureTarget);
  6358. }
  6359. if (RYFlow.Length != 0) {
  6360. output.WriteRawTag(74);
  6361. output.WriteString(RYFlow);
  6362. }
  6363. if (GFFrequency.Length != 0) {
  6364. output.WriteRawTag(82);
  6365. output.WriteString(GFFrequency);
  6366. }
  6367. if (GFPower.Length != 0) {
  6368. output.WriteRawTag(90);
  6369. output.WriteString(GFPower);
  6370. }
  6371. if (GFTemperature.Length != 0) {
  6372. output.WriteRawTag(98);
  6373. output.WriteString(GFTemperature);
  6374. }
  6375. if (GFPressure.Length != 0) {
  6376. output.WriteRawTag(106);
  6377. output.WriteString(GFPressure);
  6378. }
  6379. if (GFPressureTarget.Length != 0) {
  6380. output.WriteRawTag(114);
  6381. output.WriteString(GFPressureTarget);
  6382. }
  6383. if (GFFlow.Length != 0) {
  6384. output.WriteRawTag(122);
  6385. output.WriteString(GFFlow);
  6386. }
  6387. if (Time.Length != 0) {
  6388. output.WriteRawTag(130, 1);
  6389. output.WriteString(Time);
  6390. }
  6391. if (ExceptionStatus.Length != 0) {
  6392. output.WriteRawTag(138, 1);
  6393. output.WriteString(ExceptionStatus);
  6394. }
  6395. if (_unknownFields != null) {
  6396. _unknownFields.WriteTo(ref output);
  6397. }
  6398. }
  6399. #endif
  6400. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6401. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6402. public int CalculateSize() {
  6403. int size = 0;
  6404. if (RYPumpPower.Length != 0) {
  6405. size += 1 + pb::CodedOutputStream.ComputeStringSize(RYPumpPower);
  6406. }
  6407. if (OilreturnScale.Length != 0) {
  6408. size += 1 + pb::CodedOutputStream.ComputeStringSize(OilreturnScale);
  6409. }
  6410. if (RYMainOperation.Length != 0) {
  6411. size += 1 + pb::CodedOutputStream.ComputeStringSize(RYMainOperation);
  6412. }
  6413. if (RYSideOperation.Length != 0) {
  6414. size += 1 + pb::CodedOutputStream.ComputeStringSize(RYSideOperation);
  6415. }
  6416. if (OilreturnScaleTarget.Length != 0) {
  6417. size += 1 + pb::CodedOutputStream.ComputeStringSize(OilreturnScaleTarget);
  6418. }
  6419. if (RYTemperature.Length != 0) {
  6420. size += 1 + pb::CodedOutputStream.ComputeStringSize(RYTemperature);
  6421. }
  6422. if (RYPressure.Length != 0) {
  6423. size += 1 + pb::CodedOutputStream.ComputeStringSize(RYPressure);
  6424. }
  6425. if (RYPressureTarget.Length != 0) {
  6426. size += 1 + pb::CodedOutputStream.ComputeStringSize(RYPressureTarget);
  6427. }
  6428. if (RYFlow.Length != 0) {
  6429. size += 1 + pb::CodedOutputStream.ComputeStringSize(RYFlow);
  6430. }
  6431. if (GFFrequency.Length != 0) {
  6432. size += 1 + pb::CodedOutputStream.ComputeStringSize(GFFrequency);
  6433. }
  6434. if (GFPower.Length != 0) {
  6435. size += 1 + pb::CodedOutputStream.ComputeStringSize(GFPower);
  6436. }
  6437. if (GFTemperature.Length != 0) {
  6438. size += 1 + pb::CodedOutputStream.ComputeStringSize(GFTemperature);
  6439. }
  6440. if (GFPressure.Length != 0) {
  6441. size += 1 + pb::CodedOutputStream.ComputeStringSize(GFPressure);
  6442. }
  6443. if (GFPressureTarget.Length != 0) {
  6444. size += 1 + pb::CodedOutputStream.ComputeStringSize(GFPressureTarget);
  6445. }
  6446. if (GFFlow.Length != 0) {
  6447. size += 1 + pb::CodedOutputStream.ComputeStringSize(GFFlow);
  6448. }
  6449. if (Time.Length != 0) {
  6450. size += 2 + pb::CodedOutputStream.ComputeStringSize(Time);
  6451. }
  6452. if (ExceptionStatus.Length != 0) {
  6453. size += 2 + pb::CodedOutputStream.ComputeStringSize(ExceptionStatus);
  6454. }
  6455. if (_unknownFields != null) {
  6456. size += _unknownFields.CalculateSize();
  6457. }
  6458. return size;
  6459. }
  6460. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6461. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6462. public void MergeFrom(FY other) {
  6463. if (other == null) {
  6464. return;
  6465. }
  6466. if (other.RYPumpPower.Length != 0) {
  6467. RYPumpPower = other.RYPumpPower;
  6468. }
  6469. if (other.OilreturnScale.Length != 0) {
  6470. OilreturnScale = other.OilreturnScale;
  6471. }
  6472. if (other.RYMainOperation.Length != 0) {
  6473. RYMainOperation = other.RYMainOperation;
  6474. }
  6475. if (other.RYSideOperation.Length != 0) {
  6476. RYSideOperation = other.RYSideOperation;
  6477. }
  6478. if (other.OilreturnScaleTarget.Length != 0) {
  6479. OilreturnScaleTarget = other.OilreturnScaleTarget;
  6480. }
  6481. if (other.RYTemperature.Length != 0) {
  6482. RYTemperature = other.RYTemperature;
  6483. }
  6484. if (other.RYPressure.Length != 0) {
  6485. RYPressure = other.RYPressure;
  6486. }
  6487. if (other.RYPressureTarget.Length != 0) {
  6488. RYPressureTarget = other.RYPressureTarget;
  6489. }
  6490. if (other.RYFlow.Length != 0) {
  6491. RYFlow = other.RYFlow;
  6492. }
  6493. if (other.GFFrequency.Length != 0) {
  6494. GFFrequency = other.GFFrequency;
  6495. }
  6496. if (other.GFPower.Length != 0) {
  6497. GFPower = other.GFPower;
  6498. }
  6499. if (other.GFTemperature.Length != 0) {
  6500. GFTemperature = other.GFTemperature;
  6501. }
  6502. if (other.GFPressure.Length != 0) {
  6503. GFPressure = other.GFPressure;
  6504. }
  6505. if (other.GFPressureTarget.Length != 0) {
  6506. GFPressureTarget = other.GFPressureTarget;
  6507. }
  6508. if (other.GFFlow.Length != 0) {
  6509. GFFlow = other.GFFlow;
  6510. }
  6511. if (other.Time.Length != 0) {
  6512. Time = other.Time;
  6513. }
  6514. if (other.ExceptionStatus.Length != 0) {
  6515. ExceptionStatus = other.ExceptionStatus;
  6516. }
  6517. _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
  6518. }
  6519. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6520. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6521. public void MergeFrom(pb::CodedInputStream input) {
  6522. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  6523. input.ReadRawMessage(this);
  6524. #else
  6525. uint tag;
  6526. while ((tag = input.ReadTag()) != 0) {
  6527. switch(tag) {
  6528. default:
  6529. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
  6530. break;
  6531. case 10: {
  6532. RYPumpPower = input.ReadString();
  6533. break;
  6534. }
  6535. case 18: {
  6536. OilreturnScale = input.ReadString();
  6537. break;
  6538. }
  6539. case 26: {
  6540. RYMainOperation = input.ReadString();
  6541. break;
  6542. }
  6543. case 34: {
  6544. RYSideOperation = input.ReadString();
  6545. break;
  6546. }
  6547. case 42: {
  6548. OilreturnScaleTarget = input.ReadString();
  6549. break;
  6550. }
  6551. case 50: {
  6552. RYTemperature = input.ReadString();
  6553. break;
  6554. }
  6555. case 58: {
  6556. RYPressure = input.ReadString();
  6557. break;
  6558. }
  6559. case 66: {
  6560. RYPressureTarget = input.ReadString();
  6561. break;
  6562. }
  6563. case 74: {
  6564. RYFlow = input.ReadString();
  6565. break;
  6566. }
  6567. case 82: {
  6568. GFFrequency = input.ReadString();
  6569. break;
  6570. }
  6571. case 90: {
  6572. GFPower = input.ReadString();
  6573. break;
  6574. }
  6575. case 98: {
  6576. GFTemperature = input.ReadString();
  6577. break;
  6578. }
  6579. case 106: {
  6580. GFPressure = input.ReadString();
  6581. break;
  6582. }
  6583. case 114: {
  6584. GFPressureTarget = input.ReadString();
  6585. break;
  6586. }
  6587. case 122: {
  6588. GFFlow = input.ReadString();
  6589. break;
  6590. }
  6591. case 130: {
  6592. Time = input.ReadString();
  6593. break;
  6594. }
  6595. case 138: {
  6596. ExceptionStatus = input.ReadString();
  6597. break;
  6598. }
  6599. }
  6600. }
  6601. #endif
  6602. }
  6603. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  6604. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6605. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6606. void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
  6607. uint tag;
  6608. while ((tag = input.ReadTag()) != 0) {
  6609. switch(tag) {
  6610. default:
  6611. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
  6612. break;
  6613. case 10: {
  6614. RYPumpPower = input.ReadString();
  6615. break;
  6616. }
  6617. case 18: {
  6618. OilreturnScale = input.ReadString();
  6619. break;
  6620. }
  6621. case 26: {
  6622. RYMainOperation = input.ReadString();
  6623. break;
  6624. }
  6625. case 34: {
  6626. RYSideOperation = input.ReadString();
  6627. break;
  6628. }
  6629. case 42: {
  6630. OilreturnScaleTarget = input.ReadString();
  6631. break;
  6632. }
  6633. case 50: {
  6634. RYTemperature = input.ReadString();
  6635. break;
  6636. }
  6637. case 58: {
  6638. RYPressure = input.ReadString();
  6639. break;
  6640. }
  6641. case 66: {
  6642. RYPressureTarget = input.ReadString();
  6643. break;
  6644. }
  6645. case 74: {
  6646. RYFlow = input.ReadString();
  6647. break;
  6648. }
  6649. case 82: {
  6650. GFFrequency = input.ReadString();
  6651. break;
  6652. }
  6653. case 90: {
  6654. GFPower = input.ReadString();
  6655. break;
  6656. }
  6657. case 98: {
  6658. GFTemperature = input.ReadString();
  6659. break;
  6660. }
  6661. case 106: {
  6662. GFPressure = input.ReadString();
  6663. break;
  6664. }
  6665. case 114: {
  6666. GFPressureTarget = input.ReadString();
  6667. break;
  6668. }
  6669. case 122: {
  6670. GFFlow = input.ReadString();
  6671. break;
  6672. }
  6673. case 130: {
  6674. Time = input.ReadString();
  6675. break;
  6676. }
  6677. case 138: {
  6678. ExceptionStatus = input.ReadString();
  6679. break;
  6680. }
  6681. }
  6682. }
  6683. }
  6684. #endif
  6685. }
  6686. /// <summary>
  6687. ///过热蒸汽集箱
  6688. /// </summary>
  6689. public sealed partial class GRZQJX : pb::IMessage<GRZQJX>
  6690. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  6691. , pb::IBufferMessage
  6692. #endif
  6693. {
  6694. private static readonly pb::MessageParser<GRZQJX> _parser = new pb::MessageParser<GRZQJX>(() => new GRZQJX());
  6695. private pb::UnknownFieldSet _unknownFields;
  6696. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6697. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6698. public static pb::MessageParser<GRZQJX> Parser { get { return _parser; } }
  6699. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6700. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6701. public static pbr::MessageDescriptor Descriptor {
  6702. get { return global::Com.Xzzs.Boiler.Proto.MessageReflection.Descriptor.MessageTypes[8]; }
  6703. }
  6704. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6705. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6706. pbr::MessageDescriptor pb::IMessage.Descriptor {
  6707. get { return Descriptor; }
  6708. }
  6709. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6710. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6711. public GRZQJX() {
  6712. OnConstruction();
  6713. }
  6714. partial void OnConstruction();
  6715. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6716. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6717. public GRZQJX(GRZQJX other) : this() {
  6718. gRZQJXTemperature_ = other.gRZQJXTemperature_;
  6719. gRZQJXPressure_ = other.gRZQJXPressure_;
  6720. gRZQJXFlow_ = other.gRZQJXFlow_;
  6721. steamengineScale_ = other.steamengineScale_;
  6722. storesteamScale_ = other.storesteamScale_;
  6723. sideoutScale_ = other.sideoutScale_;
  6724. steamengineFlow_ = other.steamengineFlow_;
  6725. storesteamFlow_ = other.storesteamFlow_;
  6726. sideoutFlow_ = other.sideoutFlow_;
  6727. gRZQJXTemperatureForecast_ = other.gRZQJXTemperatureForecast_;
  6728. gRZQJXPressureForecast_ = other.gRZQJXPressureForecast_;
  6729. gRZQJXPressureTarget_ = other.gRZQJXPressureTarget_;
  6730. gRZQJXFlowForecast_ = other.gRZQJXFlowForecast_;
  6731. time_ = other.time_;
  6732. exceptionStatus_ = other.exceptionStatus_;
  6733. _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
  6734. }
  6735. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6736. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6737. public GRZQJX Clone() {
  6738. return new GRZQJX(this);
  6739. }
  6740. /// <summary>Field number for the "GRZQJX_temperature" field.</summary>
  6741. public const int GRZQJXTemperatureFieldNumber = 1;
  6742. private string gRZQJXTemperature_ = "";
  6743. /// <summary>
  6744. ///过热蒸汽温度 .4f Double
  6745. /// </summary>
  6746. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6747. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6748. public string GRZQJXTemperature {
  6749. get { return gRZQJXTemperature_; }
  6750. set {
  6751. gRZQJXTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6752. }
  6753. }
  6754. /// <summary>Field number for the "GRZQJX_pressure" field.</summary>
  6755. public const int GRZQJXPressureFieldNumber = 2;
  6756. private string gRZQJXPressure_ = "";
  6757. /// <summary>
  6758. ///过热蒸汽压力 .4f Double
  6759. /// </summary>
  6760. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6761. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6762. public string GRZQJXPressure {
  6763. get { return gRZQJXPressure_; }
  6764. set {
  6765. gRZQJXPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6766. }
  6767. }
  6768. /// <summary>Field number for the "GRZQJX_flow" field.</summary>
  6769. public const int GRZQJXFlowFieldNumber = 3;
  6770. private string gRZQJXFlow_ = "";
  6771. /// <summary>
  6772. ///过热蒸汽流量 .4f double
  6773. /// </summary>
  6774. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6775. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6776. public string GRZQJXFlow {
  6777. get { return gRZQJXFlow_; }
  6778. set {
  6779. gRZQJXFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6780. }
  6781. }
  6782. /// <summary>Field number for the "steamengine_scale" field.</summary>
  6783. public const int SteamengineScaleFieldNumber = 4;
  6784. private string steamengineScale_ = "";
  6785. /// <summary>
  6786. ///汽机侧截止阀阀位.4f double
  6787. /// </summary>
  6788. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6789. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6790. public string SteamengineScale {
  6791. get { return steamengineScale_; }
  6792. set {
  6793. steamengineScale_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6794. }
  6795. }
  6796. /// <summary>Field number for the "storesteam_scale" field.</summary>
  6797. public const int StoresteamScaleFieldNumber = 5;
  6798. private string storesteamScale_ = "";
  6799. /// <summary>
  6800. ///储汽侧截止阀阀位.4f double
  6801. /// </summary>
  6802. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6803. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6804. public string StoresteamScale {
  6805. get { return storesteamScale_; }
  6806. set {
  6807. storesteamScale_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6808. }
  6809. }
  6810. /// <summary>Field number for the "sideout_scale" field.</summary>
  6811. public const int SideoutScaleFieldNumber = 6;
  6812. private string sideoutScale_ = "";
  6813. /// <summary>
  6814. ///旁排截止阀阀位.4f double
  6815. /// </summary>
  6816. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6817. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6818. public string SideoutScale {
  6819. get { return sideoutScale_; }
  6820. set {
  6821. sideoutScale_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6822. }
  6823. }
  6824. /// <summary>Field number for the "steamengine_flow" field.</summary>
  6825. public const int SteamengineFlowFieldNumber = 7;
  6826. private string steamengineFlow_ = "";
  6827. /// <summary>
  6828. ///汽机侧出口流量.4f double
  6829. /// </summary>
  6830. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6831. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6832. public string SteamengineFlow {
  6833. get { return steamengineFlow_; }
  6834. set {
  6835. steamengineFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6836. }
  6837. }
  6838. /// <summary>Field number for the "storesteam_flow" field.</summary>
  6839. public const int StoresteamFlowFieldNumber = 8;
  6840. private string storesteamFlow_ = "";
  6841. /// <summary>
  6842. ///储汽侧出口流量.4f double
  6843. /// </summary>
  6844. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6845. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6846. public string StoresteamFlow {
  6847. get { return storesteamFlow_; }
  6848. set {
  6849. storesteamFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6850. }
  6851. }
  6852. /// <summary>Field number for the "sideout_flow" field.</summary>
  6853. public const int SideoutFlowFieldNumber = 9;
  6854. private string sideoutFlow_ = "";
  6855. /// <summary>
  6856. ///旁排流量.4f double
  6857. /// </summary>
  6858. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6859. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6860. public string SideoutFlow {
  6861. get { return sideoutFlow_; }
  6862. set {
  6863. sideoutFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6864. }
  6865. }
  6866. /// <summary>Field number for the "GRZQJX_temperature_forecast" field.</summary>
  6867. public const int GRZQJXTemperatureForecastFieldNumber = 10;
  6868. private string gRZQJXTemperatureForecast_ = "";
  6869. /// <summary>
  6870. ///过热蒸汽温度预测值 .4f Double
  6871. /// </summary>
  6872. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6873. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6874. public string GRZQJXTemperatureForecast {
  6875. get { return gRZQJXTemperatureForecast_; }
  6876. set {
  6877. gRZQJXTemperatureForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6878. }
  6879. }
  6880. /// <summary>Field number for the "GRZQJX_pressure_forecast" field.</summary>
  6881. public const int GRZQJXPressureForecastFieldNumber = 11;
  6882. private string gRZQJXPressureForecast_ = "";
  6883. /// <summary>
  6884. ///过热蒸汽压力预测值 .4f Double
  6885. /// </summary>
  6886. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6887. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6888. public string GRZQJXPressureForecast {
  6889. get { return gRZQJXPressureForecast_; }
  6890. set {
  6891. gRZQJXPressureForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6892. }
  6893. }
  6894. /// <summary>Field number for the "GRZQJX_pressure_target" field.</summary>
  6895. public const int GRZQJXPressureTargetFieldNumber = 12;
  6896. private string gRZQJXPressureTarget_ = "";
  6897. /// <summary>
  6898. ///主蒸压力目标值 .4f Double
  6899. /// </summary>
  6900. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6901. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6902. public string GRZQJXPressureTarget {
  6903. get { return gRZQJXPressureTarget_; }
  6904. set {
  6905. gRZQJXPressureTarget_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6906. }
  6907. }
  6908. /// <summary>Field number for the "GRZQJX_flow_forecast" field.</summary>
  6909. public const int GRZQJXFlowForecastFieldNumber = 13;
  6910. private string gRZQJXFlowForecast_ = "";
  6911. /// <summary>
  6912. ///过热蒸汽流量预测值 .4f double
  6913. /// </summary>
  6914. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6915. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6916. public string GRZQJXFlowForecast {
  6917. get { return gRZQJXFlowForecast_; }
  6918. set {
  6919. gRZQJXFlowForecast_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6920. }
  6921. }
  6922. /// <summary>Field number for the "time" field.</summary>
  6923. public const int TimeFieldNumber = 14;
  6924. private string time_ = "";
  6925. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6926. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6927. public string Time {
  6928. get { return time_; }
  6929. set {
  6930. time_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6931. }
  6932. }
  6933. /// <summary>Field number for the "exception_status" field.</summary>
  6934. public const int ExceptionStatusFieldNumber = 15;
  6935. private string exceptionStatus_ = "";
  6936. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6937. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6938. public string ExceptionStatus {
  6939. get { return exceptionStatus_; }
  6940. set {
  6941. exceptionStatus_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  6942. }
  6943. }
  6944. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6945. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6946. public override bool Equals(object other) {
  6947. return Equals(other as GRZQJX);
  6948. }
  6949. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6950. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6951. public bool Equals(GRZQJX other) {
  6952. if (ReferenceEquals(other, null)) {
  6953. return false;
  6954. }
  6955. if (ReferenceEquals(other, this)) {
  6956. return true;
  6957. }
  6958. if (GRZQJXTemperature != other.GRZQJXTemperature) return false;
  6959. if (GRZQJXPressure != other.GRZQJXPressure) return false;
  6960. if (GRZQJXFlow != other.GRZQJXFlow) return false;
  6961. if (SteamengineScale != other.SteamengineScale) return false;
  6962. if (StoresteamScale != other.StoresteamScale) return false;
  6963. if (SideoutScale != other.SideoutScale) return false;
  6964. if (SteamengineFlow != other.SteamengineFlow) return false;
  6965. if (StoresteamFlow != other.StoresteamFlow) return false;
  6966. if (SideoutFlow != other.SideoutFlow) return false;
  6967. if (GRZQJXTemperatureForecast != other.GRZQJXTemperatureForecast) return false;
  6968. if (GRZQJXPressureForecast != other.GRZQJXPressureForecast) return false;
  6969. if (GRZQJXPressureTarget != other.GRZQJXPressureTarget) return false;
  6970. if (GRZQJXFlowForecast != other.GRZQJXFlowForecast) return false;
  6971. if (Time != other.Time) return false;
  6972. if (ExceptionStatus != other.ExceptionStatus) return false;
  6973. return Equals(_unknownFields, other._unknownFields);
  6974. }
  6975. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  6976. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  6977. public override int GetHashCode() {
  6978. int hash = 1;
  6979. if (GRZQJXTemperature.Length != 0) hash ^= GRZQJXTemperature.GetHashCode();
  6980. if (GRZQJXPressure.Length != 0) hash ^= GRZQJXPressure.GetHashCode();
  6981. if (GRZQJXFlow.Length != 0) hash ^= GRZQJXFlow.GetHashCode();
  6982. if (SteamengineScale.Length != 0) hash ^= SteamengineScale.GetHashCode();
  6983. if (StoresteamScale.Length != 0) hash ^= StoresteamScale.GetHashCode();
  6984. if (SideoutScale.Length != 0) hash ^= SideoutScale.GetHashCode();
  6985. if (SteamengineFlow.Length != 0) hash ^= SteamengineFlow.GetHashCode();
  6986. if (StoresteamFlow.Length != 0) hash ^= StoresteamFlow.GetHashCode();
  6987. if (SideoutFlow.Length != 0) hash ^= SideoutFlow.GetHashCode();
  6988. if (GRZQJXTemperatureForecast.Length != 0) hash ^= GRZQJXTemperatureForecast.GetHashCode();
  6989. if (GRZQJXPressureForecast.Length != 0) hash ^= GRZQJXPressureForecast.GetHashCode();
  6990. if (GRZQJXPressureTarget.Length != 0) hash ^= GRZQJXPressureTarget.GetHashCode();
  6991. if (GRZQJXFlowForecast.Length != 0) hash ^= GRZQJXFlowForecast.GetHashCode();
  6992. if (Time.Length != 0) hash ^= Time.GetHashCode();
  6993. if (ExceptionStatus.Length != 0) hash ^= ExceptionStatus.GetHashCode();
  6994. if (_unknownFields != null) {
  6995. hash ^= _unknownFields.GetHashCode();
  6996. }
  6997. return hash;
  6998. }
  6999. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7000. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7001. public override string ToString() {
  7002. return pb::JsonFormatter.ToDiagnosticString(this);
  7003. }
  7004. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7005. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7006. public void WriteTo(pb::CodedOutputStream output) {
  7007. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  7008. output.WriteRawMessage(this);
  7009. #else
  7010. if (GRZQJXTemperature.Length != 0) {
  7011. output.WriteRawTag(10);
  7012. output.WriteString(GRZQJXTemperature);
  7013. }
  7014. if (GRZQJXPressure.Length != 0) {
  7015. output.WriteRawTag(18);
  7016. output.WriteString(GRZQJXPressure);
  7017. }
  7018. if (GRZQJXFlow.Length != 0) {
  7019. output.WriteRawTag(26);
  7020. output.WriteString(GRZQJXFlow);
  7021. }
  7022. if (SteamengineScale.Length != 0) {
  7023. output.WriteRawTag(34);
  7024. output.WriteString(SteamengineScale);
  7025. }
  7026. if (StoresteamScale.Length != 0) {
  7027. output.WriteRawTag(42);
  7028. output.WriteString(StoresteamScale);
  7029. }
  7030. if (SideoutScale.Length != 0) {
  7031. output.WriteRawTag(50);
  7032. output.WriteString(SideoutScale);
  7033. }
  7034. if (SteamengineFlow.Length != 0) {
  7035. output.WriteRawTag(58);
  7036. output.WriteString(SteamengineFlow);
  7037. }
  7038. if (StoresteamFlow.Length != 0) {
  7039. output.WriteRawTag(66);
  7040. output.WriteString(StoresteamFlow);
  7041. }
  7042. if (SideoutFlow.Length != 0) {
  7043. output.WriteRawTag(74);
  7044. output.WriteString(SideoutFlow);
  7045. }
  7046. if (GRZQJXTemperatureForecast.Length != 0) {
  7047. output.WriteRawTag(82);
  7048. output.WriteString(GRZQJXTemperatureForecast);
  7049. }
  7050. if (GRZQJXPressureForecast.Length != 0) {
  7051. output.WriteRawTag(90);
  7052. output.WriteString(GRZQJXPressureForecast);
  7053. }
  7054. if (GRZQJXPressureTarget.Length != 0) {
  7055. output.WriteRawTag(98);
  7056. output.WriteString(GRZQJXPressureTarget);
  7057. }
  7058. if (GRZQJXFlowForecast.Length != 0) {
  7059. output.WriteRawTag(106);
  7060. output.WriteString(GRZQJXFlowForecast);
  7061. }
  7062. if (Time.Length != 0) {
  7063. output.WriteRawTag(114);
  7064. output.WriteString(Time);
  7065. }
  7066. if (ExceptionStatus.Length != 0) {
  7067. output.WriteRawTag(122);
  7068. output.WriteString(ExceptionStatus);
  7069. }
  7070. if (_unknownFields != null) {
  7071. _unknownFields.WriteTo(output);
  7072. }
  7073. #endif
  7074. }
  7075. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  7076. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7077. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7078. void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
  7079. if (GRZQJXTemperature.Length != 0) {
  7080. output.WriteRawTag(10);
  7081. output.WriteString(GRZQJXTemperature);
  7082. }
  7083. if (GRZQJXPressure.Length != 0) {
  7084. output.WriteRawTag(18);
  7085. output.WriteString(GRZQJXPressure);
  7086. }
  7087. if (GRZQJXFlow.Length != 0) {
  7088. output.WriteRawTag(26);
  7089. output.WriteString(GRZQJXFlow);
  7090. }
  7091. if (SteamengineScale.Length != 0) {
  7092. output.WriteRawTag(34);
  7093. output.WriteString(SteamengineScale);
  7094. }
  7095. if (StoresteamScale.Length != 0) {
  7096. output.WriteRawTag(42);
  7097. output.WriteString(StoresteamScale);
  7098. }
  7099. if (SideoutScale.Length != 0) {
  7100. output.WriteRawTag(50);
  7101. output.WriteString(SideoutScale);
  7102. }
  7103. if (SteamengineFlow.Length != 0) {
  7104. output.WriteRawTag(58);
  7105. output.WriteString(SteamengineFlow);
  7106. }
  7107. if (StoresteamFlow.Length != 0) {
  7108. output.WriteRawTag(66);
  7109. output.WriteString(StoresteamFlow);
  7110. }
  7111. if (SideoutFlow.Length != 0) {
  7112. output.WriteRawTag(74);
  7113. output.WriteString(SideoutFlow);
  7114. }
  7115. if (GRZQJXTemperatureForecast.Length != 0) {
  7116. output.WriteRawTag(82);
  7117. output.WriteString(GRZQJXTemperatureForecast);
  7118. }
  7119. if (GRZQJXPressureForecast.Length != 0) {
  7120. output.WriteRawTag(90);
  7121. output.WriteString(GRZQJXPressureForecast);
  7122. }
  7123. if (GRZQJXPressureTarget.Length != 0) {
  7124. output.WriteRawTag(98);
  7125. output.WriteString(GRZQJXPressureTarget);
  7126. }
  7127. if (GRZQJXFlowForecast.Length != 0) {
  7128. output.WriteRawTag(106);
  7129. output.WriteString(GRZQJXFlowForecast);
  7130. }
  7131. if (Time.Length != 0) {
  7132. output.WriteRawTag(114);
  7133. output.WriteString(Time);
  7134. }
  7135. if (ExceptionStatus.Length != 0) {
  7136. output.WriteRawTag(122);
  7137. output.WriteString(ExceptionStatus);
  7138. }
  7139. if (_unknownFields != null) {
  7140. _unknownFields.WriteTo(ref output);
  7141. }
  7142. }
  7143. #endif
  7144. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7145. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7146. public int CalculateSize() {
  7147. int size = 0;
  7148. if (GRZQJXTemperature.Length != 0) {
  7149. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRZQJXTemperature);
  7150. }
  7151. if (GRZQJXPressure.Length != 0) {
  7152. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRZQJXPressure);
  7153. }
  7154. if (GRZQJXFlow.Length != 0) {
  7155. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRZQJXFlow);
  7156. }
  7157. if (SteamengineScale.Length != 0) {
  7158. size += 1 + pb::CodedOutputStream.ComputeStringSize(SteamengineScale);
  7159. }
  7160. if (StoresteamScale.Length != 0) {
  7161. size += 1 + pb::CodedOutputStream.ComputeStringSize(StoresteamScale);
  7162. }
  7163. if (SideoutScale.Length != 0) {
  7164. size += 1 + pb::CodedOutputStream.ComputeStringSize(SideoutScale);
  7165. }
  7166. if (SteamengineFlow.Length != 0) {
  7167. size += 1 + pb::CodedOutputStream.ComputeStringSize(SteamengineFlow);
  7168. }
  7169. if (StoresteamFlow.Length != 0) {
  7170. size += 1 + pb::CodedOutputStream.ComputeStringSize(StoresteamFlow);
  7171. }
  7172. if (SideoutFlow.Length != 0) {
  7173. size += 1 + pb::CodedOutputStream.ComputeStringSize(SideoutFlow);
  7174. }
  7175. if (GRZQJXTemperatureForecast.Length != 0) {
  7176. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRZQJXTemperatureForecast);
  7177. }
  7178. if (GRZQJXPressureForecast.Length != 0) {
  7179. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRZQJXPressureForecast);
  7180. }
  7181. if (GRZQJXPressureTarget.Length != 0) {
  7182. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRZQJXPressureTarget);
  7183. }
  7184. if (GRZQJXFlowForecast.Length != 0) {
  7185. size += 1 + pb::CodedOutputStream.ComputeStringSize(GRZQJXFlowForecast);
  7186. }
  7187. if (Time.Length != 0) {
  7188. size += 1 + pb::CodedOutputStream.ComputeStringSize(Time);
  7189. }
  7190. if (ExceptionStatus.Length != 0) {
  7191. size += 1 + pb::CodedOutputStream.ComputeStringSize(ExceptionStatus);
  7192. }
  7193. if (_unknownFields != null) {
  7194. size += _unknownFields.CalculateSize();
  7195. }
  7196. return size;
  7197. }
  7198. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7199. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7200. public void MergeFrom(GRZQJX other) {
  7201. if (other == null) {
  7202. return;
  7203. }
  7204. if (other.GRZQJXTemperature.Length != 0) {
  7205. GRZQJXTemperature = other.GRZQJXTemperature;
  7206. }
  7207. if (other.GRZQJXPressure.Length != 0) {
  7208. GRZQJXPressure = other.GRZQJXPressure;
  7209. }
  7210. if (other.GRZQJXFlow.Length != 0) {
  7211. GRZQJXFlow = other.GRZQJXFlow;
  7212. }
  7213. if (other.SteamengineScale.Length != 0) {
  7214. SteamengineScale = other.SteamengineScale;
  7215. }
  7216. if (other.StoresteamScale.Length != 0) {
  7217. StoresteamScale = other.StoresteamScale;
  7218. }
  7219. if (other.SideoutScale.Length != 0) {
  7220. SideoutScale = other.SideoutScale;
  7221. }
  7222. if (other.SteamengineFlow.Length != 0) {
  7223. SteamengineFlow = other.SteamengineFlow;
  7224. }
  7225. if (other.StoresteamFlow.Length != 0) {
  7226. StoresteamFlow = other.StoresteamFlow;
  7227. }
  7228. if (other.SideoutFlow.Length != 0) {
  7229. SideoutFlow = other.SideoutFlow;
  7230. }
  7231. if (other.GRZQJXTemperatureForecast.Length != 0) {
  7232. GRZQJXTemperatureForecast = other.GRZQJXTemperatureForecast;
  7233. }
  7234. if (other.GRZQJXPressureForecast.Length != 0) {
  7235. GRZQJXPressureForecast = other.GRZQJXPressureForecast;
  7236. }
  7237. if (other.GRZQJXPressureTarget.Length != 0) {
  7238. GRZQJXPressureTarget = other.GRZQJXPressureTarget;
  7239. }
  7240. if (other.GRZQJXFlowForecast.Length != 0) {
  7241. GRZQJXFlowForecast = other.GRZQJXFlowForecast;
  7242. }
  7243. if (other.Time.Length != 0) {
  7244. Time = other.Time;
  7245. }
  7246. if (other.ExceptionStatus.Length != 0) {
  7247. ExceptionStatus = other.ExceptionStatus;
  7248. }
  7249. _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
  7250. }
  7251. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7252. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7253. public void MergeFrom(pb::CodedInputStream input) {
  7254. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  7255. input.ReadRawMessage(this);
  7256. #else
  7257. uint tag;
  7258. while ((tag = input.ReadTag()) != 0) {
  7259. switch(tag) {
  7260. default:
  7261. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
  7262. break;
  7263. case 10: {
  7264. GRZQJXTemperature = input.ReadString();
  7265. break;
  7266. }
  7267. case 18: {
  7268. GRZQJXPressure = input.ReadString();
  7269. break;
  7270. }
  7271. case 26: {
  7272. GRZQJXFlow = input.ReadString();
  7273. break;
  7274. }
  7275. case 34: {
  7276. SteamengineScale = input.ReadString();
  7277. break;
  7278. }
  7279. case 42: {
  7280. StoresteamScale = input.ReadString();
  7281. break;
  7282. }
  7283. case 50: {
  7284. SideoutScale = input.ReadString();
  7285. break;
  7286. }
  7287. case 58: {
  7288. SteamengineFlow = input.ReadString();
  7289. break;
  7290. }
  7291. case 66: {
  7292. StoresteamFlow = input.ReadString();
  7293. break;
  7294. }
  7295. case 74: {
  7296. SideoutFlow = input.ReadString();
  7297. break;
  7298. }
  7299. case 82: {
  7300. GRZQJXTemperatureForecast = input.ReadString();
  7301. break;
  7302. }
  7303. case 90: {
  7304. GRZQJXPressureForecast = input.ReadString();
  7305. break;
  7306. }
  7307. case 98: {
  7308. GRZQJXPressureTarget = input.ReadString();
  7309. break;
  7310. }
  7311. case 106: {
  7312. GRZQJXFlowForecast = input.ReadString();
  7313. break;
  7314. }
  7315. case 114: {
  7316. Time = input.ReadString();
  7317. break;
  7318. }
  7319. case 122: {
  7320. ExceptionStatus = input.ReadString();
  7321. break;
  7322. }
  7323. }
  7324. }
  7325. #endif
  7326. }
  7327. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  7328. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7329. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7330. void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
  7331. uint tag;
  7332. while ((tag = input.ReadTag()) != 0) {
  7333. switch(tag) {
  7334. default:
  7335. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
  7336. break;
  7337. case 10: {
  7338. GRZQJXTemperature = input.ReadString();
  7339. break;
  7340. }
  7341. case 18: {
  7342. GRZQJXPressure = input.ReadString();
  7343. break;
  7344. }
  7345. case 26: {
  7346. GRZQJXFlow = input.ReadString();
  7347. break;
  7348. }
  7349. case 34: {
  7350. SteamengineScale = input.ReadString();
  7351. break;
  7352. }
  7353. case 42: {
  7354. StoresteamScale = input.ReadString();
  7355. break;
  7356. }
  7357. case 50: {
  7358. SideoutScale = input.ReadString();
  7359. break;
  7360. }
  7361. case 58: {
  7362. SteamengineFlow = input.ReadString();
  7363. break;
  7364. }
  7365. case 66: {
  7366. StoresteamFlow = input.ReadString();
  7367. break;
  7368. }
  7369. case 74: {
  7370. SideoutFlow = input.ReadString();
  7371. break;
  7372. }
  7373. case 82: {
  7374. GRZQJXTemperatureForecast = input.ReadString();
  7375. break;
  7376. }
  7377. case 90: {
  7378. GRZQJXPressureForecast = input.ReadString();
  7379. break;
  7380. }
  7381. case 98: {
  7382. GRZQJXPressureTarget = input.ReadString();
  7383. break;
  7384. }
  7385. case 106: {
  7386. GRZQJXFlowForecast = input.ReadString();
  7387. break;
  7388. }
  7389. case 114: {
  7390. Time = input.ReadString();
  7391. break;
  7392. }
  7393. case 122: {
  7394. ExceptionStatus = input.ReadString();
  7395. break;
  7396. }
  7397. }
  7398. }
  7399. }
  7400. #endif
  7401. }
  7402. /// <summary>
  7403. ///排烟系统
  7404. /// </summary>
  7405. public sealed partial class PY : pb::IMessage<PY>
  7406. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  7407. , pb::IBufferMessage
  7408. #endif
  7409. {
  7410. private static readonly pb::MessageParser<PY> _parser = new pb::MessageParser<PY>(() => new PY());
  7411. private pb::UnknownFieldSet _unknownFields;
  7412. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7413. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7414. public static pb::MessageParser<PY> Parser { get { return _parser; } }
  7415. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7416. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7417. public static pbr::MessageDescriptor Descriptor {
  7418. get { return global::Com.Xzzs.Boiler.Proto.MessageReflection.Descriptor.MessageTypes[9]; }
  7419. }
  7420. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7421. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7422. pbr::MessageDescriptor pb::IMessage.Descriptor {
  7423. get { return Descriptor; }
  7424. }
  7425. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7426. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7427. public PY() {
  7428. OnConstruction();
  7429. }
  7430. partial void OnConstruction();
  7431. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7432. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7433. public PY(PY other) : this() {
  7434. pYInPressure_ = other.pYInPressure_;
  7435. pYInTemperature_ = other.pYInTemperature_;
  7436. pYInFlow_ = other.pYInFlow_;
  7437. pYPressure_ = other.pYPressure_;
  7438. pYTemperature_ = other.pYTemperature_;
  7439. pYFlow_ = other.pYFlow_;
  7440. time_ = other.time_;
  7441. exceptionStatus_ = other.exceptionStatus_;
  7442. _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
  7443. }
  7444. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7445. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7446. public PY Clone() {
  7447. return new PY(this);
  7448. }
  7449. /// <summary>Field number for the "PY_in_pressure" field.</summary>
  7450. public const int PYInPressureFieldNumber = 1;
  7451. private string pYInPressure_ = "";
  7452. /// <summary>
  7453. ///排烟管道入口压力 .4f Double
  7454. /// </summary>
  7455. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7456. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7457. public string PYInPressure {
  7458. get { return pYInPressure_; }
  7459. set {
  7460. pYInPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  7461. }
  7462. }
  7463. /// <summary>Field number for the "PY_in_temperature" field.</summary>
  7464. public const int PYInTemperatureFieldNumber = 2;
  7465. private string pYInTemperature_ = "";
  7466. /// <summary>
  7467. ///排烟管道入口温度 .4f Double
  7468. /// </summary>
  7469. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7470. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7471. public string PYInTemperature {
  7472. get { return pYInTemperature_; }
  7473. set {
  7474. pYInTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  7475. }
  7476. }
  7477. /// <summary>Field number for the "PY_in_flow" field.</summary>
  7478. public const int PYInFlowFieldNumber = 3;
  7479. private string pYInFlow_ = "";
  7480. /// <summary>
  7481. ///排烟管道入口流量 .4f Double
  7482. /// </summary>
  7483. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7484. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7485. public string PYInFlow {
  7486. get { return pYInFlow_; }
  7487. set {
  7488. pYInFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  7489. }
  7490. }
  7491. /// <summary>Field number for the "PY_pressure" field.</summary>
  7492. public const int PYPressureFieldNumber = 4;
  7493. private string pYPressure_ = "";
  7494. /// <summary>
  7495. ///烟气压力 .4f Double
  7496. /// </summary>
  7497. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7498. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7499. public string PYPressure {
  7500. get { return pYPressure_; }
  7501. set {
  7502. pYPressure_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  7503. }
  7504. }
  7505. /// <summary>Field number for the "PY_temperature" field.</summary>
  7506. public const int PYTemperatureFieldNumber = 5;
  7507. private string pYTemperature_ = "";
  7508. /// <summary>
  7509. ///烟气温度 .4f Double
  7510. /// </summary>
  7511. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7512. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7513. public string PYTemperature {
  7514. get { return pYTemperature_; }
  7515. set {
  7516. pYTemperature_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  7517. }
  7518. }
  7519. /// <summary>Field number for the "PY_flow" field.</summary>
  7520. public const int PYFlowFieldNumber = 6;
  7521. private string pYFlow_ = "";
  7522. /// <summary>
  7523. ///烟气流量 .4f Double
  7524. /// </summary>
  7525. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7526. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7527. public string PYFlow {
  7528. get { return pYFlow_; }
  7529. set {
  7530. pYFlow_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  7531. }
  7532. }
  7533. /// <summary>Field number for the "time" field.</summary>
  7534. public const int TimeFieldNumber = 7;
  7535. private string time_ = "";
  7536. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7537. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7538. public string Time {
  7539. get { return time_; }
  7540. set {
  7541. time_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  7542. }
  7543. }
  7544. /// <summary>Field number for the "exception_status" field.</summary>
  7545. public const int ExceptionStatusFieldNumber = 8;
  7546. private string exceptionStatus_ = "";
  7547. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7548. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7549. public string ExceptionStatus {
  7550. get { return exceptionStatus_; }
  7551. set {
  7552. exceptionStatus_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  7553. }
  7554. }
  7555. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7556. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7557. public override bool Equals(object other) {
  7558. return Equals(other as PY);
  7559. }
  7560. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7561. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7562. public bool Equals(PY other) {
  7563. if (ReferenceEquals(other, null)) {
  7564. return false;
  7565. }
  7566. if (ReferenceEquals(other, this)) {
  7567. return true;
  7568. }
  7569. if (PYInPressure != other.PYInPressure) return false;
  7570. if (PYInTemperature != other.PYInTemperature) return false;
  7571. if (PYInFlow != other.PYInFlow) return false;
  7572. if (PYPressure != other.PYPressure) return false;
  7573. if (PYTemperature != other.PYTemperature) return false;
  7574. if (PYFlow != other.PYFlow) return false;
  7575. if (Time != other.Time) return false;
  7576. if (ExceptionStatus != other.ExceptionStatus) return false;
  7577. return Equals(_unknownFields, other._unknownFields);
  7578. }
  7579. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7580. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7581. public override int GetHashCode() {
  7582. int hash = 1;
  7583. if (PYInPressure.Length != 0) hash ^= PYInPressure.GetHashCode();
  7584. if (PYInTemperature.Length != 0) hash ^= PYInTemperature.GetHashCode();
  7585. if (PYInFlow.Length != 0) hash ^= PYInFlow.GetHashCode();
  7586. if (PYPressure.Length != 0) hash ^= PYPressure.GetHashCode();
  7587. if (PYTemperature.Length != 0) hash ^= PYTemperature.GetHashCode();
  7588. if (PYFlow.Length != 0) hash ^= PYFlow.GetHashCode();
  7589. if (Time.Length != 0) hash ^= Time.GetHashCode();
  7590. if (ExceptionStatus.Length != 0) hash ^= ExceptionStatus.GetHashCode();
  7591. if (_unknownFields != null) {
  7592. hash ^= _unknownFields.GetHashCode();
  7593. }
  7594. return hash;
  7595. }
  7596. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7597. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7598. public override string ToString() {
  7599. return pb::JsonFormatter.ToDiagnosticString(this);
  7600. }
  7601. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7602. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7603. public void WriteTo(pb::CodedOutputStream output) {
  7604. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  7605. output.WriteRawMessage(this);
  7606. #else
  7607. if (PYInPressure.Length != 0) {
  7608. output.WriteRawTag(10);
  7609. output.WriteString(PYInPressure);
  7610. }
  7611. if (PYInTemperature.Length != 0) {
  7612. output.WriteRawTag(18);
  7613. output.WriteString(PYInTemperature);
  7614. }
  7615. if (PYInFlow.Length != 0) {
  7616. output.WriteRawTag(26);
  7617. output.WriteString(PYInFlow);
  7618. }
  7619. if (PYPressure.Length != 0) {
  7620. output.WriteRawTag(34);
  7621. output.WriteString(PYPressure);
  7622. }
  7623. if (PYTemperature.Length != 0) {
  7624. output.WriteRawTag(42);
  7625. output.WriteString(PYTemperature);
  7626. }
  7627. if (PYFlow.Length != 0) {
  7628. output.WriteRawTag(50);
  7629. output.WriteString(PYFlow);
  7630. }
  7631. if (Time.Length != 0) {
  7632. output.WriteRawTag(58);
  7633. output.WriteString(Time);
  7634. }
  7635. if (ExceptionStatus.Length != 0) {
  7636. output.WriteRawTag(66);
  7637. output.WriteString(ExceptionStatus);
  7638. }
  7639. if (_unknownFields != null) {
  7640. _unknownFields.WriteTo(output);
  7641. }
  7642. #endif
  7643. }
  7644. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  7645. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7646. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7647. void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
  7648. if (PYInPressure.Length != 0) {
  7649. output.WriteRawTag(10);
  7650. output.WriteString(PYInPressure);
  7651. }
  7652. if (PYInTemperature.Length != 0) {
  7653. output.WriteRawTag(18);
  7654. output.WriteString(PYInTemperature);
  7655. }
  7656. if (PYInFlow.Length != 0) {
  7657. output.WriteRawTag(26);
  7658. output.WriteString(PYInFlow);
  7659. }
  7660. if (PYPressure.Length != 0) {
  7661. output.WriteRawTag(34);
  7662. output.WriteString(PYPressure);
  7663. }
  7664. if (PYTemperature.Length != 0) {
  7665. output.WriteRawTag(42);
  7666. output.WriteString(PYTemperature);
  7667. }
  7668. if (PYFlow.Length != 0) {
  7669. output.WriteRawTag(50);
  7670. output.WriteString(PYFlow);
  7671. }
  7672. if (Time.Length != 0) {
  7673. output.WriteRawTag(58);
  7674. output.WriteString(Time);
  7675. }
  7676. if (ExceptionStatus.Length != 0) {
  7677. output.WriteRawTag(66);
  7678. output.WriteString(ExceptionStatus);
  7679. }
  7680. if (_unknownFields != null) {
  7681. _unknownFields.WriteTo(ref output);
  7682. }
  7683. }
  7684. #endif
  7685. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7686. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7687. public int CalculateSize() {
  7688. int size = 0;
  7689. if (PYInPressure.Length != 0) {
  7690. size += 1 + pb::CodedOutputStream.ComputeStringSize(PYInPressure);
  7691. }
  7692. if (PYInTemperature.Length != 0) {
  7693. size += 1 + pb::CodedOutputStream.ComputeStringSize(PYInTemperature);
  7694. }
  7695. if (PYInFlow.Length != 0) {
  7696. size += 1 + pb::CodedOutputStream.ComputeStringSize(PYInFlow);
  7697. }
  7698. if (PYPressure.Length != 0) {
  7699. size += 1 + pb::CodedOutputStream.ComputeStringSize(PYPressure);
  7700. }
  7701. if (PYTemperature.Length != 0) {
  7702. size += 1 + pb::CodedOutputStream.ComputeStringSize(PYTemperature);
  7703. }
  7704. if (PYFlow.Length != 0) {
  7705. size += 1 + pb::CodedOutputStream.ComputeStringSize(PYFlow);
  7706. }
  7707. if (Time.Length != 0) {
  7708. size += 1 + pb::CodedOutputStream.ComputeStringSize(Time);
  7709. }
  7710. if (ExceptionStatus.Length != 0) {
  7711. size += 1 + pb::CodedOutputStream.ComputeStringSize(ExceptionStatus);
  7712. }
  7713. if (_unknownFields != null) {
  7714. size += _unknownFields.CalculateSize();
  7715. }
  7716. return size;
  7717. }
  7718. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7719. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7720. public void MergeFrom(PY other) {
  7721. if (other == null) {
  7722. return;
  7723. }
  7724. if (other.PYInPressure.Length != 0) {
  7725. PYInPressure = other.PYInPressure;
  7726. }
  7727. if (other.PYInTemperature.Length != 0) {
  7728. PYInTemperature = other.PYInTemperature;
  7729. }
  7730. if (other.PYInFlow.Length != 0) {
  7731. PYInFlow = other.PYInFlow;
  7732. }
  7733. if (other.PYPressure.Length != 0) {
  7734. PYPressure = other.PYPressure;
  7735. }
  7736. if (other.PYTemperature.Length != 0) {
  7737. PYTemperature = other.PYTemperature;
  7738. }
  7739. if (other.PYFlow.Length != 0) {
  7740. PYFlow = other.PYFlow;
  7741. }
  7742. if (other.Time.Length != 0) {
  7743. Time = other.Time;
  7744. }
  7745. if (other.ExceptionStatus.Length != 0) {
  7746. ExceptionStatus = other.ExceptionStatus;
  7747. }
  7748. _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
  7749. }
  7750. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7751. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7752. public void MergeFrom(pb::CodedInputStream input) {
  7753. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  7754. input.ReadRawMessage(this);
  7755. #else
  7756. uint tag;
  7757. while ((tag = input.ReadTag()) != 0) {
  7758. switch(tag) {
  7759. default:
  7760. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
  7761. break;
  7762. case 10: {
  7763. PYInPressure = input.ReadString();
  7764. break;
  7765. }
  7766. case 18: {
  7767. PYInTemperature = input.ReadString();
  7768. break;
  7769. }
  7770. case 26: {
  7771. PYInFlow = input.ReadString();
  7772. break;
  7773. }
  7774. case 34: {
  7775. PYPressure = input.ReadString();
  7776. break;
  7777. }
  7778. case 42: {
  7779. PYTemperature = input.ReadString();
  7780. break;
  7781. }
  7782. case 50: {
  7783. PYFlow = input.ReadString();
  7784. break;
  7785. }
  7786. case 58: {
  7787. Time = input.ReadString();
  7788. break;
  7789. }
  7790. case 66: {
  7791. ExceptionStatus = input.ReadString();
  7792. break;
  7793. }
  7794. }
  7795. }
  7796. #endif
  7797. }
  7798. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  7799. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7800. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7801. void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
  7802. uint tag;
  7803. while ((tag = input.ReadTag()) != 0) {
  7804. switch(tag) {
  7805. default:
  7806. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
  7807. break;
  7808. case 10: {
  7809. PYInPressure = input.ReadString();
  7810. break;
  7811. }
  7812. case 18: {
  7813. PYInTemperature = input.ReadString();
  7814. break;
  7815. }
  7816. case 26: {
  7817. PYInFlow = input.ReadString();
  7818. break;
  7819. }
  7820. case 34: {
  7821. PYPressure = input.ReadString();
  7822. break;
  7823. }
  7824. case 42: {
  7825. PYTemperature = input.ReadString();
  7826. break;
  7827. }
  7828. case 50: {
  7829. PYFlow = input.ReadString();
  7830. break;
  7831. }
  7832. case 58: {
  7833. Time = input.ReadString();
  7834. break;
  7835. }
  7836. case 66: {
  7837. ExceptionStatus = input.ReadString();
  7838. break;
  7839. }
  7840. }
  7841. }
  7842. }
  7843. #endif
  7844. }
  7845. /// <summary>
  7846. ///异常 新增异常信息,新增异常处理状态
  7847. /// </summary>
  7848. public sealed partial class EXCEPTION : pb::IMessage<EXCEPTION>
  7849. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  7850. , pb::IBufferMessage
  7851. #endif
  7852. {
  7853. private static readonly pb::MessageParser<EXCEPTION> _parser = new pb::MessageParser<EXCEPTION>(() => new EXCEPTION());
  7854. private pb::UnknownFieldSet _unknownFields;
  7855. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7856. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7857. public static pb::MessageParser<EXCEPTION> Parser { get { return _parser; } }
  7858. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7859. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7860. public static pbr::MessageDescriptor Descriptor {
  7861. get { return global::Com.Xzzs.Boiler.Proto.MessageReflection.Descriptor.MessageTypes[10]; }
  7862. }
  7863. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7864. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7865. pbr::MessageDescriptor pb::IMessage.Descriptor {
  7866. get { return Descriptor; }
  7867. }
  7868. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7869. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7870. public EXCEPTION() {
  7871. OnConstruction();
  7872. }
  7873. partial void OnConstruction();
  7874. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7875. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7876. public EXCEPTION(EXCEPTION other) : this() {
  7877. exceptionType_ = other.exceptionType_;
  7878. exceptionDegree_ = other.exceptionDegree_;
  7879. exceptionPosition_ = other.exceptionPosition_;
  7880. exceptionMessage_ = other.exceptionMessage_;
  7881. exceptionIsconduct_ = other.exceptionIsconduct_;
  7882. time_ = other.time_;
  7883. _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
  7884. }
  7885. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7886. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7887. public EXCEPTION Clone() {
  7888. return new EXCEPTION(this);
  7889. }
  7890. /// <summary>Field number for the "exception_type" field.</summary>
  7891. public const int ExceptionTypeFieldNumber = 1;
  7892. private string exceptionType_ = "";
  7893. /// <summary>
  7894. ///异常类型
  7895. /// </summary>
  7896. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7897. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7898. public string ExceptionType {
  7899. get { return exceptionType_; }
  7900. set {
  7901. exceptionType_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  7902. }
  7903. }
  7904. /// <summary>Field number for the "exception_degree" field.</summary>
  7905. public const int ExceptionDegreeFieldNumber = 2;
  7906. private string exceptionDegree_ = "";
  7907. /// <summary>
  7908. ///异常程度 1:一般异常,2:轻微异常,3:严重异常
  7909. /// </summary>
  7910. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7911. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7912. public string ExceptionDegree {
  7913. get { return exceptionDegree_; }
  7914. set {
  7915. exceptionDegree_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  7916. }
  7917. }
  7918. /// <summary>Field number for the "exception_position" field.</summary>
  7919. public const int ExceptionPositionFieldNumber = 3;
  7920. private string exceptionPosition_ = "";
  7921. /// <summary>
  7922. ///异常部位 码值为proto枚举
  7923. /// </summary>
  7924. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7925. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7926. public string ExceptionPosition {
  7927. get { return exceptionPosition_; }
  7928. set {
  7929. exceptionPosition_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  7930. }
  7931. }
  7932. /// <summary>Field number for the "exception_message" field.</summary>
  7933. public const int ExceptionMessageFieldNumber = 4;
  7934. private string exceptionMessage_ = "";
  7935. /// <summary>
  7936. ///异常信息
  7937. /// </summary>
  7938. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7939. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7940. public string ExceptionMessage {
  7941. get { return exceptionMessage_; }
  7942. set {
  7943. exceptionMessage_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  7944. }
  7945. }
  7946. /// <summary>Field number for the "exception_isconduct" field.</summary>
  7947. public const int ExceptionIsconductFieldNumber = 5;
  7948. private string exceptionIsconduct_ = "";
  7949. /// <summary>
  7950. ///异常是否已处理
  7951. /// </summary>
  7952. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7953. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7954. public string ExceptionIsconduct {
  7955. get { return exceptionIsconduct_; }
  7956. set {
  7957. exceptionIsconduct_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  7958. }
  7959. }
  7960. /// <summary>Field number for the "time" field.</summary>
  7961. public const int TimeFieldNumber = 6;
  7962. private string time_ = "";
  7963. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7964. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7965. public string Time {
  7966. get { return time_; }
  7967. set {
  7968. time_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  7969. }
  7970. }
  7971. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7972. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7973. public override bool Equals(object other) {
  7974. return Equals(other as EXCEPTION);
  7975. }
  7976. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7977. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7978. public bool Equals(EXCEPTION other) {
  7979. if (ReferenceEquals(other, null)) {
  7980. return false;
  7981. }
  7982. if (ReferenceEquals(other, this)) {
  7983. return true;
  7984. }
  7985. if (ExceptionType != other.ExceptionType) return false;
  7986. if (ExceptionDegree != other.ExceptionDegree) return false;
  7987. if (ExceptionPosition != other.ExceptionPosition) return false;
  7988. if (ExceptionMessage != other.ExceptionMessage) return false;
  7989. if (ExceptionIsconduct != other.ExceptionIsconduct) return false;
  7990. if (Time != other.Time) return false;
  7991. return Equals(_unknownFields, other._unknownFields);
  7992. }
  7993. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  7994. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  7995. public override int GetHashCode() {
  7996. int hash = 1;
  7997. if (ExceptionType.Length != 0) hash ^= ExceptionType.GetHashCode();
  7998. if (ExceptionDegree.Length != 0) hash ^= ExceptionDegree.GetHashCode();
  7999. if (ExceptionPosition.Length != 0) hash ^= ExceptionPosition.GetHashCode();
  8000. if (ExceptionMessage.Length != 0) hash ^= ExceptionMessage.GetHashCode();
  8001. if (ExceptionIsconduct.Length != 0) hash ^= ExceptionIsconduct.GetHashCode();
  8002. if (Time.Length != 0) hash ^= Time.GetHashCode();
  8003. if (_unknownFields != null) {
  8004. hash ^= _unknownFields.GetHashCode();
  8005. }
  8006. return hash;
  8007. }
  8008. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8009. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8010. public override string ToString() {
  8011. return pb::JsonFormatter.ToDiagnosticString(this);
  8012. }
  8013. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8014. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8015. public void WriteTo(pb::CodedOutputStream output) {
  8016. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  8017. output.WriteRawMessage(this);
  8018. #else
  8019. if (ExceptionType.Length != 0) {
  8020. output.WriteRawTag(10);
  8021. output.WriteString(ExceptionType);
  8022. }
  8023. if (ExceptionDegree.Length != 0) {
  8024. output.WriteRawTag(18);
  8025. output.WriteString(ExceptionDegree);
  8026. }
  8027. if (ExceptionPosition.Length != 0) {
  8028. output.WriteRawTag(26);
  8029. output.WriteString(ExceptionPosition);
  8030. }
  8031. if (ExceptionMessage.Length != 0) {
  8032. output.WriteRawTag(34);
  8033. output.WriteString(ExceptionMessage);
  8034. }
  8035. if (ExceptionIsconduct.Length != 0) {
  8036. output.WriteRawTag(42);
  8037. output.WriteString(ExceptionIsconduct);
  8038. }
  8039. if (Time.Length != 0) {
  8040. output.WriteRawTag(50);
  8041. output.WriteString(Time);
  8042. }
  8043. if (_unknownFields != null) {
  8044. _unknownFields.WriteTo(output);
  8045. }
  8046. #endif
  8047. }
  8048. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  8049. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8050. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8051. void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
  8052. if (ExceptionType.Length != 0) {
  8053. output.WriteRawTag(10);
  8054. output.WriteString(ExceptionType);
  8055. }
  8056. if (ExceptionDegree.Length != 0) {
  8057. output.WriteRawTag(18);
  8058. output.WriteString(ExceptionDegree);
  8059. }
  8060. if (ExceptionPosition.Length != 0) {
  8061. output.WriteRawTag(26);
  8062. output.WriteString(ExceptionPosition);
  8063. }
  8064. if (ExceptionMessage.Length != 0) {
  8065. output.WriteRawTag(34);
  8066. output.WriteString(ExceptionMessage);
  8067. }
  8068. if (ExceptionIsconduct.Length != 0) {
  8069. output.WriteRawTag(42);
  8070. output.WriteString(ExceptionIsconduct);
  8071. }
  8072. if (Time.Length != 0) {
  8073. output.WriteRawTag(50);
  8074. output.WriteString(Time);
  8075. }
  8076. if (_unknownFields != null) {
  8077. _unknownFields.WriteTo(ref output);
  8078. }
  8079. }
  8080. #endif
  8081. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8082. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8083. public int CalculateSize() {
  8084. int size = 0;
  8085. if (ExceptionType.Length != 0) {
  8086. size += 1 + pb::CodedOutputStream.ComputeStringSize(ExceptionType);
  8087. }
  8088. if (ExceptionDegree.Length != 0) {
  8089. size += 1 + pb::CodedOutputStream.ComputeStringSize(ExceptionDegree);
  8090. }
  8091. if (ExceptionPosition.Length != 0) {
  8092. size += 1 + pb::CodedOutputStream.ComputeStringSize(ExceptionPosition);
  8093. }
  8094. if (ExceptionMessage.Length != 0) {
  8095. size += 1 + pb::CodedOutputStream.ComputeStringSize(ExceptionMessage);
  8096. }
  8097. if (ExceptionIsconduct.Length != 0) {
  8098. size += 1 + pb::CodedOutputStream.ComputeStringSize(ExceptionIsconduct);
  8099. }
  8100. if (Time.Length != 0) {
  8101. size += 1 + pb::CodedOutputStream.ComputeStringSize(Time);
  8102. }
  8103. if (_unknownFields != null) {
  8104. size += _unknownFields.CalculateSize();
  8105. }
  8106. return size;
  8107. }
  8108. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8109. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8110. public void MergeFrom(EXCEPTION other) {
  8111. if (other == null) {
  8112. return;
  8113. }
  8114. if (other.ExceptionType.Length != 0) {
  8115. ExceptionType = other.ExceptionType;
  8116. }
  8117. if (other.ExceptionDegree.Length != 0) {
  8118. ExceptionDegree = other.ExceptionDegree;
  8119. }
  8120. if (other.ExceptionPosition.Length != 0) {
  8121. ExceptionPosition = other.ExceptionPosition;
  8122. }
  8123. if (other.ExceptionMessage.Length != 0) {
  8124. ExceptionMessage = other.ExceptionMessage;
  8125. }
  8126. if (other.ExceptionIsconduct.Length != 0) {
  8127. ExceptionIsconduct = other.ExceptionIsconduct;
  8128. }
  8129. if (other.Time.Length != 0) {
  8130. Time = other.Time;
  8131. }
  8132. _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
  8133. }
  8134. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8135. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8136. public void MergeFrom(pb::CodedInputStream input) {
  8137. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  8138. input.ReadRawMessage(this);
  8139. #else
  8140. uint tag;
  8141. while ((tag = input.ReadTag()) != 0) {
  8142. switch(tag) {
  8143. default:
  8144. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
  8145. break;
  8146. case 10: {
  8147. ExceptionType = input.ReadString();
  8148. break;
  8149. }
  8150. case 18: {
  8151. ExceptionDegree = input.ReadString();
  8152. break;
  8153. }
  8154. case 26: {
  8155. ExceptionPosition = input.ReadString();
  8156. break;
  8157. }
  8158. case 34: {
  8159. ExceptionMessage = input.ReadString();
  8160. break;
  8161. }
  8162. case 42: {
  8163. ExceptionIsconduct = input.ReadString();
  8164. break;
  8165. }
  8166. case 50: {
  8167. Time = input.ReadString();
  8168. break;
  8169. }
  8170. }
  8171. }
  8172. #endif
  8173. }
  8174. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  8175. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8176. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8177. void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
  8178. uint tag;
  8179. while ((tag = input.ReadTag()) != 0) {
  8180. switch(tag) {
  8181. default:
  8182. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
  8183. break;
  8184. case 10: {
  8185. ExceptionType = input.ReadString();
  8186. break;
  8187. }
  8188. case 18: {
  8189. ExceptionDegree = input.ReadString();
  8190. break;
  8191. }
  8192. case 26: {
  8193. ExceptionPosition = input.ReadString();
  8194. break;
  8195. }
  8196. case 34: {
  8197. ExceptionMessage = input.ReadString();
  8198. break;
  8199. }
  8200. case 42: {
  8201. ExceptionIsconduct = input.ReadString();
  8202. break;
  8203. }
  8204. case 50: {
  8205. Time = input.ReadString();
  8206. break;
  8207. }
  8208. }
  8209. }
  8210. }
  8211. #endif
  8212. }
  8213. /// <summary>
  8214. ///状态
  8215. /// </summary>
  8216. public sealed partial class STATUS : pb::IMessage<STATUS>
  8217. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  8218. , pb::IBufferMessage
  8219. #endif
  8220. {
  8221. private static readonly pb::MessageParser<STATUS> _parser = new pb::MessageParser<STATUS>(() => new STATUS());
  8222. private pb::UnknownFieldSet _unknownFields;
  8223. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8224. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8225. public static pb::MessageParser<STATUS> Parser { get { return _parser; } }
  8226. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8227. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8228. public static pbr::MessageDescriptor Descriptor {
  8229. get { return global::Com.Xzzs.Boiler.Proto.MessageReflection.Descriptor.MessageTypes[11]; }
  8230. }
  8231. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8232. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8233. pbr::MessageDescriptor pb::IMessage.Descriptor {
  8234. get { return Descriptor; }
  8235. }
  8236. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8237. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8238. public STATUS() {
  8239. OnConstruction();
  8240. }
  8241. partial void OnConstruction();
  8242. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8243. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8244. public STATUS(STATUS other) : this() {
  8245. conditionStatus_ = other.conditionStatus_;
  8246. healthStatus_ = other.healthStatus_;
  8247. _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
  8248. }
  8249. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8250. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8251. public STATUS Clone() {
  8252. return new STATUS(this);
  8253. }
  8254. /// <summary>Field number for the "condition_status" field.</summary>
  8255. public const int ConditionStatusFieldNumber = 1;
  8256. private string conditionStatus_ = "";
  8257. /// <summary>
  8258. ///工况:0-5
  8259. /// </summary>
  8260. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8261. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8262. public string ConditionStatus {
  8263. get { return conditionStatus_; }
  8264. set {
  8265. conditionStatus_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  8266. }
  8267. }
  8268. /// <summary>Field number for the "health_status" field.</summary>
  8269. public const int HealthStatusFieldNumber = 2;
  8270. private string healthStatus_ = "";
  8271. /// <summary>
  8272. /// 1:健康,2:异常,3:故障
  8273. /// </summary>
  8274. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8275. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8276. public string HealthStatus {
  8277. get { return healthStatus_; }
  8278. set {
  8279. healthStatus_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  8280. }
  8281. }
  8282. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8283. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8284. public override bool Equals(object other) {
  8285. return Equals(other as STATUS);
  8286. }
  8287. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8288. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8289. public bool Equals(STATUS other) {
  8290. if (ReferenceEquals(other, null)) {
  8291. return false;
  8292. }
  8293. if (ReferenceEquals(other, this)) {
  8294. return true;
  8295. }
  8296. if (ConditionStatus != other.ConditionStatus) return false;
  8297. if (HealthStatus != other.HealthStatus) return false;
  8298. return Equals(_unknownFields, other._unknownFields);
  8299. }
  8300. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8301. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8302. public override int GetHashCode() {
  8303. int hash = 1;
  8304. if (ConditionStatus.Length != 0) hash ^= ConditionStatus.GetHashCode();
  8305. if (HealthStatus.Length != 0) hash ^= HealthStatus.GetHashCode();
  8306. if (_unknownFields != null) {
  8307. hash ^= _unknownFields.GetHashCode();
  8308. }
  8309. return hash;
  8310. }
  8311. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8312. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8313. public override string ToString() {
  8314. return pb::JsonFormatter.ToDiagnosticString(this);
  8315. }
  8316. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8317. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8318. public void WriteTo(pb::CodedOutputStream output) {
  8319. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  8320. output.WriteRawMessage(this);
  8321. #else
  8322. if (ConditionStatus.Length != 0) {
  8323. output.WriteRawTag(10);
  8324. output.WriteString(ConditionStatus);
  8325. }
  8326. if (HealthStatus.Length != 0) {
  8327. output.WriteRawTag(18);
  8328. output.WriteString(HealthStatus);
  8329. }
  8330. if (_unknownFields != null) {
  8331. _unknownFields.WriteTo(output);
  8332. }
  8333. #endif
  8334. }
  8335. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  8336. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8337. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8338. void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
  8339. if (ConditionStatus.Length != 0) {
  8340. output.WriteRawTag(10);
  8341. output.WriteString(ConditionStatus);
  8342. }
  8343. if (HealthStatus.Length != 0) {
  8344. output.WriteRawTag(18);
  8345. output.WriteString(HealthStatus);
  8346. }
  8347. if (_unknownFields != null) {
  8348. _unknownFields.WriteTo(ref output);
  8349. }
  8350. }
  8351. #endif
  8352. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8353. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8354. public int CalculateSize() {
  8355. int size = 0;
  8356. if (ConditionStatus.Length != 0) {
  8357. size += 1 + pb::CodedOutputStream.ComputeStringSize(ConditionStatus);
  8358. }
  8359. if (HealthStatus.Length != 0) {
  8360. size += 1 + pb::CodedOutputStream.ComputeStringSize(HealthStatus);
  8361. }
  8362. if (_unknownFields != null) {
  8363. size += _unknownFields.CalculateSize();
  8364. }
  8365. return size;
  8366. }
  8367. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8368. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8369. public void MergeFrom(STATUS other) {
  8370. if (other == null) {
  8371. return;
  8372. }
  8373. if (other.ConditionStatus.Length != 0) {
  8374. ConditionStatus = other.ConditionStatus;
  8375. }
  8376. if (other.HealthStatus.Length != 0) {
  8377. HealthStatus = other.HealthStatus;
  8378. }
  8379. _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
  8380. }
  8381. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8382. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8383. public void MergeFrom(pb::CodedInputStream input) {
  8384. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  8385. input.ReadRawMessage(this);
  8386. #else
  8387. uint tag;
  8388. while ((tag = input.ReadTag()) != 0) {
  8389. switch(tag) {
  8390. default:
  8391. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
  8392. break;
  8393. case 10: {
  8394. ConditionStatus = input.ReadString();
  8395. break;
  8396. }
  8397. case 18: {
  8398. HealthStatus = input.ReadString();
  8399. break;
  8400. }
  8401. }
  8402. }
  8403. #endif
  8404. }
  8405. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  8406. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8407. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8408. void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
  8409. uint tag;
  8410. while ((tag = input.ReadTag()) != 0) {
  8411. switch(tag) {
  8412. default:
  8413. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
  8414. break;
  8415. case 10: {
  8416. ConditionStatus = input.ReadString();
  8417. break;
  8418. }
  8419. case 18: {
  8420. HealthStatus = input.ReadString();
  8421. break;
  8422. }
  8423. }
  8424. }
  8425. }
  8426. #endif
  8427. }
  8428. /// <summary>
  8429. ///坐标
  8430. /// </summary>
  8431. public sealed partial class COORDINATE : pb::IMessage<COORDINATE>
  8432. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  8433. , pb::IBufferMessage
  8434. #endif
  8435. {
  8436. private static readonly pb::MessageParser<COORDINATE> _parser = new pb::MessageParser<COORDINATE>(() => new COORDINATE());
  8437. private pb::UnknownFieldSet _unknownFields;
  8438. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8439. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8440. public static pb::MessageParser<COORDINATE> Parser { get { return _parser; } }
  8441. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8442. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8443. public static pbr::MessageDescriptor Descriptor {
  8444. get { return global::Com.Xzzs.Boiler.Proto.MessageReflection.Descriptor.MessageTypes[12]; }
  8445. }
  8446. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8447. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8448. pbr::MessageDescriptor pb::IMessage.Descriptor {
  8449. get { return Descriptor; }
  8450. }
  8451. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8452. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8453. public COORDINATE() {
  8454. OnConstruction();
  8455. }
  8456. partial void OnConstruction();
  8457. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8458. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8459. public COORDINATE(COORDINATE other) : this() {
  8460. conditionOneDownlimit_ = other.conditionOneDownlimit_;
  8461. conditionOneUplimit_ = other.conditionOneUplimit_;
  8462. conditionTwoDownlimit_ = other.conditionTwoDownlimit_;
  8463. conditionTwoUplimit_ = other.conditionTwoUplimit_;
  8464. conditionThreeDownlimit_ = other.conditionThreeDownlimit_;
  8465. conditionThreeUplimit_ = other.conditionThreeUplimit_;
  8466. conditionFourDownlimit_ = other.conditionFourDownlimit_;
  8467. conditionFourUplimit_ = other.conditionFourUplimit_;
  8468. _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
  8469. }
  8470. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8471. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8472. public COORDINATE Clone() {
  8473. return new COORDINATE(this);
  8474. }
  8475. /// <summary>Field number for the "condition_one_downlimit" field.</summary>
  8476. public const int ConditionOneDownlimitFieldNumber = 1;
  8477. private string conditionOneDownlimit_ = "";
  8478. /// <summary>
  8479. ///坐标1下限
  8480. /// </summary>
  8481. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8482. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8483. public string ConditionOneDownlimit {
  8484. get { return conditionOneDownlimit_; }
  8485. set {
  8486. conditionOneDownlimit_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  8487. }
  8488. }
  8489. /// <summary>Field number for the "condition_one_uplimit" field.</summary>
  8490. public const int ConditionOneUplimitFieldNumber = 2;
  8491. private string conditionOneUplimit_ = "";
  8492. /// <summary>
  8493. ///坐标1上限
  8494. /// </summary>
  8495. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8496. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8497. public string ConditionOneUplimit {
  8498. get { return conditionOneUplimit_; }
  8499. set {
  8500. conditionOneUplimit_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  8501. }
  8502. }
  8503. /// <summary>Field number for the "condition_two_downlimit" field.</summary>
  8504. public const int ConditionTwoDownlimitFieldNumber = 3;
  8505. private string conditionTwoDownlimit_ = "";
  8506. /// <summary>
  8507. ///坐标2下限
  8508. /// </summary>
  8509. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8510. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8511. public string ConditionTwoDownlimit {
  8512. get { return conditionTwoDownlimit_; }
  8513. set {
  8514. conditionTwoDownlimit_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  8515. }
  8516. }
  8517. /// <summary>Field number for the "condition_two_uplimit" field.</summary>
  8518. public const int ConditionTwoUplimitFieldNumber = 4;
  8519. private string conditionTwoUplimit_ = "";
  8520. /// <summary>
  8521. ///坐标2上限
  8522. /// </summary>
  8523. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8524. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8525. public string ConditionTwoUplimit {
  8526. get { return conditionTwoUplimit_; }
  8527. set {
  8528. conditionTwoUplimit_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  8529. }
  8530. }
  8531. /// <summary>Field number for the "condition_three_downlimit" field.</summary>
  8532. public const int ConditionThreeDownlimitFieldNumber = 5;
  8533. private string conditionThreeDownlimit_ = "";
  8534. /// <summary>
  8535. ///坐标3下限
  8536. /// </summary>
  8537. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8538. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8539. public string ConditionThreeDownlimit {
  8540. get { return conditionThreeDownlimit_; }
  8541. set {
  8542. conditionThreeDownlimit_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  8543. }
  8544. }
  8545. /// <summary>Field number for the "condition_three_uplimit" field.</summary>
  8546. public const int ConditionThreeUplimitFieldNumber = 6;
  8547. private string conditionThreeUplimit_ = "";
  8548. /// <summary>
  8549. ///坐标3上限
  8550. /// </summary>
  8551. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8552. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8553. public string ConditionThreeUplimit {
  8554. get { return conditionThreeUplimit_; }
  8555. set {
  8556. conditionThreeUplimit_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  8557. }
  8558. }
  8559. /// <summary>Field number for the "condition_four_downlimit" field.</summary>
  8560. public const int ConditionFourDownlimitFieldNumber = 7;
  8561. private string conditionFourDownlimit_ = "";
  8562. /// <summary>
  8563. ///坐标4下限
  8564. /// </summary>
  8565. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8566. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8567. public string ConditionFourDownlimit {
  8568. get { return conditionFourDownlimit_; }
  8569. set {
  8570. conditionFourDownlimit_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  8571. }
  8572. }
  8573. /// <summary>Field number for the "condition_four_uplimit" field.</summary>
  8574. public const int ConditionFourUplimitFieldNumber = 8;
  8575. private string conditionFourUplimit_ = "";
  8576. /// <summary>
  8577. ///坐标4上限
  8578. /// </summary>
  8579. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8580. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8581. public string ConditionFourUplimit {
  8582. get { return conditionFourUplimit_; }
  8583. set {
  8584. conditionFourUplimit_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  8585. }
  8586. }
  8587. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8588. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8589. public override bool Equals(object other) {
  8590. return Equals(other as COORDINATE);
  8591. }
  8592. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8593. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8594. public bool Equals(COORDINATE other) {
  8595. if (ReferenceEquals(other, null)) {
  8596. return false;
  8597. }
  8598. if (ReferenceEquals(other, this)) {
  8599. return true;
  8600. }
  8601. if (ConditionOneDownlimit != other.ConditionOneDownlimit) return false;
  8602. if (ConditionOneUplimit != other.ConditionOneUplimit) return false;
  8603. if (ConditionTwoDownlimit != other.ConditionTwoDownlimit) return false;
  8604. if (ConditionTwoUplimit != other.ConditionTwoUplimit) return false;
  8605. if (ConditionThreeDownlimit != other.ConditionThreeDownlimit) return false;
  8606. if (ConditionThreeUplimit != other.ConditionThreeUplimit) return false;
  8607. if (ConditionFourDownlimit != other.ConditionFourDownlimit) return false;
  8608. if (ConditionFourUplimit != other.ConditionFourUplimit) return false;
  8609. return Equals(_unknownFields, other._unknownFields);
  8610. }
  8611. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8612. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8613. public override int GetHashCode() {
  8614. int hash = 1;
  8615. if (ConditionOneDownlimit.Length != 0) hash ^= ConditionOneDownlimit.GetHashCode();
  8616. if (ConditionOneUplimit.Length != 0) hash ^= ConditionOneUplimit.GetHashCode();
  8617. if (ConditionTwoDownlimit.Length != 0) hash ^= ConditionTwoDownlimit.GetHashCode();
  8618. if (ConditionTwoUplimit.Length != 0) hash ^= ConditionTwoUplimit.GetHashCode();
  8619. if (ConditionThreeDownlimit.Length != 0) hash ^= ConditionThreeDownlimit.GetHashCode();
  8620. if (ConditionThreeUplimit.Length != 0) hash ^= ConditionThreeUplimit.GetHashCode();
  8621. if (ConditionFourDownlimit.Length != 0) hash ^= ConditionFourDownlimit.GetHashCode();
  8622. if (ConditionFourUplimit.Length != 0) hash ^= ConditionFourUplimit.GetHashCode();
  8623. if (_unknownFields != null) {
  8624. hash ^= _unknownFields.GetHashCode();
  8625. }
  8626. return hash;
  8627. }
  8628. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8629. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8630. public override string ToString() {
  8631. return pb::JsonFormatter.ToDiagnosticString(this);
  8632. }
  8633. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8634. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8635. public void WriteTo(pb::CodedOutputStream output) {
  8636. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  8637. output.WriteRawMessage(this);
  8638. #else
  8639. if (ConditionOneDownlimit.Length != 0) {
  8640. output.WriteRawTag(10);
  8641. output.WriteString(ConditionOneDownlimit);
  8642. }
  8643. if (ConditionOneUplimit.Length != 0) {
  8644. output.WriteRawTag(18);
  8645. output.WriteString(ConditionOneUplimit);
  8646. }
  8647. if (ConditionTwoDownlimit.Length != 0) {
  8648. output.WriteRawTag(26);
  8649. output.WriteString(ConditionTwoDownlimit);
  8650. }
  8651. if (ConditionTwoUplimit.Length != 0) {
  8652. output.WriteRawTag(34);
  8653. output.WriteString(ConditionTwoUplimit);
  8654. }
  8655. if (ConditionThreeDownlimit.Length != 0) {
  8656. output.WriteRawTag(42);
  8657. output.WriteString(ConditionThreeDownlimit);
  8658. }
  8659. if (ConditionThreeUplimit.Length != 0) {
  8660. output.WriteRawTag(50);
  8661. output.WriteString(ConditionThreeUplimit);
  8662. }
  8663. if (ConditionFourDownlimit.Length != 0) {
  8664. output.WriteRawTag(58);
  8665. output.WriteString(ConditionFourDownlimit);
  8666. }
  8667. if (ConditionFourUplimit.Length != 0) {
  8668. output.WriteRawTag(66);
  8669. output.WriteString(ConditionFourUplimit);
  8670. }
  8671. if (_unknownFields != null) {
  8672. _unknownFields.WriteTo(output);
  8673. }
  8674. #endif
  8675. }
  8676. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  8677. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8678. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8679. void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
  8680. if (ConditionOneDownlimit.Length != 0) {
  8681. output.WriteRawTag(10);
  8682. output.WriteString(ConditionOneDownlimit);
  8683. }
  8684. if (ConditionOneUplimit.Length != 0) {
  8685. output.WriteRawTag(18);
  8686. output.WriteString(ConditionOneUplimit);
  8687. }
  8688. if (ConditionTwoDownlimit.Length != 0) {
  8689. output.WriteRawTag(26);
  8690. output.WriteString(ConditionTwoDownlimit);
  8691. }
  8692. if (ConditionTwoUplimit.Length != 0) {
  8693. output.WriteRawTag(34);
  8694. output.WriteString(ConditionTwoUplimit);
  8695. }
  8696. if (ConditionThreeDownlimit.Length != 0) {
  8697. output.WriteRawTag(42);
  8698. output.WriteString(ConditionThreeDownlimit);
  8699. }
  8700. if (ConditionThreeUplimit.Length != 0) {
  8701. output.WriteRawTag(50);
  8702. output.WriteString(ConditionThreeUplimit);
  8703. }
  8704. if (ConditionFourDownlimit.Length != 0) {
  8705. output.WriteRawTag(58);
  8706. output.WriteString(ConditionFourDownlimit);
  8707. }
  8708. if (ConditionFourUplimit.Length != 0) {
  8709. output.WriteRawTag(66);
  8710. output.WriteString(ConditionFourUplimit);
  8711. }
  8712. if (_unknownFields != null) {
  8713. _unknownFields.WriteTo(ref output);
  8714. }
  8715. }
  8716. #endif
  8717. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8718. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8719. public int CalculateSize() {
  8720. int size = 0;
  8721. if (ConditionOneDownlimit.Length != 0) {
  8722. size += 1 + pb::CodedOutputStream.ComputeStringSize(ConditionOneDownlimit);
  8723. }
  8724. if (ConditionOneUplimit.Length != 0) {
  8725. size += 1 + pb::CodedOutputStream.ComputeStringSize(ConditionOneUplimit);
  8726. }
  8727. if (ConditionTwoDownlimit.Length != 0) {
  8728. size += 1 + pb::CodedOutputStream.ComputeStringSize(ConditionTwoDownlimit);
  8729. }
  8730. if (ConditionTwoUplimit.Length != 0) {
  8731. size += 1 + pb::CodedOutputStream.ComputeStringSize(ConditionTwoUplimit);
  8732. }
  8733. if (ConditionThreeDownlimit.Length != 0) {
  8734. size += 1 + pb::CodedOutputStream.ComputeStringSize(ConditionThreeDownlimit);
  8735. }
  8736. if (ConditionThreeUplimit.Length != 0) {
  8737. size += 1 + pb::CodedOutputStream.ComputeStringSize(ConditionThreeUplimit);
  8738. }
  8739. if (ConditionFourDownlimit.Length != 0) {
  8740. size += 1 + pb::CodedOutputStream.ComputeStringSize(ConditionFourDownlimit);
  8741. }
  8742. if (ConditionFourUplimit.Length != 0) {
  8743. size += 1 + pb::CodedOutputStream.ComputeStringSize(ConditionFourUplimit);
  8744. }
  8745. if (_unknownFields != null) {
  8746. size += _unknownFields.CalculateSize();
  8747. }
  8748. return size;
  8749. }
  8750. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8751. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8752. public void MergeFrom(COORDINATE other) {
  8753. if (other == null) {
  8754. return;
  8755. }
  8756. if (other.ConditionOneDownlimit.Length != 0) {
  8757. ConditionOneDownlimit = other.ConditionOneDownlimit;
  8758. }
  8759. if (other.ConditionOneUplimit.Length != 0) {
  8760. ConditionOneUplimit = other.ConditionOneUplimit;
  8761. }
  8762. if (other.ConditionTwoDownlimit.Length != 0) {
  8763. ConditionTwoDownlimit = other.ConditionTwoDownlimit;
  8764. }
  8765. if (other.ConditionTwoUplimit.Length != 0) {
  8766. ConditionTwoUplimit = other.ConditionTwoUplimit;
  8767. }
  8768. if (other.ConditionThreeDownlimit.Length != 0) {
  8769. ConditionThreeDownlimit = other.ConditionThreeDownlimit;
  8770. }
  8771. if (other.ConditionThreeUplimit.Length != 0) {
  8772. ConditionThreeUplimit = other.ConditionThreeUplimit;
  8773. }
  8774. if (other.ConditionFourDownlimit.Length != 0) {
  8775. ConditionFourDownlimit = other.ConditionFourDownlimit;
  8776. }
  8777. if (other.ConditionFourUplimit.Length != 0) {
  8778. ConditionFourUplimit = other.ConditionFourUplimit;
  8779. }
  8780. _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
  8781. }
  8782. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8783. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8784. public void MergeFrom(pb::CodedInputStream input) {
  8785. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  8786. input.ReadRawMessage(this);
  8787. #else
  8788. uint tag;
  8789. while ((tag = input.ReadTag()) != 0) {
  8790. switch(tag) {
  8791. default:
  8792. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
  8793. break;
  8794. case 10: {
  8795. ConditionOneDownlimit = input.ReadString();
  8796. break;
  8797. }
  8798. case 18: {
  8799. ConditionOneUplimit = input.ReadString();
  8800. break;
  8801. }
  8802. case 26: {
  8803. ConditionTwoDownlimit = input.ReadString();
  8804. break;
  8805. }
  8806. case 34: {
  8807. ConditionTwoUplimit = input.ReadString();
  8808. break;
  8809. }
  8810. case 42: {
  8811. ConditionThreeDownlimit = input.ReadString();
  8812. break;
  8813. }
  8814. case 50: {
  8815. ConditionThreeUplimit = input.ReadString();
  8816. break;
  8817. }
  8818. case 58: {
  8819. ConditionFourDownlimit = input.ReadString();
  8820. break;
  8821. }
  8822. case 66: {
  8823. ConditionFourUplimit = input.ReadString();
  8824. break;
  8825. }
  8826. }
  8827. }
  8828. #endif
  8829. }
  8830. #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
  8831. [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
  8832. [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
  8833. void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
  8834. uint tag;
  8835. while ((tag = input.ReadTag()) != 0) {
  8836. switch(tag) {
  8837. default:
  8838. _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
  8839. break;
  8840. case 10: {
  8841. ConditionOneDownlimit = input.ReadString();
  8842. break;
  8843. }
  8844. case 18: {
  8845. ConditionOneUplimit = input.ReadString();
  8846. break;
  8847. }
  8848. case 26: {
  8849. ConditionTwoDownlimit = input.ReadString();
  8850. break;
  8851. }
  8852. case 34: {
  8853. ConditionTwoUplimit = input.ReadString();
  8854. break;
  8855. }
  8856. case 42: {
  8857. ConditionThreeDownlimit = input.ReadString();
  8858. break;
  8859. }
  8860. case 50: {
  8861. ConditionThreeUplimit = input.ReadString();
  8862. break;
  8863. }
  8864. case 58: {
  8865. ConditionFourDownlimit = input.ReadString();
  8866. break;
  8867. }
  8868. case 66: {
  8869. ConditionFourUplimit = input.ReadString();
  8870. break;
  8871. }
  8872. }
  8873. }
  8874. }
  8875. #endif
  8876. }
  8877. #endregion
  8878. }
  8879. #endregion Designer generated code