dev_zydma.yml 221 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522
  1. ---
  2. - deviceId: "710022511060001"
  3. deviceName: "内衣厂流量仪"
  4. deviceSn: "SB00000015"
  5. deviceKind: "flow"
  6. platform: "zaoyang-iot"
  7. mfrs: "上海锐铼"
  8. createTime: "2025-11-06 17:45:44"
  9. tags:
  10. - tag: "瞬时流量"
  11. protocol: "json"
  12. measurement: "WaterMeter"
  13. field: "flow_cur"
  14. valueType: "double"
  15. minValue: null
  16. maxValue: null
  17. syncField: null
  18. calcFormula: null
  19. - tag: "正向累计流量"
  20. protocol: "json"
  21. measurement: "WaterMeter"
  22. field: "flow_total_pos"
  23. valueType: "double"
  24. minValue: null
  25. maxValue: null
  26. syncField: null
  27. calcFormula: null
  28. - tag: "反向累计流量"
  29. protocol: "json"
  30. measurement: "WaterMeter"
  31. field: "flow_total_rev"
  32. valueType: "double"
  33. minValue: null
  34. maxValue: null
  35. syncField: null
  36. calcFormula: null
  37. - tag: "压力"
  38. protocol: "json"
  39. measurement: "WaterMeter"
  40. field: "press_cur"
  41. valueType: "double"
  42. minValue: null
  43. maxValue: null
  44. syncField: null
  45. calcFormula: null
  46. - deviceId: "710022511060002"
  47. deviceName: "统建楼流量仪"
  48. deviceSn: "SB00000014"
  49. deviceKind: "flow"
  50. platform: "zaoyang-iot"
  51. mfrs: "上海锐铼"
  52. createTime: "2025-11-06 17:45:44"
  53. tags:
  54. - tag: "瞬时流量"
  55. protocol: "json"
  56. measurement: "WaterMeter"
  57. field: "flow_cur"
  58. valueType: "double"
  59. minValue: null
  60. maxValue: null
  61. syncField: null
  62. calcFormula: null
  63. - tag: "正向累计流量"
  64. protocol: "json"
  65. measurement: "WaterMeter"
  66. field: "flow_total_pos"
  67. valueType: "double"
  68. minValue: null
  69. maxValue: null
  70. syncField: null
  71. calcFormula: null
  72. - tag: "反向累计流量"
  73. protocol: "json"
  74. measurement: "WaterMeter"
  75. field: "flow_total_rev"
  76. valueType: "double"
  77. minValue: null
  78. maxValue: null
  79. syncField: null
  80. calcFormula: null
  81. - tag: "压力"
  82. protocol: "json"
  83. measurement: "WaterMeter"
  84. field: "press_cur"
  85. valueType: "double"
  86. minValue: null
  87. maxValue: null
  88. syncField: null
  89. calcFormula: null
  90. - deviceId: "710022511060003"
  91. deviceName: "福田小区流量仪"
  92. deviceSn: "SB00000013"
  93. deviceKind: "flow"
  94. platform: "zaoyang-iot"
  95. mfrs: "上海锐铼"
  96. createTime: "2025-11-06 17:45:44"
  97. tags:
  98. - tag: "瞬时流量"
  99. protocol: "json"
  100. measurement: "WaterMeter"
  101. field: "flow_cur"
  102. valueType: "double"
  103. minValue: null
  104. maxValue: null
  105. syncField: null
  106. calcFormula: null
  107. - tag: "正向累计流量"
  108. protocol: "json"
  109. measurement: "WaterMeter"
  110. field: "flow_total_pos"
  111. valueType: "double"
  112. minValue: null
  113. maxValue: null
  114. syncField: null
  115. calcFormula: null
  116. - tag: "反向累计流量"
  117. protocol: "json"
  118. measurement: "WaterMeter"
  119. field: "flow_total_rev"
  120. valueType: "double"
  121. minValue: null
  122. maxValue: null
  123. syncField: null
  124. calcFormula: null
  125. - tag: "压力"
  126. protocol: "json"
  127. measurement: "WaterMeter"
  128. field: "press_cur"
  129. valueType: "double"
  130. minValue: null
  131. maxValue: null
  132. syncField: null
  133. calcFormula: null
  134. - deviceId: "710022511060004"
  135. deviceName: "麻纺厂家属院"
  136. deviceSn: "SB00000012"
  137. deviceKind: "flow"
  138. platform: "zaoyang-iot"
  139. mfrs: "上海锐铼"
  140. createTime: "2025-11-06 17:45:44"
  141. tags:
  142. - tag: "瞬时流量"
  143. protocol: "json"
  144. measurement: "WaterMeter"
  145. field: "flow_cur"
  146. valueType: "double"
  147. minValue: null
  148. maxValue: null
  149. syncField: null
  150. calcFormula: null
  151. - tag: "正向累计流量"
  152. protocol: "json"
  153. measurement: "WaterMeter"
  154. field: "flow_total_pos"
  155. valueType: "double"
  156. minValue: null
  157. maxValue: null
  158. syncField: null
  159. calcFormula: null
  160. - tag: "反向累计流量"
  161. protocol: "json"
  162. measurement: "WaterMeter"
  163. field: "flow_total_rev"
  164. valueType: "double"
  165. minValue: null
  166. maxValue: null
  167. syncField: null
  168. calcFormula: null
  169. - tag: "压力"
  170. protocol: "json"
  171. measurement: "WaterMeter"
  172. field: "press_cur"
  173. valueType: "double"
  174. minValue: null
  175. maxValue: null
  176. syncField: null
  177. calcFormula: null
  178. - deviceId: "710022511060005"
  179. deviceName: "52#南阳路老通达北侧"
  180. deviceSn: "SB00000019"
  181. deviceKind: "flow"
  182. platform: "zaoyang-iot"
  183. mfrs: "上海锐铼"
  184. createTime: "2025-11-06 17:45:44"
  185. tags:
  186. - tag: "瞬时流量"
  187. protocol: "json"
  188. measurement: "WaterMeter"
  189. field: "flow_cur"
  190. valueType: "double"
  191. minValue: null
  192. maxValue: null
  193. syncField: null
  194. calcFormula: null
  195. - tag: "正向累计流量"
  196. protocol: "json"
  197. measurement: "WaterMeter"
  198. field: "flow_total_pos"
  199. valueType: "double"
  200. minValue: null
  201. maxValue: null
  202. syncField: null
  203. calcFormula: null
  204. - tag: "反向累计流量"
  205. protocol: "json"
  206. measurement: "WaterMeter"
  207. field: "flow_total_rev"
  208. valueType: "double"
  209. minValue: null
  210. maxValue: null
  211. syncField: null
  212. calcFormula: null
  213. - tag: "压力"
  214. protocol: "json"
  215. measurement: "WaterMeter"
  216. field: "press_cur"
  217. valueType: "double"
  218. minValue: null
  219. maxValue: null
  220. syncField: null
  221. calcFormula: null
  222. - deviceId: "710022511060006"
  223. deviceName: "2502001010"
  224. deviceSn: "SB00000017"
  225. deviceKind: "flow"
  226. platform: "zaoyang-iot"
  227. mfrs: "上海锐铼"
  228. createTime: "2025-11-06 17:45:44"
  229. tags:
  230. - tag: "瞬时流量"
  231. protocol: "json"
  232. measurement: "WaterMeter"
  233. field: "flow_cur"
  234. valueType: "double"
  235. minValue: null
  236. maxValue: null
  237. syncField: null
  238. calcFormula: null
  239. - tag: "正向累计流量"
  240. protocol: "json"
  241. measurement: "WaterMeter"
  242. field: "flow_total_pos"
  243. valueType: "double"
  244. minValue: null
  245. maxValue: null
  246. syncField: null
  247. calcFormula: null
  248. - tag: "反向累计流量"
  249. protocol: "json"
  250. measurement: "WaterMeter"
  251. field: "flow_total_rev"
  252. valueType: "double"
  253. minValue: null
  254. maxValue: null
  255. syncField: null
  256. calcFormula: null
  257. - tag: "压力"
  258. protocol: "json"
  259. measurement: "WaterMeter"
  260. field: "press_cur"
  261. valueType: "double"
  262. minValue: null
  263. maxValue: null
  264. syncField: null
  265. calcFormula: null
  266. - deviceId: "710022511060007"
  267. deviceName: "万通地税局流量仪"
  268. deviceSn: "SB00000016"
  269. deviceKind: "flow"
  270. platform: "zaoyang-iot"
  271. mfrs: "上海锐铼"
  272. createTime: "2025-11-06 17:45:44"
  273. tags:
  274. - tag: "瞬时流量"
  275. protocol: "json"
  276. measurement: "WaterMeter"
  277. field: "flow_cur"
  278. valueType: "double"
  279. minValue: null
  280. maxValue: null
  281. syncField: null
  282. calcFormula: null
  283. - tag: "正向累计流量"
  284. protocol: "json"
  285. measurement: "WaterMeter"
  286. field: "flow_total_pos"
  287. valueType: "double"
  288. minValue: null
  289. maxValue: null
  290. syncField: null
  291. calcFormula: null
  292. - tag: "反向累计流量"
  293. protocol: "json"
  294. measurement: "WaterMeter"
  295. field: "flow_total_rev"
  296. valueType: "double"
  297. minValue: null
  298. maxValue: null
  299. syncField: null
  300. calcFormula: null
  301. - tag: "压力"
  302. protocol: "json"
  303. measurement: "WaterMeter"
  304. field: "press_cur"
  305. valueType: "double"
  306. minValue: null
  307. maxValue: null
  308. syncField: null
  309. calcFormula: null
  310. - deviceId: "710022511060008"
  311. deviceName: "炮团路口流量计"
  312. deviceSn: "SB00000095"
  313. deviceKind: "flow"
  314. platform: "zaoyang-iot"
  315. mfrs: "上海锐铼"
  316. createTime: "2025-11-06 17:45:44"
  317. tags:
  318. - tag: "瞬时流量"
  319. protocol: "json"
  320. measurement: "WaterMeter"
  321. field: "flow_cur"
  322. valueType: "double"
  323. minValue: null
  324. maxValue: null
  325. syncField: null
  326. calcFormula: null
  327. - tag: "正向累计流量"
  328. protocol: "json"
  329. measurement: "WaterMeter"
  330. field: "flow_total_pos"
  331. valueType: "double"
  332. minValue: null
  333. maxValue: null
  334. syncField: null
  335. calcFormula: null
  336. - tag: "反向累计流量"
  337. protocol: "json"
  338. measurement: "WaterMeter"
  339. field: "flow_total_rev"
  340. valueType: "double"
  341. minValue: null
  342. maxValue: null
  343. syncField: null
  344. calcFormula: null
  345. - tag: "压力"
  346. protocol: "json"
  347. measurement: "WaterMeter"
  348. field: "press_cur"
  349. valueType: "double"
  350. minValue: null
  351. maxValue: null
  352. syncField: null
  353. calcFormula: null
  354. - deviceId: "710022511060009"
  355. deviceName: "园林路流量计"
  356. deviceSn: "SB00000094"
  357. deviceKind: "flow"
  358. platform: "zaoyang-iot"
  359. mfrs: "上海锐铼"
  360. createTime: "2025-11-06 17:45:44"
  361. tags:
  362. - tag: "瞬时流量"
  363. protocol: "json"
  364. measurement: "WaterMeter"
  365. field: "flow_cur"
  366. valueType: "double"
  367. minValue: null
  368. maxValue: null
  369. syncField: null
  370. calcFormula: null
  371. - tag: "正向累计流量"
  372. protocol: "json"
  373. measurement: "WaterMeter"
  374. field: "flow_total_pos"
  375. valueType: "double"
  376. minValue: null
  377. maxValue: null
  378. syncField: null
  379. calcFormula: null
  380. - tag: "反向累计流量"
  381. protocol: "json"
  382. measurement: "WaterMeter"
  383. field: "flow_total_rev"
  384. valueType: "double"
  385. minValue: null
  386. maxValue: null
  387. syncField: null
  388. calcFormula: null
  389. - tag: "压力"
  390. protocol: "json"
  391. measurement: "WaterMeter"
  392. field: "press_cur"
  393. valueType: "double"
  394. minValue: null
  395. maxValue: null
  396. syncField: null
  397. calcFormula: null
  398. - deviceId: "710022511060010"
  399. deviceName: "万通路北线300考核表"
  400. deviceSn: "SB00000093"
  401. deviceKind: "flow"
  402. platform: "zaoyang-iot"
  403. mfrs: "上海锐铼"
  404. createTime: "2025-11-06 17:45:44"
  405. tags:
  406. - tag: "瞬时流量"
  407. protocol: "json"
  408. measurement: "WaterMeter"
  409. field: "flow_cur"
  410. valueType: "double"
  411. minValue: null
  412. maxValue: null
  413. syncField: null
  414. calcFormula: null
  415. - tag: "正向累计流量"
  416. protocol: "json"
  417. measurement: "WaterMeter"
  418. field: "flow_total_pos"
  419. valueType: "double"
  420. minValue: null
  421. maxValue: null
  422. syncField: null
  423. calcFormula: null
  424. - tag: "反向累计流量"
  425. protocol: "json"
  426. measurement: "WaterMeter"
  427. field: "flow_total_rev"
  428. valueType: "double"
  429. minValue: null
  430. maxValue: null
  431. syncField: null
  432. calcFormula: null
  433. - tag: "压力"
  434. protocol: "json"
  435. measurement: "WaterMeter"
  436. field: "press_cur"
  437. valueType: "double"
  438. minValue: null
  439. maxValue: null
  440. syncField: null
  441. calcFormula: null
  442. - deviceId: "710022511060011"
  443. deviceName: "万通路南线200考核表"
  444. deviceSn: "SB00000092"
  445. deviceKind: "flow"
  446. platform: "zaoyang-iot"
  447. mfrs: "上海锐铼"
  448. createTime: "2025-11-06 17:45:44"
  449. tags:
  450. - tag: "瞬时流量"
  451. protocol: "json"
  452. measurement: "WaterMeter"
  453. field: "flow_cur"
  454. valueType: "double"
  455. minValue: null
  456. maxValue: null
  457. syncField: null
  458. calcFormula: null
  459. - tag: "正向累计流量"
  460. protocol: "json"
  461. measurement: "WaterMeter"
  462. field: "flow_total_pos"
  463. valueType: "double"
  464. minValue: null
  465. maxValue: null
  466. syncField: null
  467. calcFormula: null
  468. - tag: "反向累计流量"
  469. protocol: "json"
  470. measurement: "WaterMeter"
  471. field: "flow_total_rev"
  472. valueType: "double"
  473. minValue: null
  474. maxValue: null
  475. syncField: null
  476. calcFormula: null
  477. - tag: "压力"
  478. protocol: "json"
  479. measurement: "WaterMeter"
  480. field: "press_cur"
  481. valueType: "double"
  482. minValue: null
  483. maxValue: null
  484. syncField: null
  485. calcFormula: null
  486. - deviceId: "710022511060012"
  487. deviceName: "天立公寓考核表"
  488. deviceSn: "SB00000099"
  489. deviceKind: "flow"
  490. platform: "zaoyang-iot"
  491. mfrs: "上海锐铼"
  492. createTime: "2025-11-06 17:45:44"
  493. tags:
  494. - tag: "瞬时流量"
  495. protocol: "json"
  496. measurement: "WaterMeter"
  497. field: "flow_cur"
  498. valueType: "double"
  499. minValue: null
  500. maxValue: null
  501. syncField: null
  502. calcFormula: null
  503. - tag: "正向累计流量"
  504. protocol: "json"
  505. measurement: "WaterMeter"
  506. field: "flow_total_pos"
  507. valueType: "double"
  508. minValue: null
  509. maxValue: null
  510. syncField: null
  511. calcFormula: null
  512. - tag: "反向累计流量"
  513. protocol: "json"
  514. measurement: "WaterMeter"
  515. field: "flow_total_rev"
  516. valueType: "double"
  517. minValue: null
  518. maxValue: null
  519. syncField: null
  520. calcFormula: null
  521. - tag: "压力"
  522. protocol: "json"
  523. measurement: "WaterMeter"
  524. field: "press_cur"
  525. valueType: "double"
  526. minValue: null
  527. maxValue: null
  528. syncField: null
  529. calcFormula: null
  530. - deviceId: "710022511060013"
  531. deviceName: "万通福瑞巷"
  532. deviceSn: "SB00000011"
  533. deviceKind: "flow"
  534. platform: "zaoyang-iot"
  535. mfrs: "上海锐铼"
  536. createTime: "2025-11-06 17:45:44"
  537. tags:
  538. - tag: "瞬时流量"
  539. protocol: "json"
  540. measurement: "WaterMeter"
  541. field: "flow_cur"
  542. valueType: "double"
  543. minValue: null
  544. maxValue: null
  545. syncField: null
  546. calcFormula: null
  547. - tag: "正向累计流量"
  548. protocol: "json"
  549. measurement: "WaterMeter"
  550. field: "flow_total_pos"
  551. valueType: "double"
  552. minValue: null
  553. maxValue: null
  554. syncField: null
  555. calcFormula: null
  556. - tag: "反向累计流量"
  557. protocol: "json"
  558. measurement: "WaterMeter"
  559. field: "flow_total_rev"
  560. valueType: "double"
  561. minValue: null
  562. maxValue: null
  563. syncField: null
  564. calcFormula: null
  565. - tag: "压力"
  566. protocol: "json"
  567. measurement: "WaterMeter"
  568. field: "press_cur"
  569. valueType: "double"
  570. minValue: null
  571. maxValue: null
  572. syncField: null
  573. calcFormula: null
  574. - deviceId: "710022511060014"
  575. deviceName: "2503000368"
  576. deviceSn: "SB00000098"
  577. deviceKind: "flow"
  578. platform: "zaoyang-iot"
  579. mfrs: "上海锐铼"
  580. createTime: "2025-11-06 17:45:44"
  581. tags:
  582. - tag: "瞬时流量"
  583. protocol: "json"
  584. measurement: "WaterMeter"
  585. field: "flow_cur"
  586. valueType: "double"
  587. minValue: null
  588. maxValue: null
  589. syncField: null
  590. calcFormula: null
  591. - tag: "正向累计流量"
  592. protocol: "json"
  593. measurement: "WaterMeter"
  594. field: "flow_total_pos"
  595. valueType: "double"
  596. minValue: null
  597. maxValue: null
  598. syncField: null
  599. calcFormula: null
  600. - tag: "反向累计流量"
  601. protocol: "json"
  602. measurement: "WaterMeter"
  603. field: "flow_total_rev"
  604. valueType: "double"
  605. minValue: null
  606. maxValue: null
  607. syncField: null
  608. calcFormula: null
  609. - tag: "压力"
  610. protocol: "json"
  611. measurement: "WaterMeter"
  612. field: "press_cur"
  613. valueType: "double"
  614. minValue: null
  615. maxValue: null
  616. syncField: null
  617. calcFormula: null
  618. - deviceId: "710022511060015"
  619. deviceName: "福瑞龙联小区"
  620. deviceSn: "SB00000010"
  621. deviceKind: "flow"
  622. platform: "zaoyang-iot"
  623. mfrs: "上海锐铼"
  624. createTime: "2025-11-06 17:45:44"
  625. tags:
  626. - tag: "瞬时流量"
  627. protocol: "json"
  628. measurement: "WaterMeter"
  629. field: "flow_cur"
  630. valueType: "double"
  631. minValue: null
  632. maxValue: null
  633. syncField: null
  634. calcFormula: null
  635. - tag: "正向累计流量"
  636. protocol: "json"
  637. measurement: "WaterMeter"
  638. field: "flow_total_pos"
  639. valueType: "double"
  640. minValue: null
  641. maxValue: null
  642. syncField: null
  643. calcFormula: null
  644. - tag: "反向累计流量"
  645. protocol: "json"
  646. measurement: "WaterMeter"
  647. field: "flow_total_rev"
  648. valueType: "double"
  649. minValue: null
  650. maxValue: null
  651. syncField: null
  652. calcFormula: null
  653. - tag: "压力"
  654. protocol: "json"
  655. measurement: "WaterMeter"
  656. field: "press_cur"
  657. valueType: "double"
  658. minValue: null
  659. maxValue: null
  660. syncField: null
  661. calcFormula: null
  662. - deviceId: "710022511060016"
  663. deviceName: "梁集路口400考核表"
  664. deviceSn: "SB00000097"
  665. deviceKind: "flow"
  666. platform: "zaoyang-iot"
  667. mfrs: "上海锐铼"
  668. createTime: "2025-11-06 17:45:44"
  669. tags:
  670. - tag: "瞬时流量"
  671. protocol: "json"
  672. measurement: "WaterMeter"
  673. field: "flow_cur"
  674. valueType: "double"
  675. minValue: null
  676. maxValue: null
  677. syncField: null
  678. calcFormula: null
  679. - tag: "正向累计流量"
  680. protocol: "json"
  681. measurement: "WaterMeter"
  682. field: "flow_total_pos"
  683. valueType: "double"
  684. minValue: null
  685. maxValue: null
  686. syncField: null
  687. calcFormula: null
  688. - tag: "反向累计流量"
  689. protocol: "json"
  690. measurement: "WaterMeter"
  691. field: "flow_total_rev"
  692. valueType: "double"
  693. minValue: null
  694. maxValue: null
  695. syncField: null
  696. calcFormula: null
  697. - tag: "压力"
  698. protocol: "json"
  699. measurement: "WaterMeter"
  700. field: "press_cur"
  701. valueType: "double"
  702. minValue: null
  703. maxValue: null
  704. syncField: null
  705. calcFormula: null
  706. - deviceId: "710022511060017"
  707. deviceName: "2412001138"
  708. deviceSn: "SB00000096"
  709. deviceKind: "flow"
  710. platform: "zaoyang-iot"
  711. mfrs: "上海锐铼"
  712. createTime: "2025-11-06 17:45:44"
  713. tags:
  714. - tag: "瞬时流量"
  715. protocol: "json"
  716. measurement: "WaterMeter"
  717. field: "flow_cur"
  718. valueType: "double"
  719. minValue: null
  720. maxValue: null
  721. syncField: null
  722. calcFormula: null
  723. - tag: "正向累计流量"
  724. protocol: "json"
  725. measurement: "WaterMeter"
  726. field: "flow_total_pos"
  727. valueType: "double"
  728. minValue: null
  729. maxValue: null
  730. syncField: null
  731. calcFormula: null
  732. - tag: "反向累计流量"
  733. protocol: "json"
  734. measurement: "WaterMeter"
  735. field: "flow_total_rev"
  736. valueType: "double"
  737. minValue: null
  738. maxValue: null
  739. syncField: null
  740. calcFormula: null
  741. - tag: "压力"
  742. protocol: "json"
  743. measurement: "WaterMeter"
  744. field: "press_cur"
  745. valueType: "double"
  746. minValue: null
  747. maxValue: null
  748. syncField: null
  749. calcFormula: null
  750. - deviceId: "710022511060018"
  751. deviceName: "车站路与和谐路交叉口东南角流量计"
  752. deviceSn: "SB00000091"
  753. deviceKind: "flow"
  754. platform: "zaoyang-iot"
  755. mfrs: "上海锐铼"
  756. createTime: "2025-11-06 17:45:44"
  757. tags:
  758. - tag: "瞬时流量"
  759. protocol: "json"
  760. measurement: "WaterMeter"
  761. field: "flow_cur"
  762. valueType: "double"
  763. minValue: null
  764. maxValue: null
  765. syncField: null
  766. calcFormula: null
  767. - tag: "正向累计流量"
  768. protocol: "json"
  769. measurement: "WaterMeter"
  770. field: "flow_total_pos"
  771. valueType: "double"
  772. minValue: null
  773. maxValue: null
  774. syncField: null
  775. calcFormula: null
  776. - tag: "反向累计流量"
  777. protocol: "json"
  778. measurement: "WaterMeter"
  779. field: "flow_total_rev"
  780. valueType: "double"
  781. minValue: null
  782. maxValue: null
  783. syncField: null
  784. calcFormula: null
  785. - tag: "压力"
  786. protocol: "json"
  787. measurement: "WaterMeter"
  788. field: "press_cur"
  789. valueType: "double"
  790. minValue: null
  791. maxValue: null
  792. syncField: null
  793. calcFormula: null
  794. - deviceId: "710022511060019"
  795. deviceName: "2412000654"
  796. deviceSn: "SB00000090"
  797. deviceKind: "flow"
  798. platform: "zaoyang-iot"
  799. mfrs: "上海锐铼"
  800. createTime: "2025-11-06 17:45:44"
  801. tags:
  802. - tag: "瞬时流量"
  803. protocol: "json"
  804. measurement: "WaterMeter"
  805. field: "flow_cur"
  806. valueType: "double"
  807. minValue: null
  808. maxValue: null
  809. syncField: null
  810. calcFormula: null
  811. - tag: "正向累计流量"
  812. protocol: "json"
  813. measurement: "WaterMeter"
  814. field: "flow_total_pos"
  815. valueType: "double"
  816. minValue: null
  817. maxValue: null
  818. syncField: null
  819. calcFormula: null
  820. - tag: "反向累计流量"
  821. protocol: "json"
  822. measurement: "WaterMeter"
  823. field: "flow_total_rev"
  824. valueType: "double"
  825. minValue: null
  826. maxValue: null
  827. syncField: null
  828. calcFormula: null
  829. - tag: "压力"
  830. protocol: "json"
  831. measurement: "WaterMeter"
  832. field: "press_cur"
  833. valueType: "double"
  834. minValue: null
  835. maxValue: null
  836. syncField: null
  837. calcFormula: null
  838. - deviceId: "710022511060020"
  839. deviceName: "龙联小区巷口"
  840. deviceSn: "SB00000009"
  841. deviceKind: "flow"
  842. platform: "zaoyang-iot"
  843. mfrs: "上海锐铼"
  844. createTime: "2025-11-06 17:45:44"
  845. tags:
  846. - tag: "瞬时流量"
  847. protocol: "json"
  848. measurement: "WaterMeter"
  849. field: "flow_cur"
  850. valueType: "double"
  851. minValue: null
  852. maxValue: null
  853. syncField: null
  854. calcFormula: null
  855. - tag: "正向累计流量"
  856. protocol: "json"
  857. measurement: "WaterMeter"
  858. field: "flow_total_pos"
  859. valueType: "double"
  860. minValue: null
  861. maxValue: null
  862. syncField: null
  863. calcFormula: null
  864. - tag: "反向累计流量"
  865. protocol: "json"
  866. measurement: "WaterMeter"
  867. field: "flow_total_rev"
  868. valueType: "double"
  869. minValue: null
  870. maxValue: null
  871. syncField: null
  872. calcFormula: null
  873. - tag: "压力"
  874. protocol: "json"
  875. measurement: "WaterMeter"
  876. field: "press_cur"
  877. valueType: "double"
  878. minValue: null
  879. maxValue: null
  880. syncField: null
  881. calcFormula: null
  882. - deviceId: "710022511060021"
  883. deviceName: "280#人民路与和谐路交汇处东北角向东"
  884. deviceSn: "SB00000125"
  885. deviceKind: "flow"
  886. platform: "zaoyang-iot"
  887. mfrs: "上海锐铼"
  888. createTime: "2025-11-06 17:45:44"
  889. tags:
  890. - tag: "瞬时流量"
  891. protocol: "json"
  892. measurement: "WaterMeter"
  893. field: "flow_cur"
  894. valueType: "double"
  895. minValue: null
  896. maxValue: null
  897. syncField: null
  898. calcFormula: null
  899. - tag: "正向累计流量"
  900. protocol: "json"
  901. measurement: "WaterMeter"
  902. field: "flow_total_pos"
  903. valueType: "double"
  904. minValue: null
  905. maxValue: null
  906. syncField: null
  907. calcFormula: null
  908. - tag: "反向累计流量"
  909. protocol: "json"
  910. measurement: "WaterMeter"
  911. field: "flow_total_rev"
  912. valueType: "double"
  913. minValue: null
  914. maxValue: null
  915. syncField: null
  916. calcFormula: null
  917. - tag: "压力"
  918. protocol: "json"
  919. measurement: "WaterMeter"
  920. field: "press_cur"
  921. valueType: "double"
  922. minValue: null
  923. maxValue: null
  924. syncField: null
  925. calcFormula: null
  926. - deviceId: "710022511060022"
  927. deviceName: "史岗一组南城检查室考核表"
  928. deviceSn: "SB00000004"
  929. deviceKind: "flow"
  930. platform: "zaoyang-iot"
  931. mfrs: "上海锐铼"
  932. createTime: "2025-11-06 17:45:44"
  933. tags:
  934. - tag: "瞬时流量"
  935. protocol: "json"
  936. measurement: "WaterMeter"
  937. field: "flow_cur"
  938. valueType: "double"
  939. minValue: null
  940. maxValue: null
  941. syncField: null
  942. calcFormula: null
  943. - tag: "正向累计流量"
  944. protocol: "json"
  945. measurement: "WaterMeter"
  946. field: "flow_total_pos"
  947. valueType: "double"
  948. minValue: null
  949. maxValue: null
  950. syncField: null
  951. calcFormula: null
  952. - tag: "反向累计流量"
  953. protocol: "json"
  954. measurement: "WaterMeter"
  955. field: "flow_total_rev"
  956. valueType: "double"
  957. minValue: null
  958. maxValue: null
  959. syncField: null
  960. calcFormula: null
  961. - tag: "压力"
  962. protocol: "json"
  963. measurement: "WaterMeter"
  964. field: "press_cur"
  965. valueType: "double"
  966. minValue: null
  967. maxValue: null
  968. syncField: null
  969. calcFormula: null
  970. - deviceId: "710022511060023"
  971. deviceName: "304#中兴大道港利制冷南侧管道过路处"
  972. deviceSn: "SB00000124"
  973. deviceKind: "flow"
  974. platform: "zaoyang-iot"
  975. mfrs: "上海锐铼"
  976. createTime: "2025-11-06 17:45:44"
  977. tags:
  978. - tag: "瞬时流量"
  979. protocol: "json"
  980. measurement: "WaterMeter"
  981. field: "flow_cur"
  982. valueType: "double"
  983. minValue: null
  984. maxValue: null
  985. syncField: null
  986. calcFormula: null
  987. - tag: "正向累计流量"
  988. protocol: "json"
  989. measurement: "WaterMeter"
  990. field: "flow_total_pos"
  991. valueType: "double"
  992. minValue: null
  993. maxValue: null
  994. syncField: null
  995. calcFormula: null
  996. - tag: "反向累计流量"
  997. protocol: "json"
  998. measurement: "WaterMeter"
  999. field: "flow_total_rev"
  1000. valueType: "double"
  1001. minValue: null
  1002. maxValue: null
  1003. syncField: null
  1004. calcFormula: null
  1005. - tag: "压力"
  1006. protocol: "json"
  1007. measurement: "WaterMeter"
  1008. field: "press_cur"
  1009. valueType: "double"
  1010. minValue: null
  1011. maxValue: null
  1012. syncField: null
  1013. calcFormula: null
  1014. - deviceId: "710022511060024"
  1015. deviceName: "金色家园流量计"
  1016. deviceSn: "SB00000003"
  1017. deviceKind: "flow"
  1018. platform: "zaoyang-iot"
  1019. mfrs: "上海锐铼"
  1020. createTime: "2025-11-06 17:45:44"
  1021. tags:
  1022. - tag: "瞬时流量"
  1023. protocol: "json"
  1024. measurement: "WaterMeter"
  1025. field: "flow_cur"
  1026. valueType: "double"
  1027. minValue: null
  1028. maxValue: null
  1029. syncField: null
  1030. calcFormula: null
  1031. - tag: "正向累计流量"
  1032. protocol: "json"
  1033. measurement: "WaterMeter"
  1034. field: "flow_total_pos"
  1035. valueType: "double"
  1036. minValue: null
  1037. maxValue: null
  1038. syncField: null
  1039. calcFormula: null
  1040. - tag: "反向累计流量"
  1041. protocol: "json"
  1042. measurement: "WaterMeter"
  1043. field: "flow_total_rev"
  1044. valueType: "double"
  1045. minValue: null
  1046. maxValue: null
  1047. syncField: null
  1048. calcFormula: null
  1049. - tag: "压力"
  1050. protocol: "json"
  1051. measurement: "WaterMeter"
  1052. field: "press_cur"
  1053. valueType: "double"
  1054. minValue: null
  1055. maxValue: null
  1056. syncField: null
  1057. calcFormula: null
  1058. - deviceId: "710022511060025"
  1059. deviceName: "289#复兴大道与人民路交汇处东南角南侧"
  1060. deviceSn: "SB00000123"
  1061. deviceKind: "flow"
  1062. platform: "zaoyang-iot"
  1063. mfrs: "上海锐铼"
  1064. createTime: "2025-11-06 17:45:44"
  1065. tags:
  1066. - tag: "瞬时流量"
  1067. protocol: "json"
  1068. measurement: "WaterMeter"
  1069. field: "flow_cur"
  1070. valueType: "double"
  1071. minValue: null
  1072. maxValue: null
  1073. syncField: null
  1074. calcFormula: null
  1075. - tag: "正向累计流量"
  1076. protocol: "json"
  1077. measurement: "WaterMeter"
  1078. field: "flow_total_pos"
  1079. valueType: "double"
  1080. minValue: null
  1081. maxValue: null
  1082. syncField: null
  1083. calcFormula: null
  1084. - tag: "反向累计流量"
  1085. protocol: "json"
  1086. measurement: "WaterMeter"
  1087. field: "flow_total_rev"
  1088. valueType: "double"
  1089. minValue: null
  1090. maxValue: null
  1091. syncField: null
  1092. calcFormula: null
  1093. - tag: "压力"
  1094. protocol: "json"
  1095. measurement: "WaterMeter"
  1096. field: "press_cur"
  1097. valueType: "double"
  1098. minValue: null
  1099. maxValue: null
  1100. syncField: null
  1101. calcFormula: null
  1102. - deviceId: "710022511060026"
  1103. deviceName: "2412000400"
  1104. deviceSn: "SB00000002"
  1105. deviceKind: "flow"
  1106. platform: "zaoyang-iot"
  1107. mfrs: "上海锐铼"
  1108. createTime: "2025-11-06 17:45:44"
  1109. tags:
  1110. - tag: "瞬时流量"
  1111. protocol: "json"
  1112. measurement: "WaterMeter"
  1113. field: "flow_cur"
  1114. valueType: "double"
  1115. minValue: null
  1116. maxValue: null
  1117. syncField: null
  1118. calcFormula: null
  1119. - tag: "正向累计流量"
  1120. protocol: "json"
  1121. measurement: "WaterMeter"
  1122. field: "flow_total_pos"
  1123. valueType: "double"
  1124. minValue: null
  1125. maxValue: null
  1126. syncField: null
  1127. calcFormula: null
  1128. - tag: "反向累计流量"
  1129. protocol: "json"
  1130. measurement: "WaterMeter"
  1131. field: "flow_total_rev"
  1132. valueType: "double"
  1133. minValue: null
  1134. maxValue: null
  1135. syncField: null
  1136. calcFormula: null
  1137. - tag: "压力"
  1138. protocol: "json"
  1139. measurement: "WaterMeter"
  1140. field: "press_cur"
  1141. valueType: "double"
  1142. minValue: null
  1143. maxValue: null
  1144. syncField: null
  1145. calcFormula: null
  1146. - deviceId: "710022511060027"
  1147. deviceName: "262#发展大道与雨润路交汇处北侧"
  1148. deviceSn: "SB00000122"
  1149. deviceKind: "flow"
  1150. platform: "zaoyang-iot"
  1151. mfrs: "上海锐铼"
  1152. createTime: "2025-11-06 17:45:44"
  1153. tags:
  1154. - tag: "瞬时流量"
  1155. protocol: "json"
  1156. measurement: "WaterMeter"
  1157. field: "flow_cur"
  1158. valueType: "double"
  1159. minValue: null
  1160. maxValue: null
  1161. syncField: null
  1162. calcFormula: null
  1163. - tag: "正向累计流量"
  1164. protocol: "json"
  1165. measurement: "WaterMeter"
  1166. field: "flow_total_pos"
  1167. valueType: "double"
  1168. minValue: null
  1169. maxValue: null
  1170. syncField: null
  1171. calcFormula: null
  1172. - tag: "反向累计流量"
  1173. protocol: "json"
  1174. measurement: "WaterMeter"
  1175. field: "flow_total_rev"
  1176. valueType: "double"
  1177. minValue: null
  1178. maxValue: null
  1179. syncField: null
  1180. calcFormula: null
  1181. - tag: "压力"
  1182. protocol: "json"
  1183. measurement: "WaterMeter"
  1184. field: "press_cur"
  1185. valueType: "double"
  1186. minValue: null
  1187. maxValue: null
  1188. syncField: null
  1189. calcFormula: null
  1190. - deviceId: "710022511060028"
  1191. deviceName: "锦峰家园对面400流量计"
  1192. deviceSn: "SB00000089"
  1193. deviceKind: "flow"
  1194. platform: "zaoyang-iot"
  1195. mfrs: "上海锐铼"
  1196. createTime: "2025-11-06 17:45:44"
  1197. tags:
  1198. - tag: "瞬时流量"
  1199. protocol: "json"
  1200. measurement: "WaterMeter"
  1201. field: "flow_cur"
  1202. valueType: "double"
  1203. minValue: null
  1204. maxValue: null
  1205. syncField: null
  1206. calcFormula: null
  1207. - tag: "正向累计流量"
  1208. protocol: "json"
  1209. measurement: "WaterMeter"
  1210. field: "flow_total_pos"
  1211. valueType: "double"
  1212. minValue: null
  1213. maxValue: null
  1214. syncField: null
  1215. calcFormula: null
  1216. - tag: "反向累计流量"
  1217. protocol: "json"
  1218. measurement: "WaterMeter"
  1219. field: "flow_total_rev"
  1220. valueType: "double"
  1221. minValue: null
  1222. maxValue: null
  1223. syncField: null
  1224. calcFormula: null
  1225. - tag: "压力"
  1226. protocol: "json"
  1227. measurement: "WaterMeter"
  1228. field: "press_cur"
  1229. valueType: "double"
  1230. minValue: null
  1231. maxValue: null
  1232. syncField: null
  1233. calcFormula: null
  1234. - deviceId: "710022511060029"
  1235. deviceName: "南城棉花站"
  1236. deviceSn: "SB00000001"
  1237. deviceKind: "flow"
  1238. platform: "zaoyang-iot"
  1239. mfrs: "上海锐铼"
  1240. createTime: "2025-11-06 17:45:44"
  1241. tags:
  1242. - tag: "瞬时流量"
  1243. protocol: "json"
  1244. measurement: "WaterMeter"
  1245. field: "flow_cur"
  1246. valueType: "double"
  1247. minValue: null
  1248. maxValue: null
  1249. syncField: null
  1250. calcFormula: null
  1251. - tag: "正向累计流量"
  1252. protocol: "json"
  1253. measurement: "WaterMeter"
  1254. field: "flow_total_pos"
  1255. valueType: "double"
  1256. minValue: null
  1257. maxValue: null
  1258. syncField: null
  1259. calcFormula: null
  1260. - tag: "反向累计流量"
  1261. protocol: "json"
  1262. measurement: "WaterMeter"
  1263. field: "flow_total_rev"
  1264. valueType: "double"
  1265. minValue: null
  1266. maxValue: null
  1267. syncField: null
  1268. calcFormula: null
  1269. - tag: "压力"
  1270. protocol: "json"
  1271. measurement: "WaterMeter"
  1272. field: "press_cur"
  1273. valueType: "double"
  1274. minValue: null
  1275. maxValue: null
  1276. syncField: null
  1277. calcFormula: null
  1278. - deviceId: "710022511060030"
  1279. deviceName: "兴隆路霍庄六组流量仪"
  1280. deviceSn: "SB00000008"
  1281. deviceKind: "flow"
  1282. platform: "zaoyang-iot"
  1283. mfrs: "上海锐铼"
  1284. createTime: "2025-11-06 17:45:44"
  1285. tags:
  1286. - tag: "瞬时流量"
  1287. protocol: "json"
  1288. measurement: "WaterMeter"
  1289. field: "flow_cur"
  1290. valueType: "double"
  1291. minValue: null
  1292. maxValue: null
  1293. syncField: null
  1294. calcFormula: null
  1295. - tag: "正向累计流量"
  1296. protocol: "json"
  1297. measurement: "WaterMeter"
  1298. field: "flow_total_pos"
  1299. valueType: "double"
  1300. minValue: null
  1301. maxValue: null
  1302. syncField: null
  1303. calcFormula: null
  1304. - tag: "反向累计流量"
  1305. protocol: "json"
  1306. measurement: "WaterMeter"
  1307. field: "flow_total_rev"
  1308. valueType: "double"
  1309. minValue: null
  1310. maxValue: null
  1311. syncField: null
  1312. calcFormula: null
  1313. - tag: "压力"
  1314. protocol: "json"
  1315. measurement: "WaterMeter"
  1316. field: "press_cur"
  1317. valueType: "double"
  1318. minValue: null
  1319. maxValue: null
  1320. syncField: null
  1321. calcFormula: null
  1322. - deviceId: "710022511060031"
  1323. deviceName: "410100012"
  1324. deviceSn: "SB00000128"
  1325. deviceKind: "flow"
  1326. platform: "zaoyang-iot"
  1327. mfrs: "上海锐铼"
  1328. createTime: "2025-11-06 17:45:44"
  1329. tags:
  1330. - tag: "瞬时流量"
  1331. protocol: "json"
  1332. measurement: "WaterMeter"
  1333. field: "flow_cur"
  1334. valueType: "double"
  1335. minValue: null
  1336. maxValue: null
  1337. syncField: null
  1338. calcFormula: null
  1339. - tag: "正向累计流量"
  1340. protocol: "json"
  1341. measurement: "WaterMeter"
  1342. field: "flow_total_pos"
  1343. valueType: "double"
  1344. minValue: null
  1345. maxValue: null
  1346. syncField: null
  1347. calcFormula: null
  1348. - tag: "反向累计流量"
  1349. protocol: "json"
  1350. measurement: "WaterMeter"
  1351. field: "flow_total_rev"
  1352. valueType: "double"
  1353. minValue: null
  1354. maxValue: null
  1355. syncField: null
  1356. calcFormula: null
  1357. - tag: "压力"
  1358. protocol: "json"
  1359. measurement: "WaterMeter"
  1360. field: "press_cur"
  1361. valueType: "double"
  1362. minValue: null
  1363. maxValue: null
  1364. syncField: null
  1365. calcFormula: null
  1366. - deviceId: "710022511060032"
  1367. deviceName: "和谐花苑流量考核表"
  1368. deviceSn: "SB00000007"
  1369. deviceKind: "flow"
  1370. platform: "zaoyang-iot"
  1371. mfrs: "上海锐铼"
  1372. createTime: "2025-11-06 17:45:44"
  1373. tags:
  1374. - tag: "瞬时流量"
  1375. protocol: "json"
  1376. measurement: "WaterMeter"
  1377. field: "flow_cur"
  1378. valueType: "double"
  1379. minValue: null
  1380. maxValue: null
  1381. syncField: null
  1382. calcFormula: null
  1383. - tag: "正向累计流量"
  1384. protocol: "json"
  1385. measurement: "WaterMeter"
  1386. field: "flow_total_pos"
  1387. valueType: "double"
  1388. minValue: null
  1389. maxValue: null
  1390. syncField: null
  1391. calcFormula: null
  1392. - tag: "反向累计流量"
  1393. protocol: "json"
  1394. measurement: "WaterMeter"
  1395. field: "flow_total_rev"
  1396. valueType: "double"
  1397. minValue: null
  1398. maxValue: null
  1399. syncField: null
  1400. calcFormula: null
  1401. - tag: "压力"
  1402. protocol: "json"
  1403. measurement: "WaterMeter"
  1404. field: "press_cur"
  1405. valueType: "double"
  1406. minValue: null
  1407. maxValue: null
  1408. syncField: null
  1409. calcFormula: null
  1410. - deviceId: "710022511060033"
  1411. deviceName: "史肯岗一组炮团路口考核表"
  1412. deviceSn: "SB00000006"
  1413. deviceKind: "flow"
  1414. platform: "zaoyang-iot"
  1415. mfrs: "上海锐铼"
  1416. createTime: "2025-11-06 17:45:44"
  1417. tags:
  1418. - tag: "瞬时流量"
  1419. protocol: "json"
  1420. measurement: "WaterMeter"
  1421. field: "flow_cur"
  1422. valueType: "double"
  1423. minValue: null
  1424. maxValue: null
  1425. syncField: null
  1426. calcFormula: null
  1427. - tag: "正向累计流量"
  1428. protocol: "json"
  1429. measurement: "WaterMeter"
  1430. field: "flow_total_pos"
  1431. valueType: "double"
  1432. minValue: null
  1433. maxValue: null
  1434. syncField: null
  1435. calcFormula: null
  1436. - tag: "反向累计流量"
  1437. protocol: "json"
  1438. measurement: "WaterMeter"
  1439. field: "flow_total_rev"
  1440. valueType: "double"
  1441. minValue: null
  1442. maxValue: null
  1443. syncField: null
  1444. calcFormula: null
  1445. - tag: "压力"
  1446. protocol: "json"
  1447. measurement: "WaterMeter"
  1448. field: "press_cur"
  1449. valueType: "double"
  1450. minValue: null
  1451. maxValue: null
  1452. syncField: null
  1453. calcFormula: null
  1454. - deviceId: "710022511060034"
  1455. deviceName: "279#人民路与和谐路交汇处西北角"
  1456. deviceSn: "SB00000126"
  1457. deviceKind: "flow"
  1458. platform: "zaoyang-iot"
  1459. mfrs: "上海锐铼"
  1460. createTime: "2025-11-06 17:45:44"
  1461. tags:
  1462. - tag: "瞬时流量"
  1463. protocol: "json"
  1464. measurement: "WaterMeter"
  1465. field: "flow_cur"
  1466. valueType: "double"
  1467. minValue: null
  1468. maxValue: null
  1469. syncField: null
  1470. calcFormula: null
  1471. - tag: "正向累计流量"
  1472. protocol: "json"
  1473. measurement: "WaterMeter"
  1474. field: "flow_total_pos"
  1475. valueType: "double"
  1476. minValue: null
  1477. maxValue: null
  1478. syncField: null
  1479. calcFormula: null
  1480. - tag: "反向累计流量"
  1481. protocol: "json"
  1482. measurement: "WaterMeter"
  1483. field: "flow_total_rev"
  1484. valueType: "double"
  1485. minValue: null
  1486. maxValue: null
  1487. syncField: null
  1488. calcFormula: null
  1489. - tag: "压力"
  1490. protocol: "json"
  1491. measurement: "WaterMeter"
  1492. field: "press_cur"
  1493. valueType: "double"
  1494. minValue: null
  1495. maxValue: null
  1496. syncField: null
  1497. calcFormula: null
  1498. - deviceId: "710022511060035"
  1499. deviceName: "诗漫特考核表"
  1500. deviceSn: "SB00000005"
  1501. deviceKind: "flow"
  1502. platform: "zaoyang-iot"
  1503. mfrs: "上海锐铼"
  1504. createTime: "2025-11-06 17:45:44"
  1505. tags:
  1506. - tag: "瞬时流量"
  1507. protocol: "json"
  1508. measurement: "WaterMeter"
  1509. field: "flow_cur"
  1510. valueType: "double"
  1511. minValue: null
  1512. maxValue: null
  1513. syncField: null
  1514. calcFormula: null
  1515. - tag: "正向累计流量"
  1516. protocol: "json"
  1517. measurement: "WaterMeter"
  1518. field: "flow_total_pos"
  1519. valueType: "double"
  1520. minValue: null
  1521. maxValue: null
  1522. syncField: null
  1523. calcFormula: null
  1524. - tag: "反向累计流量"
  1525. protocol: "json"
  1526. measurement: "WaterMeter"
  1527. field: "flow_total_rev"
  1528. valueType: "double"
  1529. minValue: null
  1530. maxValue: null
  1531. syncField: null
  1532. calcFormula: null
  1533. - tag: "压力"
  1534. protocol: "json"
  1535. measurement: "WaterMeter"
  1536. field: "press_cur"
  1537. valueType: "double"
  1538. minValue: null
  1539. maxValue: null
  1540. syncField: null
  1541. calcFormula: null
  1542. - deviceId: "710022511060036"
  1543. deviceName: "19#民族路慧星名苑B区门口"
  1544. deviceSn: "SB00000084"
  1545. deviceKind: "flow"
  1546. platform: "zaoyang-iot"
  1547. mfrs: "上海锐铼"
  1548. createTime: "2025-11-06 17:45:44"
  1549. tags:
  1550. - tag: "瞬时流量"
  1551. protocol: "json"
  1552. measurement: "WaterMeter"
  1553. field: "flow_cur"
  1554. valueType: "double"
  1555. minValue: null
  1556. maxValue: null
  1557. syncField: null
  1558. calcFormula: null
  1559. - tag: "正向累计流量"
  1560. protocol: "json"
  1561. measurement: "WaterMeter"
  1562. field: "flow_total_pos"
  1563. valueType: "double"
  1564. minValue: null
  1565. maxValue: null
  1566. syncField: null
  1567. calcFormula: null
  1568. - tag: "反向累计流量"
  1569. protocol: "json"
  1570. measurement: "WaterMeter"
  1571. field: "flow_total_rev"
  1572. valueType: "double"
  1573. minValue: null
  1574. maxValue: null
  1575. syncField: null
  1576. calcFormula: null
  1577. - tag: "压力"
  1578. protocol: "json"
  1579. measurement: "WaterMeter"
  1580. field: "press_cur"
  1581. valueType: "double"
  1582. minValue: null
  1583. maxValue: null
  1584. syncField: null
  1585. calcFormula: null
  1586. - deviceId: "710022511060037"
  1587. deviceName: "105#西环二路南侧靠路东"
  1588. deviceSn: "SB00000083"
  1589. deviceKind: "flow"
  1590. platform: "zaoyang-iot"
  1591. mfrs: "上海锐铼"
  1592. createTime: "2025-11-06 17:45:44"
  1593. tags:
  1594. - tag: "瞬时流量"
  1595. protocol: "json"
  1596. measurement: "WaterMeter"
  1597. field: "flow_cur"
  1598. valueType: "double"
  1599. minValue: null
  1600. maxValue: null
  1601. syncField: null
  1602. calcFormula: null
  1603. - tag: "正向累计流量"
  1604. protocol: "json"
  1605. measurement: "WaterMeter"
  1606. field: "flow_total_pos"
  1607. valueType: "double"
  1608. minValue: null
  1609. maxValue: null
  1610. syncField: null
  1611. calcFormula: null
  1612. - tag: "反向累计流量"
  1613. protocol: "json"
  1614. measurement: "WaterMeter"
  1615. field: "flow_total_rev"
  1616. valueType: "double"
  1617. minValue: null
  1618. maxValue: null
  1619. syncField: null
  1620. calcFormula: null
  1621. - tag: "压力"
  1622. protocol: "json"
  1623. measurement: "WaterMeter"
  1624. field: "press_cur"
  1625. valueType: "double"
  1626. minValue: null
  1627. maxValue: null
  1628. syncField: null
  1629. calcFormula: null
  1630. - deviceId: "710022511060038"
  1631. deviceName: "38#新华路重山寺路口对面"
  1632. deviceSn: "SB00000082"
  1633. deviceKind: "flow"
  1634. platform: "zaoyang-iot"
  1635. mfrs: "上海锐铼"
  1636. createTime: "2025-11-06 17:45:44"
  1637. tags:
  1638. - tag: "瞬时流量"
  1639. protocol: "json"
  1640. measurement: "WaterMeter"
  1641. field: "flow_cur"
  1642. valueType: "double"
  1643. minValue: null
  1644. maxValue: null
  1645. syncField: null
  1646. calcFormula: null
  1647. - tag: "正向累计流量"
  1648. protocol: "json"
  1649. measurement: "WaterMeter"
  1650. field: "flow_total_pos"
  1651. valueType: "double"
  1652. minValue: null
  1653. maxValue: null
  1654. syncField: null
  1655. calcFormula: null
  1656. - tag: "反向累计流量"
  1657. protocol: "json"
  1658. measurement: "WaterMeter"
  1659. field: "flow_total_rev"
  1660. valueType: "double"
  1661. minValue: null
  1662. maxValue: null
  1663. syncField: null
  1664. calcFormula: null
  1665. - tag: "压力"
  1666. protocol: "json"
  1667. measurement: "WaterMeter"
  1668. field: "press_cur"
  1669. valueType: "double"
  1670. minValue: null
  1671. maxValue: null
  1672. syncField: null
  1673. calcFormula: null
  1674. - deviceId: "710022511060039"
  1675. deviceName: "153#襄阳东路玫瑰社区三期西南角院墙外"
  1676. deviceSn: "SB00000081"
  1677. deviceKind: "flow"
  1678. platform: "zaoyang-iot"
  1679. mfrs: "上海锐铼"
  1680. createTime: "2025-11-06 17:45:44"
  1681. tags:
  1682. - tag: "瞬时流量"
  1683. protocol: "json"
  1684. measurement: "WaterMeter"
  1685. field: "flow_cur"
  1686. valueType: "double"
  1687. minValue: null
  1688. maxValue: null
  1689. syncField: null
  1690. calcFormula: null
  1691. - tag: "正向累计流量"
  1692. protocol: "json"
  1693. measurement: "WaterMeter"
  1694. field: "flow_total_pos"
  1695. valueType: "double"
  1696. minValue: null
  1697. maxValue: null
  1698. syncField: null
  1699. calcFormula: null
  1700. - tag: "反向累计流量"
  1701. protocol: "json"
  1702. measurement: "WaterMeter"
  1703. field: "flow_total_rev"
  1704. valueType: "double"
  1705. minValue: null
  1706. maxValue: null
  1707. syncField: null
  1708. calcFormula: null
  1709. - tag: "压力"
  1710. protocol: "json"
  1711. measurement: "WaterMeter"
  1712. field: "press_cur"
  1713. valueType: "double"
  1714. minValue: null
  1715. maxValue: null
  1716. syncField: null
  1717. calcFormula: null
  1718. - deviceId: "710022511060040"
  1719. deviceName: "261#人民路与发展大道交汇处东南角东侧"
  1720. deviceSn: "SB00000121"
  1721. deviceKind: "flow"
  1722. platform: "zaoyang-iot"
  1723. mfrs: "上海锐铼"
  1724. createTime: "2025-11-06 17:45:44"
  1725. tags:
  1726. - tag: "瞬时流量"
  1727. protocol: "json"
  1728. measurement: "WaterMeter"
  1729. field: "flow_cur"
  1730. valueType: "double"
  1731. minValue: null
  1732. maxValue: null
  1733. syncField: null
  1734. calcFormula: null
  1735. - tag: "正向累计流量"
  1736. protocol: "json"
  1737. measurement: "WaterMeter"
  1738. field: "flow_total_pos"
  1739. valueType: "double"
  1740. minValue: null
  1741. maxValue: null
  1742. syncField: null
  1743. calcFormula: null
  1744. - tag: "反向累计流量"
  1745. protocol: "json"
  1746. measurement: "WaterMeter"
  1747. field: "flow_total_rev"
  1748. valueType: "double"
  1749. minValue: null
  1750. maxValue: null
  1751. syncField: null
  1752. calcFormula: null
  1753. - tag: "压力"
  1754. protocol: "json"
  1755. measurement: "WaterMeter"
  1756. field: "press_cur"
  1757. valueType: "double"
  1758. minValue: null
  1759. maxValue: null
  1760. syncField: null
  1761. calcFormula: null
  1762. - deviceId: "710022511060041"
  1763. deviceName: "298#史岗四组东庄路口"
  1764. deviceSn: "SB00000088"
  1765. deviceKind: "flow"
  1766. platform: "zaoyang-iot"
  1767. mfrs: "上海锐铼"
  1768. createTime: "2025-11-06 17:45:44"
  1769. tags:
  1770. - tag: "瞬时流量"
  1771. protocol: "json"
  1772. measurement: "WaterMeter"
  1773. field: "flow_cur"
  1774. valueType: "double"
  1775. minValue: null
  1776. maxValue: null
  1777. syncField: null
  1778. calcFormula: null
  1779. - tag: "正向累计流量"
  1780. protocol: "json"
  1781. measurement: "WaterMeter"
  1782. field: "flow_total_pos"
  1783. valueType: "double"
  1784. minValue: null
  1785. maxValue: null
  1786. syncField: null
  1787. calcFormula: null
  1788. - tag: "反向累计流量"
  1789. protocol: "json"
  1790. measurement: "WaterMeter"
  1791. field: "flow_total_rev"
  1792. valueType: "double"
  1793. minValue: null
  1794. maxValue: null
  1795. syncField: null
  1796. calcFormula: null
  1797. - tag: "压力"
  1798. protocol: "json"
  1799. measurement: "WaterMeter"
  1800. field: "press_cur"
  1801. valueType: "double"
  1802. minValue: null
  1803. maxValue: null
  1804. syncField: null
  1805. calcFormula: null
  1806. - deviceId: "710022511060042"
  1807. deviceName: "306#中心大道与车站路交汇处正邦饲料公司南侧路口"
  1808. deviceSn: "SB00000120"
  1809. deviceKind: "flow"
  1810. platform: "zaoyang-iot"
  1811. mfrs: "上海锐铼"
  1812. createTime: "2025-11-06 17:45:44"
  1813. tags:
  1814. - tag: "瞬时流量"
  1815. protocol: "json"
  1816. measurement: "WaterMeter"
  1817. field: "flow_cur"
  1818. valueType: "double"
  1819. minValue: null
  1820. maxValue: null
  1821. syncField: null
  1822. calcFormula: null
  1823. - tag: "正向累计流量"
  1824. protocol: "json"
  1825. measurement: "WaterMeter"
  1826. field: "flow_total_pos"
  1827. valueType: "double"
  1828. minValue: null
  1829. maxValue: null
  1830. syncField: null
  1831. calcFormula: null
  1832. - tag: "反向累计流量"
  1833. protocol: "json"
  1834. measurement: "WaterMeter"
  1835. field: "flow_total_rev"
  1836. valueType: "double"
  1837. minValue: null
  1838. maxValue: null
  1839. syncField: null
  1840. calcFormula: null
  1841. - tag: "压力"
  1842. protocol: "json"
  1843. measurement: "WaterMeter"
  1844. field: "press_cur"
  1845. valueType: "double"
  1846. minValue: null
  1847. maxValue: null
  1848. syncField: null
  1849. calcFormula: null
  1850. - deviceId: "710022511060043"
  1851. deviceName: "277#和谐路与史岗六组路口交汇处向东"
  1852. deviceSn: "SB00000086"
  1853. deviceKind: "flow"
  1854. platform: "zaoyang-iot"
  1855. mfrs: "上海锐铼"
  1856. createTime: "2025-11-06 17:45:44"
  1857. tags:
  1858. - tag: "瞬时流量"
  1859. protocol: "json"
  1860. measurement: "WaterMeter"
  1861. field: "flow_cur"
  1862. valueType: "double"
  1863. minValue: null
  1864. maxValue: null
  1865. syncField: null
  1866. calcFormula: null
  1867. - tag: "正向累计流量"
  1868. protocol: "json"
  1869. measurement: "WaterMeter"
  1870. field: "flow_total_pos"
  1871. valueType: "double"
  1872. minValue: null
  1873. maxValue: null
  1874. syncField: null
  1875. calcFormula: null
  1876. - tag: "反向累计流量"
  1877. protocol: "json"
  1878. measurement: "WaterMeter"
  1879. field: "flow_total_rev"
  1880. valueType: "double"
  1881. minValue: null
  1882. maxValue: null
  1883. syncField: null
  1884. calcFormula: null
  1885. - tag: "压力"
  1886. protocol: "json"
  1887. measurement: "WaterMeter"
  1888. field: "press_cur"
  1889. valueType: "double"
  1890. minValue: null
  1891. maxValue: null
  1892. syncField: null
  1893. calcFormula: null
  1894. - deviceId: "710022511060044"
  1895. deviceName: "61#西环三路教师村枣阳市第四幼儿园对面"
  1896. deviceSn: "SB00000085"
  1897. deviceKind: "flow"
  1898. platform: "zaoyang-iot"
  1899. mfrs: "上海锐铼"
  1900. createTime: "2025-11-06 17:45:44"
  1901. tags:
  1902. - tag: "瞬时流量"
  1903. protocol: "json"
  1904. measurement: "WaterMeter"
  1905. field: "flow_cur"
  1906. valueType: "double"
  1907. minValue: null
  1908. maxValue: null
  1909. syncField: null
  1910. calcFormula: null
  1911. - tag: "正向累计流量"
  1912. protocol: "json"
  1913. measurement: "WaterMeter"
  1914. field: "flow_total_pos"
  1915. valueType: "double"
  1916. minValue: null
  1917. maxValue: null
  1918. syncField: null
  1919. calcFormula: null
  1920. - tag: "反向累计流量"
  1921. protocol: "json"
  1922. measurement: "WaterMeter"
  1923. field: "flow_total_rev"
  1924. valueType: "double"
  1925. minValue: null
  1926. maxValue: null
  1927. syncField: null
  1928. calcFormula: null
  1929. - tag: "压力"
  1930. protocol: "json"
  1931. measurement: "WaterMeter"
  1932. field: "press_cur"
  1933. valueType: "double"
  1934. minValue: null
  1935. maxValue: null
  1936. syncField: null
  1937. calcFormula: null
  1938. - deviceId: "710022511060045"
  1939. deviceName: "283#复兴大道与复兴大道东路交差路口"
  1940. deviceSn: "SB00000080"
  1941. deviceKind: "flow"
  1942. platform: "zaoyang-iot"
  1943. mfrs: "上海锐铼"
  1944. createTime: "2025-11-06 17:45:44"
  1945. tags:
  1946. - tag: "瞬时流量"
  1947. protocol: "json"
  1948. measurement: "WaterMeter"
  1949. field: "flow_cur"
  1950. valueType: "double"
  1951. minValue: null
  1952. maxValue: null
  1953. syncField: null
  1954. calcFormula: null
  1955. - tag: "正向累计流量"
  1956. protocol: "json"
  1957. measurement: "WaterMeter"
  1958. field: "flow_total_pos"
  1959. valueType: "double"
  1960. minValue: null
  1961. maxValue: null
  1962. syncField: null
  1963. calcFormula: null
  1964. - tag: "反向累计流量"
  1965. protocol: "json"
  1966. measurement: "WaterMeter"
  1967. field: "flow_total_rev"
  1968. valueType: "double"
  1969. minValue: null
  1970. maxValue: null
  1971. syncField: null
  1972. calcFormula: null
  1973. - tag: "压力"
  1974. protocol: "json"
  1975. measurement: "WaterMeter"
  1976. field: "press_cur"
  1977. valueType: "double"
  1978. minValue: null
  1979. maxValue: null
  1980. syncField: null
  1981. calcFormula: null
  1982. - deviceId: "710022511060046"
  1983. deviceName: "284#复兴大道东路丹阳工业园十字路口东北角"
  1984. deviceSn: "SB00000119"
  1985. deviceKind: "flow"
  1986. platform: "zaoyang-iot"
  1987. mfrs: "上海锐铼"
  1988. createTime: "2025-11-06 17:45:44"
  1989. tags:
  1990. - tag: "瞬时流量"
  1991. protocol: "json"
  1992. measurement: "WaterMeter"
  1993. field: "flow_cur"
  1994. valueType: "double"
  1995. minValue: null
  1996. maxValue: null
  1997. syncField: null
  1998. calcFormula: null
  1999. - tag: "正向累计流量"
  2000. protocol: "json"
  2001. measurement: "WaterMeter"
  2002. field: "flow_total_pos"
  2003. valueType: "double"
  2004. minValue: null
  2005. maxValue: null
  2006. syncField: null
  2007. calcFormula: null
  2008. - tag: "反向累计流量"
  2009. protocol: "json"
  2010. measurement: "WaterMeter"
  2011. field: "flow_total_rev"
  2012. valueType: "double"
  2013. minValue: null
  2014. maxValue: null
  2015. syncField: null
  2016. calcFormula: null
  2017. - tag: "压力"
  2018. protocol: "json"
  2019. measurement: "WaterMeter"
  2020. field: "press_cur"
  2021. valueType: "double"
  2022. minValue: null
  2023. maxValue: null
  2024. syncField: null
  2025. calcFormula: null
  2026. - deviceId: "710022511060047"
  2027. deviceName: "138#中兴大道恒大世纪城入口对面"
  2028. deviceSn: "SB00000113"
  2029. deviceKind: "flow"
  2030. platform: "zaoyang-iot"
  2031. mfrs: "上海锐铼"
  2032. createTime: "2025-11-06 17:45:44"
  2033. tags:
  2034. - tag: "瞬时流量"
  2035. protocol: "json"
  2036. measurement: "WaterMeter"
  2037. field: "flow_cur"
  2038. valueType: "double"
  2039. minValue: null
  2040. maxValue: null
  2041. syncField: null
  2042. calcFormula: null
  2043. - tag: "正向累计流量"
  2044. protocol: "json"
  2045. measurement: "WaterMeter"
  2046. field: "flow_total_pos"
  2047. valueType: "double"
  2048. minValue: null
  2049. maxValue: null
  2050. syncField: null
  2051. calcFormula: null
  2052. - tag: "反向累计流量"
  2053. protocol: "json"
  2054. measurement: "WaterMeter"
  2055. field: "flow_total_rev"
  2056. valueType: "double"
  2057. minValue: null
  2058. maxValue: null
  2059. syncField: null
  2060. calcFormula: null
  2061. - tag: "压力"
  2062. protocol: "json"
  2063. measurement: "WaterMeter"
  2064. field: "press_cur"
  2065. valueType: "double"
  2066. minValue: null
  2067. maxValue: null
  2068. syncField: null
  2069. calcFormula: null
  2070. - deviceId: "710022511060048"
  2071. deviceName: "35#寺沙路与新华路交汇处东南角"
  2072. deviceSn: "SB00000112"
  2073. deviceKind: "flow"
  2074. platform: "zaoyang-iot"
  2075. mfrs: "上海锐铼"
  2076. createTime: "2025-11-06 17:45:44"
  2077. tags:
  2078. - tag: "瞬时流量"
  2079. protocol: "json"
  2080. measurement: "WaterMeter"
  2081. field: "flow_cur"
  2082. valueType: "double"
  2083. minValue: null
  2084. maxValue: null
  2085. syncField: null
  2086. calcFormula: null
  2087. - tag: "正向累计流量"
  2088. protocol: "json"
  2089. measurement: "WaterMeter"
  2090. field: "flow_total_pos"
  2091. valueType: "double"
  2092. minValue: null
  2093. maxValue: null
  2094. syncField: null
  2095. calcFormula: null
  2096. - tag: "反向累计流量"
  2097. protocol: "json"
  2098. measurement: "WaterMeter"
  2099. field: "flow_total_rev"
  2100. valueType: "double"
  2101. minValue: null
  2102. maxValue: null
  2103. syncField: null
  2104. calcFormula: null
  2105. - tag: "压力"
  2106. protocol: "json"
  2107. measurement: "WaterMeter"
  2108. field: "press_cur"
  2109. valueType: "double"
  2110. minValue: null
  2111. maxValue: null
  2112. syncField: null
  2113. calcFormula: null
  2114. - deviceId: "710022511060049"
  2115. deviceName: "56#前进路与西环四路交汇处路北"
  2116. deviceSn: "SB00000111"
  2117. deviceKind: "flow"
  2118. platform: "zaoyang-iot"
  2119. mfrs: "上海锐铼"
  2120. createTime: "2025-11-06 17:45:44"
  2121. tags:
  2122. - tag: "瞬时流量"
  2123. protocol: "json"
  2124. measurement: "WaterMeter"
  2125. field: "flow_cur"
  2126. valueType: "double"
  2127. minValue: null
  2128. maxValue: null
  2129. syncField: null
  2130. calcFormula: null
  2131. - tag: "正向累计流量"
  2132. protocol: "json"
  2133. measurement: "WaterMeter"
  2134. field: "flow_total_pos"
  2135. valueType: "double"
  2136. minValue: null
  2137. maxValue: null
  2138. syncField: null
  2139. calcFormula: null
  2140. - tag: "反向累计流量"
  2141. protocol: "json"
  2142. measurement: "WaterMeter"
  2143. field: "flow_total_rev"
  2144. valueType: "double"
  2145. minValue: null
  2146. maxValue: null
  2147. syncField: null
  2148. calcFormula: null
  2149. - tag: "压力"
  2150. protocol: "json"
  2151. measurement: "WaterMeter"
  2152. field: "press_cur"
  2153. valueType: "double"
  2154. minValue: null
  2155. maxValue: null
  2156. syncField: null
  2157. calcFormula: null
  2158. - deviceId: "710022511060050"
  2159. deviceName: "144#书院街八里立康医院东路口对面"
  2160. deviceSn: "SB00000078"
  2161. deviceKind: "flow"
  2162. platform: "zaoyang-iot"
  2163. mfrs: "上海锐铼"
  2164. createTime: "2025-11-06 17:45:44"
  2165. tags:
  2166. - tag: "瞬时流量"
  2167. protocol: "json"
  2168. measurement: "WaterMeter"
  2169. field: "flow_cur"
  2170. valueType: "double"
  2171. minValue: null
  2172. maxValue: null
  2173. syncField: null
  2174. calcFormula: null
  2175. - tag: "正向累计流量"
  2176. protocol: "json"
  2177. measurement: "WaterMeter"
  2178. field: "flow_total_pos"
  2179. valueType: "double"
  2180. minValue: null
  2181. maxValue: null
  2182. syncField: null
  2183. calcFormula: null
  2184. - tag: "反向累计流量"
  2185. protocol: "json"
  2186. measurement: "WaterMeter"
  2187. field: "flow_total_rev"
  2188. valueType: "double"
  2189. minValue: null
  2190. maxValue: null
  2191. syncField: null
  2192. calcFormula: null
  2193. - tag: "压力"
  2194. protocol: "json"
  2195. measurement: "WaterMeter"
  2196. field: "press_cur"
  2197. valueType: "double"
  2198. minValue: null
  2199. maxValue: null
  2200. syncField: null
  2201. calcFormula: null
  2202. - deviceId: "710022511060051"
  2203. deviceName: "259#发展大道与中兴大道交汇处西北角北侧"
  2204. deviceSn: "SB00000118"
  2205. deviceKind: "flow"
  2206. platform: "zaoyang-iot"
  2207. mfrs: "上海锐铼"
  2208. createTime: "2025-11-06 17:45:44"
  2209. tags:
  2210. - tag: "瞬时流量"
  2211. protocol: "json"
  2212. measurement: "WaterMeter"
  2213. field: "flow_cur"
  2214. valueType: "double"
  2215. minValue: null
  2216. maxValue: null
  2217. syncField: null
  2218. calcFormula: null
  2219. - tag: "正向累计流量"
  2220. protocol: "json"
  2221. measurement: "WaterMeter"
  2222. field: "flow_total_pos"
  2223. valueType: "double"
  2224. minValue: null
  2225. maxValue: null
  2226. syncField: null
  2227. calcFormula: null
  2228. - tag: "反向累计流量"
  2229. protocol: "json"
  2230. measurement: "WaterMeter"
  2231. field: "flow_total_rev"
  2232. valueType: "double"
  2233. minValue: null
  2234. maxValue: null
  2235. syncField: null
  2236. calcFormula: null
  2237. - tag: "压力"
  2238. protocol: "json"
  2239. measurement: "WaterMeter"
  2240. field: "press_cur"
  2241. valueType: "double"
  2242. minValue: null
  2243. maxValue: null
  2244. syncField: null
  2245. calcFormula: null
  2246. - deviceId: "710022511060052"
  2247. deviceName: "25#民族北路一水厂对面"
  2248. deviceSn: "SB00000117"
  2249. deviceKind: "flow"
  2250. platform: "zaoyang-iot"
  2251. mfrs: "上海锐铼"
  2252. createTime: "2025-11-06 17:45:44"
  2253. tags:
  2254. - tag: "瞬时流量"
  2255. protocol: "json"
  2256. measurement: "WaterMeter"
  2257. field: "flow_cur"
  2258. valueType: "double"
  2259. minValue: null
  2260. maxValue: null
  2261. syncField: null
  2262. calcFormula: null
  2263. - tag: "正向累计流量"
  2264. protocol: "json"
  2265. measurement: "WaterMeter"
  2266. field: "flow_total_pos"
  2267. valueType: "double"
  2268. minValue: null
  2269. maxValue: null
  2270. syncField: null
  2271. calcFormula: null
  2272. - tag: "反向累计流量"
  2273. protocol: "json"
  2274. measurement: "WaterMeter"
  2275. field: "flow_total_rev"
  2276. valueType: "double"
  2277. minValue: null
  2278. maxValue: null
  2279. syncField: null
  2280. calcFormula: null
  2281. - tag: "压力"
  2282. protocol: "json"
  2283. measurement: "WaterMeter"
  2284. field: "press_cur"
  2285. valueType: "double"
  2286. minValue: null
  2287. maxValue: null
  2288. syncField: null
  2289. calcFormula: null
  2290. - deviceId: "710022511060053"
  2291. deviceName: "30#中兴大道湖北山禾锦建设有限公司路口"
  2292. deviceSn: "SB00000115"
  2293. deviceKind: "flow"
  2294. platform: "zaoyang-iot"
  2295. mfrs: "上海锐铼"
  2296. createTime: "2025-11-06 17:45:44"
  2297. tags:
  2298. - tag: "瞬时流量"
  2299. protocol: "json"
  2300. measurement: "WaterMeter"
  2301. field: "flow_cur"
  2302. valueType: "double"
  2303. minValue: null
  2304. maxValue: null
  2305. syncField: null
  2306. calcFormula: null
  2307. - tag: "正向累计流量"
  2308. protocol: "json"
  2309. measurement: "WaterMeter"
  2310. field: "flow_total_pos"
  2311. valueType: "double"
  2312. minValue: null
  2313. maxValue: null
  2314. syncField: null
  2315. calcFormula: null
  2316. - tag: "反向累计流量"
  2317. protocol: "json"
  2318. measurement: "WaterMeter"
  2319. field: "flow_total_rev"
  2320. valueType: "double"
  2321. minValue: null
  2322. maxValue: null
  2323. syncField: null
  2324. calcFormula: null
  2325. - tag: "压力"
  2326. protocol: "json"
  2327. measurement: "WaterMeter"
  2328. field: "press_cur"
  2329. valueType: "double"
  2330. minValue: null
  2331. maxValue: null
  2332. syncField: null
  2333. calcFormula: null
  2334. - deviceId: "710022511060054"
  2335. deviceName: "67#前进路人民法庭对面"
  2336. deviceSn: "SB00000073"
  2337. deviceKind: "flow"
  2338. platform: "zaoyang-iot"
  2339. mfrs: "上海锐铼"
  2340. createTime: "2025-11-06 17:45:44"
  2341. tags:
  2342. - tag: "瞬时流量"
  2343. protocol: "json"
  2344. measurement: "WaterMeter"
  2345. field: "flow_cur"
  2346. valueType: "double"
  2347. minValue: null
  2348. maxValue: null
  2349. syncField: null
  2350. calcFormula: null
  2351. - tag: "正向累计流量"
  2352. protocol: "json"
  2353. measurement: "WaterMeter"
  2354. field: "flow_total_pos"
  2355. valueType: "double"
  2356. minValue: null
  2357. maxValue: null
  2358. syncField: null
  2359. calcFormula: null
  2360. - tag: "反向累计流量"
  2361. protocol: "json"
  2362. measurement: "WaterMeter"
  2363. field: "flow_total_rev"
  2364. valueType: "double"
  2365. minValue: null
  2366. maxValue: null
  2367. syncField: null
  2368. calcFormula: null
  2369. - tag: "压力"
  2370. protocol: "json"
  2371. measurement: "WaterMeter"
  2372. field: "press_cur"
  2373. valueType: "double"
  2374. minValue: null
  2375. maxValue: null
  2376. syncField: null
  2377. calcFormula: null
  2378. - deviceId: "710022511060055"
  2379. deviceName: "200#汉城大道枣阳市龙门学校路口"
  2380. deviceSn: "SB00000072"
  2381. deviceKind: "flow"
  2382. platform: "zaoyang-iot"
  2383. mfrs: "上海锐铼"
  2384. createTime: "2025-11-06 17:45:44"
  2385. tags:
  2386. - tag: "瞬时流量"
  2387. protocol: "json"
  2388. measurement: "WaterMeter"
  2389. field: "flow_cur"
  2390. valueType: "double"
  2391. minValue: null
  2392. maxValue: null
  2393. syncField: null
  2394. calcFormula: null
  2395. - tag: "正向累计流量"
  2396. protocol: "json"
  2397. measurement: "WaterMeter"
  2398. field: "flow_total_pos"
  2399. valueType: "double"
  2400. minValue: null
  2401. maxValue: null
  2402. syncField: null
  2403. calcFormula: null
  2404. - tag: "反向累计流量"
  2405. protocol: "json"
  2406. measurement: "WaterMeter"
  2407. field: "flow_total_rev"
  2408. valueType: "double"
  2409. minValue: null
  2410. maxValue: null
  2411. syncField: null
  2412. calcFormula: null
  2413. - tag: "压力"
  2414. protocol: "json"
  2415. measurement: "WaterMeter"
  2416. field: "press_cur"
  2417. valueType: "double"
  2418. minValue: null
  2419. maxValue: null
  2420. syncField: null
  2421. calcFormula: null
  2422. - deviceId: "710022511060056"
  2423. deviceName: "142#前进路与西环四路交汇处路北"
  2424. deviceSn: "SB00000071"
  2425. deviceKind: "flow"
  2426. platform: "zaoyang-iot"
  2427. mfrs: "上海锐铼"
  2428. createTime: "2025-11-06 17:45:44"
  2429. tags:
  2430. - tag: "瞬时流量"
  2431. protocol: "json"
  2432. measurement: "WaterMeter"
  2433. field: "flow_cur"
  2434. valueType: "double"
  2435. minValue: null
  2436. maxValue: null
  2437. syncField: null
  2438. calcFormula: null
  2439. - tag: "正向累计流量"
  2440. protocol: "json"
  2441. measurement: "WaterMeter"
  2442. field: "flow_total_pos"
  2443. valueType: "double"
  2444. minValue: null
  2445. maxValue: null
  2446. syncField: null
  2447. calcFormula: null
  2448. - tag: "反向累计流量"
  2449. protocol: "json"
  2450. measurement: "WaterMeter"
  2451. field: "flow_total_rev"
  2452. valueType: "double"
  2453. minValue: null
  2454. maxValue: null
  2455. syncField: null
  2456. calcFormula: null
  2457. - tag: "压力"
  2458. protocol: "json"
  2459. measurement: "WaterMeter"
  2460. field: "press_cur"
  2461. valueType: "double"
  2462. minValue: null
  2463. maxValue: null
  2464. syncField: null
  2465. calcFormula: null
  2466. - deviceId: "710022511060057"
  2467. deviceName: "68#前进路冷水沟桥"
  2468. deviceSn: "SB00000070"
  2469. deviceKind: "flow"
  2470. platform: "zaoyang-iot"
  2471. mfrs: "上海锐铼"
  2472. createTime: "2025-11-06 17:45:44"
  2473. tags:
  2474. - tag: "瞬时流量"
  2475. protocol: "json"
  2476. measurement: "WaterMeter"
  2477. field: "flow_cur"
  2478. valueType: "double"
  2479. minValue: null
  2480. maxValue: null
  2481. syncField: null
  2482. calcFormula: null
  2483. - tag: "正向累计流量"
  2484. protocol: "json"
  2485. measurement: "WaterMeter"
  2486. field: "flow_total_pos"
  2487. valueType: "double"
  2488. minValue: null
  2489. maxValue: null
  2490. syncField: null
  2491. calcFormula: null
  2492. - tag: "反向累计流量"
  2493. protocol: "json"
  2494. measurement: "WaterMeter"
  2495. field: "flow_total_rev"
  2496. valueType: "double"
  2497. minValue: null
  2498. maxValue: null
  2499. syncField: null
  2500. calcFormula: null
  2501. - tag: "压力"
  2502. protocol: "json"
  2503. measurement: "WaterMeter"
  2504. field: "press_cur"
  2505. valueType: "double"
  2506. minValue: null
  2507. maxValue: null
  2508. syncField: null
  2509. calcFormula: null
  2510. - deviceId: "710022511060058"
  2511. deviceName: "137#中兴大道住房公积金办事处路口对面"
  2512. deviceSn: "SB00000110"
  2513. deviceKind: "flow"
  2514. platform: "zaoyang-iot"
  2515. mfrs: "上海锐铼"
  2516. createTime: "2025-11-06 17:45:44"
  2517. tags:
  2518. - tag: "瞬时流量"
  2519. protocol: "json"
  2520. measurement: "WaterMeter"
  2521. field: "flow_cur"
  2522. valueType: "double"
  2523. minValue: null
  2524. maxValue: null
  2525. syncField: null
  2526. calcFormula: null
  2527. - tag: "正向累计流量"
  2528. protocol: "json"
  2529. measurement: "WaterMeter"
  2530. field: "flow_total_pos"
  2531. valueType: "double"
  2532. minValue: null
  2533. maxValue: null
  2534. syncField: null
  2535. calcFormula: null
  2536. - tag: "反向累计流量"
  2537. protocol: "json"
  2538. measurement: "WaterMeter"
  2539. field: "flow_total_rev"
  2540. valueType: "double"
  2541. minValue: null
  2542. maxValue: null
  2543. syncField: null
  2544. calcFormula: null
  2545. - tag: "压力"
  2546. protocol: "json"
  2547. measurement: "WaterMeter"
  2548. field: "press_cur"
  2549. valueType: "double"
  2550. minValue: null
  2551. maxValue: null
  2552. syncField: null
  2553. calcFormula: null
  2554. - deviceId: "710022511060059"
  2555. deviceName: "15#防疫站对面"
  2556. deviceSn: "SB00000077"
  2557. deviceKind: "flow"
  2558. platform: "zaoyang-iot"
  2559. mfrs: "上海锐铼"
  2560. createTime: "2025-11-06 17:45:44"
  2561. tags:
  2562. - tag: "瞬时流量"
  2563. protocol: "json"
  2564. measurement: "WaterMeter"
  2565. field: "flow_cur"
  2566. valueType: "double"
  2567. minValue: null
  2568. maxValue: null
  2569. syncField: null
  2570. calcFormula: null
  2571. - tag: "正向累计流量"
  2572. protocol: "json"
  2573. measurement: "WaterMeter"
  2574. field: "flow_total_pos"
  2575. valueType: "double"
  2576. minValue: null
  2577. maxValue: null
  2578. syncField: null
  2579. calcFormula: null
  2580. - tag: "反向累计流量"
  2581. protocol: "json"
  2582. measurement: "WaterMeter"
  2583. field: "flow_total_rev"
  2584. valueType: "double"
  2585. minValue: null
  2586. maxValue: null
  2587. syncField: null
  2588. calcFormula: null
  2589. - tag: "压力"
  2590. protocol: "json"
  2591. measurement: "WaterMeter"
  2592. field: "press_cur"
  2593. valueType: "double"
  2594. minValue: null
  2595. maxValue: null
  2596. syncField: null
  2597. calcFormula: null
  2598. - deviceId: "710022511060060"
  2599. deviceName: "41#新华路惠民小区门口"
  2600. deviceSn: "SB00000076"
  2601. deviceKind: "flow"
  2602. platform: "zaoyang-iot"
  2603. mfrs: "上海锐铼"
  2604. createTime: "2025-11-06 17:45:44"
  2605. tags:
  2606. - tag: "瞬时流量"
  2607. protocol: "json"
  2608. measurement: "WaterMeter"
  2609. field: "flow_cur"
  2610. valueType: "double"
  2611. minValue: null
  2612. maxValue: null
  2613. syncField: null
  2614. calcFormula: null
  2615. - tag: "正向累计流量"
  2616. protocol: "json"
  2617. measurement: "WaterMeter"
  2618. field: "flow_total_pos"
  2619. valueType: "double"
  2620. minValue: null
  2621. maxValue: null
  2622. syncField: null
  2623. calcFormula: null
  2624. - tag: "反向累计流量"
  2625. protocol: "json"
  2626. measurement: "WaterMeter"
  2627. field: "flow_total_rev"
  2628. valueType: "double"
  2629. minValue: null
  2630. maxValue: null
  2631. syncField: null
  2632. calcFormula: null
  2633. - tag: "压力"
  2634. protocol: "json"
  2635. measurement: "WaterMeter"
  2636. field: "press_cur"
  2637. valueType: "double"
  2638. minValue: null
  2639. maxValue: null
  2640. syncField: null
  2641. calcFormula: null
  2642. - deviceId: "710022511060061"
  2643. deviceName: "69#前进路四海巷北侧"
  2644. deviceSn: "SB00000075"
  2645. deviceKind: "flow"
  2646. platform: "zaoyang-iot"
  2647. mfrs: "上海锐铼"
  2648. createTime: "2025-11-06 17:45:44"
  2649. tags:
  2650. - tag: "瞬时流量"
  2651. protocol: "json"
  2652. measurement: "WaterMeter"
  2653. field: "flow_cur"
  2654. valueType: "double"
  2655. minValue: null
  2656. maxValue: null
  2657. syncField: null
  2658. calcFormula: null
  2659. - tag: "正向累计流量"
  2660. protocol: "json"
  2661. measurement: "WaterMeter"
  2662. field: "flow_total_pos"
  2663. valueType: "double"
  2664. minValue: null
  2665. maxValue: null
  2666. syncField: null
  2667. calcFormula: null
  2668. - tag: "反向累计流量"
  2669. protocol: "json"
  2670. measurement: "WaterMeter"
  2671. field: "flow_total_rev"
  2672. valueType: "double"
  2673. minValue: null
  2674. maxValue: null
  2675. syncField: null
  2676. calcFormula: null
  2677. - tag: "压力"
  2678. protocol: "json"
  2679. measurement: "WaterMeter"
  2680. field: "press_cur"
  2681. valueType: "double"
  2682. minValue: null
  2683. maxValue: null
  2684. syncField: null
  2685. calcFormula: null
  2686. - deviceId: "710022511060062"
  2687. deviceName: "34#寺沙路与新华路交汇处东北角"
  2688. deviceSn: "SB00000074"
  2689. deviceKind: "flow"
  2690. platform: "zaoyang-iot"
  2691. mfrs: "上海锐铼"
  2692. createTime: "2025-11-06 17:45:44"
  2693. tags:
  2694. - tag: "瞬时流量"
  2695. protocol: "json"
  2696. measurement: "WaterMeter"
  2697. field: "flow_cur"
  2698. valueType: "double"
  2699. minValue: null
  2700. maxValue: null
  2701. syncField: null
  2702. calcFormula: null
  2703. - tag: "正向累计流量"
  2704. protocol: "json"
  2705. measurement: "WaterMeter"
  2706. field: "flow_total_pos"
  2707. valueType: "double"
  2708. minValue: null
  2709. maxValue: null
  2710. syncField: null
  2711. calcFormula: null
  2712. - tag: "反向累计流量"
  2713. protocol: "json"
  2714. measurement: "WaterMeter"
  2715. field: "flow_total_rev"
  2716. valueType: "double"
  2717. minValue: null
  2718. maxValue: null
  2719. syncField: null
  2720. calcFormula: null
  2721. - tag: "压力"
  2722. protocol: "json"
  2723. measurement: "WaterMeter"
  2724. field: "press_cur"
  2725. valueType: "double"
  2726. minValue: null
  2727. maxValue: null
  2728. syncField: null
  2729. calcFormula: null
  2730. - deviceId: "710022511060063"
  2731. deviceName: "腾龙驾校北流量计"
  2732. deviceSn: "SB00000109"
  2733. deviceKind: "flow"
  2734. platform: "zaoyang-iot"
  2735. mfrs: "上海锐铼"
  2736. createTime: "2025-11-06 17:45:44"
  2737. tags:
  2738. - tag: "瞬时流量"
  2739. protocol: "json"
  2740. measurement: "WaterMeter"
  2741. field: "flow_cur"
  2742. valueType: "double"
  2743. minValue: null
  2744. maxValue: null
  2745. syncField: null
  2746. calcFormula: null
  2747. - tag: "正向累计流量"
  2748. protocol: "json"
  2749. measurement: "WaterMeter"
  2750. field: "flow_total_pos"
  2751. valueType: "double"
  2752. minValue: null
  2753. maxValue: null
  2754. syncField: null
  2755. calcFormula: null
  2756. - tag: "反向累计流量"
  2757. protocol: "json"
  2758. measurement: "WaterMeter"
  2759. field: "flow_total_rev"
  2760. valueType: "double"
  2761. minValue: null
  2762. maxValue: null
  2763. syncField: null
  2764. calcFormula: null
  2765. - tag: "压力"
  2766. protocol: "json"
  2767. measurement: "WaterMeter"
  2768. field: "press_cur"
  2769. valueType: "double"
  2770. minValue: null
  2771. maxValue: null
  2772. syncField: null
  2773. calcFormula: null
  2774. - deviceId: "710022511060064"
  2775. deviceName: "2412001029"
  2776. deviceSn: "SB00000108"
  2777. deviceKind: "flow"
  2778. platform: "zaoyang-iot"
  2779. mfrs: "上海锐铼"
  2780. createTime: "2025-11-06 17:45:44"
  2781. tags:
  2782. - tag: "瞬时流量"
  2783. protocol: "json"
  2784. measurement: "WaterMeter"
  2785. field: "flow_cur"
  2786. valueType: "double"
  2787. minValue: null
  2788. maxValue: null
  2789. syncField: null
  2790. calcFormula: null
  2791. - tag: "正向累计流量"
  2792. protocol: "json"
  2793. measurement: "WaterMeter"
  2794. field: "flow_total_pos"
  2795. valueType: "double"
  2796. minValue: null
  2797. maxValue: null
  2798. syncField: null
  2799. calcFormula: null
  2800. - tag: "反向累计流量"
  2801. protocol: "json"
  2802. measurement: "WaterMeter"
  2803. field: "flow_total_rev"
  2804. valueType: "double"
  2805. minValue: null
  2806. maxValue: null
  2807. syncField: null
  2808. calcFormula: null
  2809. - tag: "压力"
  2810. protocol: "json"
  2811. measurement: "WaterMeter"
  2812. field: "press_cur"
  2813. valueType: "double"
  2814. minValue: null
  2815. maxValue: null
  2816. syncField: null
  2817. calcFormula: null
  2818. - deviceId: "710022511060065"
  2819. deviceName: "发展大道与车站路交叉西北角流量计"
  2820. deviceSn: "SB00000103"
  2821. deviceKind: "flow"
  2822. platform: "zaoyang-iot"
  2823. mfrs: "上海锐铼"
  2824. createTime: "2025-11-06 17:45:44"
  2825. tags:
  2826. - tag: "瞬时流量"
  2827. protocol: "json"
  2828. measurement: "WaterMeter"
  2829. field: "flow_cur"
  2830. valueType: "double"
  2831. minValue: null
  2832. maxValue: null
  2833. syncField: null
  2834. calcFormula: null
  2835. - tag: "正向累计流量"
  2836. protocol: "json"
  2837. measurement: "WaterMeter"
  2838. field: "flow_total_pos"
  2839. valueType: "double"
  2840. minValue: null
  2841. maxValue: null
  2842. syncField: null
  2843. calcFormula: null
  2844. - tag: "反向累计流量"
  2845. protocol: "json"
  2846. measurement: "WaterMeter"
  2847. field: "flow_total_rev"
  2848. valueType: "double"
  2849. minValue: null
  2850. maxValue: null
  2851. syncField: null
  2852. calcFormula: null
  2853. - tag: "压力"
  2854. protocol: "json"
  2855. measurement: "WaterMeter"
  2856. field: "press_cur"
  2857. valueType: "double"
  2858. minValue: null
  2859. maxValue: null
  2860. syncField: null
  2861. calcFormula: null
  2862. - deviceId: "710022511060066"
  2863. deviceName: "发展大道与车站路交叉口东北角流量计"
  2864. deviceSn: "SB00000102"
  2865. deviceKind: "flow"
  2866. platform: "zaoyang-iot"
  2867. mfrs: "上海锐铼"
  2868. createTime: "2025-11-06 17:45:44"
  2869. tags:
  2870. - tag: "瞬时流量"
  2871. protocol: "json"
  2872. measurement: "WaterMeter"
  2873. field: "flow_cur"
  2874. valueType: "double"
  2875. minValue: null
  2876. maxValue: null
  2877. syncField: null
  2878. calcFormula: null
  2879. - tag: "正向累计流量"
  2880. protocol: "json"
  2881. measurement: "WaterMeter"
  2882. field: "flow_total_pos"
  2883. valueType: "double"
  2884. minValue: null
  2885. maxValue: null
  2886. syncField: null
  2887. calcFormula: null
  2888. - tag: "反向累计流量"
  2889. protocol: "json"
  2890. measurement: "WaterMeter"
  2891. field: "flow_total_rev"
  2892. valueType: "double"
  2893. minValue: null
  2894. maxValue: null
  2895. syncField: null
  2896. calcFormula: null
  2897. - tag: "压力"
  2898. protocol: "json"
  2899. measurement: "WaterMeter"
  2900. field: "press_cur"
  2901. valueType: "double"
  2902. minValue: null
  2903. maxValue: null
  2904. syncField: null
  2905. calcFormula: null
  2906. - deviceId: "710022511060067"
  2907. deviceName: "139#中兴大道加气站路口对面"
  2908. deviceSn: "SB00000069"
  2909. deviceKind: "flow"
  2910. platform: "zaoyang-iot"
  2911. mfrs: "上海锐铼"
  2912. createTime: "2025-11-06 17:45:44"
  2913. tags:
  2914. - tag: "瞬时流量"
  2915. protocol: "json"
  2916. measurement: "WaterMeter"
  2917. field: "flow_cur"
  2918. valueType: "double"
  2919. minValue: null
  2920. maxValue: null
  2921. syncField: null
  2922. calcFormula: null
  2923. - tag: "正向累计流量"
  2924. protocol: "json"
  2925. measurement: "WaterMeter"
  2926. field: "flow_total_pos"
  2927. valueType: "double"
  2928. minValue: null
  2929. maxValue: null
  2930. syncField: null
  2931. calcFormula: null
  2932. - tag: "反向累计流量"
  2933. protocol: "json"
  2934. measurement: "WaterMeter"
  2935. field: "flow_total_rev"
  2936. valueType: "double"
  2937. minValue: null
  2938. maxValue: null
  2939. syncField: null
  2940. calcFormula: null
  2941. - tag: "压力"
  2942. protocol: "json"
  2943. measurement: "WaterMeter"
  2944. field: "press_cur"
  2945. valueType: "double"
  2946. minValue: null
  2947. maxValue: null
  2948. syncField: null
  2949. calcFormula: null
  2950. - deviceId: "710022511060068"
  2951. deviceName: "中医院门口流量计"
  2952. deviceSn: "SB00000101"
  2953. deviceKind: "flow"
  2954. platform: "zaoyang-iot"
  2955. mfrs: "上海锐铼"
  2956. createTime: "2025-11-06 17:45:44"
  2957. tags:
  2958. - tag: "瞬时流量"
  2959. protocol: "json"
  2960. measurement: "WaterMeter"
  2961. field: "flow_cur"
  2962. valueType: "double"
  2963. minValue: null
  2964. maxValue: null
  2965. syncField: null
  2966. calcFormula: null
  2967. - tag: "正向累计流量"
  2968. protocol: "json"
  2969. measurement: "WaterMeter"
  2970. field: "flow_total_pos"
  2971. valueType: "double"
  2972. minValue: null
  2973. maxValue: null
  2974. syncField: null
  2975. calcFormula: null
  2976. - tag: "反向累计流量"
  2977. protocol: "json"
  2978. measurement: "WaterMeter"
  2979. field: "flow_total_rev"
  2980. valueType: "double"
  2981. minValue: null
  2982. maxValue: null
  2983. syncField: null
  2984. calcFormula: null
  2985. - tag: "压力"
  2986. protocol: "json"
  2987. measurement: "WaterMeter"
  2988. field: "press_cur"
  2989. valueType: "double"
  2990. minValue: null
  2991. maxValue: null
  2992. syncField: null
  2993. calcFormula: null
  2994. - deviceId: "710022511060069"
  2995. deviceName: "294#光武大道车站中学西路口"
  2996. deviceSn: "SB00000068"
  2997. deviceKind: "flow"
  2998. platform: "zaoyang-iot"
  2999. mfrs: "上海锐铼"
  3000. createTime: "2025-11-06 17:45:44"
  3001. tags:
  3002. - tag: "瞬时流量"
  3003. protocol: "json"
  3004. measurement: "WaterMeter"
  3005. field: "flow_cur"
  3006. valueType: "double"
  3007. minValue: null
  3008. maxValue: null
  3009. syncField: null
  3010. calcFormula: null
  3011. - tag: "正向累计流量"
  3012. protocol: "json"
  3013. measurement: "WaterMeter"
  3014. field: "flow_total_pos"
  3015. valueType: "double"
  3016. minValue: null
  3017. maxValue: null
  3018. syncField: null
  3019. calcFormula: null
  3020. - tag: "反向累计流量"
  3021. protocol: "json"
  3022. measurement: "WaterMeter"
  3023. field: "flow_total_rev"
  3024. valueType: "double"
  3025. minValue: null
  3026. maxValue: null
  3027. syncField: null
  3028. calcFormula: null
  3029. - tag: "压力"
  3030. protocol: "json"
  3031. measurement: "WaterMeter"
  3032. field: "press_cur"
  3033. valueType: "double"
  3034. minValue: null
  3035. maxValue: null
  3036. syncField: null
  3037. calcFormula: null
  3038. - deviceId: "710022511060070"
  3039. deviceName: "二色路口考核表"
  3040. deviceSn: "SB00000100"
  3041. deviceKind: "flow"
  3042. platform: "zaoyang-iot"
  3043. mfrs: "上海锐铼"
  3044. createTime: "2025-11-06 17:45:44"
  3045. tags:
  3046. - tag: "瞬时流量"
  3047. protocol: "json"
  3048. measurement: "WaterMeter"
  3049. field: "flow_cur"
  3050. valueType: "double"
  3051. minValue: null
  3052. maxValue: null
  3053. syncField: null
  3054. calcFormula: null
  3055. - tag: "正向累计流量"
  3056. protocol: "json"
  3057. measurement: "WaterMeter"
  3058. field: "flow_total_pos"
  3059. valueType: "double"
  3060. minValue: null
  3061. maxValue: null
  3062. syncField: null
  3063. calcFormula: null
  3064. - tag: "反向累计流量"
  3065. protocol: "json"
  3066. measurement: "WaterMeter"
  3067. field: "flow_total_rev"
  3068. valueType: "double"
  3069. minValue: null
  3070. maxValue: null
  3071. syncField: null
  3072. calcFormula: null
  3073. - tag: "压力"
  3074. protocol: "json"
  3075. measurement: "WaterMeter"
  3076. field: "press_cur"
  3077. valueType: "double"
  3078. minValue: null
  3079. maxValue: null
  3080. syncField: null
  3081. calcFormula: null
  3082. - deviceId: "710022511060071"
  3083. deviceName: "43#寺沙路与兴阳路交汇处(反家暴中心路口)"
  3084. deviceSn: "SB00000067"
  3085. deviceKind: "flow"
  3086. platform: "zaoyang-iot"
  3087. mfrs: "上海锐铼"
  3088. createTime: "2025-11-06 17:45:44"
  3089. tags:
  3090. - tag: "瞬时流量"
  3091. protocol: "json"
  3092. measurement: "WaterMeter"
  3093. field: "flow_cur"
  3094. valueType: "double"
  3095. minValue: null
  3096. maxValue: null
  3097. syncField: null
  3098. calcFormula: null
  3099. - tag: "正向累计流量"
  3100. protocol: "json"
  3101. measurement: "WaterMeter"
  3102. field: "flow_total_pos"
  3103. valueType: "double"
  3104. minValue: null
  3105. maxValue: null
  3106. syncField: null
  3107. calcFormula: null
  3108. - tag: "反向累计流量"
  3109. protocol: "json"
  3110. measurement: "WaterMeter"
  3111. field: "flow_total_rev"
  3112. valueType: "double"
  3113. minValue: null
  3114. maxValue: null
  3115. syncField: null
  3116. calcFormula: null
  3117. - tag: "压力"
  3118. protocol: "json"
  3119. measurement: "WaterMeter"
  3120. field: "press_cur"
  3121. valueType: "double"
  3122. minValue: null
  3123. maxValue: null
  3124. syncField: null
  3125. calcFormula: null
  3126. - deviceId: "710022511060072"
  3127. deviceName: "和谐花苑向南200米流量计"
  3128. deviceSn: "SB00000107"
  3129. deviceKind: "flow"
  3130. platform: "zaoyang-iot"
  3131. mfrs: "上海锐铼"
  3132. createTime: "2025-11-06 17:45:44"
  3133. tags:
  3134. - tag: "瞬时流量"
  3135. protocol: "json"
  3136. measurement: "WaterMeter"
  3137. field: "flow_cur"
  3138. valueType: "double"
  3139. minValue: null
  3140. maxValue: null
  3141. syncField: null
  3142. calcFormula: null
  3143. - tag: "正向累计流量"
  3144. protocol: "json"
  3145. measurement: "WaterMeter"
  3146. field: "flow_total_pos"
  3147. valueType: "double"
  3148. minValue: null
  3149. maxValue: null
  3150. syncField: null
  3151. calcFormula: null
  3152. - tag: "反向累计流量"
  3153. protocol: "json"
  3154. measurement: "WaterMeter"
  3155. field: "flow_total_rev"
  3156. valueType: "double"
  3157. minValue: null
  3158. maxValue: null
  3159. syncField: null
  3160. calcFormula: null
  3161. - tag: "压力"
  3162. protocol: "json"
  3163. measurement: "WaterMeter"
  3164. field: "press_cur"
  3165. valueType: "double"
  3166. minValue: null
  3167. maxValue: null
  3168. syncField: null
  3169. calcFormula: null
  3170. - deviceId: "710022511060073"
  3171. deviceName: "梁集路口300考核表"
  3172. deviceSn: "SB00000106"
  3173. deviceKind: "flow"
  3174. platform: "zaoyang-iot"
  3175. mfrs: "上海锐铼"
  3176. createTime: "2025-11-06 17:45:44"
  3177. tags:
  3178. - tag: "瞬时流量"
  3179. protocol: "json"
  3180. measurement: "WaterMeter"
  3181. field: "flow_cur"
  3182. valueType: "double"
  3183. minValue: null
  3184. maxValue: null
  3185. syncField: null
  3186. calcFormula: null
  3187. - tag: "正向累计流量"
  3188. protocol: "json"
  3189. measurement: "WaterMeter"
  3190. field: "flow_total_pos"
  3191. valueType: "double"
  3192. minValue: null
  3193. maxValue: null
  3194. syncField: null
  3195. calcFormula: null
  3196. - tag: "反向累计流量"
  3197. protocol: "json"
  3198. measurement: "WaterMeter"
  3199. field: "flow_total_rev"
  3200. valueType: "double"
  3201. minValue: null
  3202. maxValue: null
  3203. syncField: null
  3204. calcFormula: null
  3205. - tag: "压力"
  3206. protocol: "json"
  3207. measurement: "WaterMeter"
  3208. field: "press_cur"
  3209. valueType: "double"
  3210. minValue: null
  3211. maxValue: null
  3212. syncField: null
  3213. calcFormula: null
  3214. - deviceId: "710022511060074"
  3215. deviceName: "复烤厂门口流量计"
  3216. deviceSn: "SB00000105"
  3217. deviceKind: "flow"
  3218. platform: "zaoyang-iot"
  3219. mfrs: "上海锐铼"
  3220. createTime: "2025-11-06 17:45:44"
  3221. tags:
  3222. - tag: "瞬时流量"
  3223. protocol: "json"
  3224. measurement: "WaterMeter"
  3225. field: "flow_cur"
  3226. valueType: "double"
  3227. minValue: null
  3228. maxValue: null
  3229. syncField: null
  3230. calcFormula: null
  3231. - tag: "正向累计流量"
  3232. protocol: "json"
  3233. measurement: "WaterMeter"
  3234. field: "flow_total_pos"
  3235. valueType: "double"
  3236. minValue: null
  3237. maxValue: null
  3238. syncField: null
  3239. calcFormula: null
  3240. - tag: "反向累计流量"
  3241. protocol: "json"
  3242. measurement: "WaterMeter"
  3243. field: "flow_total_rev"
  3244. valueType: "double"
  3245. minValue: null
  3246. maxValue: null
  3247. syncField: null
  3248. calcFormula: null
  3249. - tag: "压力"
  3250. protocol: "json"
  3251. measurement: "WaterMeter"
  3252. field: "press_cur"
  3253. valueType: "double"
  3254. minValue: null
  3255. maxValue: null
  3256. syncField: null
  3257. calcFormula: null
  3258. - deviceId: "710022511060075"
  3259. deviceName: "南城财政所流量计"
  3260. deviceSn: "SB00000104"
  3261. deviceKind: "flow"
  3262. platform: "zaoyang-iot"
  3263. mfrs: "上海锐铼"
  3264. createTime: "2025-11-06 17:45:44"
  3265. tags:
  3266. - tag: "瞬时流量"
  3267. protocol: "json"
  3268. measurement: "WaterMeter"
  3269. field: "flow_cur"
  3270. valueType: "double"
  3271. minValue: null
  3272. maxValue: null
  3273. syncField: null
  3274. calcFormula: null
  3275. - tag: "正向累计流量"
  3276. protocol: "json"
  3277. measurement: "WaterMeter"
  3278. field: "flow_total_pos"
  3279. valueType: "double"
  3280. minValue: null
  3281. maxValue: null
  3282. syncField: null
  3283. calcFormula: null
  3284. - tag: "反向累计流量"
  3285. protocol: "json"
  3286. measurement: "WaterMeter"
  3287. field: "flow_total_rev"
  3288. valueType: "double"
  3289. minValue: null
  3290. maxValue: null
  3291. syncField: null
  3292. calcFormula: null
  3293. - tag: "压力"
  3294. protocol: "json"
  3295. measurement: "WaterMeter"
  3296. field: "press_cur"
  3297. valueType: "double"
  3298. minValue: null
  3299. maxValue: null
  3300. syncField: null
  3301. calcFormula: null
  3302. - deviceId: "710022511060076"
  3303. deviceName: "147#八里五组路口"
  3304. deviceSn: "SB00000061"
  3305. deviceKind: "flow"
  3306. platform: "zaoyang-iot"
  3307. mfrs: "上海锐铼"
  3308. createTime: "2025-11-06 17:45:44"
  3309. tags:
  3310. - tag: "瞬时流量"
  3311. protocol: "json"
  3312. measurement: "WaterMeter"
  3313. field: "flow_cur"
  3314. valueType: "double"
  3315. minValue: null
  3316. maxValue: null
  3317. syncField: null
  3318. calcFormula: null
  3319. - tag: "正向累计流量"
  3320. protocol: "json"
  3321. measurement: "WaterMeter"
  3322. field: "flow_total_pos"
  3323. valueType: "double"
  3324. minValue: null
  3325. maxValue: null
  3326. syncField: null
  3327. calcFormula: null
  3328. - tag: "反向累计流量"
  3329. protocol: "json"
  3330. measurement: "WaterMeter"
  3331. field: "flow_total_rev"
  3332. valueType: "double"
  3333. minValue: null
  3334. maxValue: null
  3335. syncField: null
  3336. calcFormula: null
  3337. - tag: "压力"
  3338. protocol: "json"
  3339. measurement: "WaterMeter"
  3340. field: "press_cur"
  3341. valueType: "double"
  3342. minValue: null
  3343. maxValue: null
  3344. syncField: null
  3345. calcFormula: null
  3346. - deviceId: "710022511060077"
  3347. deviceName: "36#寺沙路与新华路交汇处向北兴旺家园路口"
  3348. deviceSn: "SB00000066"
  3349. deviceKind: "flow"
  3350. platform: "zaoyang-iot"
  3351. mfrs: "上海锐铼"
  3352. createTime: "2025-11-06 17:45:44"
  3353. tags:
  3354. - tag: "瞬时流量"
  3355. protocol: "json"
  3356. measurement: "WaterMeter"
  3357. field: "flow_cur"
  3358. valueType: "double"
  3359. minValue: null
  3360. maxValue: null
  3361. syncField: null
  3362. calcFormula: null
  3363. - tag: "正向累计流量"
  3364. protocol: "json"
  3365. measurement: "WaterMeter"
  3366. field: "flow_total_pos"
  3367. valueType: "double"
  3368. minValue: null
  3369. maxValue: null
  3370. syncField: null
  3371. calcFormula: null
  3372. - tag: "反向累计流量"
  3373. protocol: "json"
  3374. measurement: "WaterMeter"
  3375. field: "flow_total_rev"
  3376. valueType: "double"
  3377. minValue: null
  3378. maxValue: null
  3379. syncField: null
  3380. calcFormula: null
  3381. - tag: "压力"
  3382. protocol: "json"
  3383. measurement: "WaterMeter"
  3384. field: "press_cur"
  3385. valueType: "double"
  3386. minValue: null
  3387. maxValue: null
  3388. syncField: null
  3389. calcFormula: null
  3390. - deviceId: "710022511060078"
  3391. deviceName: "33#阳光路长江1号鄂西北运营中心路口"
  3392. deviceSn: "SB00000065"
  3393. deviceKind: "flow"
  3394. platform: "zaoyang-iot"
  3395. mfrs: "上海锐铼"
  3396. createTime: "2025-11-06 17:45:44"
  3397. tags:
  3398. - tag: "瞬时流量"
  3399. protocol: "json"
  3400. measurement: "WaterMeter"
  3401. field: "flow_cur"
  3402. valueType: "double"
  3403. minValue: null
  3404. maxValue: null
  3405. syncField: null
  3406. calcFormula: null
  3407. - tag: "正向累计流量"
  3408. protocol: "json"
  3409. measurement: "WaterMeter"
  3410. field: "flow_total_pos"
  3411. valueType: "double"
  3412. minValue: null
  3413. maxValue: null
  3414. syncField: null
  3415. calcFormula: null
  3416. - tag: "反向累计流量"
  3417. protocol: "json"
  3418. measurement: "WaterMeter"
  3419. field: "flow_total_rev"
  3420. valueType: "double"
  3421. minValue: null
  3422. maxValue: null
  3423. syncField: null
  3424. calcFormula: null
  3425. - tag: "压力"
  3426. protocol: "json"
  3427. measurement: "WaterMeter"
  3428. field: "press_cur"
  3429. valueType: "double"
  3430. minValue: null
  3431. maxValue: null
  3432. syncField: null
  3433. calcFormula: null
  3434. - deviceId: "710022511060079"
  3435. deviceName: "3#民族西路茶棚七组路口"
  3436. deviceSn: "SB00000064"
  3437. deviceKind: "flow"
  3438. platform: "zaoyang-iot"
  3439. mfrs: "上海锐铼"
  3440. createTime: "2025-11-06 17:45:44"
  3441. tags:
  3442. - tag: "瞬时流量"
  3443. protocol: "json"
  3444. measurement: "WaterMeter"
  3445. field: "flow_cur"
  3446. valueType: "double"
  3447. minValue: null
  3448. maxValue: null
  3449. syncField: null
  3450. calcFormula: null
  3451. - tag: "正向累计流量"
  3452. protocol: "json"
  3453. measurement: "WaterMeter"
  3454. field: "flow_total_pos"
  3455. valueType: "double"
  3456. minValue: null
  3457. maxValue: null
  3458. syncField: null
  3459. calcFormula: null
  3460. - tag: "反向累计流量"
  3461. protocol: "json"
  3462. measurement: "WaterMeter"
  3463. field: "flow_total_rev"
  3464. valueType: "double"
  3465. minValue: null
  3466. maxValue: null
  3467. syncField: null
  3468. calcFormula: null
  3469. - tag: "压力"
  3470. protocol: "json"
  3471. measurement: "WaterMeter"
  3472. field: "press_cur"
  3473. valueType: "double"
  3474. minValue: null
  3475. maxValue: null
  3476. syncField: null
  3477. calcFormula: null
  3478. - deviceId: "710022511060080"
  3479. deviceName: "307#中兴大道二郎村村委会路口"
  3480. deviceSn: "SB00000063"
  3481. deviceKind: "flow"
  3482. platform: "zaoyang-iot"
  3483. mfrs: "上海锐铼"
  3484. createTime: "2025-11-06 17:45:44"
  3485. tags:
  3486. - tag: "瞬时流量"
  3487. protocol: "json"
  3488. measurement: "WaterMeter"
  3489. field: "flow_cur"
  3490. valueType: "double"
  3491. minValue: null
  3492. maxValue: null
  3493. syncField: null
  3494. calcFormula: null
  3495. - tag: "正向累计流量"
  3496. protocol: "json"
  3497. measurement: "WaterMeter"
  3498. field: "flow_total_pos"
  3499. valueType: "double"
  3500. minValue: null
  3501. maxValue: null
  3502. syncField: null
  3503. calcFormula: null
  3504. - tag: "反向累计流量"
  3505. protocol: "json"
  3506. measurement: "WaterMeter"
  3507. field: "flow_total_rev"
  3508. valueType: "double"
  3509. minValue: null
  3510. maxValue: null
  3511. syncField: null
  3512. calcFormula: null
  3513. - tag: "压力"
  3514. protocol: "json"
  3515. measurement: "WaterMeter"
  3516. field: "press_cur"
  3517. valueType: "double"
  3518. minValue: null
  3519. maxValue: null
  3520. syncField: null
  3521. calcFormula: null
  3522. - deviceId: "710022511060081"
  3523. deviceName: "296#火车站路口工商银行南侧"
  3524. deviceSn: "SB00000059"
  3525. deviceKind: "flow"
  3526. platform: "zaoyang-iot"
  3527. mfrs: "上海锐铼"
  3528. createTime: "2025-11-06 17:45:44"
  3529. tags:
  3530. - tag: "瞬时流量"
  3531. protocol: "json"
  3532. measurement: "WaterMeter"
  3533. field: "flow_cur"
  3534. valueType: "double"
  3535. minValue: null
  3536. maxValue: null
  3537. syncField: null
  3538. calcFormula: null
  3539. - tag: "正向累计流量"
  3540. protocol: "json"
  3541. measurement: "WaterMeter"
  3542. field: "flow_total_pos"
  3543. valueType: "double"
  3544. minValue: null
  3545. maxValue: null
  3546. syncField: null
  3547. calcFormula: null
  3548. - tag: "反向累计流量"
  3549. protocol: "json"
  3550. measurement: "WaterMeter"
  3551. field: "flow_total_rev"
  3552. valueType: "double"
  3553. minValue: null
  3554. maxValue: null
  3555. syncField: null
  3556. calcFormula: null
  3557. - tag: "压力"
  3558. protocol: "json"
  3559. measurement: "WaterMeter"
  3560. field: "press_cur"
  3561. valueType: "double"
  3562. minValue: null
  3563. maxValue: null
  3564. syncField: null
  3565. calcFormula: null
  3566. - deviceId: "710022511060082"
  3567. deviceName: "7#民族西路与西环二路交汇处东北角"
  3568. deviceSn: "SB00000058"
  3569. deviceKind: "flow"
  3570. platform: "zaoyang-iot"
  3571. mfrs: "上海锐铼"
  3572. createTime: "2025-11-06 17:45:44"
  3573. tags:
  3574. - tag: "瞬时流量"
  3575. protocol: "json"
  3576. measurement: "WaterMeter"
  3577. field: "flow_cur"
  3578. valueType: "double"
  3579. minValue: null
  3580. maxValue: null
  3581. syncField: null
  3582. calcFormula: null
  3583. - tag: "正向累计流量"
  3584. protocol: "json"
  3585. measurement: "WaterMeter"
  3586. field: "flow_total_pos"
  3587. valueType: "double"
  3588. minValue: null
  3589. maxValue: null
  3590. syncField: null
  3591. calcFormula: null
  3592. - tag: "反向累计流量"
  3593. protocol: "json"
  3594. measurement: "WaterMeter"
  3595. field: "flow_total_rev"
  3596. valueType: "double"
  3597. minValue: null
  3598. maxValue: null
  3599. syncField: null
  3600. calcFormula: null
  3601. - tag: "压力"
  3602. protocol: "json"
  3603. measurement: "WaterMeter"
  3604. field: "press_cur"
  3605. valueType: "double"
  3606. minValue: null
  3607. maxValue: null
  3608. syncField: null
  3609. calcFormula: null
  3610. - deviceId: "710022511060083"
  3611. deviceName: "1#神驰路与316老国道交汇处 东侧路"
  3612. deviceSn: "SB00000057"
  3613. deviceKind: "flow"
  3614. platform: "zaoyang-iot"
  3615. mfrs: "上海锐铼"
  3616. createTime: "2025-11-06 17:45:44"
  3617. tags:
  3618. - tag: "瞬时流量"
  3619. protocol: "json"
  3620. measurement: "WaterMeter"
  3621. field: "flow_cur"
  3622. valueType: "double"
  3623. minValue: null
  3624. maxValue: null
  3625. syncField: null
  3626. calcFormula: null
  3627. - tag: "正向累计流量"
  3628. protocol: "json"
  3629. measurement: "WaterMeter"
  3630. field: "flow_total_pos"
  3631. valueType: "double"
  3632. minValue: null
  3633. maxValue: null
  3634. syncField: null
  3635. calcFormula: null
  3636. - tag: "反向累计流量"
  3637. protocol: "json"
  3638. measurement: "WaterMeter"
  3639. field: "flow_total_rev"
  3640. valueType: "double"
  3641. minValue: null
  3642. maxValue: null
  3643. syncField: null
  3644. calcFormula: null
  3645. - tag: "压力"
  3646. protocol: "json"
  3647. measurement: "WaterMeter"
  3648. field: "press_cur"
  3649. valueType: "double"
  3650. minValue: null
  3651. maxValue: null
  3652. syncField: null
  3653. calcFormula: null
  3654. - deviceId: "710022511060084"
  3655. deviceName: "252#兴隆创业一路路口"
  3656. deviceSn: "SB00000056"
  3657. deviceKind: "flow"
  3658. platform: "zaoyang-iot"
  3659. mfrs: "上海锐铼"
  3660. createTime: "2025-11-06 17:45:44"
  3661. tags:
  3662. - tag: "瞬时流量"
  3663. protocol: "json"
  3664. measurement: "WaterMeter"
  3665. field: "flow_cur"
  3666. valueType: "double"
  3667. minValue: null
  3668. maxValue: null
  3669. syncField: null
  3670. calcFormula: null
  3671. - tag: "正向累计流量"
  3672. protocol: "json"
  3673. measurement: "WaterMeter"
  3674. field: "flow_total_pos"
  3675. valueType: "double"
  3676. minValue: null
  3677. maxValue: null
  3678. syncField: null
  3679. calcFormula: null
  3680. - tag: "反向累计流量"
  3681. protocol: "json"
  3682. measurement: "WaterMeter"
  3683. field: "flow_total_rev"
  3684. valueType: "double"
  3685. minValue: null
  3686. maxValue: null
  3687. syncField: null
  3688. calcFormula: null
  3689. - tag: "压力"
  3690. protocol: "json"
  3691. measurement: "WaterMeter"
  3692. field: "press_cur"
  3693. valueType: "double"
  3694. minValue: null
  3695. maxValue: null
  3696. syncField: null
  3697. calcFormula: null
  3698. - deviceId: "710022511060085"
  3699. deviceName: "263#发展大道金牛山小区南侧"
  3700. deviceSn: "SB00000051"
  3701. deviceKind: "flow"
  3702. platform: "zaoyang-iot"
  3703. mfrs: "上海锐铼"
  3704. createTime: "2025-11-06 17:45:44"
  3705. tags:
  3706. - tag: "瞬时流量"
  3707. protocol: "json"
  3708. measurement: "WaterMeter"
  3709. field: "flow_cur"
  3710. valueType: "double"
  3711. minValue: null
  3712. maxValue: null
  3713. syncField: null
  3714. calcFormula: null
  3715. - tag: "正向累计流量"
  3716. protocol: "json"
  3717. measurement: "WaterMeter"
  3718. field: "flow_total_pos"
  3719. valueType: "double"
  3720. minValue: null
  3721. maxValue: null
  3722. syncField: null
  3723. calcFormula: null
  3724. - tag: "反向累计流量"
  3725. protocol: "json"
  3726. measurement: "WaterMeter"
  3727. field: "flow_total_rev"
  3728. valueType: "double"
  3729. minValue: null
  3730. maxValue: null
  3731. syncField: null
  3732. calcFormula: null
  3733. - tag: "压力"
  3734. protocol: "json"
  3735. measurement: "WaterMeter"
  3736. field: "press_cur"
  3737. valueType: "double"
  3738. minValue: null
  3739. maxValue: null
  3740. syncField: null
  3741. calcFormula: null
  3742. - deviceId: "710022511060086"
  3743. deviceName: "16#民族路枣阳市疾控中心对面路口"
  3744. deviceSn: "SB00000050"
  3745. deviceKind: "flow"
  3746. platform: "zaoyang-iot"
  3747. mfrs: "上海锐铼"
  3748. createTime: "2025-11-06 17:45:44"
  3749. tags:
  3750. - tag: "瞬时流量"
  3751. protocol: "json"
  3752. measurement: "WaterMeter"
  3753. field: "flow_cur"
  3754. valueType: "double"
  3755. minValue: null
  3756. maxValue: null
  3757. syncField: null
  3758. calcFormula: null
  3759. - tag: "正向累计流量"
  3760. protocol: "json"
  3761. measurement: "WaterMeter"
  3762. field: "flow_total_pos"
  3763. valueType: "double"
  3764. minValue: null
  3765. maxValue: null
  3766. syncField: null
  3767. calcFormula: null
  3768. - tag: "反向累计流量"
  3769. protocol: "json"
  3770. measurement: "WaterMeter"
  3771. field: "flow_total_rev"
  3772. valueType: "double"
  3773. minValue: null
  3774. maxValue: null
  3775. syncField: null
  3776. calcFormula: null
  3777. - tag: "压力"
  3778. protocol: "json"
  3779. measurement: "WaterMeter"
  3780. field: "press_cur"
  3781. valueType: "double"
  3782. minValue: null
  3783. maxValue: null
  3784. syncField: null
  3785. calcFormula: null
  3786. - deviceId: "710022511060087"
  3787. deviceName: "295#火车站路口工商银行南侧管道过路处"
  3788. deviceSn: "SB00000055"
  3789. deviceKind: "flow"
  3790. platform: "zaoyang-iot"
  3791. mfrs: "上海锐铼"
  3792. createTime: "2025-11-06 17:45:44"
  3793. tags:
  3794. - tag: "瞬时流量"
  3795. protocol: "json"
  3796. measurement: "WaterMeter"
  3797. field: "flow_cur"
  3798. valueType: "double"
  3799. minValue: null
  3800. maxValue: null
  3801. syncField: null
  3802. calcFormula: null
  3803. - tag: "正向累计流量"
  3804. protocol: "json"
  3805. measurement: "WaterMeter"
  3806. field: "flow_total_pos"
  3807. valueType: "double"
  3808. minValue: null
  3809. maxValue: null
  3810. syncField: null
  3811. calcFormula: null
  3812. - tag: "反向累计流量"
  3813. protocol: "json"
  3814. measurement: "WaterMeter"
  3815. field: "flow_total_rev"
  3816. valueType: "double"
  3817. minValue: null
  3818. maxValue: null
  3819. syncField: null
  3820. calcFormula: null
  3821. - tag: "压力"
  3822. protocol: "json"
  3823. measurement: "WaterMeter"
  3824. field: "press_cur"
  3825. valueType: "double"
  3826. minValue: null
  3827. maxValue: null
  3828. syncField: null
  3829. calcFormula: null
  3830. - deviceId: "710022511060088"
  3831. deviceName: "26#民族北路聚福苑小区路口对面"
  3832. deviceSn: "SB00000054"
  3833. deviceKind: "flow"
  3834. platform: "zaoyang-iot"
  3835. mfrs: "上海锐铼"
  3836. createTime: "2025-11-06 17:45:44"
  3837. tags:
  3838. - tag: "瞬时流量"
  3839. protocol: "json"
  3840. measurement: "WaterMeter"
  3841. field: "flow_cur"
  3842. valueType: "double"
  3843. minValue: null
  3844. maxValue: null
  3845. syncField: null
  3846. calcFormula: null
  3847. - tag: "正向累计流量"
  3848. protocol: "json"
  3849. measurement: "WaterMeter"
  3850. field: "flow_total_pos"
  3851. valueType: "double"
  3852. minValue: null
  3853. maxValue: null
  3854. syncField: null
  3855. calcFormula: null
  3856. - tag: "反向累计流量"
  3857. protocol: "json"
  3858. measurement: "WaterMeter"
  3859. field: "flow_total_rev"
  3860. valueType: "double"
  3861. minValue: null
  3862. maxValue: null
  3863. syncField: null
  3864. calcFormula: null
  3865. - tag: "压力"
  3866. protocol: "json"
  3867. measurement: "WaterMeter"
  3868. field: "press_cur"
  3869. valueType: "double"
  3870. minValue: null
  3871. maxValue: null
  3872. syncField: null
  3873. calcFormula: null
  3874. - deviceId: "710022511060089"
  3875. deviceName: "151#襄阳东路玫瑰社区一期南门东侧"
  3876. deviceSn: "SB00000053"
  3877. deviceKind: "flow"
  3878. platform: "zaoyang-iot"
  3879. mfrs: "上海锐铼"
  3880. createTime: "2025-11-06 17:45:44"
  3881. tags:
  3882. - tag: "瞬时流量"
  3883. protocol: "json"
  3884. measurement: "WaterMeter"
  3885. field: "flow_cur"
  3886. valueType: "double"
  3887. minValue: null
  3888. maxValue: null
  3889. syncField: null
  3890. calcFormula: null
  3891. - tag: "正向累计流量"
  3892. protocol: "json"
  3893. measurement: "WaterMeter"
  3894. field: "flow_total_pos"
  3895. valueType: "double"
  3896. minValue: null
  3897. maxValue: null
  3898. syncField: null
  3899. calcFormula: null
  3900. - tag: "反向累计流量"
  3901. protocol: "json"
  3902. measurement: "WaterMeter"
  3903. field: "flow_total_rev"
  3904. valueType: "double"
  3905. minValue: null
  3906. maxValue: null
  3907. syncField: null
  3908. calcFormula: null
  3909. - tag: "压力"
  3910. protocol: "json"
  3911. measurement: "WaterMeter"
  3912. field: "press_cur"
  3913. valueType: "double"
  3914. minValue: null
  3915. maxValue: null
  3916. syncField: null
  3917. calcFormula: null
  3918. - deviceId: "710022511060090"
  3919. deviceName: "282#中兴大道玉龙印刷厂路口对面"
  3920. deviceSn: "SB00000052"
  3921. deviceKind: "flow"
  3922. platform: "zaoyang-iot"
  3923. mfrs: "上海锐铼"
  3924. createTime: "2025-11-06 17:45:44"
  3925. tags:
  3926. - tag: "瞬时流量"
  3927. protocol: "json"
  3928. measurement: "WaterMeter"
  3929. field: "flow_cur"
  3930. valueType: "double"
  3931. minValue: null
  3932. maxValue: null
  3933. syncField: null
  3934. calcFormula: null
  3935. - tag: "正向累计流量"
  3936. protocol: "json"
  3937. measurement: "WaterMeter"
  3938. field: "flow_total_pos"
  3939. valueType: "double"
  3940. minValue: null
  3941. maxValue: null
  3942. syncField: null
  3943. calcFormula: null
  3944. - tag: "反向累计流量"
  3945. protocol: "json"
  3946. measurement: "WaterMeter"
  3947. field: "flow_total_rev"
  3948. valueType: "double"
  3949. minValue: null
  3950. maxValue: null
  3951. syncField: null
  3952. calcFormula: null
  3953. - tag: "压力"
  3954. protocol: "json"
  3955. measurement: "WaterMeter"
  3956. field: "press_cur"
  3957. valueType: "double"
  3958. minValue: null
  3959. maxValue: null
  3960. syncField: null
  3961. calcFormula: null
  3962. - deviceId: "710022511060091"
  3963. deviceName: "142#书院街第八中学对面东侧路口"
  3964. deviceSn: "SB00000047"
  3965. deviceKind: "flow"
  3966. platform: "zaoyang-iot"
  3967. mfrs: "上海锐铼"
  3968. createTime: "2025-11-06 17:45:44"
  3969. tags:
  3970. - tag: "瞬时流量"
  3971. protocol: "json"
  3972. measurement: "WaterMeter"
  3973. field: "flow_cur"
  3974. valueType: "double"
  3975. minValue: null
  3976. maxValue: null
  3977. syncField: null
  3978. calcFormula: null
  3979. - tag: "正向累计流量"
  3980. protocol: "json"
  3981. measurement: "WaterMeter"
  3982. field: "flow_total_pos"
  3983. valueType: "double"
  3984. minValue: null
  3985. maxValue: null
  3986. syncField: null
  3987. calcFormula: null
  3988. - tag: "反向累计流量"
  3989. protocol: "json"
  3990. measurement: "WaterMeter"
  3991. field: "flow_total_rev"
  3992. valueType: "double"
  3993. minValue: null
  3994. maxValue: null
  3995. syncField: null
  3996. calcFormula: null
  3997. - tag: "压力"
  3998. protocol: "json"
  3999. measurement: "WaterMeter"
  4000. field: "press_cur"
  4001. valueType: "double"
  4002. minValue: null
  4003. maxValue: null
  4004. syncField: null
  4005. calcFormula: null
  4006. - deviceId: "710022511060092"
  4007. deviceName: "264#西环一路石羊池路路口"
  4008. deviceSn: "SB00000046"
  4009. deviceKind: "flow"
  4010. platform: "zaoyang-iot"
  4011. mfrs: "上海锐铼"
  4012. createTime: "2025-11-06 17:45:44"
  4013. tags:
  4014. - tag: "瞬时流量"
  4015. protocol: "json"
  4016. measurement: "WaterMeter"
  4017. field: "flow_cur"
  4018. valueType: "double"
  4019. minValue: null
  4020. maxValue: null
  4021. syncField: null
  4022. calcFormula: null
  4023. - tag: "正向累计流量"
  4024. protocol: "json"
  4025. measurement: "WaterMeter"
  4026. field: "flow_total_pos"
  4027. valueType: "double"
  4028. minValue: null
  4029. maxValue: null
  4030. syncField: null
  4031. calcFormula: null
  4032. - tag: "反向累计流量"
  4033. protocol: "json"
  4034. measurement: "WaterMeter"
  4035. field: "flow_total_rev"
  4036. valueType: "double"
  4037. minValue: null
  4038. maxValue: null
  4039. syncField: null
  4040. calcFormula: null
  4041. - tag: "压力"
  4042. protocol: "json"
  4043. measurement: "WaterMeter"
  4044. field: "press_cur"
  4045. valueType: "double"
  4046. minValue: null
  4047. maxValue: null
  4048. syncField: null
  4049. calcFormula: null
  4050. - deviceId: "710022511060093"
  4051. deviceName: "107#襄阳路钱庄西路口"
  4052. deviceSn: "SB00000045"
  4053. deviceKind: "flow"
  4054. platform: "zaoyang-iot"
  4055. mfrs: "上海锐铼"
  4056. createTime: "2025-11-06 17:45:44"
  4057. tags:
  4058. - tag: "瞬时流量"
  4059. protocol: "json"
  4060. measurement: "WaterMeter"
  4061. field: "flow_cur"
  4062. valueType: "double"
  4063. minValue: null
  4064. maxValue: null
  4065. syncField: null
  4066. calcFormula: null
  4067. - tag: "正向累计流量"
  4068. protocol: "json"
  4069. measurement: "WaterMeter"
  4070. field: "flow_total_pos"
  4071. valueType: "double"
  4072. minValue: null
  4073. maxValue: null
  4074. syncField: null
  4075. calcFormula: null
  4076. - tag: "反向累计流量"
  4077. protocol: "json"
  4078. measurement: "WaterMeter"
  4079. field: "flow_total_rev"
  4080. valueType: "double"
  4081. minValue: null
  4082. maxValue: null
  4083. syncField: null
  4084. calcFormula: null
  4085. - tag: "压力"
  4086. protocol: "json"
  4087. measurement: "WaterMeter"
  4088. field: "press_cur"
  4089. valueType: "double"
  4090. minValue: null
  4091. maxValue: null
  4092. syncField: null
  4093. calcFormula: null
  4094. - deviceId: "710022511060094"
  4095. deviceName: "111#西环三路环岛南侧"
  4096. deviceSn: "SB00000049"
  4097. deviceKind: "flow"
  4098. platform: "zaoyang-iot"
  4099. mfrs: "上海锐铼"
  4100. createTime: "2025-11-06 17:45:44"
  4101. tags:
  4102. - tag: "瞬时流量"
  4103. protocol: "json"
  4104. measurement: "WaterMeter"
  4105. field: "flow_cur"
  4106. valueType: "double"
  4107. minValue: null
  4108. maxValue: null
  4109. syncField: null
  4110. calcFormula: null
  4111. - tag: "正向累计流量"
  4112. protocol: "json"
  4113. measurement: "WaterMeter"
  4114. field: "flow_total_pos"
  4115. valueType: "double"
  4116. minValue: null
  4117. maxValue: null
  4118. syncField: null
  4119. calcFormula: null
  4120. - tag: "反向累计流量"
  4121. protocol: "json"
  4122. measurement: "WaterMeter"
  4123. field: "flow_total_rev"
  4124. valueType: "double"
  4125. minValue: null
  4126. maxValue: null
  4127. syncField: null
  4128. calcFormula: null
  4129. - tag: "压力"
  4130. protocol: "json"
  4131. measurement: "WaterMeter"
  4132. field: "press_cur"
  4133. valueType: "double"
  4134. minValue: null
  4135. maxValue: null
  4136. syncField: null
  4137. calcFormula: null
  4138. - deviceId: "710022511060095"
  4139. deviceName: "18#民族路(贾不了烟酒门口)"
  4140. deviceSn: "SB00000040"
  4141. deviceKind: "flow"
  4142. platform: "zaoyang-iot"
  4143. mfrs: "上海锐铼"
  4144. createTime: "2025-11-06 17:45:44"
  4145. tags:
  4146. - tag: "瞬时流量"
  4147. protocol: "json"
  4148. measurement: "WaterMeter"
  4149. field: "flow_cur"
  4150. valueType: "double"
  4151. minValue: null
  4152. maxValue: null
  4153. syncField: null
  4154. calcFormula: null
  4155. - tag: "正向累计流量"
  4156. protocol: "json"
  4157. measurement: "WaterMeter"
  4158. field: "flow_total_pos"
  4159. valueType: "double"
  4160. minValue: null
  4161. maxValue: null
  4162. syncField: null
  4163. calcFormula: null
  4164. - tag: "反向累计流量"
  4165. protocol: "json"
  4166. measurement: "WaterMeter"
  4167. field: "flow_total_rev"
  4168. valueType: "double"
  4169. minValue: null
  4170. maxValue: null
  4171. syncField: null
  4172. calcFormula: null
  4173. - tag: "压力"
  4174. protocol: "json"
  4175. measurement: "WaterMeter"
  4176. field: "press_cur"
  4177. valueType: "double"
  4178. minValue: null
  4179. maxValue: null
  4180. syncField: null
  4181. calcFormula: null
  4182. - deviceId: "710022511060096"
  4183. deviceName: "49#南阳路家宴食府西侧"
  4184. deviceSn: "SB00000044"
  4185. deviceKind: "flow"
  4186. platform: "zaoyang-iot"
  4187. mfrs: "上海锐铼"
  4188. createTime: "2025-11-06 17:45:44"
  4189. tags:
  4190. - tag: "瞬时流量"
  4191. protocol: "json"
  4192. measurement: "WaterMeter"
  4193. field: "flow_cur"
  4194. valueType: "double"
  4195. minValue: null
  4196. maxValue: null
  4197. syncField: null
  4198. calcFormula: null
  4199. - tag: "正向累计流量"
  4200. protocol: "json"
  4201. measurement: "WaterMeter"
  4202. field: "flow_total_pos"
  4203. valueType: "double"
  4204. minValue: null
  4205. maxValue: null
  4206. syncField: null
  4207. calcFormula: null
  4208. - tag: "反向累计流量"
  4209. protocol: "json"
  4210. measurement: "WaterMeter"
  4211. field: "flow_total_rev"
  4212. valueType: "double"
  4213. minValue: null
  4214. maxValue: null
  4215. syncField: null
  4216. calcFormula: null
  4217. - tag: "压力"
  4218. protocol: "json"
  4219. measurement: "WaterMeter"
  4220. field: "press_cur"
  4221. valueType: "double"
  4222. minValue: null
  4223. maxValue: null
  4224. syncField: null
  4225. calcFormula: null
  4226. - deviceId: "710022511060097"
  4227. deviceName: "21#民族北路大生家常菜门口"
  4228. deviceSn: "SB00000043"
  4229. deviceKind: "flow"
  4230. platform: "zaoyang-iot"
  4231. mfrs: "上海锐铼"
  4232. createTime: "2025-11-06 17:45:44"
  4233. tags:
  4234. - tag: "瞬时流量"
  4235. protocol: "json"
  4236. measurement: "WaterMeter"
  4237. field: "flow_cur"
  4238. valueType: "double"
  4239. minValue: null
  4240. maxValue: null
  4241. syncField: null
  4242. calcFormula: null
  4243. - tag: "正向累计流量"
  4244. protocol: "json"
  4245. measurement: "WaterMeter"
  4246. field: "flow_total_pos"
  4247. valueType: "double"
  4248. minValue: null
  4249. maxValue: null
  4250. syncField: null
  4251. calcFormula: null
  4252. - tag: "反向累计流量"
  4253. protocol: "json"
  4254. measurement: "WaterMeter"
  4255. field: "flow_total_rev"
  4256. valueType: "double"
  4257. minValue: null
  4258. maxValue: null
  4259. syncField: null
  4260. calcFormula: null
  4261. - tag: "压力"
  4262. protocol: "json"
  4263. measurement: "WaterMeter"
  4264. field: "press_cur"
  4265. valueType: "double"
  4266. minValue: null
  4267. maxValue: null
  4268. syncField: null
  4269. calcFormula: null
  4270. - deviceId: "710022511060098"
  4271. deviceName: "47#新华路与书院西街交汇处西南角"
  4272. deviceSn: "SB00000042"
  4273. deviceKind: "flow"
  4274. platform: "zaoyang-iot"
  4275. mfrs: "上海锐铼"
  4276. createTime: "2025-11-06 17:45:44"
  4277. tags:
  4278. - tag: "瞬时流量"
  4279. protocol: "json"
  4280. measurement: "WaterMeter"
  4281. field: "flow_cur"
  4282. valueType: "double"
  4283. minValue: null
  4284. maxValue: null
  4285. syncField: null
  4286. calcFormula: null
  4287. - tag: "正向累计流量"
  4288. protocol: "json"
  4289. measurement: "WaterMeter"
  4290. field: "flow_total_pos"
  4291. valueType: "double"
  4292. minValue: null
  4293. maxValue: null
  4294. syncField: null
  4295. calcFormula: null
  4296. - tag: "反向累计流量"
  4297. protocol: "json"
  4298. measurement: "WaterMeter"
  4299. field: "flow_total_rev"
  4300. valueType: "double"
  4301. minValue: null
  4302. maxValue: null
  4303. syncField: null
  4304. calcFormula: null
  4305. - tag: "压力"
  4306. protocol: "json"
  4307. measurement: "WaterMeter"
  4308. field: "press_cur"
  4309. valueType: "double"
  4310. minValue: null
  4311. maxValue: null
  4312. syncField: null
  4313. calcFormula: null
  4314. - deviceId: "710022511060099"
  4315. deviceName: "22#民族路师范幼儿园路口"
  4316. deviceSn: "SB00000041"
  4317. deviceKind: "flow"
  4318. platform: "zaoyang-iot"
  4319. mfrs: "上海锐铼"
  4320. createTime: "2025-11-06 17:45:44"
  4321. tags:
  4322. - tag: "瞬时流量"
  4323. protocol: "json"
  4324. measurement: "WaterMeter"
  4325. field: "flow_cur"
  4326. valueType: "double"
  4327. minValue: null
  4328. maxValue: null
  4329. syncField: null
  4330. calcFormula: null
  4331. - tag: "正向累计流量"
  4332. protocol: "json"
  4333. measurement: "WaterMeter"
  4334. field: "flow_total_pos"
  4335. valueType: "double"
  4336. minValue: null
  4337. maxValue: null
  4338. syncField: null
  4339. calcFormula: null
  4340. - tag: "反向累计流量"
  4341. protocol: "json"
  4342. measurement: "WaterMeter"
  4343. field: "flow_total_rev"
  4344. valueType: "double"
  4345. minValue: null
  4346. maxValue: null
  4347. syncField: null
  4348. calcFormula: null
  4349. - tag: "压力"
  4350. protocol: "json"
  4351. measurement: "WaterMeter"
  4352. field: "press_cur"
  4353. valueType: "double"
  4354. minValue: null
  4355. maxValue: null
  4356. syncField: null
  4357. calcFormula: null
  4358. - deviceId: "710022511060100"
  4359. deviceName: "247#新华路与中兴大道交汇处中国石油对面"
  4360. deviceSn: "SB00000037"
  4361. deviceKind: "flow"
  4362. platform: "zaoyang-iot"
  4363. mfrs: "上海锐铼"
  4364. createTime: "2025-11-06 17:45:44"
  4365. tags:
  4366. - tag: "瞬时流量"
  4367. protocol: "json"
  4368. measurement: "WaterMeter"
  4369. field: "flow_cur"
  4370. valueType: "double"
  4371. minValue: null
  4372. maxValue: null
  4373. syncField: null
  4374. calcFormula: null
  4375. - tag: "正向累计流量"
  4376. protocol: "json"
  4377. measurement: "WaterMeter"
  4378. field: "flow_total_pos"
  4379. valueType: "double"
  4380. minValue: null
  4381. maxValue: null
  4382. syncField: null
  4383. calcFormula: null
  4384. - tag: "反向累计流量"
  4385. protocol: "json"
  4386. measurement: "WaterMeter"
  4387. field: "flow_total_rev"
  4388. valueType: "double"
  4389. minValue: null
  4390. maxValue: null
  4391. syncField: null
  4392. calcFormula: null
  4393. - tag: "压力"
  4394. protocol: "json"
  4395. measurement: "WaterMeter"
  4396. field: "press_cur"
  4397. valueType: "double"
  4398. minValue: null
  4399. maxValue: null
  4400. syncField: null
  4401. calcFormula: null
  4402. - deviceId: "710022511060101"
  4403. deviceName: "8#民族西路金阳大酒店对面"
  4404. deviceSn: "SB00000036"
  4405. deviceKind: "flow"
  4406. platform: "zaoyang-iot"
  4407. mfrs: "上海锐铼"
  4408. createTime: "2025-11-06 17:45:44"
  4409. tags:
  4410. - tag: "瞬时流量"
  4411. protocol: "json"
  4412. measurement: "WaterMeter"
  4413. field: "flow_cur"
  4414. valueType: "double"
  4415. minValue: null
  4416. maxValue: null
  4417. syncField: null
  4418. calcFormula: null
  4419. - tag: "正向累计流量"
  4420. protocol: "json"
  4421. measurement: "WaterMeter"
  4422. field: "flow_total_pos"
  4423. valueType: "double"
  4424. minValue: null
  4425. maxValue: null
  4426. syncField: null
  4427. calcFormula: null
  4428. - tag: "反向累计流量"
  4429. protocol: "json"
  4430. measurement: "WaterMeter"
  4431. field: "flow_total_rev"
  4432. valueType: "double"
  4433. minValue: null
  4434. maxValue: null
  4435. syncField: null
  4436. calcFormula: null
  4437. - tag: "压力"
  4438. protocol: "json"
  4439. measurement: "WaterMeter"
  4440. field: "press_cur"
  4441. valueType: "double"
  4442. minValue: null
  4443. maxValue: null
  4444. syncField: null
  4445. calcFormula: null
  4446. - deviceId: "710022511060102"
  4447. deviceName: "109#襄阳路兴中棉纺门口"
  4448. deviceSn: "SB00000035"
  4449. deviceKind: "flow"
  4450. platform: "zaoyang-iot"
  4451. mfrs: "上海锐铼"
  4452. createTime: "2025-11-06 17:45:44"
  4453. tags:
  4454. - tag: "瞬时流量"
  4455. protocol: "json"
  4456. measurement: "WaterMeter"
  4457. field: "flow_cur"
  4458. valueType: "double"
  4459. minValue: null
  4460. maxValue: null
  4461. syncField: null
  4462. calcFormula: null
  4463. - tag: "正向累计流量"
  4464. protocol: "json"
  4465. measurement: "WaterMeter"
  4466. field: "flow_total_pos"
  4467. valueType: "double"
  4468. minValue: null
  4469. maxValue: null
  4470. syncField: null
  4471. calcFormula: null
  4472. - tag: "反向累计流量"
  4473. protocol: "json"
  4474. measurement: "WaterMeter"
  4475. field: "flow_total_rev"
  4476. valueType: "double"
  4477. minValue: null
  4478. maxValue: null
  4479. syncField: null
  4480. calcFormula: null
  4481. - tag: "压力"
  4482. protocol: "json"
  4483. measurement: "WaterMeter"
  4484. field: "press_cur"
  4485. valueType: "double"
  4486. minValue: null
  4487. maxValue: null
  4488. syncField: null
  4489. calcFormula: null
  4490. - deviceId: "710022511060103"
  4491. deviceName: "57#前进路与西环四路交汇处路南"
  4492. deviceSn: "SB00000034"
  4493. deviceKind: "flow"
  4494. platform: "zaoyang-iot"
  4495. mfrs: "上海锐铼"
  4496. createTime: "2025-11-06 17:45:44"
  4497. tags:
  4498. - tag: "瞬时流量"
  4499. protocol: "json"
  4500. measurement: "WaterMeter"
  4501. field: "flow_cur"
  4502. valueType: "double"
  4503. minValue: null
  4504. maxValue: null
  4505. syncField: null
  4506. calcFormula: null
  4507. - tag: "正向累计流量"
  4508. protocol: "json"
  4509. measurement: "WaterMeter"
  4510. field: "flow_total_pos"
  4511. valueType: "double"
  4512. minValue: null
  4513. maxValue: null
  4514. syncField: null
  4515. calcFormula: null
  4516. - tag: "反向累计流量"
  4517. protocol: "json"
  4518. measurement: "WaterMeter"
  4519. field: "flow_total_rev"
  4520. valueType: "double"
  4521. minValue: null
  4522. maxValue: null
  4523. syncField: null
  4524. calcFormula: null
  4525. - tag: "压力"
  4526. protocol: "json"
  4527. measurement: "WaterMeter"
  4528. field: "press_cur"
  4529. valueType: "double"
  4530. minValue: null
  4531. maxValue: null
  4532. syncField: null
  4533. calcFormula: null
  4534. - deviceId: "710022511060104"
  4535. deviceName: "2#神驰路与316老国道交汇处东侧路口向北150米 茶棚安置小区门口"
  4536. deviceSn: "SB00000039"
  4537. deviceKind: "flow"
  4538. platform: "zaoyang-iot"
  4539. mfrs: "上海锐铼"
  4540. createTime: "2025-11-06 17:45:44"
  4541. tags:
  4542. - tag: "瞬时流量"
  4543. protocol: "json"
  4544. measurement: "WaterMeter"
  4545. field: "flow_cur"
  4546. valueType: "double"
  4547. minValue: null
  4548. maxValue: null
  4549. syncField: null
  4550. calcFormula: null
  4551. - tag: "正向累计流量"
  4552. protocol: "json"
  4553. measurement: "WaterMeter"
  4554. field: "flow_total_pos"
  4555. valueType: "double"
  4556. minValue: null
  4557. maxValue: null
  4558. syncField: null
  4559. calcFormula: null
  4560. - tag: "反向累计流量"
  4561. protocol: "json"
  4562. measurement: "WaterMeter"
  4563. field: "flow_total_rev"
  4564. valueType: "double"
  4565. minValue: null
  4566. maxValue: null
  4567. syncField: null
  4568. calcFormula: null
  4569. - tag: "压力"
  4570. protocol: "json"
  4571. measurement: "WaterMeter"
  4572. field: "press_cur"
  4573. valueType: "double"
  4574. minValue: null
  4575. maxValue: null
  4576. syncField: null
  4577. calcFormula: null
  4578. - deviceId: "710022511060105"
  4579. deviceName: "40#新华路建材大市厂西路口"
  4580. deviceSn: "SB00000038"
  4581. deviceKind: "flow"
  4582. platform: "zaoyang-iot"
  4583. mfrs: "上海锐铼"
  4584. createTime: "2025-11-06 17:45:44"
  4585. tags:
  4586. - tag: "瞬时流量"
  4587. protocol: "json"
  4588. measurement: "WaterMeter"
  4589. field: "flow_cur"
  4590. valueType: "double"
  4591. minValue: null
  4592. maxValue: null
  4593. syncField: null
  4594. calcFormula: null
  4595. - tag: "正向累计流量"
  4596. protocol: "json"
  4597. measurement: "WaterMeter"
  4598. field: "flow_total_pos"
  4599. valueType: "double"
  4600. minValue: null
  4601. maxValue: null
  4602. syncField: null
  4603. calcFormula: null
  4604. - tag: "反向累计流量"
  4605. protocol: "json"
  4606. measurement: "WaterMeter"
  4607. field: "flow_total_rev"
  4608. valueType: "double"
  4609. minValue: null
  4610. maxValue: null
  4611. syncField: null
  4612. calcFormula: null
  4613. - tag: "压力"
  4614. protocol: "json"
  4615. measurement: "WaterMeter"
  4616. field: "press_cur"
  4617. valueType: "double"
  4618. minValue: null
  4619. maxValue: null
  4620. syncField: null
  4621. calcFormula: null
  4622. - deviceId: "710022511060106"
  4623. deviceName: "39#新华路与兴阳路交汇处"
  4624. deviceSn: "SB00000033"
  4625. deviceKind: "flow"
  4626. platform: "zaoyang-iot"
  4627. mfrs: "上海锐铼"
  4628. createTime: "2025-11-06 17:45:44"
  4629. tags:
  4630. - tag: "瞬时流量"
  4631. protocol: "json"
  4632. measurement: "WaterMeter"
  4633. field: "flow_cur"
  4634. valueType: "double"
  4635. minValue: null
  4636. maxValue: null
  4637. syncField: null
  4638. calcFormula: null
  4639. - tag: "正向累计流量"
  4640. protocol: "json"
  4641. measurement: "WaterMeter"
  4642. field: "flow_total_pos"
  4643. valueType: "double"
  4644. minValue: null
  4645. maxValue: null
  4646. syncField: null
  4647. calcFormula: null
  4648. - tag: "反向累计流量"
  4649. protocol: "json"
  4650. measurement: "WaterMeter"
  4651. field: "flow_total_rev"
  4652. valueType: "double"
  4653. minValue: null
  4654. maxValue: null
  4655. syncField: null
  4656. calcFormula: null
  4657. - tag: "压力"
  4658. protocol: "json"
  4659. measurement: "WaterMeter"
  4660. field: "press_cur"
  4661. valueType: "double"
  4662. minValue: null
  4663. maxValue: null
  4664. syncField: null
  4665. calcFormula: null
  4666. - deviceId: "710022511060107"
  4667. deviceName: "9#民族西路骨科医院对面"
  4668. deviceSn: "SB00000032"
  4669. deviceKind: "flow"
  4670. platform: "zaoyang-iot"
  4671. mfrs: "上海锐铼"
  4672. createTime: "2025-11-06 17:45:44"
  4673. tags:
  4674. - tag: "瞬时流量"
  4675. protocol: "json"
  4676. measurement: "WaterMeter"
  4677. field: "flow_cur"
  4678. valueType: "double"
  4679. minValue: null
  4680. maxValue: null
  4681. syncField: null
  4682. calcFormula: null
  4683. - tag: "正向累计流量"
  4684. protocol: "json"
  4685. measurement: "WaterMeter"
  4686. field: "flow_total_pos"
  4687. valueType: "double"
  4688. minValue: null
  4689. maxValue: null
  4690. syncField: null
  4691. calcFormula: null
  4692. - tag: "反向累计流量"
  4693. protocol: "json"
  4694. measurement: "WaterMeter"
  4695. field: "flow_total_rev"
  4696. valueType: "double"
  4697. minValue: null
  4698. maxValue: null
  4699. syncField: null
  4700. calcFormula: null
  4701. - tag: "压力"
  4702. protocol: "json"
  4703. measurement: "WaterMeter"
  4704. field: "press_cur"
  4705. valueType: "double"
  4706. minValue: null
  4707. maxValue: null
  4708. syncField: null
  4709. calcFormula: null
  4710. - deviceId: "710022511060108"
  4711. deviceName: "Z1民族北路便民市场路口"
  4712. deviceSn: "SB00000031"
  4713. deviceKind: "flow"
  4714. platform: "zaoyang-iot"
  4715. mfrs: "上海锐铼"
  4716. createTime: "2025-11-06 17:45:44"
  4717. tags:
  4718. - tag: "瞬时流量"
  4719. protocol: "json"
  4720. measurement: "WaterMeter"
  4721. field: "flow_cur"
  4722. valueType: "double"
  4723. minValue: null
  4724. maxValue: null
  4725. syncField: null
  4726. calcFormula: null
  4727. - tag: "正向累计流量"
  4728. protocol: "json"
  4729. measurement: "WaterMeter"
  4730. field: "flow_total_pos"
  4731. valueType: "double"
  4732. minValue: null
  4733. maxValue: null
  4734. syncField: null
  4735. calcFormula: null
  4736. - tag: "反向累计流量"
  4737. protocol: "json"
  4738. measurement: "WaterMeter"
  4739. field: "flow_total_rev"
  4740. valueType: "double"
  4741. minValue: null
  4742. maxValue: null
  4743. syncField: null
  4744. calcFormula: null
  4745. - tag: "压力"
  4746. protocol: "json"
  4747. measurement: "WaterMeter"
  4748. field: "press_cur"
  4749. valueType: "double"
  4750. minValue: null
  4751. maxValue: null
  4752. syncField: null
  4753. calcFormula: null
  4754. - deviceId: "710022511060109"
  4755. deviceName: "58#前进路开发区医院西侧"
  4756. deviceSn: "SB00000030"
  4757. deviceKind: "flow"
  4758. platform: "zaoyang-iot"
  4759. mfrs: "上海锐铼"
  4760. createTime: "2025-11-06 17:45:45"
  4761. tags:
  4762. - tag: "瞬时流量"
  4763. protocol: "json"
  4764. measurement: "WaterMeter"
  4765. field: "flow_cur"
  4766. valueType: "double"
  4767. minValue: null
  4768. maxValue: null
  4769. syncField: null
  4770. calcFormula: null
  4771. - tag: "正向累计流量"
  4772. protocol: "json"
  4773. measurement: "WaterMeter"
  4774. field: "flow_total_pos"
  4775. valueType: "double"
  4776. minValue: null
  4777. maxValue: null
  4778. syncField: null
  4779. calcFormula: null
  4780. - tag: "反向累计流量"
  4781. protocol: "json"
  4782. measurement: "WaterMeter"
  4783. field: "flow_total_rev"
  4784. valueType: "double"
  4785. minValue: null
  4786. maxValue: null
  4787. syncField: null
  4788. calcFormula: null
  4789. - tag: "压力"
  4790. protocol: "json"
  4791. measurement: "WaterMeter"
  4792. field: "press_cur"
  4793. valueType: "double"
  4794. minValue: null
  4795. maxValue: null
  4796. syncField: null
  4797. calcFormula: null
  4798. - deviceId: "710022511060110"
  4799. deviceName: "106#襄阳路金兰巷南路口"
  4800. deviceSn: "SB00000026"
  4801. deviceKind: "flow"
  4802. platform: "zaoyang-iot"
  4803. mfrs: "上海锐铼"
  4804. createTime: "2025-11-06 17:45:45"
  4805. tags:
  4806. - tag: "瞬时流量"
  4807. protocol: "json"
  4808. measurement: "WaterMeter"
  4809. field: "flow_cur"
  4810. valueType: "double"
  4811. minValue: null
  4812. maxValue: null
  4813. syncField: null
  4814. calcFormula: null
  4815. - tag: "正向累计流量"
  4816. protocol: "json"
  4817. measurement: "WaterMeter"
  4818. field: "flow_total_pos"
  4819. valueType: "double"
  4820. minValue: null
  4821. maxValue: null
  4822. syncField: null
  4823. calcFormula: null
  4824. - tag: "反向累计流量"
  4825. protocol: "json"
  4826. measurement: "WaterMeter"
  4827. field: "flow_total_rev"
  4828. valueType: "double"
  4829. minValue: null
  4830. maxValue: null
  4831. syncField: null
  4832. calcFormula: null
  4833. - tag: "压力"
  4834. protocol: "json"
  4835. measurement: "WaterMeter"
  4836. field: "press_cur"
  4837. valueType: "double"
  4838. minValue: null
  4839. maxValue: null
  4840. syncField: null
  4841. calcFormula: null
  4842. - deviceId: "710022511060111"
  4843. deviceName: "23#民族路申联购物广场门口"
  4844. deviceSn: "SB00000025"
  4845. deviceKind: "flow"
  4846. platform: "zaoyang-iot"
  4847. mfrs: "上海锐铼"
  4848. createTime: "2025-11-06 17:45:45"
  4849. tags:
  4850. - tag: "瞬时流量"
  4851. protocol: "json"
  4852. measurement: "WaterMeter"
  4853. field: "flow_cur"
  4854. valueType: "double"
  4855. minValue: null
  4856. maxValue: null
  4857. syncField: null
  4858. calcFormula: null
  4859. - tag: "正向累计流量"
  4860. protocol: "json"
  4861. measurement: "WaterMeter"
  4862. field: "flow_total_pos"
  4863. valueType: "double"
  4864. minValue: null
  4865. maxValue: null
  4866. syncField: null
  4867. calcFormula: null
  4868. - tag: "反向累计流量"
  4869. protocol: "json"
  4870. measurement: "WaterMeter"
  4871. field: "flow_total_rev"
  4872. valueType: "double"
  4873. minValue: null
  4874. maxValue: null
  4875. syncField: null
  4876. calcFormula: null
  4877. - tag: "压力"
  4878. protocol: "json"
  4879. measurement: "WaterMeter"
  4880. field: "press_cur"
  4881. valueType: "double"
  4882. minValue: null
  4883. maxValue: null
  4884. syncField: null
  4885. calcFormula: null
  4886. - deviceId: "710022511060112"
  4887. deviceName: "Z2民族路师范高中公交站"
  4888. deviceSn: "SB00000024"
  4889. deviceKind: "flow"
  4890. platform: "zaoyang-iot"
  4891. mfrs: "上海锐铼"
  4892. createTime: "2025-11-06 17:45:45"
  4893. tags:
  4894. - tag: "瞬时流量"
  4895. protocol: "json"
  4896. measurement: "WaterMeter"
  4897. field: "flow_cur"
  4898. valueType: "double"
  4899. minValue: null
  4900. maxValue: null
  4901. syncField: null
  4902. calcFormula: null
  4903. - tag: "正向累计流量"
  4904. protocol: "json"
  4905. measurement: "WaterMeter"
  4906. field: "flow_total_pos"
  4907. valueType: "double"
  4908. minValue: null
  4909. maxValue: null
  4910. syncField: null
  4911. calcFormula: null
  4912. - tag: "反向累计流量"
  4913. protocol: "json"
  4914. measurement: "WaterMeter"
  4915. field: "flow_total_rev"
  4916. valueType: "double"
  4917. minValue: null
  4918. maxValue: null
  4919. syncField: null
  4920. calcFormula: null
  4921. - tag: "压力"
  4922. protocol: "json"
  4923. measurement: "WaterMeter"
  4924. field: "press_cur"
  4925. valueType: "double"
  4926. minValue: null
  4927. maxValue: null
  4928. syncField: null
  4929. calcFormula: null
  4930. - deviceId: "710022511060113"
  4931. deviceName: "53#南阳路广源小区路口"
  4932. deviceSn: "SB00000023"
  4933. deviceKind: "flow"
  4934. platform: "zaoyang-iot"
  4935. mfrs: "上海锐铼"
  4936. createTime: "2025-11-06 17:45:45"
  4937. tags:
  4938. - tag: "瞬时流量"
  4939. protocol: "json"
  4940. measurement: "WaterMeter"
  4941. field: "flow_cur"
  4942. valueType: "double"
  4943. minValue: null
  4944. maxValue: null
  4945. syncField: null
  4946. calcFormula: null
  4947. - tag: "正向累计流量"
  4948. protocol: "json"
  4949. measurement: "WaterMeter"
  4950. field: "flow_total_pos"
  4951. valueType: "double"
  4952. minValue: null
  4953. maxValue: null
  4954. syncField: null
  4955. calcFormula: null
  4956. - tag: "反向累计流量"
  4957. protocol: "json"
  4958. measurement: "WaterMeter"
  4959. field: "flow_total_rev"
  4960. valueType: "double"
  4961. minValue: null
  4962. maxValue: null
  4963. syncField: null
  4964. calcFormula: null
  4965. - tag: "压力"
  4966. protocol: "json"
  4967. measurement: "WaterMeter"
  4968. field: "press_cur"
  4969. valueType: "double"
  4970. minValue: null
  4971. maxValue: null
  4972. syncField: null
  4973. calcFormula: null
  4974. - deviceId: "710022511060114"
  4975. deviceName: "48#新华路三中操场对面健康巷路口"
  4976. deviceSn: "SB00000029"
  4977. deviceKind: "flow"
  4978. platform: "zaoyang-iot"
  4979. mfrs: "上海锐铼"
  4980. createTime: "2025-11-06 17:45:45"
  4981. tags:
  4982. - tag: "瞬时流量"
  4983. protocol: "json"
  4984. measurement: "WaterMeter"
  4985. field: "flow_cur"
  4986. valueType: "double"
  4987. minValue: null
  4988. maxValue: null
  4989. syncField: null
  4990. calcFormula: null
  4991. - tag: "正向累计流量"
  4992. protocol: "json"
  4993. measurement: "WaterMeter"
  4994. field: "flow_total_pos"
  4995. valueType: "double"
  4996. minValue: null
  4997. maxValue: null
  4998. syncField: null
  4999. calcFormula: null
  5000. - tag: "反向累计流量"
  5001. protocol: "json"
  5002. measurement: "WaterMeter"
  5003. field: "flow_total_rev"
  5004. valueType: "double"
  5005. minValue: null
  5006. maxValue: null
  5007. syncField: null
  5008. calcFormula: null
  5009. - tag: "压力"
  5010. protocol: "json"
  5011. measurement: "WaterMeter"
  5012. field: "press_cur"
  5013. valueType: "double"
  5014. minValue: null
  5015. maxValue: null
  5016. syncField: null
  5017. calcFormula: null
  5018. - deviceId: "710022511060115"
  5019. deviceName: "253#发展大道张湾一组路口"
  5020. deviceSn: "SB00000027"
  5021. deviceKind: "flow"
  5022. platform: "zaoyang-iot"
  5023. mfrs: "上海锐铼"
  5024. createTime: "2025-11-06 17:45:45"
  5025. tags:
  5026. - tag: "瞬时流量"
  5027. protocol: "json"
  5028. measurement: "WaterMeter"
  5029. field: "flow_cur"
  5030. valueType: "double"
  5031. minValue: null
  5032. maxValue: null
  5033. syncField: null
  5034. calcFormula: null
  5035. - tag: "正向累计流量"
  5036. protocol: "json"
  5037. measurement: "WaterMeter"
  5038. field: "flow_total_pos"
  5039. valueType: "double"
  5040. minValue: null
  5041. maxValue: null
  5042. syncField: null
  5043. calcFormula: null
  5044. - tag: "反向累计流量"
  5045. protocol: "json"
  5046. measurement: "WaterMeter"
  5047. field: "flow_total_rev"
  5048. valueType: "double"
  5049. minValue: null
  5050. maxValue: null
  5051. syncField: null
  5052. calcFormula: null
  5053. - tag: "压力"
  5054. protocol: "json"
  5055. measurement: "WaterMeter"
  5056. field: "press_cur"
  5057. valueType: "double"
  5058. minValue: null
  5059. maxValue: null
  5060. syncField: null
  5061. calcFormula: null
  5062. - deviceId: "710022511060116"
  5063. deviceName: "14#北关街北入口(民族路与北关街交汇处)"
  5064. deviceSn: "SB00000022"
  5065. deviceKind: "flow"
  5066. platform: "zaoyang-iot"
  5067. mfrs: "上海锐铼"
  5068. createTime: "2025-11-06 17:45:45"
  5069. tags:
  5070. - tag: "瞬时流量"
  5071. protocol: "json"
  5072. measurement: "WaterMeter"
  5073. field: "flow_cur"
  5074. valueType: "double"
  5075. minValue: null
  5076. maxValue: null
  5077. syncField: null
  5078. calcFormula: null
  5079. - tag: "正向累计流量"
  5080. protocol: "json"
  5081. measurement: "WaterMeter"
  5082. field: "flow_total_pos"
  5083. valueType: "double"
  5084. minValue: null
  5085. maxValue: null
  5086. syncField: null
  5087. calcFormula: null
  5088. - tag: "反向累计流量"
  5089. protocol: "json"
  5090. measurement: "WaterMeter"
  5091. field: "flow_total_rev"
  5092. valueType: "double"
  5093. minValue: null
  5094. maxValue: null
  5095. syncField: null
  5096. calcFormula: null
  5097. - tag: "压力"
  5098. protocol: "json"
  5099. measurement: "WaterMeter"
  5100. field: "press_cur"
  5101. valueType: "double"
  5102. minValue: null
  5103. maxValue: null
  5104. syncField: null
  5105. calcFormula: null
  5106. - deviceId: "710022511060117"
  5107. deviceName: "299#史岗四组西庄路口"
  5108. deviceSn: "SB00000021"
  5109. deviceKind: "flow"
  5110. platform: "zaoyang-iot"
  5111. mfrs: "上海锐铼"
  5112. createTime: "2025-11-06 17:45:45"
  5113. tags:
  5114. - tag: "瞬时流量"
  5115. protocol: "json"
  5116. measurement: "WaterMeter"
  5117. field: "flow_cur"
  5118. valueType: "double"
  5119. minValue: null
  5120. maxValue: null
  5121. syncField: null
  5122. calcFormula: null
  5123. - tag: "正向累计流量"
  5124. protocol: "json"
  5125. measurement: "WaterMeter"
  5126. field: "flow_total_pos"
  5127. valueType: "double"
  5128. minValue: null
  5129. maxValue: null
  5130. syncField: null
  5131. calcFormula: null
  5132. - tag: "反向累计流量"
  5133. protocol: "json"
  5134. measurement: "WaterMeter"
  5135. field: "flow_total_rev"
  5136. valueType: "double"
  5137. minValue: null
  5138. maxValue: null
  5139. syncField: null
  5140. calcFormula: null
  5141. - tag: "压力"
  5142. protocol: "json"
  5143. measurement: "WaterMeter"
  5144. field: "press_cur"
  5145. valueType: "double"
  5146. minValue: null
  5147. maxValue: null
  5148. syncField: null
  5149. calcFormula: null
  5150. - deviceId: "710022511060118"
  5151. deviceName: "148#襄阳东路侯集一组路口西"
  5152. deviceSn: "SB00000020"
  5153. deviceKind: "flow"
  5154. platform: "zaoyang-iot"
  5155. mfrs: "上海锐铼"
  5156. createTime: "2025-11-06 17:45:45"
  5157. tags:
  5158. - tag: "瞬时流量"
  5159. protocol: "json"
  5160. measurement: "WaterMeter"
  5161. field: "flow_cur"
  5162. valueType: "double"
  5163. minValue: null
  5164. maxValue: null
  5165. syncField: null
  5166. calcFormula: null
  5167. - tag: "正向累计流量"
  5168. protocol: "json"
  5169. measurement: "WaterMeter"
  5170. field: "flow_total_pos"
  5171. valueType: "double"
  5172. minValue: null
  5173. maxValue: null
  5174. syncField: null
  5175. calcFormula: null
  5176. - tag: "反向累计流量"
  5177. protocol: "json"
  5178. measurement: "WaterMeter"
  5179. field: "flow_total_rev"
  5180. valueType: "double"
  5181. minValue: null
  5182. maxValue: null
  5183. syncField: null
  5184. calcFormula: null
  5185. - tag: "压力"
  5186. protocol: "json"
  5187. measurement: "WaterMeter"
  5188. field: "press_cur"
  5189. valueType: "double"
  5190. minValue: null
  5191. maxValue: null
  5192. syncField: null
  5193. calcFormula: null
  5194. - deviceId: "710012511140001"
  5195. deviceName: "1803200293"
  5196. deviceSn: "SB00000157"
  5197. deviceKind: "flow_press"
  5198. platform: "zaoyang-iot"
  5199. mfrs: "上海锐铼"
  5200. createTime: "2025-11-14 10:03:44"
  5201. tags:
  5202. - tag: "瞬时流量"
  5203. protocol: "json"
  5204. measurement: "WaterMeter"
  5205. field: "flow_cur"
  5206. valueType: "double"
  5207. minValue: null
  5208. maxValue: null
  5209. syncField: null
  5210. calcFormula: null
  5211. - tag: "正向累计流量"
  5212. protocol: "json"
  5213. measurement: "WaterMeter"
  5214. field: "flow_total_pos"
  5215. valueType: "double"
  5216. minValue: null
  5217. maxValue: null
  5218. syncField: null
  5219. calcFormula: null
  5220. - tag: "反向累计流量"
  5221. protocol: "json"
  5222. measurement: "WaterMeter"
  5223. field: "flow_total_rev"
  5224. valueType: "double"
  5225. minValue: null
  5226. maxValue: null
  5227. syncField: null
  5228. calcFormula: null
  5229. - tag: "压力"
  5230. protocol: "json"
  5231. measurement: "WaterMeter"
  5232. field: "press_cur"
  5233. valueType: "double"
  5234. minValue: null
  5235. maxValue: null
  5236. syncField: null
  5237. calcFormula: null
  5238. - deviceId: "710012511140002"
  5239. deviceName: "1803200292"
  5240. deviceSn: "SB00000156"
  5241. deviceKind: "flow_press"
  5242. platform: "zaoyang-iot"
  5243. mfrs: "上海锐铼"
  5244. createTime: "2025-11-14 10:03:44"
  5245. tags:
  5246. - tag: "瞬时流量"
  5247. protocol: "json"
  5248. measurement: "WaterMeter"
  5249. field: "flow_cur"
  5250. valueType: "double"
  5251. minValue: null
  5252. maxValue: null
  5253. syncField: null
  5254. calcFormula: null
  5255. - tag: "正向累计流量"
  5256. protocol: "json"
  5257. measurement: "WaterMeter"
  5258. field: "flow_total_pos"
  5259. valueType: "double"
  5260. minValue: null
  5261. maxValue: null
  5262. syncField: null
  5263. calcFormula: null
  5264. - tag: "反向累计流量"
  5265. protocol: "json"
  5266. measurement: "WaterMeter"
  5267. field: "flow_total_rev"
  5268. valueType: "double"
  5269. minValue: null
  5270. maxValue: null
  5271. syncField: null
  5272. calcFormula: null
  5273. - tag: "压力"
  5274. protocol: "json"
  5275. measurement: "WaterMeter"
  5276. field: "press_cur"
  5277. valueType: "double"
  5278. minValue: null
  5279. maxValue: null
  5280. syncField: null
  5281. calcFormula: null
  5282. - deviceId: "710012511140003"
  5283. deviceName: "Z6西环二路小瑞刀削面门口"
  5284. deviceSn: "SB00000199"
  5285. deviceKind: "flow_press"
  5286. platform: "zaoyang-iot"
  5287. mfrs: "上海锐铼"
  5288. createTime: "2025-11-14 10:03:44"
  5289. tags:
  5290. - tag: "瞬时流量"
  5291. protocol: "json"
  5292. measurement: "WaterMeter"
  5293. field: "flow_cur"
  5294. valueType: "double"
  5295. minValue: null
  5296. maxValue: null
  5297. syncField: null
  5298. calcFormula: null
  5299. - tag: "正向累计流量"
  5300. protocol: "json"
  5301. measurement: "WaterMeter"
  5302. field: "flow_total_pos"
  5303. valueType: "double"
  5304. minValue: null
  5305. maxValue: null
  5306. syncField: null
  5307. calcFormula: null
  5308. - tag: "反向累计流量"
  5309. protocol: "json"
  5310. measurement: "WaterMeter"
  5311. field: "flow_total_rev"
  5312. valueType: "double"
  5313. minValue: null
  5314. maxValue: null
  5315. syncField: null
  5316. calcFormula: null
  5317. - tag: "压力"
  5318. protocol: "json"
  5319. measurement: "WaterMeter"
  5320. field: "press_cur"
  5321. valueType: "double"
  5322. minValue: null
  5323. maxValue: null
  5324. syncField: null
  5325. calcFormula: null
  5326. - deviceId: "710012511140004"
  5327. deviceName: "1807207007"
  5328. deviceSn: "SB00000139"
  5329. deviceKind: "flow_press"
  5330. platform: "zaoyang-iot"
  5331. mfrs: "上海锐铼"
  5332. createTime: "2025-11-14 10:03:44"
  5333. tags:
  5334. - tag: "瞬时流量"
  5335. protocol: "json"
  5336. measurement: "WaterMeter"
  5337. field: "flow_cur"
  5338. valueType: "double"
  5339. minValue: null
  5340. maxValue: null
  5341. syncField: null
  5342. calcFormula: null
  5343. - tag: "正向累计流量"
  5344. protocol: "json"
  5345. measurement: "WaterMeter"
  5346. field: "flow_total_pos"
  5347. valueType: "double"
  5348. minValue: null
  5349. maxValue: null
  5350. syncField: null
  5351. calcFormula: null
  5352. - tag: "反向累计流量"
  5353. protocol: "json"
  5354. measurement: "WaterMeter"
  5355. field: "flow_total_rev"
  5356. valueType: "double"
  5357. minValue: null
  5358. maxValue: null
  5359. syncField: null
  5360. calcFormula: null
  5361. - tag: "压力"
  5362. protocol: "json"
  5363. measurement: "WaterMeter"
  5364. field: "press_cur"
  5365. valueType: "double"
  5366. minValue: null
  5367. maxValue: null
  5368. syncField: null
  5369. calcFormula: null
  5370. - deviceId: "710012511140005"
  5371. deviceName: "141#书院街富民路路口"
  5372. deviceSn: "SB00000193"
  5373. deviceKind: "flow_press"
  5374. platform: "zaoyang-iot"
  5375. mfrs: "上海锐铼"
  5376. createTime: "2025-11-14 10:03:44"
  5377. tags:
  5378. - tag: "瞬时流量"
  5379. protocol: "json"
  5380. measurement: "WaterMeter"
  5381. field: "flow_cur"
  5382. valueType: "double"
  5383. minValue: null
  5384. maxValue: null
  5385. syncField: null
  5386. calcFormula: null
  5387. - tag: "正向累计流量"
  5388. protocol: "json"
  5389. measurement: "WaterMeter"
  5390. field: "flow_total_pos"
  5391. valueType: "double"
  5392. minValue: null
  5393. maxValue: null
  5394. syncField: null
  5395. calcFormula: null
  5396. - tag: "反向累计流量"
  5397. protocol: "json"
  5398. measurement: "WaterMeter"
  5399. field: "flow_total_rev"
  5400. valueType: "double"
  5401. minValue: null
  5402. maxValue: null
  5403. syncField: null
  5404. calcFormula: null
  5405. - tag: "压力"
  5406. protocol: "json"
  5407. measurement: "WaterMeter"
  5408. field: "press_cur"
  5409. valueType: "double"
  5410. minValue: null
  5411. maxValue: null
  5412. syncField: null
  5413. calcFormula: null
  5414. - deviceId: "710012511140006"
  5415. deviceName: "98#襄阳路与新华路交汇处岗亭南侧"
  5416. deviceSn: "SB00000192"
  5417. deviceKind: "flow_press"
  5418. platform: "zaoyang-iot"
  5419. mfrs: "上海锐铼"
  5420. createTime: "2025-11-14 10:03:44"
  5421. tags:
  5422. - tag: "瞬时流量"
  5423. protocol: "json"
  5424. measurement: "WaterMeter"
  5425. field: "flow_cur"
  5426. valueType: "double"
  5427. minValue: null
  5428. maxValue: null
  5429. syncField: null
  5430. calcFormula: null
  5431. - tag: "正向累计流量"
  5432. protocol: "json"
  5433. measurement: "WaterMeter"
  5434. field: "flow_total_pos"
  5435. valueType: "double"
  5436. minValue: null
  5437. maxValue: null
  5438. syncField: null
  5439. calcFormula: null
  5440. - tag: "反向累计流量"
  5441. protocol: "json"
  5442. measurement: "WaterMeter"
  5443. field: "flow_total_rev"
  5444. valueType: "double"
  5445. minValue: null
  5446. maxValue: null
  5447. syncField: null
  5448. calcFormula: null
  5449. - tag: "压力"
  5450. protocol: "json"
  5451. measurement: "WaterMeter"
  5452. field: "press_cur"
  5453. valueType: "double"
  5454. minValue: null
  5455. maxValue: null
  5456. syncField: null
  5457. calcFormula: null
  5458. - deviceId: "710012511140007"
  5459. deviceName: "97#襄阳路财富广场门口"
  5460. deviceSn: "SB00000191"
  5461. deviceKind: "flow_press"
  5462. platform: "zaoyang-iot"
  5463. mfrs: "上海锐铼"
  5464. createTime: "2025-11-14 10:03:44"
  5465. tags:
  5466. - tag: "瞬时流量"
  5467. protocol: "json"
  5468. measurement: "WaterMeter"
  5469. field: "flow_cur"
  5470. valueType: "double"
  5471. minValue: null
  5472. maxValue: null
  5473. syncField: null
  5474. calcFormula: null
  5475. - tag: "正向累计流量"
  5476. protocol: "json"
  5477. measurement: "WaterMeter"
  5478. field: "flow_total_pos"
  5479. valueType: "double"
  5480. minValue: null
  5481. maxValue: null
  5482. syncField: null
  5483. calcFormula: null
  5484. - tag: "反向累计流量"
  5485. protocol: "json"
  5486. measurement: "WaterMeter"
  5487. field: "flow_total_rev"
  5488. valueType: "double"
  5489. minValue: null
  5490. maxValue: null
  5491. syncField: null
  5492. calcFormula: null
  5493. - tag: "压力"
  5494. protocol: "json"
  5495. measurement: "WaterMeter"
  5496. field: "press_cur"
  5497. valueType: "double"
  5498. minValue: null
  5499. maxValue: null
  5500. syncField: null
  5501. calcFormula: null
  5502. - deviceId: "710012511140008"
  5503. deviceName: "1723745"
  5504. deviceSn: "SB00000132"
  5505. deviceKind: "flow_press"
  5506. platform: "zaoyang-iot"
  5507. mfrs: "上海锐铼"
  5508. createTime: "2025-11-14 10:03:44"
  5509. tags:
  5510. - tag: "瞬时流量"
  5511. protocol: "json"
  5512. measurement: "WaterMeter"
  5513. field: "flow_cur"
  5514. valueType: "double"
  5515. minValue: null
  5516. maxValue: null
  5517. syncField: null
  5518. calcFormula: null
  5519. - tag: "正向累计流量"
  5520. protocol: "json"
  5521. measurement: "WaterMeter"
  5522. field: "flow_total_pos"
  5523. valueType: "double"
  5524. minValue: null
  5525. maxValue: null
  5526. syncField: null
  5527. calcFormula: null
  5528. - tag: "反向累计流量"
  5529. protocol: "json"
  5530. measurement: "WaterMeter"
  5531. field: "flow_total_rev"
  5532. valueType: "double"
  5533. minValue: null
  5534. maxValue: null
  5535. syncField: null
  5536. calcFormula: null
  5537. - tag: "压力"
  5538. protocol: "json"
  5539. measurement: "WaterMeter"
  5540. field: "press_cur"
  5541. valueType: "double"
  5542. minValue: null
  5543. maxValue: null
  5544. syncField: null
  5545. calcFormula: null
  5546. - deviceId: "710012511140009"
  5547. deviceName: "1803200290"
  5548. deviceSn: "SB00000154"
  5549. deviceKind: "flow_press"
  5550. platform: "zaoyang-iot"
  5551. mfrs: "上海锐铼"
  5552. createTime: "2025-11-14 10:03:44"
  5553. tags:
  5554. - tag: "瞬时流量"
  5555. protocol: "json"
  5556. measurement: "WaterMeter"
  5557. field: "flow_cur"
  5558. valueType: "double"
  5559. minValue: null
  5560. maxValue: null
  5561. syncField: null
  5562. calcFormula: null
  5563. - tag: "正向累计流量"
  5564. protocol: "json"
  5565. measurement: "WaterMeter"
  5566. field: "flow_total_pos"
  5567. valueType: "double"
  5568. minValue: null
  5569. maxValue: null
  5570. syncField: null
  5571. calcFormula: null
  5572. - tag: "反向累计流量"
  5573. protocol: "json"
  5574. measurement: "WaterMeter"
  5575. field: "flow_total_rev"
  5576. valueType: "double"
  5577. minValue: null
  5578. maxValue: null
  5579. syncField: null
  5580. calcFormula: null
  5581. - deviceId: "710012511140010"
  5582. deviceName: "1723744"
  5583. deviceSn: "SB00000131"
  5584. deviceKind: "flow_press"
  5585. platform: "zaoyang-iot"
  5586. mfrs: "上海锐铼"
  5587. createTime: "2025-11-14 10:03:44"
  5588. tags:
  5589. - tag: "瞬时流量"
  5590. protocol: "json"
  5591. measurement: "WaterMeter"
  5592. field: "flow_cur"
  5593. valueType: "double"
  5594. minValue: null
  5595. maxValue: null
  5596. syncField: null
  5597. calcFormula: null
  5598. - tag: "正向累计流量"
  5599. protocol: "json"
  5600. measurement: "WaterMeter"
  5601. field: "flow_total_pos"
  5602. valueType: "double"
  5603. minValue: null
  5604. maxValue: null
  5605. syncField: null
  5606. calcFormula: null
  5607. - tag: "反向累计流量"
  5608. protocol: "json"
  5609. measurement: "WaterMeter"
  5610. field: "flow_total_rev"
  5611. valueType: "double"
  5612. minValue: null
  5613. maxValue: null
  5614. syncField: null
  5615. calcFormula: null
  5616. - tag: "压力"
  5617. protocol: "json"
  5618. measurement: "WaterMeter"
  5619. field: "press_cur"
  5620. valueType: "double"
  5621. minValue: null
  5622. maxValue: null
  5623. syncField: null
  5624. calcFormula: null
  5625. - deviceId: "710012511140011"
  5626. deviceName: "Z4西环二路红丽商务宾馆门口"
  5627. deviceSn: "SB00000197"
  5628. deviceKind: "flow_press"
  5629. platform: "zaoyang-iot"
  5630. mfrs: "上海锐铼"
  5631. createTime: "2025-11-14 10:03:44"
  5632. tags:
  5633. - tag: "瞬时流量"
  5634. protocol: "json"
  5635. measurement: "WaterMeter"
  5636. field: "flow_cur"
  5637. valueType: "double"
  5638. minValue: null
  5639. maxValue: null
  5640. syncField: null
  5641. calcFormula: null
  5642. - tag: "正向累计流量"
  5643. protocol: "json"
  5644. measurement: "WaterMeter"
  5645. field: "flow_total_pos"
  5646. valueType: "double"
  5647. minValue: null
  5648. maxValue: null
  5649. syncField: null
  5650. calcFormula: null
  5651. - tag: "反向累计流量"
  5652. protocol: "json"
  5653. measurement: "WaterMeter"
  5654. field: "flow_total_rev"
  5655. valueType: "double"
  5656. minValue: null
  5657. maxValue: null
  5658. syncField: null
  5659. calcFormula: null
  5660. - tag: "压力"
  5661. protocol: "json"
  5662. measurement: "WaterMeter"
  5663. field: "press_cur"
  5664. valueType: "double"
  5665. minValue: null
  5666. maxValue: null
  5667. syncField: null
  5668. calcFormula: null
  5669. - deviceId: "710012511140012"
  5670. deviceName: "1723743"
  5671. deviceSn: "SB00000130"
  5672. deviceKind: "flow_press"
  5673. platform: "zaoyang-iot"
  5674. mfrs: "上海锐铼"
  5675. createTime: "2025-11-14 10:03:44"
  5676. tags:
  5677. - tag: "瞬时流量"
  5678. protocol: "json"
  5679. measurement: "WaterMeter"
  5680. field: "flow_cur"
  5681. valueType: "double"
  5682. minValue: null
  5683. maxValue: null
  5684. syncField: null
  5685. calcFormula: null
  5686. - tag: "正向累计流量"
  5687. protocol: "json"
  5688. measurement: "WaterMeter"
  5689. field: "flow_total_pos"
  5690. valueType: "double"
  5691. minValue: null
  5692. maxValue: null
  5693. syncField: null
  5694. calcFormula: null
  5695. - tag: "反向累计流量"
  5696. protocol: "json"
  5697. measurement: "WaterMeter"
  5698. field: "flow_total_rev"
  5699. valueType: "double"
  5700. minValue: null
  5701. maxValue: null
  5702. syncField: null
  5703. calcFormula: null
  5704. - tag: "压力"
  5705. protocol: "json"
  5706. measurement: "WaterMeter"
  5707. field: "press_cur"
  5708. valueType: "double"
  5709. minValue: null
  5710. maxValue: null
  5711. syncField: null
  5712. calcFormula: null
  5713. - deviceId: "710012511140013"
  5714. deviceName: "Z11西环二路兰亭序酒店院后意和新村小区路口"
  5715. deviceSn: "SB00000196"
  5716. deviceKind: "flow_press"
  5717. platform: "zaoyang-iot"
  5718. mfrs: "上海锐铼"
  5719. createTime: "2025-11-14 10:03:44"
  5720. tags:
  5721. - tag: "瞬时流量"
  5722. protocol: "json"
  5723. measurement: "WaterMeter"
  5724. field: "flow_cur"
  5725. valueType: "double"
  5726. minValue: null
  5727. maxValue: null
  5728. syncField: null
  5729. calcFormula: null
  5730. - tag: "正向累计流量"
  5731. protocol: "json"
  5732. measurement: "WaterMeter"
  5733. field: "flow_total_pos"
  5734. valueType: "double"
  5735. minValue: null
  5736. maxValue: null
  5737. syncField: null
  5738. calcFormula: null
  5739. - tag: "反向累计流量"
  5740. protocol: "json"
  5741. measurement: "WaterMeter"
  5742. field: "flow_total_rev"
  5743. valueType: "double"
  5744. minValue: null
  5745. maxValue: null
  5746. syncField: null
  5747. calcFormula: null
  5748. - tag: "压力"
  5749. protocol: "json"
  5750. measurement: "WaterMeter"
  5751. field: "press_cur"
  5752. valueType: "double"
  5753. minValue: null
  5754. maxValue: null
  5755. syncField: null
  5756. calcFormula: null
  5757. - deviceId: "710012511140014"
  5758. deviceName: "Z10西环二路永宏宾馆门口"
  5759. deviceSn: "SB00000195"
  5760. deviceKind: "flow_press"
  5761. platform: "zaoyang-iot"
  5762. mfrs: "上海锐铼"
  5763. createTime: "2025-11-14 10:03:44"
  5764. tags:
  5765. - tag: "瞬时流量"
  5766. protocol: "json"
  5767. measurement: "WaterMeter"
  5768. field: "flow_cur"
  5769. valueType: "double"
  5770. minValue: null
  5771. maxValue: null
  5772. syncField: null
  5773. calcFormula: null
  5774. - tag: "正向累计流量"
  5775. protocol: "json"
  5776. measurement: "WaterMeter"
  5777. field: "flow_total_pos"
  5778. valueType: "double"
  5779. minValue: null
  5780. maxValue: null
  5781. syncField: null
  5782. calcFormula: null
  5783. - tag: "反向累计流量"
  5784. protocol: "json"
  5785. measurement: "WaterMeter"
  5786. field: "flow_total_rev"
  5787. valueType: "double"
  5788. minValue: null
  5789. maxValue: null
  5790. syncField: null
  5791. calcFormula: null
  5792. - tag: "压力"
  5793. protocol: "json"
  5794. measurement: "WaterMeter"
  5795. field: "press_cur"
  5796. valueType: "double"
  5797. minValue: null
  5798. maxValue: null
  5799. syncField: null
  5800. calcFormula: null
  5801. - deviceId: "710012511140015"
  5802. deviceName: "95#静鸿巷东路口对面"
  5803. deviceSn: "SB00000190"
  5804. deviceKind: "flow_press"
  5805. platform: "zaoyang-iot"
  5806. mfrs: "上海锐铼"
  5807. createTime: "2025-11-14 10:03:44"
  5808. tags:
  5809. - tag: "瞬时流量"
  5810. protocol: "json"
  5811. measurement: "WaterMeter"
  5812. field: "flow_cur"
  5813. valueType: "double"
  5814. minValue: null
  5815. maxValue: null
  5816. syncField: null
  5817. calcFormula: null
  5818. - tag: "正向累计流量"
  5819. protocol: "json"
  5820. measurement: "WaterMeter"
  5821. field: "flow_total_pos"
  5822. valueType: "double"
  5823. minValue: null
  5824. maxValue: null
  5825. syncField: null
  5826. calcFormula: null
  5827. - tag: "反向累计流量"
  5828. protocol: "json"
  5829. measurement: "WaterMeter"
  5830. field: "flow_total_rev"
  5831. valueType: "double"
  5832. minValue: null
  5833. maxValue: null
  5834. syncField: null
  5835. calcFormula: null
  5836. - tag: "压力"
  5837. protocol: "json"
  5838. measurement: "WaterMeter"
  5839. field: "press_cur"
  5840. valueType: "double"
  5841. minValue: null
  5842. maxValue: null
  5843. syncField: null
  5844. calcFormula: null
  5845. - deviceId: "710012511140016"
  5846. deviceName: "1911215504"
  5847. deviceSn: "SB00000147"
  5848. deviceKind: "flow_press"
  5849. platform: "zaoyang-iot"
  5850. mfrs: "上海锐铼"
  5851. createTime: "2025-11-14 10:03:44"
  5852. tags:
  5853. - tag: "瞬时流量"
  5854. protocol: "json"
  5855. measurement: "WaterMeter"
  5856. field: "flow_cur"
  5857. valueType: "double"
  5858. minValue: null
  5859. maxValue: null
  5860. syncField: null
  5861. calcFormula: null
  5862. - tag: "正向累计流量"
  5863. protocol: "json"
  5864. measurement: "WaterMeter"
  5865. field: "flow_total_pos"
  5866. valueType: "double"
  5867. minValue: null
  5868. maxValue: null
  5869. syncField: null
  5870. calcFormula: null
  5871. - tag: "反向累计流量"
  5872. protocol: "json"
  5873. measurement: "WaterMeter"
  5874. field: "flow_total_rev"
  5875. valueType: "double"
  5876. minValue: null
  5877. maxValue: null
  5878. syncField: null
  5879. calcFormula: null
  5880. - tag: "压力"
  5881. protocol: "json"
  5882. measurement: "WaterMeter"
  5883. field: "press_cur"
  5884. valueType: "double"
  5885. minValue: null
  5886. maxValue: null
  5887. syncField: null
  5888. calcFormula: null
  5889. - deviceId: "710012511140017"
  5890. deviceName: "Z8西环二路万豪大酒店门口"
  5891. deviceSn: "SB00000201"
  5892. deviceKind: "flow_press"
  5893. platform: "zaoyang-iot"
  5894. mfrs: "上海锐铼"
  5895. createTime: "2025-11-14 10:03:44"
  5896. tags:
  5897. - tag: "瞬时流量"
  5898. protocol: "json"
  5899. measurement: "WaterMeter"
  5900. field: "flow_cur"
  5901. valueType: "double"
  5902. minValue: null
  5903. maxValue: null
  5904. syncField: null
  5905. calcFormula: null
  5906. - tag: "正向累计流量"
  5907. protocol: "json"
  5908. measurement: "WaterMeter"
  5909. field: "flow_total_pos"
  5910. valueType: "double"
  5911. minValue: null
  5912. maxValue: null
  5913. syncField: null
  5914. calcFormula: null
  5915. - tag: "反向累计流量"
  5916. protocol: "json"
  5917. measurement: "WaterMeter"
  5918. field: "flow_total_rev"
  5919. valueType: "double"
  5920. minValue: null
  5921. maxValue: null
  5922. syncField: null
  5923. calcFormula: null
  5924. - tag: "压力"
  5925. protocol: "json"
  5926. measurement: "WaterMeter"
  5927. field: "press_cur"
  5928. valueType: "double"
  5929. minValue: null
  5930. maxValue: null
  5931. syncField: null
  5932. calcFormula: null
  5933. - deviceId: "710012511140018"
  5934. deviceName: "Z7西环二路银尊足道门口"
  5935. deviceSn: "SB00000200"
  5936. deviceKind: "flow_press"
  5937. platform: "zaoyang-iot"
  5938. mfrs: "上海锐铼"
  5939. createTime: "2025-11-14 10:03:44"
  5940. tags:
  5941. - tag: "瞬时流量"
  5942. protocol: "json"
  5943. measurement: "WaterMeter"
  5944. field: "flow_cur"
  5945. valueType: "double"
  5946. minValue: null
  5947. maxValue: null
  5948. syncField: null
  5949. calcFormula: null
  5950. - tag: "正向累计流量"
  5951. protocol: "json"
  5952. measurement: "WaterMeter"
  5953. field: "flow_total_pos"
  5954. valueType: "double"
  5955. minValue: null
  5956. maxValue: null
  5957. syncField: null
  5958. calcFormula: null
  5959. - tag: "反向累计流量"
  5960. protocol: "json"
  5961. measurement: "WaterMeter"
  5962. field: "flow_total_rev"
  5963. valueType: "double"
  5964. minValue: null
  5965. maxValue: null
  5966. syncField: null
  5967. calcFormula: null
  5968. - tag: "压力"
  5969. protocol: "json"
  5970. measurement: "WaterMeter"
  5971. field: "press_cur"
  5972. valueType: "double"
  5973. minValue: null
  5974. maxValue: null
  5975. syncField: null
  5976. calcFormula: null
  5977. - deviceId: "710012511140019"
  5978. deviceName: "1911215502"
  5979. deviceSn: "SB00000145"
  5980. deviceKind: "flow_press"
  5981. platform: "zaoyang-iot"
  5982. mfrs: "上海锐铼"
  5983. createTime: "2025-11-14 10:03:44"
  5984. tags:
  5985. - tag: "瞬时流量"
  5986. protocol: "json"
  5987. measurement: "WaterMeter"
  5988. field: "flow_cur"
  5989. valueType: "double"
  5990. minValue: null
  5991. maxValue: null
  5992. syncField: null
  5993. calcFormula: null
  5994. - tag: "正向累计流量"
  5995. protocol: "json"
  5996. measurement: "WaterMeter"
  5997. field: "flow_total_pos"
  5998. valueType: "double"
  5999. minValue: null
  6000. maxValue: null
  6001. syncField: null
  6002. calcFormula: null
  6003. - tag: "反向累计流量"
  6004. protocol: "json"
  6005. measurement: "WaterMeter"
  6006. field: "flow_total_rev"
  6007. valueType: "double"
  6008. minValue: null
  6009. maxValue: null
  6010. syncField: null
  6011. calcFormula: null
  6012. - deviceId: "710012511140020"
  6013. deviceName: "1723742"
  6014. deviceSn: "SB00000129"
  6015. deviceKind: "flow_press"
  6016. platform: "zaoyang-iot"
  6017. mfrs: "上海锐铼"
  6018. createTime: "2025-11-14 10:03:44"
  6019. tags:
  6020. - tag: "瞬时流量"
  6021. protocol: "json"
  6022. measurement: "WaterMeter"
  6023. field: "flow_cur"
  6024. valueType: "double"
  6025. minValue: null
  6026. maxValue: null
  6027. syncField: null
  6028. calcFormula: null
  6029. - tag: "正向累计流量"
  6030. protocol: "json"
  6031. measurement: "WaterMeter"
  6032. field: "flow_total_pos"
  6033. valueType: "double"
  6034. minValue: null
  6035. maxValue: null
  6036. syncField: null
  6037. calcFormula: null
  6038. - tag: "反向累计流量"
  6039. protocol: "json"
  6040. measurement: "WaterMeter"
  6041. field: "flow_total_rev"
  6042. valueType: "double"
  6043. minValue: null
  6044. maxValue: null
  6045. syncField: null
  6046. calcFormula: null
  6047. - deviceId: "710012511140021"
  6048. deviceName: "112#西环三路环岛西侧齐亿纺织外"
  6049. deviceSn: "SB00000183"
  6050. deviceKind: "flow_press"
  6051. platform: "zaoyang-iot"
  6052. mfrs: "上海锐铼"
  6053. createTime: "2025-11-14 10:03:44"
  6054. tags:
  6055. - tag: "瞬时流量"
  6056. protocol: "json"
  6057. measurement: "WaterMeter"
  6058. field: "flow_cur"
  6059. valueType: "double"
  6060. minValue: null
  6061. maxValue: null
  6062. syncField: null
  6063. calcFormula: null
  6064. - tag: "正向累计流量"
  6065. protocol: "json"
  6066. measurement: "WaterMeter"
  6067. field: "flow_total_pos"
  6068. valueType: "double"
  6069. minValue: null
  6070. maxValue: null
  6071. syncField: null
  6072. calcFormula: null
  6073. - tag: "反向累计流量"
  6074. protocol: "json"
  6075. measurement: "WaterMeter"
  6076. field: "flow_total_rev"
  6077. valueType: "double"
  6078. minValue: null
  6079. maxValue: null
  6080. syncField: null
  6081. calcFormula: null
  6082. - tag: "压力"
  6083. protocol: "json"
  6084. measurement: "WaterMeter"
  6085. field: "press_cur"
  6086. valueType: "double"
  6087. minValue: null
  6088. maxValue: null
  6089. syncField: null
  6090. calcFormula: null
  6091. - deviceId: "710012511140022"
  6092. deviceName: "113#鲍庄五组路口"
  6093. deviceSn: "SB00000182"
  6094. deviceKind: "flow_press"
  6095. platform: "zaoyang-iot"
  6096. mfrs: "上海锐铼"
  6097. createTime: "2025-11-14 10:03:44"
  6098. tags:
  6099. - tag: "瞬时流量"
  6100. protocol: "json"
  6101. measurement: "WaterMeter"
  6102. field: "flow_cur"
  6103. valueType: "double"
  6104. minValue: null
  6105. maxValue: null
  6106. syncField: null
  6107. calcFormula: null
  6108. - tag: "正向累计流量"
  6109. protocol: "json"
  6110. measurement: "WaterMeter"
  6111. field: "flow_total_pos"
  6112. valueType: "double"
  6113. minValue: null
  6114. maxValue: null
  6115. syncField: null
  6116. calcFormula: null
  6117. - tag: "反向累计流量"
  6118. protocol: "json"
  6119. measurement: "WaterMeter"
  6120. field: "flow_total_rev"
  6121. valueType: "double"
  6122. minValue: null
  6123. maxValue: null
  6124. syncField: null
  6125. calcFormula: null
  6126. - tag: "压力"
  6127. protocol: "json"
  6128. measurement: "WaterMeter"
  6129. field: "press_cur"
  6130. valueType: "double"
  6131. minValue: null
  6132. maxValue: null
  6133. syncField: null
  6134. calcFormula: null
  6135. - deviceId: "710012511140023"
  6136. deviceName: "117#鲍庄十一组路口"
  6137. deviceSn: "SB00000187"
  6138. deviceKind: "flow_press"
  6139. platform: "zaoyang-iot"
  6140. mfrs: "上海锐铼"
  6141. createTime: "2025-11-14 10:03:44"
  6142. tags:
  6143. - tag: "瞬时流量"
  6144. protocol: "json"
  6145. measurement: "WaterMeter"
  6146. field: "flow_cur"
  6147. valueType: "double"
  6148. minValue: null
  6149. maxValue: null
  6150. syncField: null
  6151. calcFormula: null
  6152. - tag: "正向累计流量"
  6153. protocol: "json"
  6154. measurement: "WaterMeter"
  6155. field: "flow_total_pos"
  6156. valueType: "double"
  6157. minValue: null
  6158. maxValue: null
  6159. syncField: null
  6160. calcFormula: null
  6161. - tag: "反向累计流量"
  6162. protocol: "json"
  6163. measurement: "WaterMeter"
  6164. field: "flow_total_rev"
  6165. valueType: "double"
  6166. minValue: null
  6167. maxValue: null
  6168. syncField: null
  6169. calcFormula: null
  6170. - tag: "压力"
  6171. protocol: "json"
  6172. measurement: "WaterMeter"
  6173. field: "press_cur"
  6174. valueType: "double"
  6175. minValue: null
  6176. maxValue: null
  6177. syncField: null
  6178. calcFormula: null
  6179. - deviceId: "710012511140024"
  6180. deviceName: "1901200093"
  6181. deviceSn: "SB00000143"
  6182. deviceKind: "flow_press"
  6183. platform: "zaoyang-iot"
  6184. mfrs: "上海锐铼"
  6185. createTime: "2025-11-14 10:03:44"
  6186. tags:
  6187. - tag: "瞬时流量"
  6188. protocol: "json"
  6189. measurement: "WaterMeter"
  6190. field: "flow_cur"
  6191. valueType: "double"
  6192. minValue: null
  6193. maxValue: null
  6194. syncField: null
  6195. calcFormula: null
  6196. - tag: "正向累计流量"
  6197. protocol: "json"
  6198. measurement: "WaterMeter"
  6199. field: "flow_total_pos"
  6200. valueType: "double"
  6201. minValue: null
  6202. maxValue: null
  6203. syncField: null
  6204. calcFormula: null
  6205. - tag: "反向累计流量"
  6206. protocol: "json"
  6207. measurement: "WaterMeter"
  6208. field: "flow_total_rev"
  6209. valueType: "double"
  6210. minValue: null
  6211. maxValue: null
  6212. syncField: null
  6213. calcFormula: null
  6214. - tag: "压力"
  6215. protocol: "json"
  6216. measurement: "WaterMeter"
  6217. field: "press_cur"
  6218. valueType: "double"
  6219. minValue: null
  6220. maxValue: null
  6221. syncField: null
  6222. calcFormula: null
  6223. - deviceId: "710012511140025"
  6224. deviceName: "115#鲍庄幼儿园还建点给水接驳口"
  6225. deviceSn: "SB00000185"
  6226. deviceKind: "flow_press"
  6227. platform: "zaoyang-iot"
  6228. mfrs: "上海锐铼"
  6229. createTime: "2025-11-14 10:03:44"
  6230. tags:
  6231. - tag: "瞬时流量"
  6232. protocol: "json"
  6233. measurement: "WaterMeter"
  6234. field: "flow_cur"
  6235. valueType: "double"
  6236. minValue: null
  6237. maxValue: null
  6238. syncField: null
  6239. calcFormula: null
  6240. - tag: "正向累计流量"
  6241. protocol: "json"
  6242. measurement: "WaterMeter"
  6243. field: "flow_total_pos"
  6244. valueType: "double"
  6245. minValue: null
  6246. maxValue: null
  6247. syncField: null
  6248. calcFormula: null
  6249. - tag: "反向累计流量"
  6250. protocol: "json"
  6251. measurement: "WaterMeter"
  6252. field: "flow_total_rev"
  6253. valueType: "double"
  6254. minValue: null
  6255. maxValue: null
  6256. syncField: null
  6257. calcFormula: null
  6258. - tag: "压力"
  6259. protocol: "json"
  6260. measurement: "WaterMeter"
  6261. field: "press_cur"
  6262. valueType: "double"
  6263. minValue: null
  6264. maxValue: null
  6265. syncField: null
  6266. calcFormula: null
  6267. - deviceId: "710012511140026"
  6268. deviceName: "1901200091"
  6269. deviceSn: "SB00000141"
  6270. deviceKind: "flow_press"
  6271. platform: "zaoyang-iot"
  6272. mfrs: "上海锐铼"
  6273. createTime: "2025-11-14 10:03:44"
  6274. tags:
  6275. - tag: "瞬时流量"
  6276. protocol: "json"
  6277. measurement: "WaterMeter"
  6278. field: "flow_cur"
  6279. valueType: "double"
  6280. minValue: null
  6281. maxValue: null
  6282. syncField: null
  6283. calcFormula: null
  6284. - tag: "正向累计流量"
  6285. protocol: "json"
  6286. measurement: "WaterMeter"
  6287. field: "flow_total_pos"
  6288. valueType: "double"
  6289. minValue: null
  6290. maxValue: null
  6291. syncField: null
  6292. calcFormula: null
  6293. - tag: "反向累计流量"
  6294. protocol: "json"
  6295. measurement: "WaterMeter"
  6296. field: "flow_total_rev"
  6297. valueType: "double"
  6298. minValue: null
  6299. maxValue: null
  6300. syncField: null
  6301. calcFormula: null
  6302. - tag: "压力"
  6303. protocol: "json"
  6304. measurement: "WaterMeter"
  6305. field: "press_cur"
  6306. valueType: "double"
  6307. minValue: null
  6308. maxValue: null
  6309. syncField: null
  6310. calcFormula: null
  6311. - deviceId: "710012511140027"
  6312. deviceName: "114#发展大道与蔡阳大道交差路口东北角"
  6313. deviceSn: "SB00000184"
  6314. deviceKind: "flow_press"
  6315. platform: "zaoyang-iot"
  6316. mfrs: "上海锐铼"
  6317. createTime: "2025-11-14 10:03:44"
  6318. tags:
  6319. - tag: "瞬时流量"
  6320. protocol: "json"
  6321. measurement: "WaterMeter"
  6322. field: "flow_cur"
  6323. valueType: "double"
  6324. minValue: null
  6325. maxValue: null
  6326. syncField: null
  6327. calcFormula: null
  6328. - tag: "正向累计流量"
  6329. protocol: "json"
  6330. measurement: "WaterMeter"
  6331. field: "flow_total_pos"
  6332. valueType: "double"
  6333. minValue: null
  6334. maxValue: null
  6335. syncField: null
  6336. calcFormula: null
  6337. - tag: "反向累计流量"
  6338. protocol: "json"
  6339. measurement: "WaterMeter"
  6340. field: "flow_total_rev"
  6341. valueType: "double"
  6342. minValue: null
  6343. maxValue: null
  6344. syncField: null
  6345. calcFormula: null
  6346. - tag: "压力"
  6347. protocol: "json"
  6348. measurement: "WaterMeter"
  6349. field: "press_cur"
  6350. valueType: "double"
  6351. minValue: null
  6352. maxValue: null
  6353. syncField: null
  6354. calcFormula: null
  6355. - deviceId: "710012511140028"
  6356. deviceName: "116#鲍庄柴岗路口给水接驳口"
  6357. deviceSn: "SB00000186"
  6358. deviceKind: "flow_press"
  6359. platform: "zaoyang-iot"
  6360. mfrs: "上海锐莱"
  6361. createTime: "2025-11-14 12:15:01"
  6362. tags:
  6363. - tag: "瞬时流量"
  6364. protocol: "json"
  6365. measurement: "WaterMeter"
  6366. field: "flow_cur"
  6367. valueType: "double"
  6368. minValue: null
  6369. maxValue: null
  6370. syncField: null
  6371. calcFormula: null
  6372. - tag: "正向累计流量"
  6373. protocol: "json"
  6374. measurement: "WaterMeter"
  6375. field: "flow_total_pos"
  6376. valueType: "double"
  6377. minValue: null
  6378. maxValue: null
  6379. syncField: null
  6380. calcFormula: null
  6381. - tag: "反向累计流量"
  6382. protocol: "json"
  6383. measurement: "WaterMeter"
  6384. field: "flow_total_rev"
  6385. valueType: "double"
  6386. minValue: null
  6387. maxValue: null
  6388. syncField: null
  6389. calcFormula: null
  6390. - tag: "压力"
  6391. protocol: "json"
  6392. measurement: "WaterMeter"
  6393. field: "press_cur"
  6394. valueType: "double"
  6395. minValue: null
  6396. maxValue: null
  6397. syncField: null
  6398. calcFormula: null
  6399. - deviceId: "710012511210001"
  6400. deviceName: "256#发展大道时代天街大市场东北角人行道"
  6401. deviceSn: "SB00000062"
  6402. deviceKind: "flow_press"
  6403. platform: "zaoyang-iot"
  6404. mfrs: "上海锐莱"
  6405. createTime: "2025-11-21 18:15:01"
  6406. tags:
  6407. - tag: "瞬时流量"
  6408. protocol: "json"
  6409. measurement: "WaterMeter"
  6410. field: "flow_cur"
  6411. valueType: "double"
  6412. minValue: null
  6413. maxValue: null
  6414. syncField: null
  6415. calcFormula: null
  6416. - tag: "正向累计流量"
  6417. protocol: "json"
  6418. measurement: "WaterMeter"
  6419. field: "flow_total_pos"
  6420. valueType: "double"
  6421. minValue: null
  6422. maxValue: null
  6423. syncField: null
  6424. calcFormula: null
  6425. - tag: "反向累计流量"
  6426. protocol: "json"
  6427. measurement: "WaterMeter"
  6428. field: "flow_total_rev"
  6429. valueType: "double"
  6430. minValue: null
  6431. maxValue: null
  6432. syncField: null
  6433. calcFormula: null
  6434. - tag: "压力"
  6435. protocol: "json"
  6436. measurement: "WaterMeter"
  6437. field: "press_cur"
  6438. valueType: "double"
  6439. minValue: null
  6440. maxValue: null
  6441. syncField: null
  6442. calcFormula: null
  6443. - deviceId: "710012511210002"
  6444. deviceName: "10#民族西路四季鲜西大门对面"
  6445. deviceSn: "SB00000060"
  6446. deviceKind: "flow_press"
  6447. platform: "zaoyang-iot"
  6448. mfrs: "上海锐莱"
  6449. createTime: "2025-11-21 18:15:01"
  6450. tags:
  6451. - tag: "瞬时流量"
  6452. protocol: "json"
  6453. measurement: "WaterMeter"
  6454. field: "flow_cur"
  6455. valueType: "double"
  6456. minValue: null
  6457. maxValue: null
  6458. syncField: null
  6459. calcFormula: null
  6460. - tag: "正向累计流量"
  6461. protocol: "json"
  6462. measurement: "WaterMeter"
  6463. field: "flow_total_pos"
  6464. valueType: "double"
  6465. minValue: null
  6466. maxValue: null
  6467. syncField: null
  6468. calcFormula: null
  6469. - tag: "反向累计流量"
  6470. protocol: "json"
  6471. measurement: "WaterMeter"
  6472. field: "flow_total_rev"
  6473. valueType: "double"
  6474. minValue: null
  6475. maxValue: null
  6476. syncField: null
  6477. calcFormula: null
  6478. - tag: "压力"
  6479. protocol: "json"
  6480. measurement: "WaterMeter"
  6481. field: "press_cur"
  6482. valueType: "double"
  6483. minValue: null
  6484. maxValue: null
  6485. syncField: null
  6486. calcFormula: null
  6487. - deviceId: "710012511210003"
  6488. deviceName: "276#和谐路与史岗六组路口交汇处向西"
  6489. deviceSn: "SB00000087"
  6490. deviceKind: "flow_press"
  6491. platform: "zaoyang-iot"
  6492. mfrs: "上海锐莱"
  6493. createTime: "2025-11-21 18:15:01"
  6494. tags:
  6495. - tag: "瞬时流量"
  6496. protocol: "json"
  6497. measurement: "WaterMeter"
  6498. field: "flow_cur"
  6499. valueType: "double"
  6500. minValue: null
  6501. maxValue: null
  6502. syncField: null
  6503. calcFormula: null
  6504. - tag: "正向累计流量"
  6505. protocol: "json"
  6506. measurement: "WaterMeter"
  6507. field: "flow_total_pos"
  6508. valueType: "double"
  6509. minValue: null
  6510. maxValue: null
  6511. syncField: null
  6512. calcFormula: null
  6513. - tag: "反向累计流量"
  6514. protocol: "json"
  6515. measurement: "WaterMeter"
  6516. field: "flow_total_rev"
  6517. valueType: "double"
  6518. minValue: null
  6519. maxValue: null
  6520. syncField: null
  6521. calcFormula: null
  6522. - tag: "压力"
  6523. protocol: "json"
  6524. measurement: "WaterMeter"
  6525. field: "press_cur"
  6526. valueType: "double"
  6527. minValue: null
  6528. maxValue: null
  6529. syncField: null
  6530. calcFormula: null
  6531. - deviceId: "710012511210004"
  6532. deviceName: "303#中兴大道港利制冷西侧管道过路处"
  6533. deviceSn: "SB00000114"
  6534. deviceKind: "flow_press"
  6535. platform: "zaoyang-iot"
  6536. mfrs: "上海锐莱"
  6537. createTime: "2025-11-21 18:15:01"
  6538. tags:
  6539. - tag: "瞬时流量"
  6540. protocol: "json"
  6541. measurement: "WaterMeter"
  6542. field: "flow_cur"
  6543. valueType: "double"
  6544. minValue: null
  6545. maxValue: null
  6546. syncField: null
  6547. calcFormula: null
  6548. - tag: "正向累计流量"
  6549. protocol: "json"
  6550. measurement: "WaterMeter"
  6551. field: "flow_total_pos"
  6552. valueType: "double"
  6553. minValue: null
  6554. maxValue: null
  6555. syncField: null
  6556. calcFormula: null
  6557. - tag: "反向累计流量"
  6558. protocol: "json"
  6559. measurement: "WaterMeter"
  6560. field: "flow_total_rev"
  6561. valueType: "double"
  6562. minValue: null
  6563. maxValue: null
  6564. syncField: null
  6565. calcFormula: null
  6566. - tag: "压力"
  6567. protocol: "json"
  6568. measurement: "WaterMeter"
  6569. field: "press_cur"
  6570. valueType: "double"
  6571. minValue: null
  6572. maxValue: null
  6573. syncField: null
  6574. calcFormula: null
  6575. - deviceId: "710012511210005"
  6576. deviceName: "258#发展大道与中兴大道交汇处东南角南侧"
  6577. deviceSn: "SB00000048"
  6578. deviceKind: "flow_press"
  6579. platform: "zaoyang-iot"
  6580. mfrs: "上海锐莱"
  6581. createTime: "2025-11-21 18:15:01"
  6582. tags:
  6583. - tag: "瞬时流量"
  6584. protocol: "json"
  6585. measurement: "WaterMeter"
  6586. field: "flow_cur"
  6587. valueType: "double"
  6588. minValue: null
  6589. maxValue: null
  6590. syncField: null
  6591. calcFormula: null
  6592. - tag: "正向累计流量"
  6593. protocol: "json"
  6594. measurement: "WaterMeter"
  6595. field: "flow_total_pos"
  6596. valueType: "double"
  6597. minValue: null
  6598. maxValue: null
  6599. syncField: null
  6600. calcFormula: null
  6601. - tag: "反向累计流量"
  6602. protocol: "json"
  6603. measurement: "WaterMeter"
  6604. field: "flow_total_rev"
  6605. valueType: "double"
  6606. minValue: null
  6607. maxValue: null
  6608. syncField: null
  6609. calcFormula: null
  6610. - tag: "压力"
  6611. protocol: "json"
  6612. measurement: "WaterMeter"
  6613. field: "press_cur"
  6614. valueType: "double"
  6615. minValue: null
  6616. maxValue: null
  6617. syncField: null
  6618. calcFormula: null
  6619. - deviceId: "710012511210006"
  6620. deviceName: "60#西环三路春阳小区西路口靠西环三路西侧"
  6621. deviceSn: "SB00000079"
  6622. deviceKind: "flow_press"
  6623. platform: "zaoyang-iot"
  6624. mfrs: "上海锐莱"
  6625. createTime: "2025-11-21 18:15:01"
  6626. tags:
  6627. - tag: "瞬时流量"
  6628. protocol: "json"
  6629. measurement: "WaterMeter"
  6630. field: "flow_cur"
  6631. valueType: "double"
  6632. minValue: null
  6633. maxValue: null
  6634. syncField: null
  6635. calcFormula: null
  6636. - tag: "正向累计流量"
  6637. protocol: "json"
  6638. measurement: "WaterMeter"
  6639. field: "flow_total_pos"
  6640. valueType: "double"
  6641. minValue: null
  6642. maxValue: null
  6643. syncField: null
  6644. calcFormula: null
  6645. - tag: "反向累计流量"
  6646. protocol: "json"
  6647. measurement: "WaterMeter"
  6648. field: "flow_total_rev"
  6649. valueType: "double"
  6650. minValue: null
  6651. maxValue: null
  6652. syncField: null
  6653. calcFormula: null
  6654. - tag: "压力"
  6655. protocol: "json"
  6656. measurement: "WaterMeter"
  6657. field: "press_cur"
  6658. valueType: "double"
  6659. minValue: null
  6660. maxValue: null
  6661. syncField: null
  6662. calcFormula: null
  6663. - deviceId: "710012511210007"
  6664. deviceName: "290#复兴大道惠岗小区门口"
  6665. deviceSn: "SB00000018"
  6666. deviceKind: "flow_press"
  6667. platform: "zaoyang-iot"
  6668. mfrs: "上海锐莱"
  6669. createTime: "2025-11-21 18:15:01"
  6670. tags:
  6671. - tag: "瞬时流量"
  6672. protocol: "json"
  6673. measurement: "WaterMeter"
  6674. field: "flow_cur"
  6675. valueType: "double"
  6676. minValue: null
  6677. maxValue: null
  6678. syncField: null
  6679. calcFormula: null
  6680. - tag: "正向累计流量"
  6681. protocol: "json"
  6682. measurement: "WaterMeter"
  6683. field: "flow_total_pos"
  6684. valueType: "double"
  6685. minValue: null
  6686. maxValue: null
  6687. syncField: null
  6688. calcFormula: null
  6689. - tag: "反向累计流量"
  6690. protocol: "json"
  6691. measurement: "WaterMeter"
  6692. field: "flow_total_rev"
  6693. valueType: "double"
  6694. minValue: null
  6695. maxValue: null
  6696. syncField: null
  6697. calcFormula: null
  6698. - tag: "压力"
  6699. protocol: "json"
  6700. measurement: "WaterMeter"
  6701. field: "press_cur"
  6702. valueType: "double"
  6703. minValue: null
  6704. maxValue: null
  6705. syncField: null
  6706. calcFormula: null
  6707. - deviceId: "710012511210008"
  6708. deviceName: "108#襄阳路张庄南路口"
  6709. deviceSn: "SB00000028"
  6710. deviceKind: "flow_press"
  6711. platform: "zaoyang-iot"
  6712. mfrs: "上海锐莱"
  6713. createTime: "2025-11-21 18:15:01"
  6714. tags:
  6715. - tag: "瞬时流量"
  6716. protocol: "json"
  6717. measurement: "WaterMeter"
  6718. field: "flow_cur"
  6719. valueType: "double"
  6720. minValue: null
  6721. maxValue: null
  6722. syncField: null
  6723. calcFormula: null
  6724. - tag: "正向累计流量"
  6725. protocol: "json"
  6726. measurement: "WaterMeter"
  6727. field: "flow_total_pos"
  6728. valueType: "double"
  6729. minValue: null
  6730. maxValue: null
  6731. syncField: null
  6732. calcFormula: null
  6733. - tag: "反向累计流量"
  6734. protocol: "json"
  6735. measurement: "WaterMeter"
  6736. field: "flow_total_rev"
  6737. valueType: "double"
  6738. minValue: null
  6739. maxValue: null
  6740. syncField: null
  6741. calcFormula: null
  6742. - tag: "压力"
  6743. protocol: "json"
  6744. measurement: "WaterMeter"
  6745. field: "press_cur"
  6746. valueType: "double"
  6747. minValue: null
  6748. maxValue: null
  6749. syncField: null
  6750. calcFormula: null
  6751. - deviceId: "710012511220001"
  6752. deviceName: "120#枣琚路崔庄路口给水接驳口"
  6753. deviceSn: "SB00000188"
  6754. deviceKind: "flow_press"
  6755. platform: "zaoyang-iot"
  6756. mfrs: "上海锐莱"
  6757. createTime: "2025-11-22 00:15:01"
  6758. tags:
  6759. - tag: "瞬时流量"
  6760. protocol: "json"
  6761. measurement: "WaterMeter"
  6762. field: "flow_cur"
  6763. valueType: "double"
  6764. minValue: null
  6765. maxValue: null
  6766. syncField: null
  6767. calcFormula: null
  6768. - tag: "正向累计流量"
  6769. protocol: "json"
  6770. measurement: "WaterMeter"
  6771. field: "flow_total_pos"
  6772. valueType: "double"
  6773. minValue: null
  6774. maxValue: null
  6775. syncField: null
  6776. calcFormula: null
  6777. - tag: "反向累计流量"
  6778. protocol: "json"
  6779. measurement: "WaterMeter"
  6780. field: "flow_total_rev"
  6781. valueType: "double"
  6782. minValue: null
  6783. maxValue: null
  6784. syncField: null
  6785. calcFormula: null
  6786. - tag: "压力"
  6787. protocol: "json"
  6788. measurement: "WaterMeter"
  6789. field: "press_cur"
  6790. valueType: "double"
  6791. minValue: null
  6792. maxValue: null
  6793. syncField: null
  6794. calcFormula: null
  6795. - deviceId: "710012511250001"
  6796. deviceName: "Z5西环二路人和生活超市门口"
  6797. deviceSn: "SB00000198"
  6798. deviceKind: "flow_press"
  6799. platform: "zaoyang-iot"
  6800. mfrs: "上海锐莱"
  6801. createTime: "2025-11-25 12:15:01"
  6802. tags:
  6803. - tag: "瞬时流量"
  6804. protocol: "json"
  6805. measurement: "WaterMeter"
  6806. field: "flow_cur"
  6807. valueType: "double"
  6808. minValue: null
  6809. maxValue: null
  6810. syncField: null
  6811. calcFormula: null
  6812. - tag: "正向累计流量"
  6813. protocol: "json"
  6814. measurement: "WaterMeter"
  6815. field: "flow_total_pos"
  6816. valueType: "double"
  6817. minValue: null
  6818. maxValue: null
  6819. syncField: null
  6820. calcFormula: null
  6821. - tag: "反向累计流量"
  6822. protocol: "json"
  6823. measurement: "WaterMeter"
  6824. field: "flow_total_rev"
  6825. valueType: "double"
  6826. minValue: null
  6827. maxValue: null
  6828. syncField: null
  6829. calcFormula: null
  6830. - tag: "压力"
  6831. protocol: "json"
  6832. measurement: "WaterMeter"
  6833. field: "press_cur"
  6834. valueType: "double"
  6835. minValue: null
  6836. maxValue: null
  6837. syncField: null
  6838. calcFormula: null
  6839. - deviceId: "710012511250002"
  6840. deviceName: "Z9西环二路麦笼香馍店门口"
  6841. deviceSn: "SB00000202"
  6842. deviceKind: "flow_press"
  6843. platform: "zaoyang-iot"
  6844. mfrs: "上海锐莱"
  6845. createTime: "2025-11-25 12:15:01"
  6846. tags:
  6847. - tag: "瞬时流量"
  6848. protocol: "json"
  6849. measurement: "WaterMeter"
  6850. field: "flow_cur"
  6851. valueType: "double"
  6852. minValue: null
  6853. maxValue: null
  6854. syncField: null
  6855. calcFormula: null
  6856. - tag: "正向累计流量"
  6857. protocol: "json"
  6858. measurement: "WaterMeter"
  6859. field: "flow_total_pos"
  6860. valueType: "double"
  6861. minValue: null
  6862. maxValue: null
  6863. syncField: null
  6864. calcFormula: null
  6865. - tag: "反向累计流量"
  6866. protocol: "json"
  6867. measurement: "WaterMeter"
  6868. field: "flow_total_rev"
  6869. valueType: "double"
  6870. minValue: null
  6871. maxValue: null
  6872. syncField: null
  6873. calcFormula: null
  6874. - tag: "压力"
  6875. protocol: "json"
  6876. measurement: "WaterMeter"
  6877. field: "press_cur"
  6878. valueType: "double"
  6879. minValue: null
  6880. maxValue: null
  6881. syncField: null
  6882. calcFormula: null
  6883. - deviceId: "710012511250003"
  6884. deviceName: "94#光武路兴业府邸西南角"
  6885. deviceSn: "SB00000189"
  6886. deviceKind: "flow_press"
  6887. platform: "zaoyang-iot"
  6888. mfrs: "上海锐莱"
  6889. createTime: "2025-11-25 12:15:01"
  6890. tags:
  6891. - tag: "瞬时流量"
  6892. protocol: "json"
  6893. measurement: "WaterMeter"
  6894. field: "flow_cur"
  6895. valueType: "double"
  6896. minValue: null
  6897. maxValue: null
  6898. syncField: null
  6899. calcFormula: null
  6900. - tag: "正向累计流量"
  6901. protocol: "json"
  6902. measurement: "WaterMeter"
  6903. field: "flow_total_pos"
  6904. valueType: "double"
  6905. minValue: null
  6906. maxValue: null
  6907. syncField: null
  6908. calcFormula: null
  6909. - tag: "反向累计流量"
  6910. protocol: "json"
  6911. measurement: "WaterMeter"
  6912. field: "flow_total_rev"
  6913. valueType: "double"
  6914. minValue: null
  6915. maxValue: null
  6916. syncField: null
  6917. calcFormula: null
  6918. - tag: "压力"
  6919. protocol: "json"
  6920. measurement: "WaterMeter"
  6921. field: "press_cur"
  6922. valueType: "double"
  6923. minValue: null
  6924. maxValue: null
  6925. syncField: null
  6926. calcFormula: null
  6927. - deviceId: "710012511270001"
  6928. deviceName: "219#人民路与兴隆路交汇处西南角新天地门口"
  6929. deviceSn: "SB00000218"
  6930. deviceKind: "flow_press"
  6931. platform: "zaoyang-iot"
  6932. mfrs: "上海锐莱"
  6933. createTime: "2025-11-27 12:15:01"
  6934. tags:
  6935. - tag: "瞬时流量"
  6936. protocol: "json"
  6937. measurement: "WaterMeter"
  6938. field: "flow_cur"
  6939. valueType: "double"
  6940. minValue: null
  6941. maxValue: null
  6942. syncField: null
  6943. calcFormula: null
  6944. - tag: "正向累计流量"
  6945. protocol: "json"
  6946. measurement: "WaterMeter"
  6947. field: "flow_total_pos"
  6948. valueType: "double"
  6949. minValue: null
  6950. maxValue: null
  6951. syncField: null
  6952. calcFormula: null
  6953. - tag: "反向累计流量"
  6954. protocol: "json"
  6955. measurement: "WaterMeter"
  6956. field: "flow_total_rev"
  6957. valueType: "double"
  6958. minValue: null
  6959. maxValue: null
  6960. syncField: null
  6961. calcFormula: null
  6962. - tag: "压力"
  6963. protocol: "json"
  6964. measurement: "WaterMeter"
  6965. field: "press_cur"
  6966. valueType: "double"
  6967. minValue: null
  6968. maxValue: null
  6969. syncField: null
  6970. calcFormula: null
  6971. - deviceId: "710012511270002"
  6972. deviceName: "Z12#襄阳路与静乐巷交差路口"
  6973. deviceSn: "SB00000257"
  6974. deviceKind: "flow_press"
  6975. platform: "zaoyang-iot"
  6976. mfrs: "上海锐莱"
  6977. createTime: "2025-11-27 12:15:01"
  6978. tags:
  6979. - tag: "瞬时流量"
  6980. protocol: "json"
  6981. measurement: "WaterMeter"
  6982. field: "flow_cur"
  6983. valueType: "double"
  6984. minValue: null
  6985. maxValue: null
  6986. syncField: null
  6987. calcFormula: null
  6988. - tag: "正向累计流量"
  6989. protocol: "json"
  6990. measurement: "WaterMeter"
  6991. field: "flow_total_pos"
  6992. valueType: "double"
  6993. minValue: null
  6994. maxValue: null
  6995. syncField: null
  6996. calcFormula: null
  6997. - tag: "反向累计流量"
  6998. protocol: "json"
  6999. measurement: "WaterMeter"
  7000. field: "flow_total_rev"
  7001. valueType: "double"
  7002. minValue: null
  7003. maxValue: null
  7004. syncField: null
  7005. calcFormula: null
  7006. - tag: "压力"
  7007. protocol: "json"
  7008. measurement: "WaterMeter"
  7009. field: "press_cur"
  7010. valueType: "double"
  7011. minValue: null
  7012. maxValue: null
  7013. syncField: null
  7014. calcFormula: null
  7015. - deviceId: "710012511270003"
  7016. deviceName: "119#枣琚一级路土埔街北路口西侧"
  7017. deviceSn: "SB00000256"
  7018. deviceKind: "flow_press"
  7019. platform: "zaoyang-iot"
  7020. mfrs: "上海锐莱"
  7021. createTime: "2025-11-27 12:15:01"
  7022. tags:
  7023. - tag: "瞬时流量"
  7024. protocol: "json"
  7025. measurement: "WaterMeter"
  7026. field: "flow_cur"
  7027. valueType: "double"
  7028. minValue: null
  7029. maxValue: null
  7030. syncField: null
  7031. calcFormula: null
  7032. - tag: "正向累计流量"
  7033. protocol: "json"
  7034. measurement: "WaterMeter"
  7035. field: "flow_total_pos"
  7036. valueType: "double"
  7037. minValue: null
  7038. maxValue: null
  7039. syncField: null
  7040. calcFormula: null
  7041. - tag: "反向累计流量"
  7042. protocol: "json"
  7043. measurement: "WaterMeter"
  7044. field: "flow_total_rev"
  7045. valueType: "double"
  7046. minValue: null
  7047. maxValue: null
  7048. syncField: null
  7049. calcFormula: null
  7050. - tag: "压力"
  7051. protocol: "json"
  7052. measurement: "WaterMeter"
  7053. field: "press_cur"
  7054. valueType: "double"
  7055. minValue: null
  7056. maxValue: null
  7057. syncField: null
  7058. calcFormula: null
  7059. - deviceId: "710012511270004"
  7060. deviceName: "Z3#复兴大道与西环三路交汇处西北角"
  7061. deviceSn: "SB00000212"
  7062. deviceKind: "flow_press"
  7063. platform: "zaoyang-iot"
  7064. mfrs: "上海锐莱"
  7065. createTime: "2025-11-27 12:15:01"
  7066. tags:
  7067. - tag: "瞬时流量"
  7068. protocol: "json"
  7069. measurement: "WaterMeter"
  7070. field: "flow_cur"
  7071. valueType: "double"
  7072. minValue: null
  7073. maxValue: null
  7074. syncField: null
  7075. calcFormula: null
  7076. - tag: "正向累计流量"
  7077. protocol: "json"
  7078. measurement: "WaterMeter"
  7079. field: "flow_total_pos"
  7080. valueType: "double"
  7081. minValue: null
  7082. maxValue: null
  7083. syncField: null
  7084. calcFormula: null
  7085. - tag: "反向累计流量"
  7086. protocol: "json"
  7087. measurement: "WaterMeter"
  7088. field: "flow_total_rev"
  7089. valueType: "double"
  7090. minValue: null
  7091. maxValue: null
  7092. syncField: null
  7093. calcFormula: null
  7094. - tag: "压力"
  7095. protocol: "json"
  7096. measurement: "WaterMeter"
  7097. field: "press_cur"
  7098. valueType: "double"
  7099. minValue: null
  7100. maxValue: null
  7101. syncField: null
  7102. calcFormula: null
  7103. - deviceId: "710012511270005"
  7104. deviceName: "118#枣琚一级路土埔街北路口东侧"
  7105. deviceSn: "SB00000255"
  7106. deviceKind: "flow_press"
  7107. platform: "zaoyang-iot"
  7108. mfrs: "上海锐莱"
  7109. createTime: "2025-11-27 12:15:01"
  7110. tags:
  7111. - tag: "瞬时流量"
  7112. protocol: "json"
  7113. measurement: "WaterMeter"
  7114. field: "flow_cur"
  7115. valueType: "double"
  7116. minValue: null
  7117. maxValue: null
  7118. syncField: null
  7119. calcFormula: null
  7120. - tag: "正向累计流量"
  7121. protocol: "json"
  7122. measurement: "WaterMeter"
  7123. field: "flow_total_pos"
  7124. valueType: "double"
  7125. minValue: null
  7126. maxValue: null
  7127. syncField: null
  7128. calcFormula: null
  7129. - tag: "反向累计流量"
  7130. protocol: "json"
  7131. measurement: "WaterMeter"
  7132. field: "flow_total_rev"
  7133. valueType: "double"
  7134. minValue: null
  7135. maxValue: null
  7136. syncField: null
  7137. calcFormula: null
  7138. - tag: "压力"
  7139. protocol: "json"
  7140. measurement: "WaterMeter"
  7141. field: "press_cur"
  7142. valueType: "double"
  7143. minValue: null
  7144. maxValue: null
  7145. syncField: null
  7146. calcFormula: null
  7147. - deviceId: "710012511270006"
  7148. deviceName: "92#大南街工贸家电鑫喜珠宝门口"
  7149. deviceSn: "SB00000254"
  7150. deviceKind: "flow_press"
  7151. platform: "zaoyang-iot"
  7152. mfrs: "上海锐莱"
  7153. createTime: "2025-11-27 12:15:01"
  7154. tags:
  7155. - tag: "瞬时流量"
  7156. protocol: "json"
  7157. measurement: "WaterMeter"
  7158. field: "flow_cur"
  7159. valueType: "double"
  7160. minValue: null
  7161. maxValue: null
  7162. syncField: null
  7163. calcFormula: null
  7164. - tag: "正向累计流量"
  7165. protocol: "json"
  7166. measurement: "WaterMeter"
  7167. field: "flow_total_pos"
  7168. valueType: "double"
  7169. minValue: null
  7170. maxValue: null
  7171. syncField: null
  7172. calcFormula: null
  7173. - tag: "反向累计流量"
  7174. protocol: "json"
  7175. measurement: "WaterMeter"
  7176. field: "flow_total_rev"
  7177. valueType: "double"
  7178. minValue: null
  7179. maxValue: null
  7180. syncField: null
  7181. calcFormula: null
  7182. - tag: "压力"
  7183. protocol: "json"
  7184. measurement: "WaterMeter"
  7185. field: "press_cur"
  7186. valueType: "double"
  7187. minValue: null
  7188. maxValue: null
  7189. syncField: null
  7190. calcFormula: null
  7191. - deviceId: "710012511270007"
  7192. deviceName: "301#复兴大道与西环三路交汇处西北角"
  7193. deviceSn: "SB00000210"
  7194. deviceKind: "flow_press"
  7195. platform: "zaoyang-iot"
  7196. mfrs: "上海锐莱"
  7197. createTime: "2025-11-27 12:15:01"
  7198. tags:
  7199. - tag: "瞬时流量"
  7200. protocol: "json"
  7201. measurement: "WaterMeter"
  7202. field: "flow_cur"
  7203. valueType: "double"
  7204. minValue: null
  7205. maxValue: null
  7206. syncField: null
  7207. calcFormula: null
  7208. - tag: "正向累计流量"
  7209. protocol: "json"
  7210. measurement: "WaterMeter"
  7211. field: "flow_total_pos"
  7212. valueType: "double"
  7213. minValue: null
  7214. maxValue: null
  7215. syncField: null
  7216. calcFormula: null
  7217. - tag: "反向累计流量"
  7218. protocol: "json"
  7219. measurement: "WaterMeter"
  7220. field: "flow_total_rev"
  7221. valueType: "double"
  7222. minValue: null
  7223. maxValue: null
  7224. syncField: null
  7225. calcFormula: null
  7226. - tag: "压力"
  7227. protocol: "json"
  7228. measurement: "WaterMeter"
  7229. field: "press_cur"
  7230. valueType: "double"
  7231. minValue: null
  7232. maxValue: null
  7233. syncField: null
  7234. calcFormula: null
  7235. - deviceId: "710012511270008"
  7236. deviceName: "216#人民路与兴隆路交汇处东北角向北"
  7237. deviceSn: "SB00000216"
  7238. deviceKind: "flow_press"
  7239. platform: "zaoyang-iot"
  7240. mfrs: "上海锐莱"
  7241. createTime: "2025-11-27 12:15:01"
  7242. tags:
  7243. - tag: "瞬时流量"
  7244. protocol: "json"
  7245. measurement: "WaterMeter"
  7246. field: "flow_cur"
  7247. valueType: "double"
  7248. minValue: null
  7249. maxValue: null
  7250. syncField: null
  7251. calcFormula: null
  7252. - tag: "正向累计流量"
  7253. protocol: "json"
  7254. measurement: "WaterMeter"
  7255. field: "flow_total_pos"
  7256. valueType: "double"
  7257. minValue: null
  7258. maxValue: null
  7259. syncField: null
  7260. calcFormula: null
  7261. - tag: "反向累计流量"
  7262. protocol: "json"
  7263. measurement: "WaterMeter"
  7264. field: "flow_total_rev"
  7265. valueType: "double"
  7266. minValue: null
  7267. maxValue: null
  7268. syncField: null
  7269. calcFormula: null
  7270. - tag: "压力"
  7271. protocol: "json"
  7272. measurement: "WaterMeter"
  7273. field: "press_cur"
  7274. valueType: "double"
  7275. minValue: null
  7276. maxValue: null
  7277. syncField: null
  7278. calcFormula: null
  7279. - deviceId: "710012511270009"
  7280. deviceName: "88#大西街一医院老院区对面路口"
  7281. deviceSn: "SB00000259"
  7282. deviceKind: "flow_press"
  7283. platform: "zaoyang-iot"
  7284. mfrs: "上海锐莱"
  7285. createTime: "2025-11-27 12:15:01"
  7286. tags:
  7287. - tag: "瞬时流量"
  7288. protocol: "json"
  7289. measurement: "WaterMeter"
  7290. field: "flow_cur"
  7291. valueType: "double"
  7292. minValue: null
  7293. maxValue: null
  7294. syncField: null
  7295. calcFormula: null
  7296. - tag: "正向累计流量"
  7297. protocol: "json"
  7298. measurement: "WaterMeter"
  7299. field: "flow_total_pos"
  7300. valueType: "double"
  7301. minValue: null
  7302. maxValue: null
  7303. syncField: null
  7304. calcFormula: null
  7305. - tag: "反向累计流量"
  7306. protocol: "json"
  7307. measurement: "WaterMeter"
  7308. field: "flow_total_rev"
  7309. valueType: "double"
  7310. minValue: null
  7311. maxValue: null
  7312. syncField: null
  7313. calcFormula: null
  7314. - tag: "压力"
  7315. protocol: "json"
  7316. measurement: "WaterMeter"
  7317. field: "press_cur"
  7318. valueType: "double"
  7319. minValue: null
  7320. maxValue: null
  7321. syncField: null
  7322. calcFormula: null
  7323. - deviceId: "710012511270010"
  7324. deviceName: "Z13#南阳路泰新医院北侧"
  7325. deviceSn: "SB00000258"
  7326. deviceKind: "flow_press"
  7327. platform: "zaoyang-iot"
  7328. mfrs: "上海锐莱"
  7329. createTime: "2025-11-27 12:15:01"
  7330. tags:
  7331. - tag: "瞬时流量"
  7332. protocol: "json"
  7333. measurement: "WaterMeter"
  7334. field: "flow_cur"
  7335. valueType: "double"
  7336. minValue: null
  7337. maxValue: null
  7338. syncField: null
  7339. calcFormula: null
  7340. - tag: "正向累计流量"
  7341. protocol: "json"
  7342. measurement: "WaterMeter"
  7343. field: "flow_total_pos"
  7344. valueType: "double"
  7345. minValue: null
  7346. maxValue: null
  7347. syncField: null
  7348. calcFormula: null
  7349. - tag: "反向累计流量"
  7350. protocol: "json"
  7351. measurement: "WaterMeter"
  7352. field: "flow_total_rev"
  7353. valueType: "double"
  7354. minValue: null
  7355. maxValue: null
  7356. syncField: null
  7357. calcFormula: null
  7358. - tag: "压力"
  7359. protocol: "json"
  7360. measurement: "WaterMeter"
  7361. field: "press_cur"
  7362. valueType: "double"
  7363. minValue: null
  7364. maxValue: null
  7365. syncField: null
  7366. calcFormula: null
  7367. - deviceId: "710012511270011"
  7368. deviceName: "297#复兴大道与光武大道交汇处西侧鹏飞矿业门口"
  7369. deviceSn: "SB00000214"
  7370. deviceKind: "flow_press"
  7371. platform: "zaoyang-iot"
  7372. mfrs: "上海锐莱"
  7373. createTime: "2025-11-27 12:15:01"
  7374. tags:
  7375. - tag: "瞬时流量"
  7376. protocol: "json"
  7377. measurement: "WaterMeter"
  7378. field: "flow_cur"
  7379. valueType: "double"
  7380. minValue: null
  7381. maxValue: null
  7382. syncField: null
  7383. calcFormula: null
  7384. - tag: "正向累计流量"
  7385. protocol: "json"
  7386. measurement: "WaterMeter"
  7387. field: "flow_total_pos"
  7388. valueType: "double"
  7389. minValue: null
  7390. maxValue: null
  7391. syncField: null
  7392. calcFormula: null
  7393. - tag: "反向累计流量"
  7394. protocol: "json"
  7395. measurement: "WaterMeter"
  7396. field: "flow_total_rev"
  7397. valueType: "double"
  7398. minValue: null
  7399. maxValue: null
  7400. syncField: null
  7401. calcFormula: null
  7402. - tag: "压力"
  7403. protocol: "json"
  7404. measurement: "WaterMeter"
  7405. field: "press_cur"
  7406. valueType: "double"
  7407. minValue: null
  7408. maxValue: null
  7409. syncField: null
  7410. calcFormula: null
  7411. - deviceId: "710012511270012"
  7412. deviceName: "89#大西街与小西街交差路口"
  7413. deviceSn: "SB00000253"
  7414. deviceKind: "flow_press"
  7415. platform: "zaoyang-iot"
  7416. mfrs: "上海锐莱"
  7417. createTime: "2025-11-27 12:15:01"
  7418. tags:
  7419. - tag: "瞬时流量"
  7420. protocol: "json"
  7421. measurement: "WaterMeter"
  7422. field: "flow_cur"
  7423. valueType: "double"
  7424. minValue: null
  7425. maxValue: null
  7426. syncField: null
  7427. calcFormula: null
  7428. - tag: "正向累计流量"
  7429. protocol: "json"
  7430. measurement: "WaterMeter"
  7431. field: "flow_total_pos"
  7432. valueType: "double"
  7433. minValue: null
  7434. maxValue: null
  7435. syncField: null
  7436. calcFormula: null
  7437. - tag: "反向累计流量"
  7438. protocol: "json"
  7439. measurement: "WaterMeter"
  7440. field: "flow_total_rev"
  7441. valueType: "double"
  7442. minValue: null
  7443. maxValue: null
  7444. syncField: null
  7445. calcFormula: null
  7446. - tag: "压力"
  7447. protocol: "json"
  7448. measurement: "WaterMeter"
  7449. field: "press_cur"
  7450. valueType: "double"
  7451. minValue: null
  7452. maxValue: null
  7453. syncField: null
  7454. calcFormula: null
  7455. - deviceId: "710012511270013"
  7456. deviceName: "96#万象城东北角"
  7457. deviceSn: "SB00000252"
  7458. deviceKind: "flow_press"
  7459. platform: "zaoyang-iot"
  7460. mfrs: "上海锐莱"
  7461. createTime: "2025-11-27 12:15:01"
  7462. tags:
  7463. - tag: "瞬时流量"
  7464. protocol: "json"
  7465. measurement: "WaterMeter"
  7466. field: "flow_cur"
  7467. valueType: "double"
  7468. minValue: null
  7469. maxValue: null
  7470. syncField: null
  7471. calcFormula: null
  7472. - tag: "正向累计流量"
  7473. protocol: "json"
  7474. measurement: "WaterMeter"
  7475. field: "flow_total_pos"
  7476. valueType: "double"
  7477. minValue: null
  7478. maxValue: null
  7479. syncField: null
  7480. calcFormula: null
  7481. - tag: "反向累计流量"
  7482. protocol: "json"
  7483. measurement: "WaterMeter"
  7484. field: "flow_total_rev"
  7485. valueType: "double"
  7486. minValue: null
  7487. maxValue: null
  7488. syncField: null
  7489. calcFormula: null
  7490. - tag: "压力"
  7491. protocol: "json"
  7492. measurement: "WaterMeter"
  7493. field: "press_cur"
  7494. valueType: "double"
  7495. minValue: null
  7496. maxValue: null
  7497. syncField: null
  7498. calcFormula: null
  7499. - deviceId: "710012511270014"
  7500. deviceName: "90#北城街道大西街宠粉世家门口"
  7501. deviceSn: "SB00000251"
  7502. deviceKind: "flow_press"
  7503. platform: "zaoyang-iot"
  7504. mfrs: "上海锐莱"
  7505. createTime: "2025-11-27 12:15:01"
  7506. tags:
  7507. - tag: "瞬时流量"
  7508. protocol: "json"
  7509. measurement: "WaterMeter"
  7510. field: "flow_cur"
  7511. valueType: "double"
  7512. minValue: null
  7513. maxValue: null
  7514. syncField: null
  7515. calcFormula: null
  7516. - tag: "正向累计流量"
  7517. protocol: "json"
  7518. measurement: "WaterMeter"
  7519. field: "flow_total_pos"
  7520. valueType: "double"
  7521. minValue: null
  7522. maxValue: null
  7523. syncField: null
  7524. calcFormula: null
  7525. - tag: "反向累计流量"
  7526. protocol: "json"
  7527. measurement: "WaterMeter"
  7528. field: "flow_total_rev"
  7529. valueType: "double"
  7530. minValue: null
  7531. maxValue: null
  7532. syncField: null
  7533. calcFormula: null
  7534. - tag: "压力"
  7535. protocol: "json"
  7536. measurement: "WaterMeter"
  7537. field: "press_cur"
  7538. valueType: "double"
  7539. minValue: null
  7540. maxValue: null
  7541. syncField: null
  7542. calcFormula: null
  7543. - deviceId: "710012511270015"
  7544. deviceName: "84#南阳路曾凡国巷子东侧"
  7545. deviceSn: "SB00000250"
  7546. deviceKind: "flow_press"
  7547. platform: "zaoyang-iot"
  7548. mfrs: "上海锐莱"
  7549. createTime: "2025-11-27 12:15:01"
  7550. tags:
  7551. - tag: "瞬时流量"
  7552. protocol: "json"
  7553. measurement: "WaterMeter"
  7554. field: "flow_cur"
  7555. valueType: "double"
  7556. minValue: null
  7557. maxValue: null
  7558. syncField: null
  7559. calcFormula: null
  7560. - tag: "正向累计流量"
  7561. protocol: "json"
  7562. measurement: "WaterMeter"
  7563. field: "flow_total_pos"
  7564. valueType: "double"
  7565. minValue: null
  7566. maxValue: null
  7567. syncField: null
  7568. calcFormula: null
  7569. - tag: "反向累计流量"
  7570. protocol: "json"
  7571. measurement: "WaterMeter"
  7572. field: "flow_total_rev"
  7573. valueType: "double"
  7574. minValue: null
  7575. maxValue: null
  7576. syncField: null
  7577. calcFormula: null
  7578. - tag: "压力"
  7579. protocol: "json"
  7580. measurement: "WaterMeter"
  7581. field: "press_cur"
  7582. valueType: "double"
  7583. minValue: null
  7584. maxValue: null
  7585. syncField: null
  7586. calcFormula: null
  7587. - deviceId: "710012511270016"
  7588. deviceName: "281#中兴大道与和谐路交汇处东南角"
  7589. deviceSn: "SB00000209"
  7590. deviceKind: "flow_press"
  7591. platform: "zaoyang-iot"
  7592. mfrs: "上海锐莱"
  7593. createTime: "2025-11-27 12:15:01"
  7594. tags:
  7595. - tag: "瞬时流量"
  7596. protocol: "json"
  7597. measurement: "WaterMeter"
  7598. field: "flow_cur"
  7599. valueType: "double"
  7600. minValue: null
  7601. maxValue: null
  7602. syncField: null
  7603. calcFormula: null
  7604. - tag: "正向累计流量"
  7605. protocol: "json"
  7606. measurement: "WaterMeter"
  7607. field: "flow_total_pos"
  7608. valueType: "double"
  7609. minValue: null
  7610. maxValue: null
  7611. syncField: null
  7612. calcFormula: null
  7613. - tag: "反向累计流量"
  7614. protocol: "json"
  7615. measurement: "WaterMeter"
  7616. field: "flow_total_rev"
  7617. valueType: "double"
  7618. minValue: null
  7619. maxValue: null
  7620. syncField: null
  7621. calcFormula: null
  7622. - tag: "压力"
  7623. protocol: "json"
  7624. measurement: "WaterMeter"
  7625. field: "press_cur"
  7626. valueType: "double"
  7627. minValue: null
  7628. maxValue: null
  7629. syncField: null
  7630. calcFormula: null
  7631. - deviceId: "710012511270017"
  7632. deviceName: "285#中兴大道与复兴大道交汇处东南角东侧"
  7633. deviceSn: "SB00000207"
  7634. deviceKind: "flow_press"
  7635. platform: "zaoyang-iot"
  7636. mfrs: "上海锐莱"
  7637. createTime: "2025-11-27 12:15:01"
  7638. tags:
  7639. - tag: "瞬时流量"
  7640. protocol: "json"
  7641. measurement: "WaterMeter"
  7642. field: "flow_cur"
  7643. valueType: "double"
  7644. minValue: null
  7645. maxValue: null
  7646. syncField: null
  7647. calcFormula: null
  7648. - tag: "正向累计流量"
  7649. protocol: "json"
  7650. measurement: "WaterMeter"
  7651. field: "flow_total_pos"
  7652. valueType: "double"
  7653. minValue: null
  7654. maxValue: null
  7655. syncField: null
  7656. calcFormula: null
  7657. - tag: "反向累计流量"
  7658. protocol: "json"
  7659. measurement: "WaterMeter"
  7660. field: "flow_total_rev"
  7661. valueType: "double"
  7662. minValue: null
  7663. maxValue: null
  7664. syncField: null
  7665. calcFormula: null
  7666. - tag: "压力"
  7667. protocol: "json"
  7668. measurement: "WaterMeter"
  7669. field: "press_cur"
  7670. valueType: "double"
  7671. minValue: null
  7672. maxValue: null
  7673. syncField: null
  7674. calcFormula: null
  7675. - deviceId: "710012511270018"
  7676. deviceName: "160#人民路与就业路交汇处西北角北侧"
  7677. deviceSn: "SB00000246"
  7678. deviceKind: "flow_press"
  7679. platform: "zaoyang-iot"
  7680. mfrs: "上海锐莱"
  7681. createTime: "2025-11-27 12:15:01"
  7682. tags:
  7683. - tag: "瞬时流量"
  7684. protocol: "json"
  7685. measurement: "WaterMeter"
  7686. field: "flow_cur"
  7687. valueType: "double"
  7688. minValue: null
  7689. maxValue: null
  7690. syncField: null
  7691. calcFormula: null
  7692. - tag: "正向累计流量"
  7693. protocol: "json"
  7694. measurement: "WaterMeter"
  7695. field: "flow_total_pos"
  7696. valueType: "double"
  7697. minValue: null
  7698. maxValue: null
  7699. syncField: null
  7700. calcFormula: null
  7701. - tag: "反向累计流量"
  7702. protocol: "json"
  7703. measurement: "WaterMeter"
  7704. field: "flow_total_rev"
  7705. valueType: "double"
  7706. minValue: null
  7707. maxValue: null
  7708. syncField: null
  7709. calcFormula: null
  7710. - tag: "压力"
  7711. protocol: "json"
  7712. measurement: "WaterMeter"
  7713. field: "press_cur"
  7714. valueType: "double"
  7715. minValue: null
  7716. maxValue: null
  7717. syncField: null
  7718. calcFormula: null
  7719. - deviceId: "710012511270019"
  7720. deviceName: "158#人民路沙店巷路口"
  7721. deviceSn: "SB00000245"
  7722. deviceKind: "flow_press"
  7723. platform: "zaoyang-iot"
  7724. mfrs: "上海锐莱"
  7725. createTime: "2025-11-27 12:15:01"
  7726. tags:
  7727. - tag: "瞬时流量"
  7728. protocol: "json"
  7729. measurement: "WaterMeter"
  7730. field: "flow_cur"
  7731. valueType: "double"
  7732. minValue: null
  7733. maxValue: null
  7734. syncField: null
  7735. calcFormula: null
  7736. - tag: "正向累计流量"
  7737. protocol: "json"
  7738. measurement: "WaterMeter"
  7739. field: "flow_total_pos"
  7740. valueType: "double"
  7741. minValue: null
  7742. maxValue: null
  7743. syncField: null
  7744. calcFormula: null
  7745. - tag: "反向累计流量"
  7746. protocol: "json"
  7747. measurement: "WaterMeter"
  7748. field: "flow_total_rev"
  7749. valueType: "double"
  7750. minValue: null
  7751. maxValue: null
  7752. syncField: null
  7753. calcFormula: null
  7754. - tag: "压力"
  7755. protocol: "json"
  7756. measurement: "WaterMeter"
  7757. field: "press_cur"
  7758. valueType: "double"
  7759. minValue: null
  7760. maxValue: null
  7761. syncField: null
  7762. calcFormula: null
  7763. - deviceId: "710012511270020"
  7764. deviceName: "128#人民路浕水巷路口"
  7765. deviceSn: "SB00000244"
  7766. deviceKind: "flow_press"
  7767. platform: "zaoyang-iot"
  7768. mfrs: "上海锐莱"
  7769. createTime: "2025-11-27 12:15:02"
  7770. tags:
  7771. - tag: "瞬时流量"
  7772. protocol: "json"
  7773. measurement: "WaterMeter"
  7774. field: "flow_cur"
  7775. valueType: "double"
  7776. minValue: null
  7777. maxValue: null
  7778. syncField: null
  7779. calcFormula: null
  7780. - tag: "正向累计流量"
  7781. protocol: "json"
  7782. measurement: "WaterMeter"
  7783. field: "flow_total_pos"
  7784. valueType: "double"
  7785. minValue: null
  7786. maxValue: null
  7787. syncField: null
  7788. calcFormula: null
  7789. - tag: "反向累计流量"
  7790. protocol: "json"
  7791. measurement: "WaterMeter"
  7792. field: "flow_total_rev"
  7793. valueType: "double"
  7794. minValue: null
  7795. maxValue: null
  7796. syncField: null
  7797. calcFormula: null
  7798. - tag: "压力"
  7799. protocol: "json"
  7800. measurement: "WaterMeter"
  7801. field: "press_cur"
  7802. valueType: "double"
  7803. minValue: null
  7804. maxValue: null
  7805. syncField: null
  7806. calcFormula: null
  7807. - deviceId: "710012511270021"
  7808. deviceName: "165#人民路市直机关幼儿园路口"
  7809. deviceSn: "SB00000243"
  7810. deviceKind: "flow_press"
  7811. platform: "zaoyang-iot"
  7812. mfrs: "上海锐莱"
  7813. createTime: "2025-11-27 12:15:02"
  7814. tags:
  7815. - tag: "瞬时流量"
  7816. protocol: "json"
  7817. measurement: "WaterMeter"
  7818. field: "flow_cur"
  7819. valueType: "double"
  7820. minValue: null
  7821. maxValue: null
  7822. syncField: null
  7823. calcFormula: null
  7824. - tag: "正向累计流量"
  7825. protocol: "json"
  7826. measurement: "WaterMeter"
  7827. field: "flow_total_pos"
  7828. valueType: "double"
  7829. minValue: null
  7830. maxValue: null
  7831. syncField: null
  7832. calcFormula: null
  7833. - tag: "反向累计流量"
  7834. protocol: "json"
  7835. measurement: "WaterMeter"
  7836. field: "flow_total_rev"
  7837. valueType: "double"
  7838. minValue: null
  7839. maxValue: null
  7840. syncField: null
  7841. calcFormula: null
  7842. - tag: "压力"
  7843. protocol: "json"
  7844. measurement: "WaterMeter"
  7845. field: "press_cur"
  7846. valueType: "double"
  7847. minValue: null
  7848. maxValue: null
  7849. syncField: null
  7850. calcFormula: null
  7851. - deviceId: "710012511270022"
  7852. deviceName: "293#光武大道与复兴大道交汇处东南角南侧"
  7853. deviceSn: "SB00000206"
  7854. deviceKind: "flow_press"
  7855. platform: "zaoyang-iot"
  7856. mfrs: "上海锐莱"
  7857. createTime: "2025-11-27 12:15:02"
  7858. tags:
  7859. - tag: "瞬时流量"
  7860. protocol: "json"
  7861. measurement: "WaterMeter"
  7862. field: "flow_cur"
  7863. valueType: "double"
  7864. minValue: null
  7865. maxValue: null
  7866. syncField: null
  7867. calcFormula: null
  7868. - tag: "正向累计流量"
  7869. protocol: "json"
  7870. measurement: "WaterMeter"
  7871. field: "flow_total_pos"
  7872. valueType: "double"
  7873. minValue: null
  7874. maxValue: null
  7875. syncField: null
  7876. calcFormula: null
  7877. - tag: "反向累计流量"
  7878. protocol: "json"
  7879. measurement: "WaterMeter"
  7880. field: "flow_total_rev"
  7881. valueType: "double"
  7882. minValue: null
  7883. maxValue: null
  7884. syncField: null
  7885. calcFormula: null
  7886. - tag: "压力"
  7887. protocol: "json"
  7888. measurement: "WaterMeter"
  7889. field: "press_cur"
  7890. valueType: "double"
  7891. minValue: null
  7892. maxValue: null
  7893. syncField: null
  7894. calcFormula: null
  7895. - deviceId: "710012511270023"
  7896. deviceName: "205#建设路金圆路南口"
  7897. deviceSn: "SB00000249"
  7898. deviceKind: "flow_press"
  7899. platform: "zaoyang-iot"
  7900. mfrs: "上海锐莱"
  7901. createTime: "2025-11-27 12:15:02"
  7902. tags:
  7903. - tag: "瞬时流量"
  7904. protocol: "json"
  7905. measurement: "WaterMeter"
  7906. field: "flow_cur"
  7907. valueType: "double"
  7908. minValue: null
  7909. maxValue: null
  7910. syncField: null
  7911. calcFormula: null
  7912. - tag: "正向累计流量"
  7913. protocol: "json"
  7914. measurement: "WaterMeter"
  7915. field: "flow_total_pos"
  7916. valueType: "double"
  7917. minValue: null
  7918. maxValue: null
  7919. syncField: null
  7920. calcFormula: null
  7921. - tag: "反向累计流量"
  7922. protocol: "json"
  7923. measurement: "WaterMeter"
  7924. field: "flow_total_rev"
  7925. valueType: "double"
  7926. minValue: null
  7927. maxValue: null
  7928. syncField: null
  7929. calcFormula: null
  7930. - tag: "压力"
  7931. protocol: "json"
  7932. measurement: "WaterMeter"
  7933. field: "press_cur"
  7934. valueType: "double"
  7935. minValue: null
  7936. maxValue: null
  7937. syncField: null
  7938. calcFormula: null
  7939. - deviceId: "710012511270024"
  7940. deviceName: "260#发展大道城南春天南侧路口"
  7941. deviceSn: "SB00000205"
  7942. deviceKind: "flow_press"
  7943. platform: "zaoyang-iot"
  7944. mfrs: "上海锐莱"
  7945. createTime: "2025-11-27 12:15:02"
  7946. tags:
  7947. - tag: "瞬时流量"
  7948. protocol: "json"
  7949. measurement: "WaterMeter"
  7950. field: "flow_cur"
  7951. valueType: "double"
  7952. minValue: null
  7953. maxValue: null
  7954. syncField: null
  7955. calcFormula: null
  7956. - tag: "正向累计流量"
  7957. protocol: "json"
  7958. measurement: "WaterMeter"
  7959. field: "flow_total_pos"
  7960. valueType: "double"
  7961. minValue: null
  7962. maxValue: null
  7963. syncField: null
  7964. calcFormula: null
  7965. - tag: "反向累计流量"
  7966. protocol: "json"
  7967. measurement: "WaterMeter"
  7968. field: "flow_total_rev"
  7969. valueType: "double"
  7970. minValue: null
  7971. maxValue: null
  7972. syncField: null
  7973. calcFormula: null
  7974. - tag: "压力"
  7975. protocol: "json"
  7976. measurement: "WaterMeter"
  7977. field: "press_cur"
  7978. valueType: "double"
  7979. minValue: null
  7980. maxValue: null
  7981. syncField: null
  7982. calcFormula: null
  7983. - deviceId: "710012511270025"
  7984. deviceName: "267#西环一路与发展大道交汇处东北角"
  7985. deviceSn: "SB00000204"
  7986. deviceKind: "flow_press"
  7987. platform: "zaoyang-iot"
  7988. mfrs: "上海锐莱"
  7989. createTime: "2025-11-27 12:15:02"
  7990. tags:
  7991. - tag: "瞬时流量"
  7992. protocol: "json"
  7993. measurement: "WaterMeter"
  7994. field: "flow_cur"
  7995. valueType: "double"
  7996. minValue: null
  7997. maxValue: null
  7998. syncField: null
  7999. calcFormula: null
  8000. - tag: "正向累计流量"
  8001. protocol: "json"
  8002. measurement: "WaterMeter"
  8003. field: "flow_total_pos"
  8004. valueType: "double"
  8005. minValue: null
  8006. maxValue: null
  8007. syncField: null
  8008. calcFormula: null
  8009. - tag: "反向累计流量"
  8010. protocol: "json"
  8011. measurement: "WaterMeter"
  8012. field: "flow_total_rev"
  8013. valueType: "double"
  8014. minValue: null
  8015. maxValue: null
  8016. syncField: null
  8017. calcFormula: null
  8018. - tag: "压力"
  8019. protocol: "json"
  8020. measurement: "WaterMeter"
  8021. field: "press_cur"
  8022. valueType: "double"
  8023. minValue: null
  8024. maxValue: null
  8025. syncField: null
  8026. calcFormula: null
  8027. - deviceId: "710012511270026"
  8028. deviceName: "130#人民路农委北侧路口往北30米"
  8029. deviceSn: "SB00000247"
  8030. deviceKind: "flow_press"
  8031. platform: "zaoyang-iot"
  8032. mfrs: "上海锐莱"
  8033. createTime: "2025-11-27 12:15:02"
  8034. tags:
  8035. - tag: "瞬时流量"
  8036. protocol: "json"
  8037. measurement: "WaterMeter"
  8038. field: "flow_cur"
  8039. valueType: "double"
  8040. minValue: null
  8041. maxValue: null
  8042. syncField: null
  8043. calcFormula: null
  8044. - tag: "正向累计流量"
  8045. protocol: "json"
  8046. measurement: "WaterMeter"
  8047. field: "flow_total_pos"
  8048. valueType: "double"
  8049. minValue: null
  8050. maxValue: null
  8051. syncField: null
  8052. calcFormula: null
  8053. - tag: "反向累计流量"
  8054. protocol: "json"
  8055. measurement: "WaterMeter"
  8056. field: "flow_total_rev"
  8057. valueType: "double"
  8058. minValue: null
  8059. maxValue: null
  8060. syncField: null
  8061. calcFormula: null
  8062. - tag: "压力"
  8063. protocol: "json"
  8064. measurement: "WaterMeter"
  8065. field: "press_cur"
  8066. valueType: "double"
  8067. minValue: null
  8068. maxValue: null
  8069. syncField: null
  8070. calcFormula: null
  8071. - deviceId: "710012511270027"
  8072. deviceName: "266#西环一路金牛山小区西南角"
  8073. deviceSn: "SB00000203"
  8074. deviceKind: "flow_press"
  8075. platform: "zaoyang-iot"
  8076. mfrs: "上海锐莱"
  8077. createTime: "2025-11-27 12:15:02"
  8078. tags:
  8079. - tag: "瞬时流量"
  8080. protocol: "json"
  8081. measurement: "WaterMeter"
  8082. field: "flow_cur"
  8083. valueType: "double"
  8084. minValue: null
  8085. maxValue: null
  8086. syncField: null
  8087. calcFormula: null
  8088. - tag: "正向累计流量"
  8089. protocol: "json"
  8090. measurement: "WaterMeter"
  8091. field: "flow_total_pos"
  8092. valueType: "double"
  8093. minValue: null
  8094. maxValue: null
  8095. syncField: null
  8096. calcFormula: null
  8097. - tag: "反向累计流量"
  8098. protocol: "json"
  8099. measurement: "WaterMeter"
  8100. field: "flow_total_rev"
  8101. valueType: "double"
  8102. minValue: null
  8103. maxValue: null
  8104. syncField: null
  8105. calcFormula: null
  8106. - tag: "压力"
  8107. protocol: "json"
  8108. measurement: "WaterMeter"
  8109. field: "press_cur"
  8110. valueType: "double"
  8111. minValue: null
  8112. maxValue: null
  8113. syncField: null
  8114. calcFormula: null
  8115. - deviceId: "710012511270028"
  8116. deviceName: "164#人民路报社小区路口"
  8117. deviceSn: "SB00000242"
  8118. deviceKind: "flow_press"
  8119. platform: "zaoyang-iot"
  8120. mfrs: "上海锐莱"
  8121. createTime: "2025-11-27 12:15:02"
  8122. tags:
  8123. - tag: "瞬时流量"
  8124. protocol: "json"
  8125. measurement: "WaterMeter"
  8126. field: "flow_cur"
  8127. valueType: "double"
  8128. minValue: null
  8129. maxValue: null
  8130. syncField: null
  8131. calcFormula: null
  8132. - tag: "正向累计流量"
  8133. protocol: "json"
  8134. measurement: "WaterMeter"
  8135. field: "flow_total_pos"
  8136. valueType: "double"
  8137. minValue: null
  8138. maxValue: null
  8139. syncField: null
  8140. calcFormula: null
  8141. - tag: "反向累计流量"
  8142. protocol: "json"
  8143. measurement: "WaterMeter"
  8144. field: "flow_total_rev"
  8145. valueType: "double"
  8146. minValue: null
  8147. maxValue: null
  8148. syncField: null
  8149. calcFormula: null
  8150. - tag: "压力"
  8151. protocol: "json"
  8152. measurement: "WaterMeter"
  8153. field: "press_cur"
  8154. valueType: "double"
  8155. minValue: null
  8156. maxValue: null
  8157. syncField: null
  8158. calcFormula: null
  8159. - deviceId: "710012511270029"
  8160. deviceName: "232#新华路人和花园路口"
  8161. deviceSn: "SB00000241"
  8162. deviceKind: "flow_press"
  8163. platform: "zaoyang-iot"
  8164. mfrs: "上海锐莱"
  8165. createTime: "2025-11-27 12:15:02"
  8166. tags:
  8167. - tag: "瞬时流量"
  8168. protocol: "json"
  8169. measurement: "WaterMeter"
  8170. field: "flow_cur"
  8171. valueType: "double"
  8172. minValue: null
  8173. maxValue: null
  8174. syncField: null
  8175. calcFormula: null
  8176. - tag: "正向累计流量"
  8177. protocol: "json"
  8178. measurement: "WaterMeter"
  8179. field: "flow_total_pos"
  8180. valueType: "double"
  8181. minValue: null
  8182. maxValue: null
  8183. syncField: null
  8184. calcFormula: null
  8185. - tag: "反向累计流量"
  8186. protocol: "json"
  8187. measurement: "WaterMeter"
  8188. field: "flow_total_rev"
  8189. valueType: "double"
  8190. minValue: null
  8191. maxValue: null
  8192. syncField: null
  8193. calcFormula: null
  8194. - tag: "压力"
  8195. protocol: "json"
  8196. measurement: "WaterMeter"
  8197. field: "press_cur"
  8198. valueType: "double"
  8199. minValue: null
  8200. maxValue: null
  8201. syncField: null
  8202. calcFormula: null
  8203. - deviceId: "710012511270030"
  8204. deviceName: "171#新华路与砖瓦路交汇处西北角"
  8205. deviceSn: "SB00000240"
  8206. deviceKind: "flow_press"
  8207. platform: "zaoyang-iot"
  8208. mfrs: "上海锐莱"
  8209. createTime: "2025-11-27 12:15:02"
  8210. tags:
  8211. - tag: "瞬时流量"
  8212. protocol: "json"
  8213. measurement: "WaterMeter"
  8214. field: "flow_cur"
  8215. valueType: "double"
  8216. minValue: null
  8217. maxValue: null
  8218. syncField: null
  8219. calcFormula: null
  8220. - tag: "正向累计流量"
  8221. protocol: "json"
  8222. measurement: "WaterMeter"
  8223. field: "flow_total_pos"
  8224. valueType: "double"
  8225. minValue: null
  8226. maxValue: null
  8227. syncField: null
  8228. calcFormula: null
  8229. - tag: "反向累计流量"
  8230. protocol: "json"
  8231. measurement: "WaterMeter"
  8232. field: "flow_total_rev"
  8233. valueType: "double"
  8234. minValue: null
  8235. maxValue: null
  8236. syncField: null
  8237. calcFormula: null
  8238. - tag: "压力"
  8239. protocol: "json"
  8240. measurement: "WaterMeter"
  8241. field: "press_cur"
  8242. valueType: "double"
  8243. minValue: null
  8244. maxValue: null
  8245. syncField: null
  8246. calcFormula: null
  8247. - deviceId: "710012511270031"
  8248. deviceName: "188#民主路幸福巷路口"
  8249. deviceSn: "SB00000235"
  8250. deviceKind: "flow_press"
  8251. platform: "zaoyang-iot"
  8252. mfrs: "上海锐莱"
  8253. createTime: "2025-11-27 12:15:02"
  8254. tags:
  8255. - tag: "瞬时流量"
  8256. protocol: "json"
  8257. measurement: "WaterMeter"
  8258. field: "flow_cur"
  8259. valueType: "double"
  8260. minValue: null
  8261. maxValue: null
  8262. syncField: null
  8263. calcFormula: null
  8264. - tag: "正向累计流量"
  8265. protocol: "json"
  8266. measurement: "WaterMeter"
  8267. field: "flow_total_pos"
  8268. valueType: "double"
  8269. minValue: null
  8270. maxValue: null
  8271. syncField: null
  8272. calcFormula: null
  8273. - tag: "反向累计流量"
  8274. protocol: "json"
  8275. measurement: "WaterMeter"
  8276. field: "flow_total_rev"
  8277. valueType: "double"
  8278. minValue: null
  8279. maxValue: null
  8280. syncField: null
  8281. calcFormula: null
  8282. - tag: "压力"
  8283. protocol: "json"
  8284. measurement: "WaterMeter"
  8285. field: "press_cur"
  8286. valueType: "double"
  8287. minValue: null
  8288. maxValue: null
  8289. syncField: null
  8290. calcFormula: null
  8291. - deviceId: "710012511270032"
  8292. deviceName: "183#光武路与新华路交汇处东南角"
  8293. deviceSn: "SB00000234"
  8294. deviceKind: "flow_press"
  8295. platform: "zaoyang-iot"
  8296. mfrs: "上海锐莱"
  8297. createTime: "2025-11-27 12:15:02"
  8298. tags:
  8299. - tag: "瞬时流量"
  8300. protocol: "json"
  8301. measurement: "WaterMeter"
  8302. field: "flow_cur"
  8303. valueType: "double"
  8304. minValue: null
  8305. maxValue: null
  8306. syncField: null
  8307. calcFormula: null
  8308. - tag: "正向累计流量"
  8309. protocol: "json"
  8310. measurement: "WaterMeter"
  8311. field: "flow_total_pos"
  8312. valueType: "double"
  8313. minValue: null
  8314. maxValue: null
  8315. syncField: null
  8316. calcFormula: null
  8317. - tag: "反向累计流量"
  8318. protocol: "json"
  8319. measurement: "WaterMeter"
  8320. field: "flow_total_rev"
  8321. valueType: "double"
  8322. minValue: null
  8323. maxValue: null
  8324. syncField: null
  8325. calcFormula: null
  8326. - tag: "压力"
  8327. protocol: "json"
  8328. measurement: "WaterMeter"
  8329. field: "press_cur"
  8330. valueType: "double"
  8331. minValue: null
  8332. maxValue: null
  8333. syncField: null
  8334. calcFormula: null
  8335. - deviceId: "710012511270033"
  8336. deviceName: "169#光武路水利局门口"
  8337. deviceSn: "SB00000233"
  8338. deviceKind: "flow_press"
  8339. platform: "zaoyang-iot"
  8340. mfrs: "上海锐莱"
  8341. createTime: "2025-11-27 12:15:02"
  8342. tags:
  8343. - tag: "瞬时流量"
  8344. protocol: "json"
  8345. measurement: "WaterMeter"
  8346. field: "flow_cur"
  8347. valueType: "double"
  8348. minValue: null
  8349. maxValue: null
  8350. syncField: null
  8351. calcFormula: null
  8352. - tag: "正向累计流量"
  8353. protocol: "json"
  8354. measurement: "WaterMeter"
  8355. field: "flow_total_pos"
  8356. valueType: "double"
  8357. minValue: null
  8358. maxValue: null
  8359. syncField: null
  8360. calcFormula: null
  8361. - tag: "反向累计流量"
  8362. protocol: "json"
  8363. measurement: "WaterMeter"
  8364. field: "flow_total_rev"
  8365. valueType: "double"
  8366. minValue: null
  8367. maxValue: null
  8368. syncField: null
  8369. calcFormula: null
  8370. - tag: "压力"
  8371. protocol: "json"
  8372. measurement: "WaterMeter"
  8373. field: "press_cur"
  8374. valueType: "double"
  8375. minValue: null
  8376. maxValue: null
  8377. syncField: null
  8378. calcFormula: null
  8379. - deviceId: "710012511270034"
  8380. deviceName: "168#清泉巷酒厂大门口"
  8381. deviceSn: "SB00000232"
  8382. deviceKind: "flow_press"
  8383. platform: "zaoyang-iot"
  8384. mfrs: "上海锐莱"
  8385. createTime: "2025-11-27 12:15:02"
  8386. tags:
  8387. - tag: "瞬时流量"
  8388. protocol: "json"
  8389. measurement: "WaterMeter"
  8390. field: "flow_cur"
  8391. valueType: "double"
  8392. minValue: null
  8393. maxValue: null
  8394. syncField: null
  8395. calcFormula: null
  8396. - tag: "正向累计流量"
  8397. protocol: "json"
  8398. measurement: "WaterMeter"
  8399. field: "flow_total_pos"
  8400. valueType: "double"
  8401. minValue: null
  8402. maxValue: null
  8403. syncField: null
  8404. calcFormula: null
  8405. - tag: "反向累计流量"
  8406. protocol: "json"
  8407. measurement: "WaterMeter"
  8408. field: "flow_total_rev"
  8409. valueType: "double"
  8410. minValue: null
  8411. maxValue: null
  8412. syncField: null
  8413. calcFormula: null
  8414. - tag: "压力"
  8415. protocol: "json"
  8416. measurement: "WaterMeter"
  8417. field: "press_cur"
  8418. valueType: "double"
  8419. minValue: null
  8420. maxValue: null
  8421. syncField: null
  8422. calcFormula: null
  8423. - deviceId: "710012511270035"
  8424. deviceName: "243#新华路与人民路交汇处东南角东侧(270)"
  8425. deviceSn: "SB00000238"
  8426. deviceKind: "flow_press"
  8427. platform: "zaoyang-iot"
  8428. mfrs: "上海锐莱"
  8429. createTime: "2025-11-27 12:15:02"
  8430. tags:
  8431. - tag: "瞬时流量"
  8432. protocol: "json"
  8433. measurement: "WaterMeter"
  8434. field: "flow_cur"
  8435. valueType: "double"
  8436. minValue: null
  8437. maxValue: null
  8438. syncField: null
  8439. calcFormula: null
  8440. - tag: "正向累计流量"
  8441. protocol: "json"
  8442. measurement: "WaterMeter"
  8443. field: "flow_total_pos"
  8444. valueType: "double"
  8445. minValue: null
  8446. maxValue: null
  8447. syncField: null
  8448. calcFormula: null
  8449. - tag: "反向累计流量"
  8450. protocol: "json"
  8451. measurement: "WaterMeter"
  8452. field: "flow_total_rev"
  8453. valueType: "double"
  8454. minValue: null
  8455. maxValue: null
  8456. syncField: null
  8457. calcFormula: null
  8458. - tag: "压力"
  8459. protocol: "json"
  8460. measurement: "WaterMeter"
  8461. field: "press_cur"
  8462. valueType: "double"
  8463. minValue: null
  8464. maxValue: null
  8465. syncField: null
  8466. calcFormula: null
  8467. - deviceId: "710012511270036"
  8468. deviceName: "134#朝阳东路与中心大道交汇处西北角"
  8469. deviceSn: "SB00000237"
  8470. deviceKind: "flow_press"
  8471. platform: "zaoyang-iot"
  8472. mfrs: "上海锐莱"
  8473. createTime: "2025-11-27 12:15:02"
  8474. tags:
  8475. - tag: "瞬时流量"
  8476. protocol: "json"
  8477. measurement: "WaterMeter"
  8478. field: "flow_cur"
  8479. valueType: "double"
  8480. minValue: null
  8481. maxValue: null
  8482. syncField: null
  8483. calcFormula: null
  8484. - tag: "正向累计流量"
  8485. protocol: "json"
  8486. measurement: "WaterMeter"
  8487. field: "flow_total_pos"
  8488. valueType: "double"
  8489. minValue: null
  8490. maxValue: null
  8491. syncField: null
  8492. calcFormula: null
  8493. - tag: "反向累计流量"
  8494. protocol: "json"
  8495. measurement: "WaterMeter"
  8496. field: "flow_total_rev"
  8497. valueType: "double"
  8498. minValue: null
  8499. maxValue: null
  8500. syncField: null
  8501. calcFormula: null
  8502. - tag: "压力"
  8503. protocol: "json"
  8504. measurement: "WaterMeter"
  8505. field: "press_cur"
  8506. valueType: "double"
  8507. minValue: null
  8508. maxValue: null
  8509. syncField: null
  8510. calcFormula: null
  8511. - deviceId: "710012511270037"
  8512. deviceName: "133#朝阳东路光武商城门口"
  8513. deviceSn: "SB00000236"
  8514. deviceKind: "flow_press"
  8515. platform: "zaoyang-iot"
  8516. mfrs: "上海锐莱"
  8517. createTime: "2025-11-27 12:15:02"
  8518. tags:
  8519. - tag: "瞬时流量"
  8520. protocol: "json"
  8521. measurement: "WaterMeter"
  8522. field: "flow_cur"
  8523. valueType: "double"
  8524. minValue: null
  8525. maxValue: null
  8526. syncField: null
  8527. calcFormula: null
  8528. - tag: "正向累计流量"
  8529. protocol: "json"
  8530. measurement: "WaterMeter"
  8531. field: "flow_total_pos"
  8532. valueType: "double"
  8533. minValue: null
  8534. maxValue: null
  8535. syncField: null
  8536. calcFormula: null
  8537. - tag: "反向累计流量"
  8538. protocol: "json"
  8539. measurement: "WaterMeter"
  8540. field: "flow_total_rev"
  8541. valueType: "double"
  8542. minValue: null
  8543. maxValue: null
  8544. syncField: null
  8545. calcFormula: null
  8546. - tag: "压力"
  8547. protocol: "json"
  8548. measurement: "WaterMeter"
  8549. field: "press_cur"
  8550. valueType: "double"
  8551. minValue: null
  8552. maxValue: null
  8553. syncField: null
  8554. calcFormula: null
  8555. - deviceId: "710012511270038"
  8556. deviceName: "173#砖瓦村绿宝小区十字路口"
  8557. deviceSn: "SB00000231"
  8558. deviceKind: "flow_press"
  8559. platform: "zaoyang-iot"
  8560. mfrs: "上海锐莱"
  8561. createTime: "2025-11-27 12:15:02"
  8562. tags:
  8563. - tag: "瞬时流量"
  8564. protocol: "json"
  8565. measurement: "WaterMeter"
  8566. field: "flow_cur"
  8567. valueType: "double"
  8568. minValue: null
  8569. maxValue: null
  8570. syncField: null
  8571. calcFormula: null
  8572. - tag: "正向累计流量"
  8573. protocol: "json"
  8574. measurement: "WaterMeter"
  8575. field: "flow_total_pos"
  8576. valueType: "double"
  8577. minValue: null
  8578. maxValue: null
  8579. syncField: null
  8580. calcFormula: null
  8581. - tag: "反向累计流量"
  8582. protocol: "json"
  8583. measurement: "WaterMeter"
  8584. field: "flow_total_rev"
  8585. valueType: "double"
  8586. minValue: null
  8587. maxValue: null
  8588. syncField: null
  8589. calcFormula: null
  8590. - tag: "压力"
  8591. protocol: "json"
  8592. measurement: "WaterMeter"
  8593. field: "press_cur"
  8594. valueType: "double"
  8595. minValue: null
  8596. maxValue: null
  8597. syncField: null
  8598. calcFormula: null
  8599. - deviceId: "710012511270039"
  8600. deviceName: "174#砖瓦村野马自行车厂门口"
  8601. deviceSn: "SB00000230"
  8602. deviceKind: "flow_press"
  8603. platform: "zaoyang-iot"
  8604. mfrs: "上海锐莱"
  8605. createTime: "2025-11-27 12:15:02"
  8606. tags:
  8607. - tag: "瞬时流量"
  8608. protocol: "json"
  8609. measurement: "WaterMeter"
  8610. field: "flow_cur"
  8611. valueType: "double"
  8612. minValue: null
  8613. maxValue: null
  8614. syncField: null
  8615. calcFormula: null
  8616. - tag: "正向累计流量"
  8617. protocol: "json"
  8618. measurement: "WaterMeter"
  8619. field: "flow_total_pos"
  8620. valueType: "double"
  8621. minValue: null
  8622. maxValue: null
  8623. syncField: null
  8624. calcFormula: null
  8625. - tag: "反向累计流量"
  8626. protocol: "json"
  8627. measurement: "WaterMeter"
  8628. field: "flow_total_rev"
  8629. valueType: "double"
  8630. minValue: null
  8631. maxValue: null
  8632. syncField: null
  8633. calcFormula: null
  8634. - tag: "压力"
  8635. protocol: "json"
  8636. measurement: "WaterMeter"
  8637. field: "press_cur"
  8638. valueType: "double"
  8639. minValue: null
  8640. maxValue: null
  8641. syncField: null
  8642. calcFormula: null
  8643. - deviceId: "710012511270040"
  8644. deviceName: "172#自行车厂北大门西侧"
  8645. deviceSn: "SB00000229"
  8646. deviceKind: "flow_press"
  8647. platform: "zaoyang-iot"
  8648. mfrs: "上海锐莱"
  8649. createTime: "2025-11-27 12:15:02"
  8650. tags:
  8651. - tag: "瞬时流量"
  8652. protocol: "json"
  8653. measurement: "WaterMeter"
  8654. field: "flow_cur"
  8655. valueType: "double"
  8656. minValue: null
  8657. maxValue: null
  8658. syncField: null
  8659. calcFormula: null
  8660. - tag: "正向累计流量"
  8661. protocol: "json"
  8662. measurement: "WaterMeter"
  8663. field: "flow_total_pos"
  8664. valueType: "double"
  8665. minValue: null
  8666. maxValue: null
  8667. syncField: null
  8668. calcFormula: null
  8669. - tag: "反向累计流量"
  8670. protocol: "json"
  8671. measurement: "WaterMeter"
  8672. field: "flow_total_rev"
  8673. valueType: "double"
  8674. minValue: null
  8675. maxValue: null
  8676. syncField: null
  8677. calcFormula: null
  8678. - tag: "压力"
  8679. protocol: "json"
  8680. measurement: "WaterMeter"
  8681. field: "press_cur"
  8682. valueType: "double"
  8683. minValue: null
  8684. maxValue: null
  8685. syncField: null
  8686. calcFormula: null
  8687. - deviceId: "710012511270041"
  8688. deviceName: "221#建设路人民法庭对面湖阳羊肉馆门口"
  8689. deviceSn: "SB00000224"
  8690. deviceKind: "flow_press"
  8691. platform: "zaoyang-iot"
  8692. mfrs: "上海锐莱"
  8693. createTime: "2025-11-27 12:15:02"
  8694. tags:
  8695. - tag: "瞬时流量"
  8696. protocol: "json"
  8697. measurement: "WaterMeter"
  8698. field: "flow_cur"
  8699. valueType: "double"
  8700. minValue: null
  8701. maxValue: null
  8702. syncField: null
  8703. calcFormula: null
  8704. - tag: "正向累计流量"
  8705. protocol: "json"
  8706. measurement: "WaterMeter"
  8707. field: "flow_total_pos"
  8708. valueType: "double"
  8709. minValue: null
  8710. maxValue: null
  8711. syncField: null
  8712. calcFormula: null
  8713. - tag: "反向累计流量"
  8714. protocol: "json"
  8715. measurement: "WaterMeter"
  8716. field: "flow_total_rev"
  8717. valueType: "double"
  8718. minValue: null
  8719. maxValue: null
  8720. syncField: null
  8721. calcFormula: null
  8722. - tag: "压力"
  8723. protocol: "json"
  8724. measurement: "WaterMeter"
  8725. field: "press_cur"
  8726. valueType: "double"
  8727. minValue: null
  8728. maxValue: null
  8729. syncField: null
  8730. calcFormula: null
  8731. - deviceId: "710012511270042"
  8732. deviceName: "220#建设路与人民路交差路口西北角往西30米"
  8733. deviceSn: "SB00000223"
  8734. deviceKind: "flow_press"
  8735. platform: "zaoyang-iot"
  8736. mfrs: "上海锐莱"
  8737. createTime: "2025-11-27 12:15:02"
  8738. tags:
  8739. - tag: "瞬时流量"
  8740. protocol: "json"
  8741. measurement: "WaterMeter"
  8742. field: "flow_cur"
  8743. valueType: "double"
  8744. minValue: null
  8745. maxValue: null
  8746. syncField: null
  8747. calcFormula: null
  8748. - tag: "正向累计流量"
  8749. protocol: "json"
  8750. measurement: "WaterMeter"
  8751. field: "flow_total_pos"
  8752. valueType: "double"
  8753. minValue: null
  8754. maxValue: null
  8755. syncField: null
  8756. calcFormula: null
  8757. - tag: "反向累计流量"
  8758. protocol: "json"
  8759. measurement: "WaterMeter"
  8760. field: "flow_total_rev"
  8761. valueType: "double"
  8762. minValue: null
  8763. maxValue: null
  8764. syncField: null
  8765. calcFormula: null
  8766. - tag: "压力"
  8767. protocol: "json"
  8768. measurement: "WaterMeter"
  8769. field: "press_cur"
  8770. valueType: "double"
  8771. minValue: null
  8772. maxValue: null
  8773. syncField: null
  8774. calcFormula: null
  8775. - deviceId: "710012511270043"
  8776. deviceName: "Z14#大南街金谷饭店路口"
  8777. deviceSn: "SB00000267"
  8778. deviceKind: "flow_press"
  8779. platform: "zaoyang-iot"
  8780. mfrs: "上海锐莱"
  8781. createTime: "2025-11-27 12:15:02"
  8782. tags:
  8783. - tag: "瞬时流量"
  8784. protocol: "json"
  8785. measurement: "WaterMeter"
  8786. field: "flow_cur"
  8787. valueType: "double"
  8788. minValue: null
  8789. maxValue: null
  8790. syncField: null
  8791. calcFormula: null
  8792. - tag: "正向累计流量"
  8793. protocol: "json"
  8794. measurement: "WaterMeter"
  8795. field: "flow_total_pos"
  8796. valueType: "double"
  8797. minValue: null
  8798. maxValue: null
  8799. syncField: null
  8800. calcFormula: null
  8801. - tag: "反向累计流量"
  8802. protocol: "json"
  8803. measurement: "WaterMeter"
  8804. field: "flow_total_rev"
  8805. valueType: "double"
  8806. minValue: null
  8807. maxValue: null
  8808. syncField: null
  8809. calcFormula: null
  8810. - tag: "压力"
  8811. protocol: "json"
  8812. measurement: "WaterMeter"
  8813. field: "press_cur"
  8814. valueType: "double"
  8815. minValue: null
  8816. maxValue: null
  8817. syncField: null
  8818. calcFormula: null
  8819. - deviceId: "710012511270044"
  8820. deviceName: "214#人民路供电供水设备厂大门北"
  8821. deviceSn: "SB00000222"
  8822. deviceKind: "flow_press"
  8823. platform: "zaoyang-iot"
  8824. mfrs: "上海锐莱"
  8825. createTime: "2025-11-27 12:15:02"
  8826. tags:
  8827. - tag: "瞬时流量"
  8828. protocol: "json"
  8829. measurement: "WaterMeter"
  8830. field: "flow_cur"
  8831. valueType: "double"
  8832. minValue: null
  8833. maxValue: null
  8834. syncField: null
  8835. calcFormula: null
  8836. - tag: "正向累计流量"
  8837. protocol: "json"
  8838. measurement: "WaterMeter"
  8839. field: "flow_total_pos"
  8840. valueType: "double"
  8841. minValue: null
  8842. maxValue: null
  8843. syncField: null
  8844. calcFormula: null
  8845. - tag: "反向累计流量"
  8846. protocol: "json"
  8847. measurement: "WaterMeter"
  8848. field: "flow_total_rev"
  8849. valueType: "double"
  8850. minValue: null
  8851. maxValue: null
  8852. syncField: null
  8853. calcFormula: null
  8854. - tag: "压力"
  8855. protocol: "json"
  8856. measurement: "WaterMeter"
  8857. field: "press_cur"
  8858. valueType: "double"
  8859. minValue: null
  8860. maxValue: null
  8861. syncField: null
  8862. calcFormula: null
  8863. - deviceId: "710012511270045"
  8864. deviceName: "64#前进路与西环二路交汇处西南角向南"
  8865. deviceSn: "SB00000266"
  8866. deviceKind: "flow_press"
  8867. platform: "zaoyang-iot"
  8868. mfrs: "上海锐莱"
  8869. createTime: "2025-11-27 12:15:02"
  8870. tags:
  8871. - tag: "瞬时流量"
  8872. protocol: "json"
  8873. measurement: "WaterMeter"
  8874. field: "flow_cur"
  8875. valueType: "double"
  8876. minValue: null
  8877. maxValue: null
  8878. syncField: null
  8879. calcFormula: null
  8880. - tag: "正向累计流量"
  8881. protocol: "json"
  8882. measurement: "WaterMeter"
  8883. field: "flow_total_pos"
  8884. valueType: "double"
  8885. minValue: null
  8886. maxValue: null
  8887. syncField: null
  8888. calcFormula: null
  8889. - tag: "反向累计流量"
  8890. protocol: "json"
  8891. measurement: "WaterMeter"
  8892. field: "flow_total_rev"
  8893. valueType: "double"
  8894. minValue: null
  8895. maxValue: null
  8896. syncField: null
  8897. calcFormula: null
  8898. - tag: "压力"
  8899. protocol: "json"
  8900. measurement: "WaterMeter"
  8901. field: "press_cur"
  8902. valueType: "double"
  8903. minValue: null
  8904. maxValue: null
  8905. syncField: null
  8906. calcFormula: null
  8907. - deviceId: "710012511270046"
  8908. deviceName: "213#人民路供电公司家属院门口"
  8909. deviceSn: "SB00000221"
  8910. deviceKind: "flow_press"
  8911. platform: "zaoyang-iot"
  8912. mfrs: "上海锐莱"
  8913. createTime: "2025-11-27 12:15:02"
  8914. tags:
  8915. - tag: "瞬时流量"
  8916. protocol: "json"
  8917. measurement: "WaterMeter"
  8918. field: "flow_cur"
  8919. valueType: "double"
  8920. minValue: null
  8921. maxValue: null
  8922. syncField: null
  8923. calcFormula: null
  8924. - tag: "正向累计流量"
  8925. protocol: "json"
  8926. measurement: "WaterMeter"
  8927. field: "flow_total_pos"
  8928. valueType: "double"
  8929. minValue: null
  8930. maxValue: null
  8931. syncField: null
  8932. calcFormula: null
  8933. - tag: "反向累计流量"
  8934. protocol: "json"
  8935. measurement: "WaterMeter"
  8936. field: "flow_total_rev"
  8937. valueType: "double"
  8938. minValue: null
  8939. maxValue: null
  8940. syncField: null
  8941. calcFormula: null
  8942. - tag: "压力"
  8943. protocol: "json"
  8944. measurement: "WaterMeter"
  8945. field: "press_cur"
  8946. valueType: "double"
  8947. minValue: null
  8948. maxValue: null
  8949. syncField: null
  8950. calcFormula: null
  8951. - deviceId: "710012511270047"
  8952. deviceName: "59#西环三路与前进路交汇处西南角"
  8953. deviceSn: "SB00000265"
  8954. deviceKind: "flow_press"
  8955. platform: "zaoyang-iot"
  8956. mfrs: "上海锐莱"
  8957. createTime: "2025-11-27 12:15:02"
  8958. tags:
  8959. - tag: "瞬时流量"
  8960. protocol: "json"
  8961. measurement: "WaterMeter"
  8962. field: "flow_cur"
  8963. valueType: "double"
  8964. minValue: null
  8965. maxValue: null
  8966. syncField: null
  8967. calcFormula: null
  8968. - tag: "正向累计流量"
  8969. protocol: "json"
  8970. measurement: "WaterMeter"
  8971. field: "flow_total_pos"
  8972. valueType: "double"
  8973. minValue: null
  8974. maxValue: null
  8975. syncField: null
  8976. calcFormula: null
  8977. - tag: "反向累计流量"
  8978. protocol: "json"
  8979. measurement: "WaterMeter"
  8980. field: "flow_total_rev"
  8981. valueType: "double"
  8982. minValue: null
  8983. maxValue: null
  8984. syncField: null
  8985. calcFormula: null
  8986. - tag: "压力"
  8987. protocol: "json"
  8988. measurement: "WaterMeter"
  8989. field: "press_cur"
  8990. valueType: "double"
  8991. minValue: null
  8992. maxValue: null
  8993. syncField: null
  8994. calcFormula: null
  8995. - deviceId: "710012511270048"
  8996. deviceName: "286#中兴大道与复兴大道交汇处西南角南侧"
  8997. deviceSn: "SB00000228"
  8998. deviceKind: "flow_press"
  8999. platform: "zaoyang-iot"
  9000. mfrs: "上海锐莱"
  9001. createTime: "2025-11-27 12:15:02"
  9002. tags:
  9003. - tag: "瞬时流量"
  9004. protocol: "json"
  9005. measurement: "WaterMeter"
  9006. field: "flow_cur"
  9007. valueType: "double"
  9008. minValue: null
  9009. maxValue: null
  9010. syncField: null
  9011. calcFormula: null
  9012. - tag: "正向累计流量"
  9013. protocol: "json"
  9014. measurement: "WaterMeter"
  9015. field: "flow_total_pos"
  9016. valueType: "double"
  9017. minValue: null
  9018. maxValue: null
  9019. syncField: null
  9020. calcFormula: null
  9021. - tag: "反向累计流量"
  9022. protocol: "json"
  9023. measurement: "WaterMeter"
  9024. field: "flow_total_rev"
  9025. valueType: "double"
  9026. minValue: null
  9027. maxValue: null
  9028. syncField: null
  9029. calcFormula: null
  9030. - tag: "压力"
  9031. protocol: "json"
  9032. measurement: "WaterMeter"
  9033. field: "press_cur"
  9034. valueType: "double"
  9035. minValue: null
  9036. maxValue: null
  9037. syncField: null
  9038. calcFormula: null
  9039. - deviceId: "710012511270049"
  9040. deviceName: "226#光武路大商元东口北侧"
  9041. deviceSn: "SB00000227"
  9042. deviceKind: "flow_press"
  9043. platform: "zaoyang-iot"
  9044. mfrs: "上海锐莱"
  9045. createTime: "2025-11-27 12:15:02"
  9046. tags:
  9047. - tag: "瞬时流量"
  9048. protocol: "json"
  9049. measurement: "WaterMeter"
  9050. field: "flow_cur"
  9051. valueType: "double"
  9052. minValue: null
  9053. maxValue: null
  9054. syncField: null
  9055. calcFormula: null
  9056. - tag: "正向累计流量"
  9057. protocol: "json"
  9058. measurement: "WaterMeter"
  9059. field: "flow_total_pos"
  9060. valueType: "double"
  9061. minValue: null
  9062. maxValue: null
  9063. syncField: null
  9064. calcFormula: null
  9065. - tag: "反向累计流量"
  9066. protocol: "json"
  9067. measurement: "WaterMeter"
  9068. field: "flow_total_rev"
  9069. valueType: "double"
  9070. minValue: null
  9071. maxValue: null
  9072. syncField: null
  9073. calcFormula: null
  9074. - tag: "压力"
  9075. protocol: "json"
  9076. measurement: "WaterMeter"
  9077. field: "press_cur"
  9078. valueType: "double"
  9079. minValue: null
  9080. maxValue: null
  9081. syncField: null
  9082. calcFormula: null
  9083. - deviceId: "710012511270050"
  9084. deviceName: "227#光武路大商元东口南侧"
  9085. deviceSn: "SB00000226"
  9086. deviceKind: "flow_press"
  9087. platform: "zaoyang-iot"
  9088. mfrs: "上海锐莱"
  9089. createTime: "2025-11-27 12:15:02"
  9090. tags:
  9091. - tag: "瞬时流量"
  9092. protocol: "json"
  9093. measurement: "WaterMeter"
  9094. field: "flow_cur"
  9095. valueType: "double"
  9096. minValue: null
  9097. maxValue: null
  9098. syncField: null
  9099. calcFormula: null
  9100. - tag: "正向累计流量"
  9101. protocol: "json"
  9102. measurement: "WaterMeter"
  9103. field: "flow_total_pos"
  9104. valueType: "double"
  9105. minValue: null
  9106. maxValue: null
  9107. syncField: null
  9108. calcFormula: null
  9109. - tag: "反向累计流量"
  9110. protocol: "json"
  9111. measurement: "WaterMeter"
  9112. field: "flow_total_rev"
  9113. valueType: "double"
  9114. minValue: null
  9115. maxValue: null
  9116. syncField: null
  9117. calcFormula: null
  9118. - tag: "压力"
  9119. protocol: "json"
  9120. measurement: "WaterMeter"
  9121. field: "press_cur"
  9122. valueType: "double"
  9123. minValue: null
  9124. maxValue: null
  9125. syncField: null
  9126. calcFormula: null
  9127. - deviceId: "710012511270051"
  9128. deviceName: "222#建设路标榜路口东侧"
  9129. deviceSn: "SB00000225"
  9130. deviceKind: "flow_press"
  9131. platform: "zaoyang-iot"
  9132. mfrs: "上海锐莱"
  9133. createTime: "2025-11-27 12:15:02"
  9134. tags:
  9135. - tag: "瞬时流量"
  9136. protocol: "json"
  9137. measurement: "WaterMeter"
  9138. field: "flow_cur"
  9139. valueType: "double"
  9140. minValue: null
  9141. maxValue: null
  9142. syncField: null
  9143. calcFormula: null
  9144. - tag: "正向累计流量"
  9145. protocol: "json"
  9146. measurement: "WaterMeter"
  9147. field: "flow_total_pos"
  9148. valueType: "double"
  9149. minValue: null
  9150. maxValue: null
  9151. syncField: null
  9152. calcFormula: null
  9153. - tag: "反向累计流量"
  9154. protocol: "json"
  9155. measurement: "WaterMeter"
  9156. field: "flow_total_rev"
  9157. valueType: "double"
  9158. minValue: null
  9159. maxValue: null
  9160. syncField: null
  9161. calcFormula: null
  9162. - tag: "压力"
  9163. protocol: "json"
  9164. measurement: "WaterMeter"
  9165. field: "press_cur"
  9166. valueType: "double"
  9167. minValue: null
  9168. maxValue: null
  9169. syncField: null
  9170. calcFormula: null
  9171. - deviceId: "710012511270052"
  9172. deviceName: "27#民族路与中兴大道交汇处往东"
  9173. deviceSn: "SB00000260"
  9174. deviceKind: "flow_press"
  9175. platform: "zaoyang-iot"
  9176. mfrs: "上海锐莱"
  9177. createTime: "2025-11-27 12:15:02"
  9178. tags:
  9179. - tag: "瞬时流量"
  9180. protocol: "json"
  9181. measurement: "WaterMeter"
  9182. field: "flow_cur"
  9183. valueType: "double"
  9184. minValue: null
  9185. maxValue: null
  9186. syncField: null
  9187. calcFormula: null
  9188. - tag: "正向累计流量"
  9189. protocol: "json"
  9190. measurement: "WaterMeter"
  9191. field: "flow_total_pos"
  9192. valueType: "double"
  9193. minValue: null
  9194. maxValue: null
  9195. syncField: null
  9196. calcFormula: null
  9197. - tag: "反向累计流量"
  9198. protocol: "json"
  9199. measurement: "WaterMeter"
  9200. field: "flow_total_rev"
  9201. valueType: "double"
  9202. minValue: null
  9203. maxValue: null
  9204. syncField: null
  9205. calcFormula: null
  9206. - tag: "压力"
  9207. protocol: "json"
  9208. measurement: "WaterMeter"
  9209. field: "press_cur"
  9210. valueType: "double"
  9211. minValue: null
  9212. maxValue: null
  9213. syncField: null
  9214. calcFormula: null
  9215. - deviceId: "710012511270053"
  9216. deviceName: "300#复兴大道与西环二路交汇处东南角"
  9217. deviceSn: "SB00000220"
  9218. deviceKind: "flow_press"
  9219. platform: "zaoyang-iot"
  9220. mfrs: "上海锐莱"
  9221. createTime: "2025-11-27 12:15:02"
  9222. tags:
  9223. - tag: "瞬时流量"
  9224. protocol: "json"
  9225. measurement: "WaterMeter"
  9226. field: "flow_cur"
  9227. valueType: "double"
  9228. minValue: null
  9229. maxValue: null
  9230. syncField: null
  9231. calcFormula: null
  9232. - tag: "正向累计流量"
  9233. protocol: "json"
  9234. measurement: "WaterMeter"
  9235. field: "flow_total_pos"
  9236. valueType: "double"
  9237. minValue: null
  9238. maxValue: null
  9239. syncField: null
  9240. calcFormula: null
  9241. - tag: "反向累计流量"
  9242. protocol: "json"
  9243. measurement: "WaterMeter"
  9244. field: "flow_total_rev"
  9245. valueType: "double"
  9246. minValue: null
  9247. maxValue: null
  9248. syncField: null
  9249. calcFormula: null
  9250. - tag: "压力"
  9251. protocol: "json"
  9252. measurement: "WaterMeter"
  9253. field: "press_cur"
  9254. valueType: "double"
  9255. minValue: null
  9256. maxValue: null
  9257. syncField: null
  9258. calcFormula: null
  9259. - deviceId: "710012511270054"
  9260. deviceName: "4#民族西路还建小区西南角"
  9261. deviceSn: "SB00000262"
  9262. deviceKind: "flow_press"
  9263. platform: "zaoyang-iot"
  9264. mfrs: "上海锐莱"
  9265. createTime: "2025-11-27 12:15:02"
  9266. tags:
  9267. - tag: "瞬时流量"
  9268. protocol: "json"
  9269. measurement: "WaterMeter"
  9270. field: "flow_cur"
  9271. valueType: "double"
  9272. minValue: null
  9273. maxValue: null
  9274. syncField: null
  9275. calcFormula: null
  9276. - tag: "正向累计流量"
  9277. protocol: "json"
  9278. measurement: "WaterMeter"
  9279. field: "flow_total_pos"
  9280. valueType: "double"
  9281. minValue: null
  9282. maxValue: null
  9283. syncField: null
  9284. calcFormula: null
  9285. - tag: "反向累计流量"
  9286. protocol: "json"
  9287. measurement: "WaterMeter"
  9288. field: "flow_total_rev"
  9289. valueType: "double"
  9290. minValue: null
  9291. maxValue: null
  9292. syncField: null
  9293. calcFormula: null
  9294. - tag: "压力"
  9295. protocol: "json"
  9296. measurement: "WaterMeter"
  9297. field: "press_cur"
  9298. valueType: "double"
  9299. minValue: null
  9300. maxValue: null
  9301. syncField: null
  9302. calcFormula: null
  9303. - deviceId: "710012511270055"
  9304. deviceName: "28#民族路与中兴大道交汇处往北"
  9305. deviceSn: "SB00000261"
  9306. deviceKind: "flow_press"
  9307. platform: "zaoyang-iot"
  9308. mfrs: "上海锐莱"
  9309. createTime: "2025-11-27 12:15:02"
  9310. tags:
  9311. - tag: "瞬时流量"
  9312. protocol: "json"
  9313. measurement: "WaterMeter"
  9314. field: "flow_cur"
  9315. valueType: "double"
  9316. minValue: null
  9317. maxValue: null
  9318. syncField: null
  9319. calcFormula: null
  9320. - tag: "正向累计流量"
  9321. protocol: "json"
  9322. measurement: "WaterMeter"
  9323. field: "flow_total_pos"
  9324. valueType: "double"
  9325. minValue: null
  9326. maxValue: null
  9327. syncField: null
  9328. calcFormula: null
  9329. - tag: "反向累计流量"
  9330. protocol: "json"
  9331. measurement: "WaterMeter"
  9332. field: "flow_total_rev"
  9333. valueType: "double"
  9334. minValue: null
  9335. maxValue: null
  9336. syncField: null
  9337. calcFormula: null
  9338. - tag: "压力"
  9339. protocol: "json"
  9340. measurement: "WaterMeter"
  9341. field: "press_cur"
  9342. valueType: "double"
  9343. minValue: null
  9344. maxValue: null
  9345. syncField: null
  9346. calcFormula: null
  9347. - deviceId: "710012511270056"
  9348. deviceName: "159#人民路金利傲园门口"
  9349. deviceSn: "SB00000208"
  9350. deviceKind: "flow_press"
  9351. platform: "zaoyang-iot"
  9352. mfrs: "上海锐莱"
  9353. createTime: "2025-11-27 12:30:01"
  9354. tags:
  9355. - tag: "瞬时流量"
  9356. protocol: "json"
  9357. measurement: "WaterMeter"
  9358. field: "flow_cur"
  9359. valueType: "double"
  9360. minValue: null
  9361. maxValue: null
  9362. syncField: null
  9363. calcFormula: null
  9364. - tag: "正向累计流量"
  9365. protocol: "json"
  9366. measurement: "WaterMeter"
  9367. field: "flow_total_pos"
  9368. valueType: "double"
  9369. minValue: null
  9370. maxValue: null
  9371. syncField: null
  9372. calcFormula: null
  9373. - tag: "反向累计流量"
  9374. protocol: "json"
  9375. measurement: "WaterMeter"
  9376. field: "flow_total_rev"
  9377. valueType: "double"
  9378. minValue: null
  9379. maxValue: null
  9380. syncField: null
  9381. calcFormula: null
  9382. - tag: "压力"
  9383. protocol: "json"
  9384. measurement: "WaterMeter"
  9385. field: "press_cur"
  9386. valueType: "double"
  9387. minValue: null
  9388. maxValue: null
  9389. syncField: null
  9390. calcFormula: null
  9391. - deviceId: "710012511270057"
  9392. deviceName: "217#人民路兴隆路加压站院内"
  9393. deviceSn: "SB00000217"
  9394. deviceKind: "flow_press"
  9395. platform: "zaoyang-iot"
  9396. mfrs: "上海锐莱"
  9397. createTime: "2025-11-27 12:30:01"
  9398. tags:
  9399. - tag: "瞬时流量"
  9400. protocol: "json"
  9401. measurement: "WaterMeter"
  9402. field: "flow_cur"
  9403. valueType: "double"
  9404. minValue: null
  9405. maxValue: null
  9406. syncField: null
  9407. calcFormula: null
  9408. - tag: "正向累计流量"
  9409. protocol: "json"
  9410. measurement: "WaterMeter"
  9411. field: "flow_total_pos"
  9412. valueType: "double"
  9413. minValue: null
  9414. maxValue: null
  9415. syncField: null
  9416. calcFormula: null
  9417. - tag: "反向累计流量"
  9418. protocol: "json"
  9419. measurement: "WaterMeter"
  9420. field: "flow_total_rev"
  9421. valueType: "double"
  9422. minValue: null
  9423. maxValue: null
  9424. syncField: null
  9425. calcFormula: null
  9426. - tag: "压力"
  9427. protocol: "json"
  9428. measurement: "WaterMeter"
  9429. field: "press_cur"
  9430. valueType: "double"
  9431. minValue: null
  9432. maxValue: null
  9433. syncField: null
  9434. calcFormula: null
  9435. - deviceId: "710012511270058"
  9436. deviceName: "129#人民路农委北侧路口"
  9437. deviceSn: "SB00000248"
  9438. deviceKind: "flow_press"
  9439. platform: "zaoyang-iot"
  9440. mfrs: "上海锐莱"
  9441. createTime: "2025-11-27 12:30:01"
  9442. tags:
  9443. - tag: "瞬时流量"
  9444. protocol: "json"
  9445. measurement: "WaterMeter"
  9446. field: "flow_cur"
  9447. valueType: "double"
  9448. minValue: null
  9449. maxValue: null
  9450. syncField: null
  9451. calcFormula: null
  9452. - tag: "正向累计流量"
  9453. protocol: "json"
  9454. measurement: "WaterMeter"
  9455. field: "flow_total_pos"
  9456. valueType: "double"
  9457. minValue: null
  9458. maxValue: null
  9459. syncField: null
  9460. calcFormula: null
  9461. - tag: "反向累计流量"
  9462. protocol: "json"
  9463. measurement: "WaterMeter"
  9464. field: "flow_total_rev"
  9465. valueType: "double"
  9466. minValue: null
  9467. maxValue: null
  9468. syncField: null
  9469. calcFormula: null
  9470. - tag: "压力"
  9471. protocol: "json"
  9472. measurement: "WaterMeter"
  9473. field: "press_cur"
  9474. valueType: "double"
  9475. minValue: null
  9476. maxValue: null
  9477. syncField: null
  9478. calcFormula: null
  9479. - deviceId: "710012511270059"
  9480. deviceName: "254#发展大道与支九路交汇处"
  9481. deviceSn: "SB00000213"
  9482. deviceKind: "flow_press"
  9483. platform: "zaoyang-iot"
  9484. mfrs: "上海锐莱"
  9485. createTime: "2025-11-27 18:30:01"
  9486. tags:
  9487. - tag: "瞬时流量"
  9488. protocol: "json"
  9489. measurement: "WaterMeter"
  9490. field: "flow_cur"
  9491. valueType: "double"
  9492. minValue: null
  9493. maxValue: null
  9494. syncField: null
  9495. calcFormula: null
  9496. - tag: "正向累计流量"
  9497. protocol: "json"
  9498. measurement: "WaterMeter"
  9499. field: "flow_total_pos"
  9500. valueType: "double"
  9501. minValue: null
  9502. maxValue: null
  9503. syncField: null
  9504. calcFormula: null
  9505. - tag: "反向累计流量"
  9506. protocol: "json"
  9507. measurement: "WaterMeter"
  9508. field: "flow_total_rev"
  9509. valueType: "double"
  9510. minValue: null
  9511. maxValue: null
  9512. syncField: null
  9513. calcFormula: null
  9514. - tag: "压力"
  9515. protocol: "json"
  9516. measurement: "WaterMeter"
  9517. field: "press_cur"
  9518. valueType: "double"
  9519. minValue: null
  9520. maxValue: null
  9521. syncField: null
  9522. calcFormula: null