dev_zydma.yml 146 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354
  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