dev_zydma.yml 148 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398
  1. ---
  2. - deviceId: "710022511060001"
  3. deviceName: "内衣厂流量仪"
  4. deviceSn: "SB00000015"
  5. deviceKind: "flow"
  6. platform: "zaoyang-iot"
  7. mfrs: "上海锐铼"
  8. createTime: "2025-11-06 17:45:44"
  9. tags:
  10. - tag: "瞬时流量"
  11. protocol: "json"
  12. measurement: "WaterMeter"
  13. field: "flow_cur"
  14. valueType: "double"
  15. minValue: null
  16. maxValue: null
  17. syncField: null
  18. calcFormula: null
  19. - tag: "正向累计流量"
  20. protocol: "json"
  21. measurement: "WaterMeter"
  22. field: "flow_total_pos"
  23. valueType: "double"
  24. minValue: null
  25. maxValue: null
  26. syncField: null
  27. calcFormula: null
  28. - tag: "反向累计流量"
  29. protocol: "json"
  30. measurement: "WaterMeter"
  31. field: "flow_total_rev"
  32. valueType: "double"
  33. minValue: null
  34. maxValue: null
  35. syncField: null
  36. calcFormula: null
  37. - tag: "压力"
  38. protocol: "json"
  39. measurement: "WaterMeter"
  40. field: "press_cur"
  41. valueType: "double"
  42. minValue: null
  43. maxValue: null
  44. syncField: null
  45. calcFormula: null
  46. - deviceId: "710022511060002"
  47. deviceName: "统建楼流量仪"
  48. deviceSn: "SB00000014"
  49. deviceKind: "flow"
  50. platform: "zaoyang-iot"
  51. mfrs: "上海锐铼"
  52. createTime: "2025-11-06 17:45:44"
  53. tags:
  54. - tag: "瞬时流量"
  55. protocol: "json"
  56. measurement: "WaterMeter"
  57. field: "flow_cur"
  58. valueType: "double"
  59. minValue: null
  60. maxValue: null
  61. syncField: null
  62. calcFormula: null
  63. - tag: "正向累计流量"
  64. protocol: "json"
  65. measurement: "WaterMeter"
  66. field: "flow_total_pos"
  67. valueType: "double"
  68. minValue: null
  69. maxValue: null
  70. syncField: null
  71. calcFormula: null
  72. - tag: "反向累计流量"
  73. protocol: "json"
  74. measurement: "WaterMeter"
  75. field: "flow_total_rev"
  76. valueType: "double"
  77. minValue: null
  78. maxValue: null
  79. syncField: null
  80. calcFormula: null
  81. - tag: "压力"
  82. protocol: "json"
  83. measurement: "WaterMeter"
  84. field: "press_cur"
  85. valueType: "double"
  86. minValue: null
  87. maxValue: null
  88. syncField: null
  89. calcFormula: null
  90. - deviceId: "710022511060003"
  91. deviceName: "福田小区流量仪"
  92. deviceSn: "SB00000013"
  93. deviceKind: "flow"
  94. platform: "zaoyang-iot"
  95. mfrs: "上海锐铼"
  96. createTime: "2025-11-06 17:45:44"
  97. tags:
  98. - tag: "瞬时流量"
  99. protocol: "json"
  100. measurement: "WaterMeter"
  101. field: "flow_cur"
  102. valueType: "double"
  103. minValue: null
  104. maxValue: null
  105. syncField: null
  106. calcFormula: null
  107. - tag: "正向累计流量"
  108. protocol: "json"
  109. measurement: "WaterMeter"
  110. field: "flow_total_pos"
  111. valueType: "double"
  112. minValue: null
  113. maxValue: null
  114. syncField: null
  115. calcFormula: null
  116. - tag: "反向累计流量"
  117. protocol: "json"
  118. measurement: "WaterMeter"
  119. field: "flow_total_rev"
  120. valueType: "double"
  121. minValue: null
  122. maxValue: null
  123. syncField: null
  124. calcFormula: null
  125. - tag: "压力"
  126. protocol: "json"
  127. measurement: "WaterMeter"
  128. field: "press_cur"
  129. valueType: "double"
  130. minValue: null
  131. maxValue: null
  132. syncField: null
  133. calcFormula: null
  134. - deviceId: "710022511060004"
  135. deviceName: "麻纺厂家属院"
  136. deviceSn: "SB00000012"
  137. deviceKind: "flow"
  138. platform: "zaoyang-iot"
  139. mfrs: "上海锐铼"
  140. createTime: "2025-11-06 17:45:44"
  141. tags:
  142. - tag: "瞬时流量"
  143. protocol: "json"
  144. measurement: "WaterMeter"
  145. field: "flow_cur"
  146. valueType: "double"
  147. minValue: null
  148. maxValue: null
  149. syncField: null
  150. calcFormula: null
  151. - tag: "正向累计流量"
  152. protocol: "json"
  153. measurement: "WaterMeter"
  154. field: "flow_total_pos"
  155. valueType: "double"
  156. minValue: null
  157. maxValue: null
  158. syncField: null
  159. calcFormula: null
  160. - tag: "反向累计流量"
  161. protocol: "json"
  162. measurement: "WaterMeter"
  163. field: "flow_total_rev"
  164. valueType: "double"
  165. minValue: null
  166. maxValue: null
  167. syncField: null
  168. calcFormula: null
  169. - tag: "压力"
  170. protocol: "json"
  171. measurement: "WaterMeter"
  172. field: "press_cur"
  173. valueType: "double"
  174. minValue: null
  175. maxValue: null
  176. syncField: null
  177. calcFormula: null
  178. - deviceId: "710022511060005"
  179. deviceName: "52#南阳路老通达北侧"
  180. deviceSn: "SB00000019"
  181. deviceKind: "flow"
  182. platform: "zaoyang-iot"
  183. mfrs: "上海锐铼"
  184. createTime: "2025-11-06 17:45:44"
  185. tags:
  186. - tag: "瞬时流量"
  187. protocol: "json"
  188. measurement: "WaterMeter"
  189. field: "flow_cur"
  190. valueType: "double"
  191. minValue: null
  192. maxValue: null
  193. syncField: null
  194. calcFormula: null
  195. - tag: "正向累计流量"
  196. protocol: "json"
  197. measurement: "WaterMeter"
  198. field: "flow_total_pos"
  199. valueType: "double"
  200. minValue: null
  201. maxValue: null
  202. syncField: null
  203. calcFormula: null
  204. - tag: "反向累计流量"
  205. protocol: "json"
  206. measurement: "WaterMeter"
  207. field: "flow_total_rev"
  208. valueType: "double"
  209. minValue: null
  210. maxValue: null
  211. syncField: null
  212. calcFormula: null
  213. - tag: "压力"
  214. protocol: "json"
  215. measurement: "WaterMeter"
  216. field: "press_cur"
  217. valueType: "double"
  218. minValue: null
  219. maxValue: null
  220. syncField: null
  221. calcFormula: null
  222. - deviceId: "710022511060006"
  223. deviceName: "2502001010"
  224. deviceSn: "SB00000017"
  225. deviceKind: "flow"
  226. platform: "zaoyang-iot"
  227. mfrs: "上海锐铼"
  228. createTime: "2025-11-06 17:45:44"
  229. tags:
  230. - tag: "瞬时流量"
  231. protocol: "json"
  232. measurement: "WaterMeter"
  233. field: "flow_cur"
  234. valueType: "double"
  235. minValue: null
  236. maxValue: null
  237. syncField: null
  238. calcFormula: null
  239. - tag: "正向累计流量"
  240. protocol: "json"
  241. measurement: "WaterMeter"
  242. field: "flow_total_pos"
  243. valueType: "double"
  244. minValue: null
  245. maxValue: null
  246. syncField: null
  247. calcFormula: null
  248. - tag: "反向累计流量"
  249. protocol: "json"
  250. measurement: "WaterMeter"
  251. field: "flow_total_rev"
  252. valueType: "double"
  253. minValue: null
  254. maxValue: null
  255. syncField: null
  256. calcFormula: null
  257. - tag: "压力"
  258. protocol: "json"
  259. measurement: "WaterMeter"
  260. field: "press_cur"
  261. valueType: "double"
  262. minValue: null
  263. maxValue: null
  264. syncField: null
  265. calcFormula: null
  266. - deviceId: "710022511060007"
  267. deviceName: "万通地税局流量仪"
  268. deviceSn: "SB00000016"
  269. deviceKind: "flow"
  270. platform: "zaoyang-iot"
  271. mfrs: "上海锐铼"
  272. createTime: "2025-11-06 17:45:44"
  273. tags:
  274. - tag: "瞬时流量"
  275. protocol: "json"
  276. measurement: "WaterMeter"
  277. field: "flow_cur"
  278. valueType: "double"
  279. minValue: null
  280. maxValue: null
  281. syncField: null
  282. calcFormula: null
  283. - tag: "正向累计流量"
  284. protocol: "json"
  285. measurement: "WaterMeter"
  286. field: "flow_total_pos"
  287. valueType: "double"
  288. minValue: null
  289. maxValue: null
  290. syncField: null
  291. calcFormula: null
  292. - tag: "反向累计流量"
  293. protocol: "json"
  294. measurement: "WaterMeter"
  295. field: "flow_total_rev"
  296. valueType: "double"
  297. minValue: null
  298. maxValue: null
  299. syncField: null
  300. calcFormula: null
  301. - tag: "压力"
  302. protocol: "json"
  303. measurement: "WaterMeter"
  304. field: "press_cur"
  305. valueType: "double"
  306. minValue: null
  307. maxValue: null
  308. syncField: null
  309. calcFormula: null
  310. - deviceId: "710022511060008"
  311. deviceName: "炮团路口流量计"
  312. deviceSn: "SB00000095"
  313. deviceKind: "flow"
  314. platform: "zaoyang-iot"
  315. mfrs: "上海锐铼"
  316. createTime: "2025-11-06 17:45:44"
  317. tags:
  318. - tag: "瞬时流量"
  319. protocol: "json"
  320. measurement: "WaterMeter"
  321. field: "flow_cur"
  322. valueType: "double"
  323. minValue: null
  324. maxValue: null
  325. syncField: null
  326. calcFormula: null
  327. - tag: "正向累计流量"
  328. protocol: "json"
  329. measurement: "WaterMeter"
  330. field: "flow_total_pos"
  331. valueType: "double"
  332. minValue: null
  333. maxValue: null
  334. syncField: null
  335. calcFormula: null
  336. - tag: "反向累计流量"
  337. protocol: "json"
  338. measurement: "WaterMeter"
  339. field: "flow_total_rev"
  340. valueType: "double"
  341. minValue: null
  342. maxValue: null
  343. syncField: null
  344. calcFormula: null
  345. - tag: "压力"
  346. protocol: "json"
  347. measurement: "WaterMeter"
  348. field: "press_cur"
  349. valueType: "double"
  350. minValue: null
  351. maxValue: null
  352. syncField: null
  353. calcFormula: null
  354. - deviceId: "710022511060009"
  355. deviceName: "园林路流量计"
  356. deviceSn: "SB00000094"
  357. deviceKind: "flow"
  358. platform: "zaoyang-iot"
  359. mfrs: "上海锐铼"
  360. createTime: "2025-11-06 17:45:44"
  361. tags:
  362. - tag: "瞬时流量"
  363. protocol: "json"
  364. measurement: "WaterMeter"
  365. field: "flow_cur"
  366. valueType: "double"
  367. minValue: null
  368. maxValue: null
  369. syncField: null
  370. calcFormula: null
  371. - tag: "正向累计流量"
  372. protocol: "json"
  373. measurement: "WaterMeter"
  374. field: "flow_total_pos"
  375. valueType: "double"
  376. minValue: null
  377. maxValue: null
  378. syncField: null
  379. calcFormula: null
  380. - tag: "反向累计流量"
  381. protocol: "json"
  382. measurement: "WaterMeter"
  383. field: "flow_total_rev"
  384. valueType: "double"
  385. minValue: null
  386. maxValue: null
  387. syncField: null
  388. calcFormula: null
  389. - tag: "压力"
  390. protocol: "json"
  391. measurement: "WaterMeter"
  392. field: "press_cur"
  393. valueType: "double"
  394. minValue: null
  395. maxValue: null
  396. syncField: null
  397. calcFormula: null
  398. - deviceId: "710022511060010"
  399. deviceName: "万通路北线300考核表"
  400. deviceSn: "SB00000093"
  401. deviceKind: "flow"
  402. platform: "zaoyang-iot"
  403. mfrs: "上海锐铼"
  404. createTime: "2025-11-06 17:45:44"
  405. tags:
  406. - tag: "瞬时流量"
  407. protocol: "json"
  408. measurement: "WaterMeter"
  409. field: "flow_cur"
  410. valueType: "double"
  411. minValue: null
  412. maxValue: null
  413. syncField: null
  414. calcFormula: null
  415. - tag: "正向累计流量"
  416. protocol: "json"
  417. measurement: "WaterMeter"
  418. field: "flow_total_pos"
  419. valueType: "double"
  420. minValue: null
  421. maxValue: null
  422. syncField: null
  423. calcFormula: null
  424. - tag: "反向累计流量"
  425. protocol: "json"
  426. measurement: "WaterMeter"
  427. field: "flow_total_rev"
  428. valueType: "double"
  429. minValue: null
  430. maxValue: null
  431. syncField: null
  432. calcFormula: null
  433. - tag: "压力"
  434. protocol: "json"
  435. measurement: "WaterMeter"
  436. field: "press_cur"
  437. valueType: "double"
  438. minValue: null
  439. maxValue: null
  440. syncField: null
  441. calcFormula: null
  442. - deviceId: "710022511060011"
  443. deviceName: "万通路南线200考核表"
  444. deviceSn: "SB00000092"
  445. deviceKind: "flow"
  446. platform: "zaoyang-iot"
  447. mfrs: "上海锐铼"
  448. createTime: "2025-11-06 17:45:44"
  449. tags:
  450. - tag: "瞬时流量"
  451. protocol: "json"
  452. measurement: "WaterMeter"
  453. field: "flow_cur"
  454. valueType: "double"
  455. minValue: null
  456. maxValue: null
  457. syncField: null
  458. calcFormula: null
  459. - tag: "正向累计流量"
  460. protocol: "json"
  461. measurement: "WaterMeter"
  462. field: "flow_total_pos"
  463. valueType: "double"
  464. minValue: null
  465. maxValue: null
  466. syncField: null
  467. calcFormula: null
  468. - tag: "反向累计流量"
  469. protocol: "json"
  470. measurement: "WaterMeter"
  471. field: "flow_total_rev"
  472. valueType: "double"
  473. minValue: null
  474. maxValue: null
  475. syncField: null
  476. calcFormula: null
  477. - tag: "压力"
  478. protocol: "json"
  479. measurement: "WaterMeter"
  480. field: "press_cur"
  481. valueType: "double"
  482. minValue: null
  483. maxValue: null
  484. syncField: null
  485. calcFormula: null
  486. - deviceId: "710022511060012"
  487. deviceName: "天立公寓考核表"
  488. deviceSn: "SB00000099"
  489. deviceKind: "flow"
  490. platform: "zaoyang-iot"
  491. mfrs: "上海锐铼"
  492. createTime: "2025-11-06 17:45:44"
  493. tags:
  494. - tag: "瞬时流量"
  495. protocol: "json"
  496. measurement: "WaterMeter"
  497. field: "flow_cur"
  498. valueType: "double"
  499. minValue: null
  500. maxValue: null
  501. syncField: null
  502. calcFormula: null
  503. - tag: "正向累计流量"
  504. protocol: "json"
  505. measurement: "WaterMeter"
  506. field: "flow_total_pos"
  507. valueType: "double"
  508. minValue: null
  509. maxValue: null
  510. syncField: null
  511. calcFormula: null
  512. - tag: "反向累计流量"
  513. protocol: "json"
  514. measurement: "WaterMeter"
  515. field: "flow_total_rev"
  516. valueType: "double"
  517. minValue: null
  518. maxValue: null
  519. syncField: null
  520. calcFormula: null
  521. - tag: "压力"
  522. protocol: "json"
  523. measurement: "WaterMeter"
  524. field: "press_cur"
  525. valueType: "double"
  526. minValue: null
  527. maxValue: null
  528. syncField: null
  529. calcFormula: null
  530. - deviceId: "710022511060013"
  531. deviceName: "万通福瑞巷"
  532. deviceSn: "SB00000011"
  533. deviceKind: "flow"
  534. platform: "zaoyang-iot"
  535. mfrs: "上海锐铼"
  536. createTime: "2025-11-06 17:45:44"
  537. tags:
  538. - tag: "瞬时流量"
  539. protocol: "json"
  540. measurement: "WaterMeter"
  541. field: "flow_cur"
  542. valueType: "double"
  543. minValue: null
  544. maxValue: null
  545. syncField: null
  546. calcFormula: null
  547. - tag: "正向累计流量"
  548. protocol: "json"
  549. measurement: "WaterMeter"
  550. field: "flow_total_pos"
  551. valueType: "double"
  552. minValue: null
  553. maxValue: null
  554. syncField: null
  555. calcFormula: null
  556. - tag: "反向累计流量"
  557. protocol: "json"
  558. measurement: "WaterMeter"
  559. field: "flow_total_rev"
  560. valueType: "double"
  561. minValue: null
  562. maxValue: null
  563. syncField: null
  564. calcFormula: null
  565. - tag: "压力"
  566. protocol: "json"
  567. measurement: "WaterMeter"
  568. field: "press_cur"
  569. valueType: "double"
  570. minValue: null
  571. maxValue: null
  572. syncField: null
  573. calcFormula: null
  574. - deviceId: "710022511060014"
  575. deviceName: "2503000368"
  576. deviceSn: "SB00000098"
  577. deviceKind: "flow"
  578. platform: "zaoyang-iot"
  579. mfrs: "上海锐铼"
  580. createTime: "2025-11-06 17:45:44"
  581. tags:
  582. - tag: "瞬时流量"
  583. protocol: "json"
  584. measurement: "WaterMeter"
  585. field: "flow_cur"
  586. valueType: "double"
  587. minValue: null
  588. maxValue: null
  589. syncField: null
  590. calcFormula: null
  591. - tag: "正向累计流量"
  592. protocol: "json"
  593. measurement: "WaterMeter"
  594. field: "flow_total_pos"
  595. valueType: "double"
  596. minValue: null
  597. maxValue: null
  598. syncField: null
  599. calcFormula: null
  600. - tag: "反向累计流量"
  601. protocol: "json"
  602. measurement: "WaterMeter"
  603. field: "flow_total_rev"
  604. valueType: "double"
  605. minValue: null
  606. maxValue: null
  607. syncField: null
  608. calcFormula: null
  609. - tag: "压力"
  610. protocol: "json"
  611. measurement: "WaterMeter"
  612. field: "press_cur"
  613. valueType: "double"
  614. minValue: null
  615. maxValue: null
  616. syncField: null
  617. calcFormula: null
  618. - deviceId: "710022511060015"
  619. deviceName: "福瑞龙联小区"
  620. deviceSn: "SB00000010"
  621. deviceKind: "flow"
  622. platform: "zaoyang-iot"
  623. mfrs: "上海锐铼"
  624. createTime: "2025-11-06 17:45:44"
  625. tags:
  626. - tag: "瞬时流量"
  627. protocol: "json"
  628. measurement: "WaterMeter"
  629. field: "flow_cur"
  630. valueType: "double"
  631. minValue: null
  632. maxValue: null
  633. syncField: null
  634. calcFormula: null
  635. - tag: "正向累计流量"
  636. protocol: "json"
  637. measurement: "WaterMeter"
  638. field: "flow_total_pos"
  639. valueType: "double"
  640. minValue: null
  641. maxValue: null
  642. syncField: null
  643. calcFormula: null
  644. - tag: "反向累计流量"
  645. protocol: "json"
  646. measurement: "WaterMeter"
  647. field: "flow_total_rev"
  648. valueType: "double"
  649. minValue: null
  650. maxValue: null
  651. syncField: null
  652. calcFormula: null
  653. - tag: "压力"
  654. protocol: "json"
  655. measurement: "WaterMeter"
  656. field: "press_cur"
  657. valueType: "double"
  658. minValue: null
  659. maxValue: null
  660. syncField: null
  661. calcFormula: null
  662. - deviceId: "710022511060016"
  663. deviceName: "梁集路口400考核表"
  664. deviceSn: "SB00000097"
  665. deviceKind: "flow"
  666. platform: "zaoyang-iot"
  667. mfrs: "上海锐铼"
  668. createTime: "2025-11-06 17:45:44"
  669. tags:
  670. - tag: "瞬时流量"
  671. protocol: "json"
  672. measurement: "WaterMeter"
  673. field: "flow_cur"
  674. valueType: "double"
  675. minValue: null
  676. maxValue: null
  677. syncField: null
  678. calcFormula: null
  679. - tag: "正向累计流量"
  680. protocol: "json"
  681. measurement: "WaterMeter"
  682. field: "flow_total_pos"
  683. valueType: "double"
  684. minValue: null
  685. maxValue: null
  686. syncField: null
  687. calcFormula: null
  688. - tag: "反向累计流量"
  689. protocol: "json"
  690. measurement: "WaterMeter"
  691. field: "flow_total_rev"
  692. valueType: "double"
  693. minValue: null
  694. maxValue: null
  695. syncField: null
  696. calcFormula: null
  697. - tag: "压力"
  698. protocol: "json"
  699. measurement: "WaterMeter"
  700. field: "press_cur"
  701. valueType: "double"
  702. minValue: null
  703. maxValue: null
  704. syncField: null
  705. calcFormula: null
  706. - deviceId: "710022511060017"
  707. deviceName: "2412001138"
  708. deviceSn: "SB00000096"
  709. deviceKind: "flow"
  710. platform: "zaoyang-iot"
  711. mfrs: "上海锐铼"
  712. createTime: "2025-11-06 17:45:44"
  713. tags:
  714. - tag: "瞬时流量"
  715. protocol: "json"
  716. measurement: "WaterMeter"
  717. field: "flow_cur"
  718. valueType: "double"
  719. minValue: null
  720. maxValue: null
  721. syncField: null
  722. calcFormula: null
  723. - tag: "正向累计流量"
  724. protocol: "json"
  725. measurement: "WaterMeter"
  726. field: "flow_total_pos"
  727. valueType: "double"
  728. minValue: null
  729. maxValue: null
  730. syncField: null
  731. calcFormula: null
  732. - tag: "反向累计流量"
  733. protocol: "json"
  734. measurement: "WaterMeter"
  735. field: "flow_total_rev"
  736. valueType: "double"
  737. minValue: null
  738. maxValue: null
  739. syncField: null
  740. calcFormula: null
  741. - tag: "压力"
  742. protocol: "json"
  743. measurement: "WaterMeter"
  744. field: "press_cur"
  745. valueType: "double"
  746. minValue: null
  747. maxValue: null
  748. syncField: null
  749. calcFormula: null
  750. - deviceId: "710022511060018"
  751. deviceName: "车站路与和谐路交叉口东南角流量计"
  752. deviceSn: "SB00000091"
  753. deviceKind: "flow"
  754. platform: "zaoyang-iot"
  755. mfrs: "上海锐铼"
  756. createTime: "2025-11-06 17:45:44"
  757. tags:
  758. - tag: "瞬时流量"
  759. protocol: "json"
  760. measurement: "WaterMeter"
  761. field: "flow_cur"
  762. valueType: "double"
  763. minValue: null
  764. maxValue: null
  765. syncField: null
  766. calcFormula: null
  767. - tag: "正向累计流量"
  768. protocol: "json"
  769. measurement: "WaterMeter"
  770. field: "flow_total_pos"
  771. valueType: "double"
  772. minValue: null
  773. maxValue: null
  774. syncField: null
  775. calcFormula: null
  776. - tag: "反向累计流量"
  777. protocol: "json"
  778. measurement: "WaterMeter"
  779. field: "flow_total_rev"
  780. valueType: "double"
  781. minValue: null
  782. maxValue: null
  783. syncField: null
  784. calcFormula: null
  785. - tag: "压力"
  786. protocol: "json"
  787. measurement: "WaterMeter"
  788. field: "press_cur"
  789. valueType: "double"
  790. minValue: null
  791. maxValue: null
  792. syncField: null
  793. calcFormula: null
  794. - deviceId: "710022511060019"
  795. deviceName: "2412000654"
  796. deviceSn: "SB00000090"
  797. deviceKind: "flow"
  798. platform: "zaoyang-iot"
  799. mfrs: "上海锐铼"
  800. createTime: "2025-11-06 17:45:44"
  801. tags:
  802. - tag: "瞬时流量"
  803. protocol: "json"
  804. measurement: "WaterMeter"
  805. field: "flow_cur"
  806. valueType: "double"
  807. minValue: null
  808. maxValue: null
  809. syncField: null
  810. calcFormula: null
  811. - tag: "正向累计流量"
  812. protocol: "json"
  813. measurement: "WaterMeter"
  814. field: "flow_total_pos"
  815. valueType: "double"
  816. minValue: null
  817. maxValue: null
  818. syncField: null
  819. calcFormula: null
  820. - tag: "反向累计流量"
  821. protocol: "json"
  822. measurement: "WaterMeter"
  823. field: "flow_total_rev"
  824. valueType: "double"
  825. minValue: null
  826. maxValue: null
  827. syncField: null
  828. calcFormula: null
  829. - tag: "压力"
  830. protocol: "json"
  831. measurement: "WaterMeter"
  832. field: "press_cur"
  833. valueType: "double"
  834. minValue: null
  835. maxValue: null
  836. syncField: null
  837. calcFormula: null
  838. - deviceId: "710022511060020"
  839. deviceName: "龙联小区巷口"
  840. deviceSn: "SB00000009"
  841. deviceKind: "flow"
  842. platform: "zaoyang-iot"
  843. mfrs: "上海锐铼"
  844. createTime: "2025-11-06 17:45:44"
  845. tags:
  846. - tag: "瞬时流量"
  847. protocol: "json"
  848. measurement: "WaterMeter"
  849. field: "flow_cur"
  850. valueType: "double"
  851. minValue: null
  852. maxValue: null
  853. syncField: null
  854. calcFormula: null
  855. - tag: "正向累计流量"
  856. protocol: "json"
  857. measurement: "WaterMeter"
  858. field: "flow_total_pos"
  859. valueType: "double"
  860. minValue: null
  861. maxValue: null
  862. syncField: null
  863. calcFormula: null
  864. - tag: "反向累计流量"
  865. protocol: "json"
  866. measurement: "WaterMeter"
  867. field: "flow_total_rev"
  868. valueType: "double"
  869. minValue: null
  870. maxValue: null
  871. syncField: null
  872. calcFormula: null
  873. - tag: "压力"
  874. protocol: "json"
  875. measurement: "WaterMeter"
  876. field: "press_cur"
  877. valueType: "double"
  878. minValue: null
  879. maxValue: null
  880. syncField: null
  881. calcFormula: null
  882. - deviceId: "710022511060021"
  883. deviceName: "280#人民路与和谐路交汇处东北角向东"
  884. deviceSn: "SB00000125"
  885. deviceKind: "flow"
  886. platform: "zaoyang-iot"
  887. mfrs: "上海锐铼"
  888. createTime: "2025-11-06 17:45:44"
  889. tags:
  890. - tag: "瞬时流量"
  891. protocol: "json"
  892. measurement: "WaterMeter"
  893. field: "flow_cur"
  894. valueType: "double"
  895. minValue: null
  896. maxValue: null
  897. syncField: null
  898. calcFormula: null
  899. - tag: "正向累计流量"
  900. protocol: "json"
  901. measurement: "WaterMeter"
  902. field: "flow_total_pos"
  903. valueType: "double"
  904. minValue: null
  905. maxValue: null
  906. syncField: null
  907. calcFormula: null
  908. - tag: "反向累计流量"
  909. protocol: "json"
  910. measurement: "WaterMeter"
  911. field: "flow_total_rev"
  912. valueType: "double"
  913. minValue: null
  914. maxValue: null
  915. syncField: null
  916. calcFormula: null
  917. - tag: "压力"
  918. protocol: "json"
  919. measurement: "WaterMeter"
  920. field: "press_cur"
  921. valueType: "double"
  922. minValue: null
  923. maxValue: null
  924. syncField: null
  925. calcFormula: null
  926. - deviceId: "710022511060022"
  927. deviceName: "史岗一组南城检查室考核表"
  928. deviceSn: "SB00000004"
  929. deviceKind: "flow"
  930. platform: "zaoyang-iot"
  931. mfrs: "上海锐铼"
  932. createTime: "2025-11-06 17:45:44"
  933. tags:
  934. - tag: "瞬时流量"
  935. protocol: "json"
  936. measurement: "WaterMeter"
  937. field: "flow_cur"
  938. valueType: "double"
  939. minValue: null
  940. maxValue: null
  941. syncField: null
  942. calcFormula: null
  943. - tag: "正向累计流量"
  944. protocol: "json"
  945. measurement: "WaterMeter"
  946. field: "flow_total_pos"
  947. valueType: "double"
  948. minValue: null
  949. maxValue: null
  950. syncField: null
  951. calcFormula: null
  952. - tag: "反向累计流量"
  953. protocol: "json"
  954. measurement: "WaterMeter"
  955. field: "flow_total_rev"
  956. valueType: "double"
  957. minValue: null
  958. maxValue: null
  959. syncField: null
  960. calcFormula: null
  961. - tag: "压力"
  962. protocol: "json"
  963. measurement: "WaterMeter"
  964. field: "press_cur"
  965. valueType: "double"
  966. minValue: null
  967. maxValue: null
  968. syncField: null
  969. calcFormula: null
  970. - deviceId: "710022511060023"
  971. deviceName: "304#中兴大道港利制冷南侧管道过路处"
  972. deviceSn: "SB00000124"
  973. deviceKind: "flow"
  974. platform: "zaoyang-iot"
  975. mfrs: "上海锐铼"
  976. createTime: "2025-11-06 17:45:44"
  977. tags:
  978. - tag: "瞬时流量"
  979. protocol: "json"
  980. measurement: "WaterMeter"
  981. field: "flow_cur"
  982. valueType: "double"
  983. minValue: null
  984. maxValue: null
  985. syncField: null
  986. calcFormula: null
  987. - tag: "正向累计流量"
  988. protocol: "json"
  989. measurement: "WaterMeter"
  990. field: "flow_total_pos"
  991. valueType: "double"
  992. minValue: null
  993. maxValue: null
  994. syncField: null
  995. calcFormula: null
  996. - tag: "反向累计流量"
  997. protocol: "json"
  998. measurement: "WaterMeter"
  999. field: "flow_total_rev"
  1000. valueType: "double"
  1001. minValue: null
  1002. maxValue: null
  1003. syncField: null
  1004. calcFormula: null
  1005. - tag: "压力"
  1006. protocol: "json"
  1007. measurement: "WaterMeter"
  1008. field: "press_cur"
  1009. valueType: "double"
  1010. minValue: null
  1011. maxValue: null
  1012. syncField: null
  1013. calcFormula: null
  1014. - deviceId: "710022511060024"
  1015. deviceName: "金色家园流量计"
  1016. deviceSn: "SB00000003"
  1017. deviceKind: "flow"
  1018. platform: "zaoyang-iot"
  1019. mfrs: "上海锐铼"
  1020. createTime: "2025-11-06 17:45:44"
  1021. tags:
  1022. - tag: "瞬时流量"
  1023. protocol: "json"
  1024. measurement: "WaterMeter"
  1025. field: "flow_cur"
  1026. valueType: "double"
  1027. minValue: null
  1028. maxValue: null
  1029. syncField: null
  1030. calcFormula: null
  1031. - tag: "正向累计流量"
  1032. protocol: "json"
  1033. measurement: "WaterMeter"
  1034. field: "flow_total_pos"
  1035. valueType: "double"
  1036. minValue: null
  1037. maxValue: null
  1038. syncField: null
  1039. calcFormula: null
  1040. - tag: "反向累计流量"
  1041. protocol: "json"
  1042. measurement: "WaterMeter"
  1043. field: "flow_total_rev"
  1044. valueType: "double"
  1045. minValue: null
  1046. maxValue: null
  1047. syncField: null
  1048. calcFormula: null
  1049. - tag: "压力"
  1050. protocol: "json"
  1051. measurement: "WaterMeter"
  1052. field: "press_cur"
  1053. valueType: "double"
  1054. minValue: null
  1055. maxValue: null
  1056. syncField: null
  1057. calcFormula: null
  1058. - deviceId: "710022511060025"
  1059. deviceName: "289#复兴大道与人民路交汇处东南角南侧"
  1060. deviceSn: "SB00000123"
  1061. deviceKind: "flow"
  1062. platform: "zaoyang-iot"
  1063. mfrs: "上海锐铼"
  1064. createTime: "2025-11-06 17:45:44"
  1065. tags:
  1066. - tag: "瞬时流量"
  1067. protocol: "json"
  1068. measurement: "WaterMeter"
  1069. field: "flow_cur"
  1070. valueType: "double"
  1071. minValue: null
  1072. maxValue: null
  1073. syncField: null
  1074. calcFormula: null
  1075. - tag: "正向累计流量"
  1076. protocol: "json"
  1077. measurement: "WaterMeter"
  1078. field: "flow_total_pos"
  1079. valueType: "double"
  1080. minValue: null
  1081. maxValue: null
  1082. syncField: null
  1083. calcFormula: null
  1084. - tag: "反向累计流量"
  1085. protocol: "json"
  1086. measurement: "WaterMeter"
  1087. field: "flow_total_rev"
  1088. valueType: "double"
  1089. minValue: null
  1090. maxValue: null
  1091. syncField: null
  1092. calcFormula: null
  1093. - tag: "压力"
  1094. protocol: "json"
  1095. measurement: "WaterMeter"
  1096. field: "press_cur"
  1097. valueType: "double"
  1098. minValue: null
  1099. maxValue: null
  1100. syncField: null
  1101. calcFormula: null
  1102. - deviceId: "710022511060026"
  1103. deviceName: "2412000400"
  1104. deviceSn: "SB00000002"
  1105. deviceKind: "flow"
  1106. platform: "zaoyang-iot"
  1107. mfrs: "上海锐铼"
  1108. createTime: "2025-11-06 17:45:44"
  1109. tags:
  1110. - tag: "瞬时流量"
  1111. protocol: "json"
  1112. measurement: "WaterMeter"
  1113. field: "flow_cur"
  1114. valueType: "double"
  1115. minValue: null
  1116. maxValue: null
  1117. syncField: null
  1118. calcFormula: null
  1119. - tag: "正向累计流量"
  1120. protocol: "json"
  1121. measurement: "WaterMeter"
  1122. field: "flow_total_pos"
  1123. valueType: "double"
  1124. minValue: null
  1125. maxValue: null
  1126. syncField: null
  1127. calcFormula: null
  1128. - tag: "反向累计流量"
  1129. protocol: "json"
  1130. measurement: "WaterMeter"
  1131. field: "flow_total_rev"
  1132. valueType: "double"
  1133. minValue: null
  1134. maxValue: null
  1135. syncField: null
  1136. calcFormula: null
  1137. - tag: "压力"
  1138. protocol: "json"
  1139. measurement: "WaterMeter"
  1140. field: "press_cur"
  1141. valueType: "double"
  1142. minValue: null
  1143. maxValue: null
  1144. syncField: null
  1145. calcFormula: null
  1146. - deviceId: "710022511060027"
  1147. deviceName: "262#发展大道与雨润路交汇处北侧"
  1148. deviceSn: "SB00000122"
  1149. deviceKind: "flow"
  1150. platform: "zaoyang-iot"
  1151. mfrs: "上海锐铼"
  1152. createTime: "2025-11-06 17:45:44"
  1153. tags:
  1154. - tag: "瞬时流量"
  1155. protocol: "json"
  1156. measurement: "WaterMeter"
  1157. field: "flow_cur"
  1158. valueType: "double"
  1159. minValue: null
  1160. maxValue: null
  1161. syncField: null
  1162. calcFormula: null
  1163. - tag: "正向累计流量"
  1164. protocol: "json"
  1165. measurement: "WaterMeter"
  1166. field: "flow_total_pos"
  1167. valueType: "double"
  1168. minValue: null
  1169. maxValue: null
  1170. syncField: null
  1171. calcFormula: null
  1172. - tag: "反向累计流量"
  1173. protocol: "json"
  1174. measurement: "WaterMeter"
  1175. field: "flow_total_rev"
  1176. valueType: "double"
  1177. minValue: null
  1178. maxValue: null
  1179. syncField: null
  1180. calcFormula: null
  1181. - tag: "压力"
  1182. protocol: "json"
  1183. measurement: "WaterMeter"
  1184. field: "press_cur"
  1185. valueType: "double"
  1186. minValue: null
  1187. maxValue: null
  1188. syncField: null
  1189. calcFormula: null
  1190. - deviceId: "710022511060028"
  1191. deviceName: "锦峰家园对面400流量计"
  1192. deviceSn: "SB00000089"
  1193. deviceKind: "flow"
  1194. platform: "zaoyang-iot"
  1195. mfrs: "上海锐铼"
  1196. createTime: "2025-11-06 17:45:44"
  1197. tags:
  1198. - tag: "瞬时流量"
  1199. protocol: "json"
  1200. measurement: "WaterMeter"
  1201. field: "flow_cur"
  1202. valueType: "double"
  1203. minValue: null
  1204. maxValue: null
  1205. syncField: null
  1206. calcFormula: null
  1207. - tag: "正向累计流量"
  1208. protocol: "json"
  1209. measurement: "WaterMeter"
  1210. field: "flow_total_pos"
  1211. valueType: "double"
  1212. minValue: null
  1213. maxValue: null
  1214. syncField: null
  1215. calcFormula: null
  1216. - tag: "反向累计流量"
  1217. protocol: "json"
  1218. measurement: "WaterMeter"
  1219. field: "flow_total_rev"
  1220. valueType: "double"
  1221. minValue: null
  1222. maxValue: null
  1223. syncField: null
  1224. calcFormula: null
  1225. - tag: "压力"
  1226. protocol: "json"
  1227. measurement: "WaterMeter"
  1228. field: "press_cur"
  1229. valueType: "double"
  1230. minValue: null
  1231. maxValue: null
  1232. syncField: null
  1233. calcFormula: null
  1234. - deviceId: "710022511060029"
  1235. deviceName: "南城棉花站"
  1236. deviceSn: "SB00000001"
  1237. deviceKind: "flow"
  1238. platform: "zaoyang-iot"
  1239. mfrs: "上海锐铼"
  1240. createTime: "2025-11-06 17:45:44"
  1241. tags:
  1242. - tag: "瞬时流量"
  1243. protocol: "json"
  1244. measurement: "WaterMeter"
  1245. field: "flow_cur"
  1246. valueType: "double"
  1247. minValue: null
  1248. maxValue: null
  1249. syncField: null
  1250. calcFormula: null
  1251. - tag: "正向累计流量"
  1252. protocol: "json"
  1253. measurement: "WaterMeter"
  1254. field: "flow_total_pos"
  1255. valueType: "double"
  1256. minValue: null
  1257. maxValue: null
  1258. syncField: null
  1259. calcFormula: null
  1260. - tag: "反向累计流量"
  1261. protocol: "json"
  1262. measurement: "WaterMeter"
  1263. field: "flow_total_rev"
  1264. valueType: "double"
  1265. minValue: null
  1266. maxValue: null
  1267. syncField: null
  1268. calcFormula: null
  1269. - tag: "压力"
  1270. protocol: "json"
  1271. measurement: "WaterMeter"
  1272. field: "press_cur"
  1273. valueType: "double"
  1274. minValue: null
  1275. maxValue: null
  1276. syncField: null
  1277. calcFormula: null
  1278. - deviceId: "710022511060030"
  1279. deviceName: "兴隆路霍庄六组流量仪"
  1280. deviceSn: "SB00000008"
  1281. deviceKind: "flow"
  1282. platform: "zaoyang-iot"
  1283. mfrs: "上海锐铼"
  1284. createTime: "2025-11-06 17:45:44"
  1285. tags:
  1286. - tag: "瞬时流量"
  1287. protocol: "json"
  1288. measurement: "WaterMeter"
  1289. field: "flow_cur"
  1290. valueType: "double"
  1291. minValue: null
  1292. maxValue: null
  1293. syncField: null
  1294. calcFormula: null
  1295. - tag: "正向累计流量"
  1296. protocol: "json"
  1297. measurement: "WaterMeter"
  1298. field: "flow_total_pos"
  1299. valueType: "double"
  1300. minValue: null
  1301. maxValue: null
  1302. syncField: null
  1303. calcFormula: null
  1304. - tag: "反向累计流量"
  1305. protocol: "json"
  1306. measurement: "WaterMeter"
  1307. field: "flow_total_rev"
  1308. valueType: "double"
  1309. minValue: null
  1310. maxValue: null
  1311. syncField: null
  1312. calcFormula: null
  1313. - tag: "压力"
  1314. protocol: "json"
  1315. measurement: "WaterMeter"
  1316. field: "press_cur"
  1317. valueType: "double"
  1318. minValue: null
  1319. maxValue: null
  1320. syncField: null
  1321. calcFormula: null
  1322. - deviceId: "710022511060031"
  1323. deviceName: "410100012"
  1324. deviceSn: "SB00000128"
  1325. deviceKind: "flow"
  1326. platform: "zaoyang-iot"
  1327. mfrs: "上海锐铼"
  1328. createTime: "2025-11-06 17:45:44"
  1329. tags:
  1330. - tag: "瞬时流量"
  1331. protocol: "json"
  1332. measurement: "WaterMeter"
  1333. field: "flow_cur"
  1334. valueType: "double"
  1335. minValue: null
  1336. maxValue: null
  1337. syncField: null
  1338. calcFormula: null
  1339. - tag: "正向累计流量"
  1340. protocol: "json"
  1341. measurement: "WaterMeter"
  1342. field: "flow_total_pos"
  1343. valueType: "double"
  1344. minValue: null
  1345. maxValue: null
  1346. syncField: null
  1347. calcFormula: null
  1348. - tag: "反向累计流量"
  1349. protocol: "json"
  1350. measurement: "WaterMeter"
  1351. field: "flow_total_rev"
  1352. valueType: "double"
  1353. minValue: null
  1354. maxValue: null
  1355. syncField: null
  1356. calcFormula: null
  1357. - tag: "压力"
  1358. protocol: "json"
  1359. measurement: "WaterMeter"
  1360. field: "press_cur"
  1361. valueType: "double"
  1362. minValue: null
  1363. maxValue: null
  1364. syncField: null
  1365. calcFormula: null
  1366. - deviceId: "710022511060032"
  1367. deviceName: "和谐花苑流量考核表"
  1368. deviceSn: "SB00000007"
  1369. deviceKind: "flow"
  1370. platform: "zaoyang-iot"
  1371. mfrs: "上海锐铼"
  1372. createTime: "2025-11-06 17:45:44"
  1373. tags:
  1374. - tag: "瞬时流量"
  1375. protocol: "json"
  1376. measurement: "WaterMeter"
  1377. field: "flow_cur"
  1378. valueType: "double"
  1379. minValue: null
  1380. maxValue: null
  1381. syncField: null
  1382. calcFormula: null
  1383. - tag: "正向累计流量"
  1384. protocol: "json"
  1385. measurement: "WaterMeter"
  1386. field: "flow_total_pos"
  1387. valueType: "double"
  1388. minValue: null
  1389. maxValue: null
  1390. syncField: null
  1391. calcFormula: null
  1392. - tag: "反向累计流量"
  1393. protocol: "json"
  1394. measurement: "WaterMeter"
  1395. field: "flow_total_rev"
  1396. valueType: "double"
  1397. minValue: null
  1398. maxValue: null
  1399. syncField: null
  1400. calcFormula: null
  1401. - tag: "压力"
  1402. protocol: "json"
  1403. measurement: "WaterMeter"
  1404. field: "press_cur"
  1405. valueType: "double"
  1406. minValue: null
  1407. maxValue: null
  1408. syncField: null
  1409. calcFormula: null
  1410. - deviceId: "710022511060033"
  1411. deviceName: "史肯岗一组炮团路口考核表"
  1412. deviceSn: "SB00000006"
  1413. deviceKind: "flow"
  1414. platform: "zaoyang-iot"
  1415. mfrs: "上海锐铼"
  1416. createTime: "2025-11-06 17:45:44"
  1417. tags:
  1418. - tag: "瞬时流量"
  1419. protocol: "json"
  1420. measurement: "WaterMeter"
  1421. field: "flow_cur"
  1422. valueType: "double"
  1423. minValue: null
  1424. maxValue: null
  1425. syncField: null
  1426. calcFormula: null
  1427. - tag: "正向累计流量"
  1428. protocol: "json"
  1429. measurement: "WaterMeter"
  1430. field: "flow_total_pos"
  1431. valueType: "double"
  1432. minValue: null
  1433. maxValue: null
  1434. syncField: null
  1435. calcFormula: null
  1436. - tag: "反向累计流量"
  1437. protocol: "json"
  1438. measurement: "WaterMeter"
  1439. field: "flow_total_rev"
  1440. valueType: "double"
  1441. minValue: null
  1442. maxValue: null
  1443. syncField: null
  1444. calcFormula: null
  1445. - tag: "压力"
  1446. protocol: "json"
  1447. measurement: "WaterMeter"
  1448. field: "press_cur"
  1449. valueType: "double"
  1450. minValue: null
  1451. maxValue: null
  1452. syncField: null
  1453. calcFormula: null
  1454. - deviceId: "710022511060034"
  1455. deviceName: "279#人民路与和谐路交汇处西北角"
  1456. deviceSn: "SB00000126"
  1457. deviceKind: "flow"
  1458. platform: "zaoyang-iot"
  1459. mfrs: "上海锐铼"
  1460. createTime: "2025-11-06 17:45:44"
  1461. tags:
  1462. - tag: "瞬时流量"
  1463. protocol: "json"
  1464. measurement: "WaterMeter"
  1465. field: "flow_cur"
  1466. valueType: "double"
  1467. minValue: null
  1468. maxValue: null
  1469. syncField: null
  1470. calcFormula: null
  1471. - tag: "正向累计流量"
  1472. protocol: "json"
  1473. measurement: "WaterMeter"
  1474. field: "flow_total_pos"
  1475. valueType: "double"
  1476. minValue: null
  1477. maxValue: null
  1478. syncField: null
  1479. calcFormula: null
  1480. - tag: "反向累计流量"
  1481. protocol: "json"
  1482. measurement: "WaterMeter"
  1483. field: "flow_total_rev"
  1484. valueType: "double"
  1485. minValue: null
  1486. maxValue: null
  1487. syncField: null
  1488. calcFormula: null
  1489. - tag: "压力"
  1490. protocol: "json"
  1491. measurement: "WaterMeter"
  1492. field: "press_cur"
  1493. valueType: "double"
  1494. minValue: null
  1495. maxValue: null
  1496. syncField: null
  1497. calcFormula: null
  1498. - deviceId: "710022511060035"
  1499. deviceName: "诗漫特考核表"
  1500. deviceSn: "SB00000005"
  1501. deviceKind: "flow"
  1502. platform: "zaoyang-iot"
  1503. mfrs: "上海锐铼"
  1504. createTime: "2025-11-06 17:45:44"
  1505. tags:
  1506. - tag: "瞬时流量"
  1507. protocol: "json"
  1508. measurement: "WaterMeter"
  1509. field: "flow_cur"
  1510. valueType: "double"
  1511. minValue: null
  1512. maxValue: null
  1513. syncField: null
  1514. calcFormula: null
  1515. - tag: "正向累计流量"
  1516. protocol: "json"
  1517. measurement: "WaterMeter"
  1518. field: "flow_total_pos"
  1519. valueType: "double"
  1520. minValue: null
  1521. maxValue: null
  1522. syncField: null
  1523. calcFormula: null
  1524. - tag: "反向累计流量"
  1525. protocol: "json"
  1526. measurement: "WaterMeter"
  1527. field: "flow_total_rev"
  1528. valueType: "double"
  1529. minValue: null
  1530. maxValue: null
  1531. syncField: null
  1532. calcFormula: null
  1533. - tag: "压力"
  1534. protocol: "json"
  1535. measurement: "WaterMeter"
  1536. field: "press_cur"
  1537. valueType: "double"
  1538. minValue: null
  1539. maxValue: null
  1540. syncField: null
  1541. calcFormula: null
  1542. - deviceId: "710022511060036"
  1543. deviceName: "19#民族路慧星名苑B区门口"
  1544. deviceSn: "SB00000084"
  1545. deviceKind: "flow"
  1546. platform: "zaoyang-iot"
  1547. mfrs: "上海锐铼"
  1548. createTime: "2025-11-06 17:45:44"
  1549. tags:
  1550. - tag: "瞬时流量"
  1551. protocol: "json"
  1552. measurement: "WaterMeter"
  1553. field: "flow_cur"
  1554. valueType: "double"
  1555. minValue: null
  1556. maxValue: null
  1557. syncField: null
  1558. calcFormula: null
  1559. - tag: "正向累计流量"
  1560. protocol: "json"
  1561. measurement: "WaterMeter"
  1562. field: "flow_total_pos"
  1563. valueType: "double"
  1564. minValue: null
  1565. maxValue: null
  1566. syncField: null
  1567. calcFormula: null
  1568. - tag: "反向累计流量"
  1569. protocol: "json"
  1570. measurement: "WaterMeter"
  1571. field: "flow_total_rev"
  1572. valueType: "double"
  1573. minValue: null
  1574. maxValue: null
  1575. syncField: null
  1576. calcFormula: null
  1577. - tag: "压力"
  1578. protocol: "json"
  1579. measurement: "WaterMeter"
  1580. field: "press_cur"
  1581. valueType: "double"
  1582. minValue: null
  1583. maxValue: null
  1584. syncField: null
  1585. calcFormula: null
  1586. - deviceId: "710022511060037"
  1587. deviceName: "105#西环二路南侧靠路东"
  1588. deviceSn: "SB00000083"
  1589. deviceKind: "flow"
  1590. platform: "zaoyang-iot"
  1591. mfrs: "上海锐铼"
  1592. createTime: "2025-11-06 17:45:44"
  1593. tags:
  1594. - tag: "瞬时流量"
  1595. protocol: "json"
  1596. measurement: "WaterMeter"
  1597. field: "flow_cur"
  1598. valueType: "double"
  1599. minValue: null
  1600. maxValue: null
  1601. syncField: null
  1602. calcFormula: null
  1603. - tag: "正向累计流量"
  1604. protocol: "json"
  1605. measurement: "WaterMeter"
  1606. field: "flow_total_pos"
  1607. valueType: "double"
  1608. minValue: null
  1609. maxValue: null
  1610. syncField: null
  1611. calcFormula: null
  1612. - tag: "反向累计流量"
  1613. protocol: "json"
  1614. measurement: "WaterMeter"
  1615. field: "flow_total_rev"
  1616. valueType: "double"
  1617. minValue: null
  1618. maxValue: null
  1619. syncField: null
  1620. calcFormula: null
  1621. - tag: "压力"
  1622. protocol: "json"
  1623. measurement: "WaterMeter"
  1624. field: "press_cur"
  1625. valueType: "double"
  1626. minValue: null
  1627. maxValue: null
  1628. syncField: null
  1629. calcFormula: null
  1630. - deviceId: "710022511060038"
  1631. deviceName: "38#新华路重山寺路口对面"
  1632. deviceSn: "SB00000082"
  1633. deviceKind: "flow"
  1634. platform: "zaoyang-iot"
  1635. mfrs: "上海锐铼"
  1636. createTime: "2025-11-06 17:45:44"
  1637. tags:
  1638. - tag: "瞬时流量"
  1639. protocol: "json"
  1640. measurement: "WaterMeter"
  1641. field: "flow_cur"
  1642. valueType: "double"
  1643. minValue: null
  1644. maxValue: null
  1645. syncField: null
  1646. calcFormula: null
  1647. - tag: "正向累计流量"
  1648. protocol: "json"
  1649. measurement: "WaterMeter"
  1650. field: "flow_total_pos"
  1651. valueType: "double"
  1652. minValue: null
  1653. maxValue: null
  1654. syncField: null
  1655. calcFormula: null
  1656. - tag: "反向累计流量"
  1657. protocol: "json"
  1658. measurement: "WaterMeter"
  1659. field: "flow_total_rev"
  1660. valueType: "double"
  1661. minValue: null
  1662. maxValue: null
  1663. syncField: null
  1664. calcFormula: null
  1665. - tag: "压力"
  1666. protocol: "json"
  1667. measurement: "WaterMeter"
  1668. field: "press_cur"
  1669. valueType: "double"
  1670. minValue: null
  1671. maxValue: null
  1672. syncField: null
  1673. calcFormula: null
  1674. - deviceId: "710022511060039"
  1675. deviceName: "153#襄阳东路玫瑰社区三期西南角院墙外"
  1676. deviceSn: "SB00000081"
  1677. deviceKind: "flow"
  1678. platform: "zaoyang-iot"
  1679. mfrs: "上海锐铼"
  1680. createTime: "2025-11-06 17:45:44"
  1681. tags:
  1682. - tag: "瞬时流量"
  1683. protocol: "json"
  1684. measurement: "WaterMeter"
  1685. field: "flow_cur"
  1686. valueType: "double"
  1687. minValue: null
  1688. maxValue: null
  1689. syncField: null
  1690. calcFormula: null
  1691. - tag: "正向累计流量"
  1692. protocol: "json"
  1693. measurement: "WaterMeter"
  1694. field: "flow_total_pos"
  1695. valueType: "double"
  1696. minValue: null
  1697. maxValue: null
  1698. syncField: null
  1699. calcFormula: null
  1700. - tag: "反向累计流量"
  1701. protocol: "json"
  1702. measurement: "WaterMeter"
  1703. field: "flow_total_rev"
  1704. valueType: "double"
  1705. minValue: null
  1706. maxValue: null
  1707. syncField: null
  1708. calcFormula: null
  1709. - tag: "压力"
  1710. protocol: "json"
  1711. measurement: "WaterMeter"
  1712. field: "press_cur"
  1713. valueType: "double"
  1714. minValue: null
  1715. maxValue: null
  1716. syncField: null
  1717. calcFormula: null
  1718. - deviceId: "710022511060040"
  1719. deviceName: "261#人民路与发展大道交汇处东南角东侧"
  1720. deviceSn: "SB00000121"
  1721. deviceKind: "flow"
  1722. platform: "zaoyang-iot"
  1723. mfrs: "上海锐铼"
  1724. createTime: "2025-11-06 17:45:44"
  1725. tags:
  1726. - tag: "瞬时流量"
  1727. protocol: "json"
  1728. measurement: "WaterMeter"
  1729. field: "flow_cur"
  1730. valueType: "double"
  1731. minValue: null
  1732. maxValue: null
  1733. syncField: null
  1734. calcFormula: null
  1735. - tag: "正向累计流量"
  1736. protocol: "json"
  1737. measurement: "WaterMeter"
  1738. field: "flow_total_pos"
  1739. valueType: "double"
  1740. minValue: null
  1741. maxValue: null
  1742. syncField: null
  1743. calcFormula: null
  1744. - tag: "反向累计流量"
  1745. protocol: "json"
  1746. measurement: "WaterMeter"
  1747. field: "flow_total_rev"
  1748. valueType: "double"
  1749. minValue: null
  1750. maxValue: null
  1751. syncField: null
  1752. calcFormula: null
  1753. - tag: "压力"
  1754. protocol: "json"
  1755. measurement: "WaterMeter"
  1756. field: "press_cur"
  1757. valueType: "double"
  1758. minValue: null
  1759. maxValue: null
  1760. syncField: null
  1761. calcFormula: null
  1762. - deviceId: "710022511060041"
  1763. deviceName: "298#史岗四组东庄路口"
  1764. deviceSn: "SB00000088"
  1765. deviceKind: "flow"
  1766. platform: "zaoyang-iot"
  1767. mfrs: "上海锐铼"
  1768. createTime: "2025-11-06 17:45:44"
  1769. tags:
  1770. - tag: "瞬时流量"
  1771. protocol: "json"
  1772. measurement: "WaterMeter"
  1773. field: "flow_cur"
  1774. valueType: "double"
  1775. minValue: null
  1776. maxValue: null
  1777. syncField: null
  1778. calcFormula: null
  1779. - tag: "正向累计流量"
  1780. protocol: "json"
  1781. measurement: "WaterMeter"
  1782. field: "flow_total_pos"
  1783. valueType: "double"
  1784. minValue: null
  1785. maxValue: null
  1786. syncField: null
  1787. calcFormula: null
  1788. - tag: "反向累计流量"
  1789. protocol: "json"
  1790. measurement: "WaterMeter"
  1791. field: "flow_total_rev"
  1792. valueType: "double"
  1793. minValue: null
  1794. maxValue: null
  1795. syncField: null
  1796. calcFormula: null
  1797. - tag: "压力"
  1798. protocol: "json"
  1799. measurement: "WaterMeter"
  1800. field: "press_cur"
  1801. valueType: "double"
  1802. minValue: null
  1803. maxValue: null
  1804. syncField: null
  1805. calcFormula: null
  1806. - deviceId: "710022511060042"
  1807. deviceName: "306#中心大道与车站路交汇处正邦饲料公司南侧路口"
  1808. deviceSn: "SB00000120"
  1809. deviceKind: "flow"
  1810. platform: "zaoyang-iot"
  1811. mfrs: "上海锐铼"
  1812. createTime: "2025-11-06 17:45:44"
  1813. tags:
  1814. - tag: "瞬时流量"
  1815. protocol: "json"
  1816. measurement: "WaterMeter"
  1817. field: "flow_cur"
  1818. valueType: "double"
  1819. minValue: null
  1820. maxValue: null
  1821. syncField: null
  1822. calcFormula: null
  1823. - tag: "正向累计流量"
  1824. protocol: "json"
  1825. measurement: "WaterMeter"
  1826. field: "flow_total_pos"
  1827. valueType: "double"
  1828. minValue: null
  1829. maxValue: null
  1830. syncField: null
  1831. calcFormula: null
  1832. - tag: "反向累计流量"
  1833. protocol: "json"
  1834. measurement: "WaterMeter"
  1835. field: "flow_total_rev"
  1836. valueType: "double"
  1837. minValue: null
  1838. maxValue: null
  1839. syncField: null
  1840. calcFormula: null
  1841. - tag: "压力"
  1842. protocol: "json"
  1843. measurement: "WaterMeter"
  1844. field: "press_cur"
  1845. valueType: "double"
  1846. minValue: null
  1847. maxValue: null
  1848. syncField: null
  1849. calcFormula: null
  1850. - deviceId: "710022511060043"
  1851. deviceName: "277#和谐路与史岗六组路口交汇处向东"
  1852. deviceSn: "SB00000086"
  1853. deviceKind: "flow"
  1854. platform: "zaoyang-iot"
  1855. mfrs: "上海锐铼"
  1856. createTime: "2025-11-06 17:45:44"
  1857. tags:
  1858. - tag: "瞬时流量"
  1859. protocol: "json"
  1860. measurement: "WaterMeter"
  1861. field: "flow_cur"
  1862. valueType: "double"
  1863. minValue: null
  1864. maxValue: null
  1865. syncField: null
  1866. calcFormula: null
  1867. - tag: "正向累计流量"
  1868. protocol: "json"
  1869. measurement: "WaterMeter"
  1870. field: "flow_total_pos"
  1871. valueType: "double"
  1872. minValue: null
  1873. maxValue: null
  1874. syncField: null
  1875. calcFormula: null
  1876. - tag: "反向累计流量"
  1877. protocol: "json"
  1878. measurement: "WaterMeter"
  1879. field: "flow_total_rev"
  1880. valueType: "double"
  1881. minValue: null
  1882. maxValue: null
  1883. syncField: null
  1884. calcFormula: null
  1885. - tag: "压力"
  1886. protocol: "json"
  1887. measurement: "WaterMeter"
  1888. field: "press_cur"
  1889. valueType: "double"
  1890. minValue: null
  1891. maxValue: null
  1892. syncField: null
  1893. calcFormula: null
  1894. - deviceId: "710022511060044"
  1895. deviceName: "61#西环三路教师村枣阳市第四幼儿园对面"
  1896. deviceSn: "SB00000085"
  1897. deviceKind: "flow"
  1898. platform: "zaoyang-iot"
  1899. mfrs: "上海锐铼"
  1900. createTime: "2025-11-06 17:45:44"
  1901. tags:
  1902. - tag: "瞬时流量"
  1903. protocol: "json"
  1904. measurement: "WaterMeter"
  1905. field: "flow_cur"
  1906. valueType: "double"
  1907. minValue: null
  1908. maxValue: null
  1909. syncField: null
  1910. calcFormula: null
  1911. - tag: "正向累计流量"
  1912. protocol: "json"
  1913. measurement: "WaterMeter"
  1914. field: "flow_total_pos"
  1915. valueType: "double"
  1916. minValue: null
  1917. maxValue: null
  1918. syncField: null
  1919. calcFormula: null
  1920. - tag: "反向累计流量"
  1921. protocol: "json"
  1922. measurement: "WaterMeter"
  1923. field: "flow_total_rev"
  1924. valueType: "double"
  1925. minValue: null
  1926. maxValue: null
  1927. syncField: null
  1928. calcFormula: null
  1929. - tag: "压力"
  1930. protocol: "json"
  1931. measurement: "WaterMeter"
  1932. field: "press_cur"
  1933. valueType: "double"
  1934. minValue: null
  1935. maxValue: null
  1936. syncField: null
  1937. calcFormula: null
  1938. - deviceId: "710022511060045"
  1939. deviceName: "283#复兴大道与复兴大道东路交差路口"
  1940. deviceSn: "SB00000080"
  1941. deviceKind: "flow"
  1942. platform: "zaoyang-iot"
  1943. mfrs: "上海锐铼"
  1944. createTime: "2025-11-06 17:45:44"
  1945. tags:
  1946. - tag: "瞬时流量"
  1947. protocol: "json"
  1948. measurement: "WaterMeter"
  1949. field: "flow_cur"
  1950. valueType: "double"
  1951. minValue: null
  1952. maxValue: null
  1953. syncField: null
  1954. calcFormula: null
  1955. - tag: "正向累计流量"
  1956. protocol: "json"
  1957. measurement: "WaterMeter"
  1958. field: "flow_total_pos"
  1959. valueType: "double"
  1960. minValue: null
  1961. maxValue: null
  1962. syncField: null
  1963. calcFormula: null
  1964. - tag: "反向累计流量"
  1965. protocol: "json"
  1966. measurement: "WaterMeter"
  1967. field: "flow_total_rev"
  1968. valueType: "double"
  1969. minValue: null
  1970. maxValue: null
  1971. syncField: null
  1972. calcFormula: null
  1973. - tag: "压力"
  1974. protocol: "json"
  1975. measurement: "WaterMeter"
  1976. field: "press_cur"
  1977. valueType: "double"
  1978. minValue: null
  1979. maxValue: null
  1980. syncField: null
  1981. calcFormula: null
  1982. - deviceId: "710022511060046"
  1983. deviceName: "284#复兴大道东路丹阳工业园十字路口东北角"
  1984. deviceSn: "SB00000119"
  1985. deviceKind: "flow"
  1986. platform: "zaoyang-iot"
  1987. mfrs: "上海锐铼"
  1988. createTime: "2025-11-06 17:45:44"
  1989. tags:
  1990. - tag: "瞬时流量"
  1991. protocol: "json"
  1992. measurement: "WaterMeter"
  1993. field: "flow_cur"
  1994. valueType: "double"
  1995. minValue: null
  1996. maxValue: null
  1997. syncField: null
  1998. calcFormula: null
  1999. - tag: "正向累计流量"
  2000. protocol: "json"
  2001. measurement: "WaterMeter"
  2002. field: "flow_total_pos"
  2003. valueType: "double"
  2004. minValue: null
  2005. maxValue: null
  2006. syncField: null
  2007. calcFormula: null
  2008. - tag: "反向累计流量"
  2009. protocol: "json"
  2010. measurement: "WaterMeter"
  2011. field: "flow_total_rev"
  2012. valueType: "double"
  2013. minValue: null
  2014. maxValue: null
  2015. syncField: null
  2016. calcFormula: null
  2017. - tag: "压力"
  2018. protocol: "json"
  2019. measurement: "WaterMeter"
  2020. field: "press_cur"
  2021. valueType: "double"
  2022. minValue: null
  2023. maxValue: null
  2024. syncField: null
  2025. calcFormula: null
  2026. - deviceId: "710022511060047"
  2027. deviceName: "138#中兴大道恒大世纪城入口对面"
  2028. deviceSn: "SB00000113"
  2029. deviceKind: "flow"
  2030. platform: "zaoyang-iot"
  2031. mfrs: "上海锐铼"
  2032. createTime: "2025-11-06 17:45:44"
  2033. tags:
  2034. - tag: "瞬时流量"
  2035. protocol: "json"
  2036. measurement: "WaterMeter"
  2037. field: "flow_cur"
  2038. valueType: "double"
  2039. minValue: null
  2040. maxValue: null
  2041. syncField: null
  2042. calcFormula: null
  2043. - tag: "正向累计流量"
  2044. protocol: "json"
  2045. measurement: "WaterMeter"
  2046. field: "flow_total_pos"
  2047. valueType: "double"
  2048. minValue: null
  2049. maxValue: null
  2050. syncField: null
  2051. calcFormula: null
  2052. - tag: "反向累计流量"
  2053. protocol: "json"
  2054. measurement: "WaterMeter"
  2055. field: "flow_total_rev"
  2056. valueType: "double"
  2057. minValue: null
  2058. maxValue: null
  2059. syncField: null
  2060. calcFormula: null
  2061. - tag: "压力"
  2062. protocol: "json"
  2063. measurement: "WaterMeter"
  2064. field: "press_cur"
  2065. valueType: "double"
  2066. minValue: null
  2067. maxValue: null
  2068. syncField: null
  2069. calcFormula: null
  2070. - deviceId: "710022511060048"
  2071. deviceName: "35#寺沙路与新华路交汇处东南角"
  2072. deviceSn: "SB00000112"
  2073. deviceKind: "flow"
  2074. platform: "zaoyang-iot"
  2075. mfrs: "上海锐铼"
  2076. createTime: "2025-11-06 17:45:44"
  2077. tags:
  2078. - tag: "瞬时流量"
  2079. protocol: "json"
  2080. measurement: "WaterMeter"
  2081. field: "flow_cur"
  2082. valueType: "double"
  2083. minValue: null
  2084. maxValue: null
  2085. syncField: null
  2086. calcFormula: null
  2087. - tag: "正向累计流量"
  2088. protocol: "json"
  2089. measurement: "WaterMeter"
  2090. field: "flow_total_pos"
  2091. valueType: "double"
  2092. minValue: null
  2093. maxValue: null
  2094. syncField: null
  2095. calcFormula: null
  2096. - tag: "反向累计流量"
  2097. protocol: "json"
  2098. measurement: "WaterMeter"
  2099. field: "flow_total_rev"
  2100. valueType: "double"
  2101. minValue: null
  2102. maxValue: null
  2103. syncField: null
  2104. calcFormula: null
  2105. - tag: "压力"
  2106. protocol: "json"
  2107. measurement: "WaterMeter"
  2108. field: "press_cur"
  2109. valueType: "double"
  2110. minValue: null
  2111. maxValue: null
  2112. syncField: null
  2113. calcFormula: null
  2114. - deviceId: "710022511060049"
  2115. deviceName: "56#前进路与西环四路交汇处路北"
  2116. deviceSn: "SB00000111"
  2117. deviceKind: "flow"
  2118. platform: "zaoyang-iot"
  2119. mfrs: "上海锐铼"
  2120. createTime: "2025-11-06 17:45:44"
  2121. tags:
  2122. - tag: "瞬时流量"
  2123. protocol: "json"
  2124. measurement: "WaterMeter"
  2125. field: "flow_cur"
  2126. valueType: "double"
  2127. minValue: null
  2128. maxValue: null
  2129. syncField: null
  2130. calcFormula: null
  2131. - tag: "正向累计流量"
  2132. protocol: "json"
  2133. measurement: "WaterMeter"
  2134. field: "flow_total_pos"
  2135. valueType: "double"
  2136. minValue: null
  2137. maxValue: null
  2138. syncField: null
  2139. calcFormula: null
  2140. - tag: "反向累计流量"
  2141. protocol: "json"
  2142. measurement: "WaterMeter"
  2143. field: "flow_total_rev"
  2144. valueType: "double"
  2145. minValue: null
  2146. maxValue: null
  2147. syncField: null
  2148. calcFormula: null
  2149. - tag: "压力"
  2150. protocol: "json"
  2151. measurement: "WaterMeter"
  2152. field: "press_cur"
  2153. valueType: "double"
  2154. minValue: null
  2155. maxValue: null
  2156. syncField: null
  2157. calcFormula: null
  2158. - deviceId: "710022511060050"
  2159. deviceName: "144#书院街八里立康医院东路口对面"
  2160. deviceSn: "SB00000078"
  2161. deviceKind: "flow"
  2162. platform: "zaoyang-iot"
  2163. mfrs: "上海锐铼"
  2164. createTime: "2025-11-06 17:45:44"
  2165. tags:
  2166. - tag: "瞬时流量"
  2167. protocol: "json"
  2168. measurement: "WaterMeter"
  2169. field: "flow_cur"
  2170. valueType: "double"
  2171. minValue: null
  2172. maxValue: null
  2173. syncField: null
  2174. calcFormula: null
  2175. - tag: "正向累计流量"
  2176. protocol: "json"
  2177. measurement: "WaterMeter"
  2178. field: "flow_total_pos"
  2179. valueType: "double"
  2180. minValue: null
  2181. maxValue: null
  2182. syncField: null
  2183. calcFormula: null
  2184. - tag: "反向累计流量"
  2185. protocol: "json"
  2186. measurement: "WaterMeter"
  2187. field: "flow_total_rev"
  2188. valueType: "double"
  2189. minValue: null
  2190. maxValue: null
  2191. syncField: null
  2192. calcFormula: null
  2193. - tag: "压力"
  2194. protocol: "json"
  2195. measurement: "WaterMeter"
  2196. field: "press_cur"
  2197. valueType: "double"
  2198. minValue: null
  2199. maxValue: null
  2200. syncField: null
  2201. calcFormula: null
  2202. - deviceId: "710022511060051"
  2203. deviceName: "259#发展大道与中兴大道交汇处西北角北侧"
  2204. deviceSn: "SB00000118"
  2205. deviceKind: "flow"
  2206. platform: "zaoyang-iot"
  2207. mfrs: "上海锐铼"
  2208. createTime: "2025-11-06 17:45:44"
  2209. tags:
  2210. - tag: "瞬时流量"
  2211. protocol: "json"
  2212. measurement: "WaterMeter"
  2213. field: "flow_cur"
  2214. valueType: "double"
  2215. minValue: null
  2216. maxValue: null
  2217. syncField: null
  2218. calcFormula: null
  2219. - tag: "正向累计流量"
  2220. protocol: "json"
  2221. measurement: "WaterMeter"
  2222. field: "flow_total_pos"
  2223. valueType: "double"
  2224. minValue: null
  2225. maxValue: null
  2226. syncField: null
  2227. calcFormula: null
  2228. - tag: "反向累计流量"
  2229. protocol: "json"
  2230. measurement: "WaterMeter"
  2231. field: "flow_total_rev"
  2232. valueType: "double"
  2233. minValue: null
  2234. maxValue: null
  2235. syncField: null
  2236. calcFormula: null
  2237. - tag: "压力"
  2238. protocol: "json"
  2239. measurement: "WaterMeter"
  2240. field: "press_cur"
  2241. valueType: "double"
  2242. minValue: null
  2243. maxValue: null
  2244. syncField: null
  2245. calcFormula: null
  2246. - deviceId: "710022511060052"
  2247. deviceName: "25#民族北路一水厂对面"
  2248. deviceSn: "SB00000117"
  2249. deviceKind: "flow"
  2250. platform: "zaoyang-iot"
  2251. mfrs: "上海锐铼"
  2252. createTime: "2025-11-06 17:45:44"
  2253. tags:
  2254. - tag: "瞬时流量"
  2255. protocol: "json"
  2256. measurement: "WaterMeter"
  2257. field: "flow_cur"
  2258. valueType: "double"
  2259. minValue: null
  2260. maxValue: null
  2261. syncField: null
  2262. calcFormula: null
  2263. - tag: "正向累计流量"
  2264. protocol: "json"
  2265. measurement: "WaterMeter"
  2266. field: "flow_total_pos"
  2267. valueType: "double"
  2268. minValue: null
  2269. maxValue: null
  2270. syncField: null
  2271. calcFormula: null
  2272. - tag: "反向累计流量"
  2273. protocol: "json"
  2274. measurement: "WaterMeter"
  2275. field: "flow_total_rev"
  2276. valueType: "double"
  2277. minValue: null
  2278. maxValue: null
  2279. syncField: null
  2280. calcFormula: null
  2281. - tag: "压力"
  2282. protocol: "json"
  2283. measurement: "WaterMeter"
  2284. field: "press_cur"
  2285. valueType: "double"
  2286. minValue: null
  2287. maxValue: null
  2288. syncField: null
  2289. calcFormula: null
  2290. - deviceId: "710022511060053"
  2291. deviceName: "30#中兴大道湖北山禾锦建设有限公司路口"
  2292. deviceSn: "SB00000115"
  2293. deviceKind: "flow"
  2294. platform: "zaoyang-iot"
  2295. mfrs: "上海锐铼"
  2296. createTime: "2025-11-06 17:45:44"
  2297. tags:
  2298. - tag: "瞬时流量"
  2299. protocol: "json"
  2300. measurement: "WaterMeter"
  2301. field: "flow_cur"
  2302. valueType: "double"
  2303. minValue: null
  2304. maxValue: null
  2305. syncField: null
  2306. calcFormula: null
  2307. - tag: "正向累计流量"
  2308. protocol: "json"
  2309. measurement: "WaterMeter"
  2310. field: "flow_total_pos"
  2311. valueType: "double"
  2312. minValue: null
  2313. maxValue: null
  2314. syncField: null
  2315. calcFormula: null
  2316. - tag: "反向累计流量"
  2317. protocol: "json"
  2318. measurement: "WaterMeter"
  2319. field: "flow_total_rev"
  2320. valueType: "double"
  2321. minValue: null
  2322. maxValue: null
  2323. syncField: null
  2324. calcFormula: null
  2325. - tag: "压力"
  2326. protocol: "json"
  2327. measurement: "WaterMeter"
  2328. field: "press_cur"
  2329. valueType: "double"
  2330. minValue: null
  2331. maxValue: null
  2332. syncField: null
  2333. calcFormula: null
  2334. - deviceId: "710022511060054"
  2335. deviceName: "67#前进路人民法庭对面"
  2336. deviceSn: "SB00000073"
  2337. deviceKind: "flow"
  2338. platform: "zaoyang-iot"
  2339. mfrs: "上海锐铼"
  2340. createTime: "2025-11-06 17:45:44"
  2341. tags:
  2342. - tag: "瞬时流量"
  2343. protocol: "json"
  2344. measurement: "WaterMeter"
  2345. field: "flow_cur"
  2346. valueType: "double"
  2347. minValue: null
  2348. maxValue: null
  2349. syncField: null
  2350. calcFormula: null
  2351. - tag: "正向累计流量"
  2352. protocol: "json"
  2353. measurement: "WaterMeter"
  2354. field: "flow_total_pos"
  2355. valueType: "double"
  2356. minValue: null
  2357. maxValue: null
  2358. syncField: null
  2359. calcFormula: null
  2360. - tag: "反向累计流量"
  2361. protocol: "json"
  2362. measurement: "WaterMeter"
  2363. field: "flow_total_rev"
  2364. valueType: "double"
  2365. minValue: null
  2366. maxValue: null
  2367. syncField: null
  2368. calcFormula: null
  2369. - tag: "压力"
  2370. protocol: "json"
  2371. measurement: "WaterMeter"
  2372. field: "press_cur"
  2373. valueType: "double"
  2374. minValue: null
  2375. maxValue: null
  2376. syncField: null
  2377. calcFormula: null
  2378. - deviceId: "710022511060055"
  2379. deviceName: "200#汉城大道枣阳市龙门学校路口"
  2380. deviceSn: "SB00000072"
  2381. deviceKind: "flow"
  2382. platform: "zaoyang-iot"
  2383. mfrs: "上海锐铼"
  2384. createTime: "2025-11-06 17:45:44"
  2385. tags:
  2386. - tag: "瞬时流量"
  2387. protocol: "json"
  2388. measurement: "WaterMeter"
  2389. field: "flow_cur"
  2390. valueType: "double"
  2391. minValue: null
  2392. maxValue: null
  2393. syncField: null
  2394. calcFormula: null
  2395. - tag: "正向累计流量"
  2396. protocol: "json"
  2397. measurement: "WaterMeter"
  2398. field: "flow_total_pos"
  2399. valueType: "double"
  2400. minValue: null
  2401. maxValue: null
  2402. syncField: null
  2403. calcFormula: null
  2404. - tag: "反向累计流量"
  2405. protocol: "json"
  2406. measurement: "WaterMeter"
  2407. field: "flow_total_rev"
  2408. valueType: "double"
  2409. minValue: null
  2410. maxValue: null
  2411. syncField: null
  2412. calcFormula: null
  2413. - tag: "压力"
  2414. protocol: "json"
  2415. measurement: "WaterMeter"
  2416. field: "press_cur"
  2417. valueType: "double"
  2418. minValue: null
  2419. maxValue: null
  2420. syncField: null
  2421. calcFormula: null
  2422. - deviceId: "710022511060056"
  2423. deviceName: "142#前进路与西环四路交汇处路北"
  2424. deviceSn: "SB00000071"
  2425. deviceKind: "flow"
  2426. platform: "zaoyang-iot"
  2427. mfrs: "上海锐铼"
  2428. createTime: "2025-11-06 17:45:44"
  2429. tags:
  2430. - tag: "瞬时流量"
  2431. protocol: "json"
  2432. measurement: "WaterMeter"
  2433. field: "flow_cur"
  2434. valueType: "double"
  2435. minValue: null
  2436. maxValue: null
  2437. syncField: null
  2438. calcFormula: null
  2439. - tag: "正向累计流量"
  2440. protocol: "json"
  2441. measurement: "WaterMeter"
  2442. field: "flow_total_pos"
  2443. valueType: "double"
  2444. minValue: null
  2445. maxValue: null
  2446. syncField: null
  2447. calcFormula: null
  2448. - tag: "反向累计流量"
  2449. protocol: "json"
  2450. measurement: "WaterMeter"
  2451. field: "flow_total_rev"
  2452. valueType: "double"
  2453. minValue: null
  2454. maxValue: null
  2455. syncField: null
  2456. calcFormula: null
  2457. - tag: "压力"
  2458. protocol: "json"
  2459. measurement: "WaterMeter"
  2460. field: "press_cur"
  2461. valueType: "double"
  2462. minValue: null
  2463. maxValue: null
  2464. syncField: null
  2465. calcFormula: null
  2466. - deviceId: "710022511060057"
  2467. deviceName: "68#前进路冷水沟桥"
  2468. deviceSn: "SB00000070"
  2469. deviceKind: "flow"
  2470. platform: "zaoyang-iot"
  2471. mfrs: "上海锐铼"
  2472. createTime: "2025-11-06 17:45:44"
  2473. tags:
  2474. - tag: "瞬时流量"
  2475. protocol: "json"
  2476. measurement: "WaterMeter"
  2477. field: "flow_cur"
  2478. valueType: "double"
  2479. minValue: null
  2480. maxValue: null
  2481. syncField: null
  2482. calcFormula: null
  2483. - tag: "正向累计流量"
  2484. protocol: "json"
  2485. measurement: "WaterMeter"
  2486. field: "flow_total_pos"
  2487. valueType: "double"
  2488. minValue: null
  2489. maxValue: null
  2490. syncField: null
  2491. calcFormula: null
  2492. - tag: "反向累计流量"
  2493. protocol: "json"
  2494. measurement: "WaterMeter"
  2495. field: "flow_total_rev"
  2496. valueType: "double"
  2497. minValue: null
  2498. maxValue: null
  2499. syncField: null
  2500. calcFormula: null
  2501. - tag: "压力"
  2502. protocol: "json"
  2503. measurement: "WaterMeter"
  2504. field: "press_cur"
  2505. valueType: "double"
  2506. minValue: null
  2507. maxValue: null
  2508. syncField: null
  2509. calcFormula: null
  2510. - deviceId: "710022511060058"
  2511. deviceName: "137#中兴大道住房公积金办事处路口对面"
  2512. deviceSn: "SB00000110"
  2513. deviceKind: "flow"
  2514. platform: "zaoyang-iot"
  2515. mfrs: "上海锐铼"
  2516. createTime: "2025-11-06 17:45:44"
  2517. tags:
  2518. - tag: "瞬时流量"
  2519. protocol: "json"
  2520. measurement: "WaterMeter"
  2521. field: "flow_cur"
  2522. valueType: "double"
  2523. minValue: null
  2524. maxValue: null
  2525. syncField: null
  2526. calcFormula: null
  2527. - tag: "正向累计流量"
  2528. protocol: "json"
  2529. measurement: "WaterMeter"
  2530. field: "flow_total_pos"
  2531. valueType: "double"
  2532. minValue: null
  2533. maxValue: null
  2534. syncField: null
  2535. calcFormula: null
  2536. - tag: "反向累计流量"
  2537. protocol: "json"
  2538. measurement: "WaterMeter"
  2539. field: "flow_total_rev"
  2540. valueType: "double"
  2541. minValue: null
  2542. maxValue: null
  2543. syncField: null
  2544. calcFormula: null
  2545. - tag: "压力"
  2546. protocol: "json"
  2547. measurement: "WaterMeter"
  2548. field: "press_cur"
  2549. valueType: "double"
  2550. minValue: null
  2551. maxValue: null
  2552. syncField: null
  2553. calcFormula: null
  2554. - deviceId: "710022511060059"
  2555. deviceName: "15#防疫站对面"
  2556. deviceSn: "SB00000077"
  2557. deviceKind: "flow"
  2558. platform: "zaoyang-iot"
  2559. mfrs: "上海锐铼"
  2560. createTime: "2025-11-06 17:45:44"
  2561. tags:
  2562. - tag: "瞬时流量"
  2563. protocol: "json"
  2564. measurement: "WaterMeter"
  2565. field: "flow_cur"
  2566. valueType: "double"
  2567. minValue: null
  2568. maxValue: null
  2569. syncField: null
  2570. calcFormula: null
  2571. - tag: "正向累计流量"
  2572. protocol: "json"
  2573. measurement: "WaterMeter"
  2574. field: "flow_total_pos"
  2575. valueType: "double"
  2576. minValue: null
  2577. maxValue: null
  2578. syncField: null
  2579. calcFormula: null
  2580. - tag: "反向累计流量"
  2581. protocol: "json"
  2582. measurement: "WaterMeter"
  2583. field: "flow_total_rev"
  2584. valueType: "double"
  2585. minValue: null
  2586. maxValue: null
  2587. syncField: null
  2588. calcFormula: null
  2589. - tag: "压力"
  2590. protocol: "json"
  2591. measurement: "WaterMeter"
  2592. field: "press_cur"
  2593. valueType: "double"
  2594. minValue: null
  2595. maxValue: null
  2596. syncField: null
  2597. calcFormula: null
  2598. - deviceId: "710022511060060"
  2599. deviceName: "41#新华路惠民小区门口"
  2600. deviceSn: "SB00000076"
  2601. deviceKind: "flow"
  2602. platform: "zaoyang-iot"
  2603. mfrs: "上海锐铼"
  2604. createTime: "2025-11-06 17:45:44"
  2605. tags:
  2606. - tag: "瞬时流量"
  2607. protocol: "json"
  2608. measurement: "WaterMeter"
  2609. field: "flow_cur"
  2610. valueType: "double"
  2611. minValue: null
  2612. maxValue: null
  2613. syncField: null
  2614. calcFormula: null
  2615. - tag: "正向累计流量"
  2616. protocol: "json"
  2617. measurement: "WaterMeter"
  2618. field: "flow_total_pos"
  2619. valueType: "double"
  2620. minValue: null
  2621. maxValue: null
  2622. syncField: null
  2623. calcFormula: null
  2624. - tag: "反向累计流量"
  2625. protocol: "json"
  2626. measurement: "WaterMeter"
  2627. field: "flow_total_rev"
  2628. valueType: "double"
  2629. minValue: null
  2630. maxValue: null
  2631. syncField: null
  2632. calcFormula: null
  2633. - tag: "压力"
  2634. protocol: "json"
  2635. measurement: "WaterMeter"
  2636. field: "press_cur"
  2637. valueType: "double"
  2638. minValue: null
  2639. maxValue: null
  2640. syncField: null
  2641. calcFormula: null
  2642. - deviceId: "710022511060061"
  2643. deviceName: "69#前进路四海巷北侧"
  2644. deviceSn: "SB00000075"
  2645. deviceKind: "flow"
  2646. platform: "zaoyang-iot"
  2647. mfrs: "上海锐铼"
  2648. createTime: "2025-11-06 17:45:44"
  2649. tags:
  2650. - tag: "瞬时流量"
  2651. protocol: "json"
  2652. measurement: "WaterMeter"
  2653. field: "flow_cur"
  2654. valueType: "double"
  2655. minValue: null
  2656. maxValue: null
  2657. syncField: null
  2658. calcFormula: null
  2659. - tag: "正向累计流量"
  2660. protocol: "json"
  2661. measurement: "WaterMeter"
  2662. field: "flow_total_pos"
  2663. valueType: "double"
  2664. minValue: null
  2665. maxValue: null
  2666. syncField: null
  2667. calcFormula: null
  2668. - tag: "反向累计流量"
  2669. protocol: "json"
  2670. measurement: "WaterMeter"
  2671. field: "flow_total_rev"
  2672. valueType: "double"
  2673. minValue: null
  2674. maxValue: null
  2675. syncField: null
  2676. calcFormula: null
  2677. - tag: "压力"
  2678. protocol: "json"
  2679. measurement: "WaterMeter"
  2680. field: "press_cur"
  2681. valueType: "double"
  2682. minValue: null
  2683. maxValue: null
  2684. syncField: null
  2685. calcFormula: null
  2686. - deviceId: "710022511060062"
  2687. deviceName: "34#寺沙路与新华路交汇处东北角"
  2688. deviceSn: "SB00000074"
  2689. deviceKind: "flow"
  2690. platform: "zaoyang-iot"
  2691. mfrs: "上海锐铼"
  2692. createTime: "2025-11-06 17:45:44"
  2693. tags:
  2694. - tag: "瞬时流量"
  2695. protocol: "json"
  2696. measurement: "WaterMeter"
  2697. field: "flow_cur"
  2698. valueType: "double"
  2699. minValue: null
  2700. maxValue: null
  2701. syncField: null
  2702. calcFormula: null
  2703. - tag: "正向累计流量"
  2704. protocol: "json"
  2705. measurement: "WaterMeter"
  2706. field: "flow_total_pos"
  2707. valueType: "double"
  2708. minValue: null
  2709. maxValue: null
  2710. syncField: null
  2711. calcFormula: null
  2712. - tag: "反向累计流量"
  2713. protocol: "json"
  2714. measurement: "WaterMeter"
  2715. field: "flow_total_rev"
  2716. valueType: "double"
  2717. minValue: null
  2718. maxValue: null
  2719. syncField: null
  2720. calcFormula: null
  2721. - tag: "压力"
  2722. protocol: "json"
  2723. measurement: "WaterMeter"
  2724. field: "press_cur"
  2725. valueType: "double"
  2726. minValue: null
  2727. maxValue: null
  2728. syncField: null
  2729. calcFormula: null
  2730. - deviceId: "710022511060063"
  2731. deviceName: "腾龙驾校北流量计"
  2732. deviceSn: "SB00000109"
  2733. deviceKind: "flow"
  2734. platform: "zaoyang-iot"
  2735. mfrs: "上海锐铼"
  2736. createTime: "2025-11-06 17:45:44"
  2737. tags:
  2738. - tag: "瞬时流量"
  2739. protocol: "json"
  2740. measurement: "WaterMeter"
  2741. field: "flow_cur"
  2742. valueType: "double"
  2743. minValue: null
  2744. maxValue: null
  2745. syncField: null
  2746. calcFormula: null
  2747. - tag: "正向累计流量"
  2748. protocol: "json"
  2749. measurement: "WaterMeter"
  2750. field: "flow_total_pos"
  2751. valueType: "double"
  2752. minValue: null
  2753. maxValue: null
  2754. syncField: null
  2755. calcFormula: null
  2756. - tag: "反向累计流量"
  2757. protocol: "json"
  2758. measurement: "WaterMeter"
  2759. field: "flow_total_rev"
  2760. valueType: "double"
  2761. minValue: null
  2762. maxValue: null
  2763. syncField: null
  2764. calcFormula: null
  2765. - tag: "压力"
  2766. protocol: "json"
  2767. measurement: "WaterMeter"
  2768. field: "press_cur"
  2769. valueType: "double"
  2770. minValue: null
  2771. maxValue: null
  2772. syncField: null
  2773. calcFormula: null
  2774. - deviceId: "710022511060064"
  2775. deviceName: "2412001029"
  2776. deviceSn: "SB00000108"
  2777. deviceKind: "flow"
  2778. platform: "zaoyang-iot"
  2779. mfrs: "上海锐铼"
  2780. createTime: "2025-11-06 17:45:44"
  2781. tags:
  2782. - tag: "瞬时流量"
  2783. protocol: "json"
  2784. measurement: "WaterMeter"
  2785. field: "flow_cur"
  2786. valueType: "double"
  2787. minValue: null
  2788. maxValue: null
  2789. syncField: null
  2790. calcFormula: null
  2791. - tag: "正向累计流量"
  2792. protocol: "json"
  2793. measurement: "WaterMeter"
  2794. field: "flow_total_pos"
  2795. valueType: "double"
  2796. minValue: null
  2797. maxValue: null
  2798. syncField: null
  2799. calcFormula: null
  2800. - tag: "反向累计流量"
  2801. protocol: "json"
  2802. measurement: "WaterMeter"
  2803. field: "flow_total_rev"
  2804. valueType: "double"
  2805. minValue: null
  2806. maxValue: null
  2807. syncField: null
  2808. calcFormula: null
  2809. - tag: "压力"
  2810. protocol: "json"
  2811. measurement: "WaterMeter"
  2812. field: "press_cur"
  2813. valueType: "double"
  2814. minValue: null
  2815. maxValue: null
  2816. syncField: null
  2817. calcFormula: null
  2818. - deviceId: "710022511060065"
  2819. deviceName: "发展大道与车站路交叉西北角流量计"
  2820. deviceSn: "SB00000103"
  2821. deviceKind: "flow"
  2822. platform: "zaoyang-iot"
  2823. mfrs: "上海锐铼"
  2824. createTime: "2025-11-06 17:45:44"
  2825. tags:
  2826. - tag: "瞬时流量"
  2827. protocol: "json"
  2828. measurement: "WaterMeter"
  2829. field: "flow_cur"
  2830. valueType: "double"
  2831. minValue: null
  2832. maxValue: null
  2833. syncField: null
  2834. calcFormula: null
  2835. - tag: "正向累计流量"
  2836. protocol: "json"
  2837. measurement: "WaterMeter"
  2838. field: "flow_total_pos"
  2839. valueType: "double"
  2840. minValue: null
  2841. maxValue: null
  2842. syncField: null
  2843. calcFormula: null
  2844. - tag: "反向累计流量"
  2845. protocol: "json"
  2846. measurement: "WaterMeter"
  2847. field: "flow_total_rev"
  2848. valueType: "double"
  2849. minValue: null
  2850. maxValue: null
  2851. syncField: null
  2852. calcFormula: null
  2853. - tag: "压力"
  2854. protocol: "json"
  2855. measurement: "WaterMeter"
  2856. field: "press_cur"
  2857. valueType: "double"
  2858. minValue: null
  2859. maxValue: null
  2860. syncField: null
  2861. calcFormula: null
  2862. - deviceId: "710022511060066"
  2863. deviceName: "发展大道与车站路交叉口东北角流量计"
  2864. deviceSn: "SB00000102"
  2865. deviceKind: "flow"
  2866. platform: "zaoyang-iot"
  2867. mfrs: "上海锐铼"
  2868. createTime: "2025-11-06 17:45:44"
  2869. tags:
  2870. - tag: "瞬时流量"
  2871. protocol: "json"
  2872. measurement: "WaterMeter"
  2873. field: "flow_cur"
  2874. valueType: "double"
  2875. minValue: null
  2876. maxValue: null
  2877. syncField: null
  2878. calcFormula: null
  2879. - tag: "正向累计流量"
  2880. protocol: "json"
  2881. measurement: "WaterMeter"
  2882. field: "flow_total_pos"
  2883. valueType: "double"
  2884. minValue: null
  2885. maxValue: null
  2886. syncField: null
  2887. calcFormula: null
  2888. - tag: "反向累计流量"
  2889. protocol: "json"
  2890. measurement: "WaterMeter"
  2891. field: "flow_total_rev"
  2892. valueType: "double"
  2893. minValue: null
  2894. maxValue: null
  2895. syncField: null
  2896. calcFormula: null
  2897. - tag: "压力"
  2898. protocol: "json"
  2899. measurement: "WaterMeter"
  2900. field: "press_cur"
  2901. valueType: "double"
  2902. minValue: null
  2903. maxValue: null
  2904. syncField: null
  2905. calcFormula: null
  2906. - deviceId: "710022511060067"
  2907. deviceName: "139#中兴大道加气站路口对面"
  2908. deviceSn: "SB00000069"
  2909. deviceKind: "flow"
  2910. platform: "zaoyang-iot"
  2911. mfrs: "上海锐铼"
  2912. createTime: "2025-11-06 17:45:44"
  2913. tags:
  2914. - tag: "瞬时流量"
  2915. protocol: "json"
  2916. measurement: "WaterMeter"
  2917. field: "flow_cur"
  2918. valueType: "double"
  2919. minValue: null
  2920. maxValue: null
  2921. syncField: null
  2922. calcFormula: null
  2923. - tag: "正向累计流量"
  2924. protocol: "json"
  2925. measurement: "WaterMeter"
  2926. field: "flow_total_pos"
  2927. valueType: "double"
  2928. minValue: null
  2929. maxValue: null
  2930. syncField: null
  2931. calcFormula: null
  2932. - tag: "反向累计流量"
  2933. protocol: "json"
  2934. measurement: "WaterMeter"
  2935. field: "flow_total_rev"
  2936. valueType: "double"
  2937. minValue: null
  2938. maxValue: null
  2939. syncField: null
  2940. calcFormula: null
  2941. - tag: "压力"
  2942. protocol: "json"
  2943. measurement: "WaterMeter"
  2944. field: "press_cur"
  2945. valueType: "double"
  2946. minValue: null
  2947. maxValue: null
  2948. syncField: null
  2949. calcFormula: null
  2950. - deviceId: "710022511060068"
  2951. deviceName: "中医院门口流量计"
  2952. deviceSn: "SB00000101"
  2953. deviceKind: "flow"
  2954. platform: "zaoyang-iot"
  2955. mfrs: "上海锐铼"
  2956. createTime: "2025-11-06 17:45:44"
  2957. tags:
  2958. - tag: "瞬时流量"
  2959. protocol: "json"
  2960. measurement: "WaterMeter"
  2961. field: "flow_cur"
  2962. valueType: "double"
  2963. minValue: null
  2964. maxValue: null
  2965. syncField: null
  2966. calcFormula: null
  2967. - tag: "正向累计流量"
  2968. protocol: "json"
  2969. measurement: "WaterMeter"
  2970. field: "flow_total_pos"
  2971. valueType: "double"
  2972. minValue: null
  2973. maxValue: null
  2974. syncField: null
  2975. calcFormula: null
  2976. - tag: "反向累计流量"
  2977. protocol: "json"
  2978. measurement: "WaterMeter"
  2979. field: "flow_total_rev"
  2980. valueType: "double"
  2981. minValue: null
  2982. maxValue: null
  2983. syncField: null
  2984. calcFormula: null
  2985. - tag: "压力"
  2986. protocol: "json"
  2987. measurement: "WaterMeter"
  2988. field: "press_cur"
  2989. valueType: "double"
  2990. minValue: null
  2991. maxValue: null
  2992. syncField: null
  2993. calcFormula: null
  2994. - deviceId: "710022511060069"
  2995. deviceName: "294#光武大道车站中学西路口"
  2996. deviceSn: "SB00000068"
  2997. deviceKind: "flow"
  2998. platform: "zaoyang-iot"
  2999. mfrs: "上海锐铼"
  3000. createTime: "2025-11-06 17:45:44"
  3001. tags:
  3002. - tag: "瞬时流量"
  3003. protocol: "json"
  3004. measurement: "WaterMeter"
  3005. field: "flow_cur"
  3006. valueType: "double"
  3007. minValue: null
  3008. maxValue: null
  3009. syncField: null
  3010. calcFormula: null
  3011. - tag: "正向累计流量"
  3012. protocol: "json"
  3013. measurement: "WaterMeter"
  3014. field: "flow_total_pos"
  3015. valueType: "double"
  3016. minValue: null
  3017. maxValue: null
  3018. syncField: null
  3019. calcFormula: null
  3020. - tag: "反向累计流量"
  3021. protocol: "json"
  3022. measurement: "WaterMeter"
  3023. field: "flow_total_rev"
  3024. valueType: "double"
  3025. minValue: null
  3026. maxValue: null
  3027. syncField: null
  3028. calcFormula: null
  3029. - tag: "压力"
  3030. protocol: "json"
  3031. measurement: "WaterMeter"
  3032. field: "press_cur"
  3033. valueType: "double"
  3034. minValue: null
  3035. maxValue: null
  3036. syncField: null
  3037. calcFormula: null
  3038. - deviceId: "710022511060070"
  3039. deviceName: "二色路口考核表"
  3040. deviceSn: "SB00000100"
  3041. deviceKind: "flow"
  3042. platform: "zaoyang-iot"
  3043. mfrs: "上海锐铼"
  3044. createTime: "2025-11-06 17:45:44"
  3045. tags:
  3046. - tag: "瞬时流量"
  3047. protocol: "json"
  3048. measurement: "WaterMeter"
  3049. field: "flow_cur"
  3050. valueType: "double"
  3051. minValue: null
  3052. maxValue: null
  3053. syncField: null
  3054. calcFormula: null
  3055. - tag: "正向累计流量"
  3056. protocol: "json"
  3057. measurement: "WaterMeter"
  3058. field: "flow_total_pos"
  3059. valueType: "double"
  3060. minValue: null
  3061. maxValue: null
  3062. syncField: null
  3063. calcFormula: null
  3064. - tag: "反向累计流量"
  3065. protocol: "json"
  3066. measurement: "WaterMeter"
  3067. field: "flow_total_rev"
  3068. valueType: "double"
  3069. minValue: null
  3070. maxValue: null
  3071. syncField: null
  3072. calcFormula: null
  3073. - tag: "压力"
  3074. protocol: "json"
  3075. measurement: "WaterMeter"
  3076. field: "press_cur"
  3077. valueType: "double"
  3078. minValue: null
  3079. maxValue: null
  3080. syncField: null
  3081. calcFormula: null
  3082. - deviceId: "710022511060071"
  3083. deviceName: "43#寺沙路与兴阳路交汇处(反家暴中心路口)"
  3084. deviceSn: "SB00000067"
  3085. deviceKind: "flow"
  3086. platform: "zaoyang-iot"
  3087. mfrs: "上海锐铼"
  3088. createTime: "2025-11-06 17:45:44"
  3089. tags:
  3090. - tag: "瞬时流量"
  3091. protocol: "json"
  3092. measurement: "WaterMeter"
  3093. field: "flow_cur"
  3094. valueType: "double"
  3095. minValue: null
  3096. maxValue: null
  3097. syncField: null
  3098. calcFormula: null
  3099. - tag: "正向累计流量"
  3100. protocol: "json"
  3101. measurement: "WaterMeter"
  3102. field: "flow_total_pos"
  3103. valueType: "double"
  3104. minValue: null
  3105. maxValue: null
  3106. syncField: null
  3107. calcFormula: null
  3108. - tag: "反向累计流量"
  3109. protocol: "json"
  3110. measurement: "WaterMeter"
  3111. field: "flow_total_rev"
  3112. valueType: "double"
  3113. minValue: null
  3114. maxValue: null
  3115. syncField: null
  3116. calcFormula: null
  3117. - tag: "压力"
  3118. protocol: "json"
  3119. measurement: "WaterMeter"
  3120. field: "press_cur"
  3121. valueType: "double"
  3122. minValue: null
  3123. maxValue: null
  3124. syncField: null
  3125. calcFormula: null
  3126. - deviceId: "710022511060072"
  3127. deviceName: "和谐花苑向南200米流量计"
  3128. deviceSn: "SB00000107"
  3129. deviceKind: "flow"
  3130. platform: "zaoyang-iot"
  3131. mfrs: "上海锐铼"
  3132. createTime: "2025-11-06 17:45:44"
  3133. tags:
  3134. - tag: "瞬时流量"
  3135. protocol: "json"
  3136. measurement: "WaterMeter"
  3137. field: "flow_cur"
  3138. valueType: "double"
  3139. minValue: null
  3140. maxValue: null
  3141. syncField: null
  3142. calcFormula: null
  3143. - tag: "正向累计流量"
  3144. protocol: "json"
  3145. measurement: "WaterMeter"
  3146. field: "flow_total_pos"
  3147. valueType: "double"
  3148. minValue: null
  3149. maxValue: null
  3150. syncField: null
  3151. calcFormula: null
  3152. - tag: "反向累计流量"
  3153. protocol: "json"
  3154. measurement: "WaterMeter"
  3155. field: "flow_total_rev"
  3156. valueType: "double"
  3157. minValue: null
  3158. maxValue: null
  3159. syncField: null
  3160. calcFormula: null
  3161. - tag: "压力"
  3162. protocol: "json"
  3163. measurement: "WaterMeter"
  3164. field: "press_cur"
  3165. valueType: "double"
  3166. minValue: null
  3167. maxValue: null
  3168. syncField: null
  3169. calcFormula: null
  3170. - deviceId: "710022511060073"
  3171. deviceName: "梁集路口300考核表"
  3172. deviceSn: "SB00000106"
  3173. deviceKind: "flow"
  3174. platform: "zaoyang-iot"
  3175. mfrs: "上海锐铼"
  3176. createTime: "2025-11-06 17:45:44"
  3177. tags:
  3178. - tag: "瞬时流量"
  3179. protocol: "json"
  3180. measurement: "WaterMeter"
  3181. field: "flow_cur"
  3182. valueType: "double"
  3183. minValue: null
  3184. maxValue: null
  3185. syncField: null
  3186. calcFormula: null
  3187. - tag: "正向累计流量"
  3188. protocol: "json"
  3189. measurement: "WaterMeter"
  3190. field: "flow_total_pos"
  3191. valueType: "double"
  3192. minValue: null
  3193. maxValue: null
  3194. syncField: null
  3195. calcFormula: null
  3196. - tag: "反向累计流量"
  3197. protocol: "json"
  3198. measurement: "WaterMeter"
  3199. field: "flow_total_rev"
  3200. valueType: "double"
  3201. minValue: null
  3202. maxValue: null
  3203. syncField: null
  3204. calcFormula: null
  3205. - tag: "压力"
  3206. protocol: "json"
  3207. measurement: "WaterMeter"
  3208. field: "press_cur"
  3209. valueType: "double"
  3210. minValue: null
  3211. maxValue: null
  3212. syncField: null
  3213. calcFormula: null
  3214. - deviceId: "710022511060074"
  3215. deviceName: "复烤厂门口流量计"
  3216. deviceSn: "SB00000105"
  3217. deviceKind: "flow"
  3218. platform: "zaoyang-iot"
  3219. mfrs: "上海锐铼"
  3220. createTime: "2025-11-06 17:45:44"
  3221. tags:
  3222. - tag: "瞬时流量"
  3223. protocol: "json"
  3224. measurement: "WaterMeter"
  3225. field: "flow_cur"
  3226. valueType: "double"
  3227. minValue: null
  3228. maxValue: null
  3229. syncField: null
  3230. calcFormula: null
  3231. - tag: "正向累计流量"
  3232. protocol: "json"
  3233. measurement: "WaterMeter"
  3234. field: "flow_total_pos"
  3235. valueType: "double"
  3236. minValue: null
  3237. maxValue: null
  3238. syncField: null
  3239. calcFormula: null
  3240. - tag: "反向累计流量"
  3241. protocol: "json"
  3242. measurement: "WaterMeter"
  3243. field: "flow_total_rev"
  3244. valueType: "double"
  3245. minValue: null
  3246. maxValue: null
  3247. syncField: null
  3248. calcFormula: null
  3249. - tag: "压力"
  3250. protocol: "json"
  3251. measurement: "WaterMeter"
  3252. field: "press_cur"
  3253. valueType: "double"
  3254. minValue: null
  3255. maxValue: null
  3256. syncField: null
  3257. calcFormula: null
  3258. - deviceId: "710022511060075"
  3259. deviceName: "南城财政所流量计"
  3260. deviceSn: "SB00000104"
  3261. deviceKind: "flow"
  3262. platform: "zaoyang-iot"
  3263. mfrs: "上海锐铼"
  3264. createTime: "2025-11-06 17:45:44"
  3265. tags:
  3266. - tag: "瞬时流量"
  3267. protocol: "json"
  3268. measurement: "WaterMeter"
  3269. field: "flow_cur"
  3270. valueType: "double"
  3271. minValue: null
  3272. maxValue: null
  3273. syncField: null
  3274. calcFormula: null
  3275. - tag: "正向累计流量"
  3276. protocol: "json"
  3277. measurement: "WaterMeter"
  3278. field: "flow_total_pos"
  3279. valueType: "double"
  3280. minValue: null
  3281. maxValue: null
  3282. syncField: null
  3283. calcFormula: null
  3284. - tag: "反向累计流量"
  3285. protocol: "json"
  3286. measurement: "WaterMeter"
  3287. field: "flow_total_rev"
  3288. valueType: "double"
  3289. minValue: null
  3290. maxValue: null
  3291. syncField: null
  3292. calcFormula: null
  3293. - tag: "压力"
  3294. protocol: "json"
  3295. measurement: "WaterMeter"
  3296. field: "press_cur"
  3297. valueType: "double"
  3298. minValue: null
  3299. maxValue: null
  3300. syncField: null
  3301. calcFormula: null
  3302. - deviceId: "710022511060076"
  3303. deviceName: "147#八里五组路口"
  3304. deviceSn: "SB00000061"
  3305. deviceKind: "flow"
  3306. platform: "zaoyang-iot"
  3307. mfrs: "上海锐铼"
  3308. createTime: "2025-11-06 17:45:44"
  3309. tags:
  3310. - tag: "瞬时流量"
  3311. protocol: "json"
  3312. measurement: "WaterMeter"
  3313. field: "flow_cur"
  3314. valueType: "double"
  3315. minValue: null
  3316. maxValue: null
  3317. syncField: null
  3318. calcFormula: null
  3319. - tag: "正向累计流量"
  3320. protocol: "json"
  3321. measurement: "WaterMeter"
  3322. field: "flow_total_pos"
  3323. valueType: "double"
  3324. minValue: null
  3325. maxValue: null
  3326. syncField: null
  3327. calcFormula: null
  3328. - tag: "反向累计流量"
  3329. protocol: "json"
  3330. measurement: "WaterMeter"
  3331. field: "flow_total_rev"
  3332. valueType: "double"
  3333. minValue: null
  3334. maxValue: null
  3335. syncField: null
  3336. calcFormula: null
  3337. - tag: "压力"
  3338. protocol: "json"
  3339. measurement: "WaterMeter"
  3340. field: "press_cur"
  3341. valueType: "double"
  3342. minValue: null
  3343. maxValue: null
  3344. syncField: null
  3345. calcFormula: null
  3346. - deviceId: "710022511060077"
  3347. deviceName: "36#寺沙路与新华路交汇处向北兴旺家园路口"
  3348. deviceSn: "SB00000066"
  3349. deviceKind: "flow"
  3350. platform: "zaoyang-iot"
  3351. mfrs: "上海锐铼"
  3352. createTime: "2025-11-06 17:45:44"
  3353. tags:
  3354. - tag: "瞬时流量"
  3355. protocol: "json"
  3356. measurement: "WaterMeter"
  3357. field: "flow_cur"
  3358. valueType: "double"
  3359. minValue: null
  3360. maxValue: null
  3361. syncField: null
  3362. calcFormula: null
  3363. - tag: "正向累计流量"
  3364. protocol: "json"
  3365. measurement: "WaterMeter"
  3366. field: "flow_total_pos"
  3367. valueType: "double"
  3368. minValue: null
  3369. maxValue: null
  3370. syncField: null
  3371. calcFormula: null
  3372. - tag: "反向累计流量"
  3373. protocol: "json"
  3374. measurement: "WaterMeter"
  3375. field: "flow_total_rev"
  3376. valueType: "double"
  3377. minValue: null
  3378. maxValue: null
  3379. syncField: null
  3380. calcFormula: null
  3381. - tag: "压力"
  3382. protocol: "json"
  3383. measurement: "WaterMeter"
  3384. field: "press_cur"
  3385. valueType: "double"
  3386. minValue: null
  3387. maxValue: null
  3388. syncField: null
  3389. calcFormula: null
  3390. - deviceId: "710022511060078"
  3391. deviceName: "33#阳光路长江1号鄂西北运营中心路口"
  3392. deviceSn: "SB00000065"
  3393. deviceKind: "flow"
  3394. platform: "zaoyang-iot"
  3395. mfrs: "上海锐铼"
  3396. createTime: "2025-11-06 17:45:44"
  3397. tags:
  3398. - tag: "瞬时流量"
  3399. protocol: "json"
  3400. measurement: "WaterMeter"
  3401. field: "flow_cur"
  3402. valueType: "double"
  3403. minValue: null
  3404. maxValue: null
  3405. syncField: null
  3406. calcFormula: null
  3407. - tag: "正向累计流量"
  3408. protocol: "json"
  3409. measurement: "WaterMeter"
  3410. field: "flow_total_pos"
  3411. valueType: "double"
  3412. minValue: null
  3413. maxValue: null
  3414. syncField: null
  3415. calcFormula: null
  3416. - tag: "反向累计流量"
  3417. protocol: "json"
  3418. measurement: "WaterMeter"
  3419. field: "flow_total_rev"
  3420. valueType: "double"
  3421. minValue: null
  3422. maxValue: null
  3423. syncField: null
  3424. calcFormula: null
  3425. - tag: "压力"
  3426. protocol: "json"
  3427. measurement: "WaterMeter"
  3428. field: "press_cur"
  3429. valueType: "double"
  3430. minValue: null
  3431. maxValue: null
  3432. syncField: null
  3433. calcFormula: null
  3434. - deviceId: "710022511060079"
  3435. deviceName: "3#民族西路茶棚七组路口"
  3436. deviceSn: "SB00000064"
  3437. deviceKind: "flow"
  3438. platform: "zaoyang-iot"
  3439. mfrs: "上海锐铼"
  3440. createTime: "2025-11-06 17:45:44"
  3441. tags:
  3442. - tag: "瞬时流量"
  3443. protocol: "json"
  3444. measurement: "WaterMeter"
  3445. field: "flow_cur"
  3446. valueType: "double"
  3447. minValue: null
  3448. maxValue: null
  3449. syncField: null
  3450. calcFormula: null
  3451. - tag: "正向累计流量"
  3452. protocol: "json"
  3453. measurement: "WaterMeter"
  3454. field: "flow_total_pos"
  3455. valueType: "double"
  3456. minValue: null
  3457. maxValue: null
  3458. syncField: null
  3459. calcFormula: null
  3460. - tag: "反向累计流量"
  3461. protocol: "json"
  3462. measurement: "WaterMeter"
  3463. field: "flow_total_rev"
  3464. valueType: "double"
  3465. minValue: null
  3466. maxValue: null
  3467. syncField: null
  3468. calcFormula: null
  3469. - tag: "压力"
  3470. protocol: "json"
  3471. measurement: "WaterMeter"
  3472. field: "press_cur"
  3473. valueType: "double"
  3474. minValue: null
  3475. maxValue: null
  3476. syncField: null
  3477. calcFormula: null
  3478. - deviceId: "710022511060080"
  3479. deviceName: "307#中兴大道二郎村村委会路口"
  3480. deviceSn: "SB00000063"
  3481. deviceKind: "flow"
  3482. platform: "zaoyang-iot"
  3483. mfrs: "上海锐铼"
  3484. createTime: "2025-11-06 17:45:44"
  3485. tags:
  3486. - tag: "瞬时流量"
  3487. protocol: "json"
  3488. measurement: "WaterMeter"
  3489. field: "flow_cur"
  3490. valueType: "double"
  3491. minValue: null
  3492. maxValue: null
  3493. syncField: null
  3494. calcFormula: null
  3495. - tag: "正向累计流量"
  3496. protocol: "json"
  3497. measurement: "WaterMeter"
  3498. field: "flow_total_pos"
  3499. valueType: "double"
  3500. minValue: null
  3501. maxValue: null
  3502. syncField: null
  3503. calcFormula: null
  3504. - tag: "反向累计流量"
  3505. protocol: "json"
  3506. measurement: "WaterMeter"
  3507. field: "flow_total_rev"
  3508. valueType: "double"
  3509. minValue: null
  3510. maxValue: null
  3511. syncField: null
  3512. calcFormula: null
  3513. - tag: "压力"
  3514. protocol: "json"
  3515. measurement: "WaterMeter"
  3516. field: "press_cur"
  3517. valueType: "double"
  3518. minValue: null
  3519. maxValue: null
  3520. syncField: null
  3521. calcFormula: null
  3522. - deviceId: "710022511060081"
  3523. deviceName: "296#火车站路口工商银行南侧"
  3524. deviceSn: "SB00000059"
  3525. deviceKind: "flow"
  3526. platform: "zaoyang-iot"
  3527. mfrs: "上海锐铼"
  3528. createTime: "2025-11-06 17:45:44"
  3529. tags:
  3530. - tag: "瞬时流量"
  3531. protocol: "json"
  3532. measurement: "WaterMeter"
  3533. field: "flow_cur"
  3534. valueType: "double"
  3535. minValue: null
  3536. maxValue: null
  3537. syncField: null
  3538. calcFormula: null
  3539. - tag: "正向累计流量"
  3540. protocol: "json"
  3541. measurement: "WaterMeter"
  3542. field: "flow_total_pos"
  3543. valueType: "double"
  3544. minValue: null
  3545. maxValue: null
  3546. syncField: null
  3547. calcFormula: null
  3548. - tag: "反向累计流量"
  3549. protocol: "json"
  3550. measurement: "WaterMeter"
  3551. field: "flow_total_rev"
  3552. valueType: "double"
  3553. minValue: null
  3554. maxValue: null
  3555. syncField: null
  3556. calcFormula: null
  3557. - tag: "压力"
  3558. protocol: "json"
  3559. measurement: "WaterMeter"
  3560. field: "press_cur"
  3561. valueType: "double"
  3562. minValue: null
  3563. maxValue: null
  3564. syncField: null
  3565. calcFormula: null
  3566. - deviceId: "710022511060082"
  3567. deviceName: "7#民族西路与西环二路交汇处东北角"
  3568. deviceSn: "SB00000058"
  3569. deviceKind: "flow"
  3570. platform: "zaoyang-iot"
  3571. mfrs: "上海锐铼"
  3572. createTime: "2025-11-06 17:45:44"
  3573. tags:
  3574. - tag: "瞬时流量"
  3575. protocol: "json"
  3576. measurement: "WaterMeter"
  3577. field: "flow_cur"
  3578. valueType: "double"
  3579. minValue: null
  3580. maxValue: null
  3581. syncField: null
  3582. calcFormula: null
  3583. - tag: "正向累计流量"
  3584. protocol: "json"
  3585. measurement: "WaterMeter"
  3586. field: "flow_total_pos"
  3587. valueType: "double"
  3588. minValue: null
  3589. maxValue: null
  3590. syncField: null
  3591. calcFormula: null
  3592. - tag: "反向累计流量"
  3593. protocol: "json"
  3594. measurement: "WaterMeter"
  3595. field: "flow_total_rev"
  3596. valueType: "double"
  3597. minValue: null
  3598. maxValue: null
  3599. syncField: null
  3600. calcFormula: null
  3601. - tag: "压力"
  3602. protocol: "json"
  3603. measurement: "WaterMeter"
  3604. field: "press_cur"
  3605. valueType: "double"
  3606. minValue: null
  3607. maxValue: null
  3608. syncField: null
  3609. calcFormula: null
  3610. - deviceId: "710022511060083"
  3611. deviceName: "1#神驰路与316老国道交汇处 东侧路"
  3612. deviceSn: "SB00000057"
  3613. deviceKind: "flow"
  3614. platform: "zaoyang-iot"
  3615. mfrs: "上海锐铼"
  3616. createTime: "2025-11-06 17:45:44"
  3617. tags:
  3618. - tag: "瞬时流量"
  3619. protocol: "json"
  3620. measurement: "WaterMeter"
  3621. field: "flow_cur"
  3622. valueType: "double"
  3623. minValue: null
  3624. maxValue: null
  3625. syncField: null
  3626. calcFormula: null
  3627. - tag: "正向累计流量"
  3628. protocol: "json"
  3629. measurement: "WaterMeter"
  3630. field: "flow_total_pos"
  3631. valueType: "double"
  3632. minValue: null
  3633. maxValue: null
  3634. syncField: null
  3635. calcFormula: null
  3636. - tag: "反向累计流量"
  3637. protocol: "json"
  3638. measurement: "WaterMeter"
  3639. field: "flow_total_rev"
  3640. valueType: "double"
  3641. minValue: null
  3642. maxValue: null
  3643. syncField: null
  3644. calcFormula: null
  3645. - tag: "压力"
  3646. protocol: "json"
  3647. measurement: "WaterMeter"
  3648. field: "press_cur"
  3649. valueType: "double"
  3650. minValue: null
  3651. maxValue: null
  3652. syncField: null
  3653. calcFormula: null
  3654. - deviceId: "710022511060084"
  3655. deviceName: "252#兴隆创业一路路口"
  3656. deviceSn: "SB00000056"
  3657. deviceKind: "flow"
  3658. platform: "zaoyang-iot"
  3659. mfrs: "上海锐铼"
  3660. createTime: "2025-11-06 17:45:44"
  3661. tags:
  3662. - tag: "瞬时流量"
  3663. protocol: "json"
  3664. measurement: "WaterMeter"
  3665. field: "flow_cur"
  3666. valueType: "double"
  3667. minValue: null
  3668. maxValue: null
  3669. syncField: null
  3670. calcFormula: null
  3671. - tag: "正向累计流量"
  3672. protocol: "json"
  3673. measurement: "WaterMeter"
  3674. field: "flow_total_pos"
  3675. valueType: "double"
  3676. minValue: null
  3677. maxValue: null
  3678. syncField: null
  3679. calcFormula: null
  3680. - tag: "反向累计流量"
  3681. protocol: "json"
  3682. measurement: "WaterMeter"
  3683. field: "flow_total_rev"
  3684. valueType: "double"
  3685. minValue: null
  3686. maxValue: null
  3687. syncField: null
  3688. calcFormula: null
  3689. - tag: "压力"
  3690. protocol: "json"
  3691. measurement: "WaterMeter"
  3692. field: "press_cur"
  3693. valueType: "double"
  3694. minValue: null
  3695. maxValue: null
  3696. syncField: null
  3697. calcFormula: null
  3698. - deviceId: "710022511060085"
  3699. deviceName: "263#发展大道金牛山小区南侧"
  3700. deviceSn: "SB00000051"
  3701. deviceKind: "flow"
  3702. platform: "zaoyang-iot"
  3703. mfrs: "上海锐铼"
  3704. createTime: "2025-11-06 17:45:44"
  3705. tags:
  3706. - tag: "瞬时流量"
  3707. protocol: "json"
  3708. measurement: "WaterMeter"
  3709. field: "flow_cur"
  3710. valueType: "double"
  3711. minValue: null
  3712. maxValue: null
  3713. syncField: null
  3714. calcFormula: null
  3715. - tag: "正向累计流量"
  3716. protocol: "json"
  3717. measurement: "WaterMeter"
  3718. field: "flow_total_pos"
  3719. valueType: "double"
  3720. minValue: null
  3721. maxValue: null
  3722. syncField: null
  3723. calcFormula: null
  3724. - tag: "反向累计流量"
  3725. protocol: "json"
  3726. measurement: "WaterMeter"
  3727. field: "flow_total_rev"
  3728. valueType: "double"
  3729. minValue: null
  3730. maxValue: null
  3731. syncField: null
  3732. calcFormula: null
  3733. - tag: "压力"
  3734. protocol: "json"
  3735. measurement: "WaterMeter"
  3736. field: "press_cur"
  3737. valueType: "double"
  3738. minValue: null
  3739. maxValue: null
  3740. syncField: null
  3741. calcFormula: null
  3742. - deviceId: "710022511060086"
  3743. deviceName: "16#民族路枣阳市疾控中心对面路口"
  3744. deviceSn: "SB00000050"
  3745. deviceKind: "flow"
  3746. platform: "zaoyang-iot"
  3747. mfrs: "上海锐铼"
  3748. createTime: "2025-11-06 17:45:44"
  3749. tags:
  3750. - tag: "瞬时流量"
  3751. protocol: "json"
  3752. measurement: "WaterMeter"
  3753. field: "flow_cur"
  3754. valueType: "double"
  3755. minValue: null
  3756. maxValue: null
  3757. syncField: null
  3758. calcFormula: null
  3759. - tag: "正向累计流量"
  3760. protocol: "json"
  3761. measurement: "WaterMeter"
  3762. field: "flow_total_pos"
  3763. valueType: "double"
  3764. minValue: null
  3765. maxValue: null
  3766. syncField: null
  3767. calcFormula: null
  3768. - tag: "反向累计流量"
  3769. protocol: "json"
  3770. measurement: "WaterMeter"
  3771. field: "flow_total_rev"
  3772. valueType: "double"
  3773. minValue: null
  3774. maxValue: null
  3775. syncField: null
  3776. calcFormula: null
  3777. - tag: "压力"
  3778. protocol: "json"
  3779. measurement: "WaterMeter"
  3780. field: "press_cur"
  3781. valueType: "double"
  3782. minValue: null
  3783. maxValue: null
  3784. syncField: null
  3785. calcFormula: null
  3786. - deviceId: "710022511060087"
  3787. deviceName: "295#火车站路口工商银行南侧管道过路处"
  3788. deviceSn: "SB00000055"
  3789. deviceKind: "flow"
  3790. platform: "zaoyang-iot"
  3791. mfrs: "上海锐铼"
  3792. createTime: "2025-11-06 17:45:44"
  3793. tags:
  3794. - tag: "瞬时流量"
  3795. protocol: "json"
  3796. measurement: "WaterMeter"
  3797. field: "flow_cur"
  3798. valueType: "double"
  3799. minValue: null
  3800. maxValue: null
  3801. syncField: null
  3802. calcFormula: null
  3803. - tag: "正向累计流量"
  3804. protocol: "json"
  3805. measurement: "WaterMeter"
  3806. field: "flow_total_pos"
  3807. valueType: "double"
  3808. minValue: null
  3809. maxValue: null
  3810. syncField: null
  3811. calcFormula: null
  3812. - tag: "反向累计流量"
  3813. protocol: "json"
  3814. measurement: "WaterMeter"
  3815. field: "flow_total_rev"
  3816. valueType: "double"
  3817. minValue: null
  3818. maxValue: null
  3819. syncField: null
  3820. calcFormula: null
  3821. - tag: "压力"
  3822. protocol: "json"
  3823. measurement: "WaterMeter"
  3824. field: "press_cur"
  3825. valueType: "double"
  3826. minValue: null
  3827. maxValue: null
  3828. syncField: null
  3829. calcFormula: null
  3830. - deviceId: "710022511060088"
  3831. deviceName: "26#民族北路聚福苑小区路口对面"
  3832. deviceSn: "SB00000054"
  3833. deviceKind: "flow"
  3834. platform: "zaoyang-iot"
  3835. mfrs: "上海锐铼"
  3836. createTime: "2025-11-06 17:45:44"
  3837. tags:
  3838. - tag: "瞬时流量"
  3839. protocol: "json"
  3840. measurement: "WaterMeter"
  3841. field: "flow_cur"
  3842. valueType: "double"
  3843. minValue: null
  3844. maxValue: null
  3845. syncField: null
  3846. calcFormula: null
  3847. - tag: "正向累计流量"
  3848. protocol: "json"
  3849. measurement: "WaterMeter"
  3850. field: "flow_total_pos"
  3851. valueType: "double"
  3852. minValue: null
  3853. maxValue: null
  3854. syncField: null
  3855. calcFormula: null
  3856. - tag: "反向累计流量"
  3857. protocol: "json"
  3858. measurement: "WaterMeter"
  3859. field: "flow_total_rev"
  3860. valueType: "double"
  3861. minValue: null
  3862. maxValue: null
  3863. syncField: null
  3864. calcFormula: null
  3865. - tag: "压力"
  3866. protocol: "json"
  3867. measurement: "WaterMeter"
  3868. field: "press_cur"
  3869. valueType: "double"
  3870. minValue: null
  3871. maxValue: null
  3872. syncField: null
  3873. calcFormula: null
  3874. - deviceId: "710022511060089"
  3875. deviceName: "151#襄阳东路玫瑰社区一期南门东侧"
  3876. deviceSn: "SB00000053"
  3877. deviceKind: "flow"
  3878. platform: "zaoyang-iot"
  3879. mfrs: "上海锐铼"
  3880. createTime: "2025-11-06 17:45:44"
  3881. tags:
  3882. - tag: "瞬时流量"
  3883. protocol: "json"
  3884. measurement: "WaterMeter"
  3885. field: "flow_cur"
  3886. valueType: "double"
  3887. minValue: null
  3888. maxValue: null
  3889. syncField: null
  3890. calcFormula: null
  3891. - tag: "正向累计流量"
  3892. protocol: "json"
  3893. measurement: "WaterMeter"
  3894. field: "flow_total_pos"
  3895. valueType: "double"
  3896. minValue: null
  3897. maxValue: null
  3898. syncField: null
  3899. calcFormula: null
  3900. - tag: "反向累计流量"
  3901. protocol: "json"
  3902. measurement: "WaterMeter"
  3903. field: "flow_total_rev"
  3904. valueType: "double"
  3905. minValue: null
  3906. maxValue: null
  3907. syncField: null
  3908. calcFormula: null
  3909. - tag: "压力"
  3910. protocol: "json"
  3911. measurement: "WaterMeter"
  3912. field: "press_cur"
  3913. valueType: "double"
  3914. minValue: null
  3915. maxValue: null
  3916. syncField: null
  3917. calcFormula: null
  3918. - deviceId: "710022511060090"
  3919. deviceName: "282#中兴大道玉龙印刷厂路口对面"
  3920. deviceSn: "SB00000052"
  3921. deviceKind: "flow"
  3922. platform: "zaoyang-iot"
  3923. mfrs: "上海锐铼"
  3924. createTime: "2025-11-06 17:45:44"
  3925. tags:
  3926. - tag: "瞬时流量"
  3927. protocol: "json"
  3928. measurement: "WaterMeter"
  3929. field: "flow_cur"
  3930. valueType: "double"
  3931. minValue: null
  3932. maxValue: null
  3933. syncField: null
  3934. calcFormula: null
  3935. - tag: "正向累计流量"
  3936. protocol: "json"
  3937. measurement: "WaterMeter"
  3938. field: "flow_total_pos"
  3939. valueType: "double"
  3940. minValue: null
  3941. maxValue: null
  3942. syncField: null
  3943. calcFormula: null
  3944. - tag: "反向累计流量"
  3945. protocol: "json"
  3946. measurement: "WaterMeter"
  3947. field: "flow_total_rev"
  3948. valueType: "double"
  3949. minValue: null
  3950. maxValue: null
  3951. syncField: null
  3952. calcFormula: null
  3953. - tag: "压力"
  3954. protocol: "json"
  3955. measurement: "WaterMeter"
  3956. field: "press_cur"
  3957. valueType: "double"
  3958. minValue: null
  3959. maxValue: null
  3960. syncField: null
  3961. calcFormula: null
  3962. - deviceId: "710022511060091"
  3963. deviceName: "142#书院街第八中学对面东侧路口"
  3964. deviceSn: "SB00000047"
  3965. deviceKind: "flow"
  3966. platform: "zaoyang-iot"
  3967. mfrs: "上海锐铼"
  3968. createTime: "2025-11-06 17:45:44"
  3969. tags:
  3970. - tag: "瞬时流量"
  3971. protocol: "json"
  3972. measurement: "WaterMeter"
  3973. field: "flow_cur"
  3974. valueType: "double"
  3975. minValue: null
  3976. maxValue: null
  3977. syncField: null
  3978. calcFormula: null
  3979. - tag: "正向累计流量"
  3980. protocol: "json"
  3981. measurement: "WaterMeter"
  3982. field: "flow_total_pos"
  3983. valueType: "double"
  3984. minValue: null
  3985. maxValue: null
  3986. syncField: null
  3987. calcFormula: null
  3988. - tag: "反向累计流量"
  3989. protocol: "json"
  3990. measurement: "WaterMeter"
  3991. field: "flow_total_rev"
  3992. valueType: "double"
  3993. minValue: null
  3994. maxValue: null
  3995. syncField: null
  3996. calcFormula: null
  3997. - tag: "压力"
  3998. protocol: "json"
  3999. measurement: "WaterMeter"
  4000. field: "press_cur"
  4001. valueType: "double"
  4002. minValue: null
  4003. maxValue: null
  4004. syncField: null
  4005. calcFormula: null
  4006. - deviceId: "710022511060092"
  4007. deviceName: "264#西环一路石羊池路路口"
  4008. deviceSn: "SB00000046"
  4009. deviceKind: "flow"
  4010. platform: "zaoyang-iot"
  4011. mfrs: "上海锐铼"
  4012. createTime: "2025-11-06 17:45:44"
  4013. tags:
  4014. - tag: "瞬时流量"
  4015. protocol: "json"
  4016. measurement: "WaterMeter"
  4017. field: "flow_cur"
  4018. valueType: "double"
  4019. minValue: null
  4020. maxValue: null
  4021. syncField: null
  4022. calcFormula: null
  4023. - tag: "正向累计流量"
  4024. protocol: "json"
  4025. measurement: "WaterMeter"
  4026. field: "flow_total_pos"
  4027. valueType: "double"
  4028. minValue: null
  4029. maxValue: null
  4030. syncField: null
  4031. calcFormula: null
  4032. - tag: "反向累计流量"
  4033. protocol: "json"
  4034. measurement: "WaterMeter"
  4035. field: "flow_total_rev"
  4036. valueType: "double"
  4037. minValue: null
  4038. maxValue: null
  4039. syncField: null
  4040. calcFormula: null
  4041. - tag: "压力"
  4042. protocol: "json"
  4043. measurement: "WaterMeter"
  4044. field: "press_cur"
  4045. valueType: "double"
  4046. minValue: null
  4047. maxValue: null
  4048. syncField: null
  4049. calcFormula: null
  4050. - deviceId: "710022511060093"
  4051. deviceName: "107#襄阳路钱庄西路口"
  4052. deviceSn: "SB00000045"
  4053. deviceKind: "flow"
  4054. platform: "zaoyang-iot"
  4055. mfrs: "上海锐铼"
  4056. createTime: "2025-11-06 17:45:44"
  4057. tags:
  4058. - tag: "瞬时流量"
  4059. protocol: "json"
  4060. measurement: "WaterMeter"
  4061. field: "flow_cur"
  4062. valueType: "double"
  4063. minValue: null
  4064. maxValue: null
  4065. syncField: null
  4066. calcFormula: null
  4067. - tag: "正向累计流量"
  4068. protocol: "json"
  4069. measurement: "WaterMeter"
  4070. field: "flow_total_pos"
  4071. valueType: "double"
  4072. minValue: null
  4073. maxValue: null
  4074. syncField: null
  4075. calcFormula: null
  4076. - tag: "反向累计流量"
  4077. protocol: "json"
  4078. measurement: "WaterMeter"
  4079. field: "flow_total_rev"
  4080. valueType: "double"
  4081. minValue: null
  4082. maxValue: null
  4083. syncField: null
  4084. calcFormula: null
  4085. - tag: "压力"
  4086. protocol: "json"
  4087. measurement: "WaterMeter"
  4088. field: "press_cur"
  4089. valueType: "double"
  4090. minValue: null
  4091. maxValue: null
  4092. syncField: null
  4093. calcFormula: null
  4094. - deviceId: "710022511060094"
  4095. deviceName: "111#西环三路环岛南侧"
  4096. deviceSn: "SB00000049"
  4097. deviceKind: "flow"
  4098. platform: "zaoyang-iot"
  4099. mfrs: "上海锐铼"
  4100. createTime: "2025-11-06 17:45:44"
  4101. tags:
  4102. - tag: "瞬时流量"
  4103. protocol: "json"
  4104. measurement: "WaterMeter"
  4105. field: "flow_cur"
  4106. valueType: "double"
  4107. minValue: null
  4108. maxValue: null
  4109. syncField: null
  4110. calcFormula: null
  4111. - tag: "正向累计流量"
  4112. protocol: "json"
  4113. measurement: "WaterMeter"
  4114. field: "flow_total_pos"
  4115. valueType: "double"
  4116. minValue: null
  4117. maxValue: null
  4118. syncField: null
  4119. calcFormula: null
  4120. - tag: "反向累计流量"
  4121. protocol: "json"
  4122. measurement: "WaterMeter"
  4123. field: "flow_total_rev"
  4124. valueType: "double"
  4125. minValue: null
  4126. maxValue: null
  4127. syncField: null
  4128. calcFormula: null
  4129. - tag: "压力"
  4130. protocol: "json"
  4131. measurement: "WaterMeter"
  4132. field: "press_cur"
  4133. valueType: "double"
  4134. minValue: null
  4135. maxValue: null
  4136. syncField: null
  4137. calcFormula: null
  4138. - deviceId: "710022511060095"
  4139. deviceName: "18#民族路(贾不了烟酒门口)"
  4140. deviceSn: "SB00000040"
  4141. deviceKind: "flow"
  4142. platform: "zaoyang-iot"
  4143. mfrs: "上海锐铼"
  4144. createTime: "2025-11-06 17:45:44"
  4145. tags:
  4146. - tag: "瞬时流量"
  4147. protocol: "json"
  4148. measurement: "WaterMeter"
  4149. field: "flow_cur"
  4150. valueType: "double"
  4151. minValue: null
  4152. maxValue: null
  4153. syncField: null
  4154. calcFormula: null
  4155. - tag: "正向累计流量"
  4156. protocol: "json"
  4157. measurement: "WaterMeter"
  4158. field: "flow_total_pos"
  4159. valueType: "double"
  4160. minValue: null
  4161. maxValue: null
  4162. syncField: null
  4163. calcFormula: null
  4164. - tag: "反向累计流量"
  4165. protocol: "json"
  4166. measurement: "WaterMeter"
  4167. field: "flow_total_rev"
  4168. valueType: "double"
  4169. minValue: null
  4170. maxValue: null
  4171. syncField: null
  4172. calcFormula: null
  4173. - tag: "压力"
  4174. protocol: "json"
  4175. measurement: "WaterMeter"
  4176. field: "press_cur"
  4177. valueType: "double"
  4178. minValue: null
  4179. maxValue: null
  4180. syncField: null
  4181. calcFormula: null
  4182. - deviceId: "710022511060096"
  4183. deviceName: "49#南阳路家宴食府西侧"
  4184. deviceSn: "SB00000044"
  4185. deviceKind: "flow"
  4186. platform: "zaoyang-iot"
  4187. mfrs: "上海锐铼"
  4188. createTime: "2025-11-06 17:45:44"
  4189. tags:
  4190. - tag: "瞬时流量"
  4191. protocol: "json"
  4192. measurement: "WaterMeter"
  4193. field: "flow_cur"
  4194. valueType: "double"
  4195. minValue: null
  4196. maxValue: null
  4197. syncField: null
  4198. calcFormula: null
  4199. - tag: "正向累计流量"
  4200. protocol: "json"
  4201. measurement: "WaterMeter"
  4202. field: "flow_total_pos"
  4203. valueType: "double"
  4204. minValue: null
  4205. maxValue: null
  4206. syncField: null
  4207. calcFormula: null
  4208. - tag: "反向累计流量"
  4209. protocol: "json"
  4210. measurement: "WaterMeter"
  4211. field: "flow_total_rev"
  4212. valueType: "double"
  4213. minValue: null
  4214. maxValue: null
  4215. syncField: null
  4216. calcFormula: null
  4217. - tag: "压力"
  4218. protocol: "json"
  4219. measurement: "WaterMeter"
  4220. field: "press_cur"
  4221. valueType: "double"
  4222. minValue: null
  4223. maxValue: null
  4224. syncField: null
  4225. calcFormula: null
  4226. - deviceId: "710022511060097"
  4227. deviceName: "21#民族北路大生家常菜门口"
  4228. deviceSn: "SB00000043"
  4229. deviceKind: "flow"
  4230. platform: "zaoyang-iot"
  4231. mfrs: "上海锐铼"
  4232. createTime: "2025-11-06 17:45:44"
  4233. tags:
  4234. - tag: "瞬时流量"
  4235. protocol: "json"
  4236. measurement: "WaterMeter"
  4237. field: "flow_cur"
  4238. valueType: "double"
  4239. minValue: null
  4240. maxValue: null
  4241. syncField: null
  4242. calcFormula: null
  4243. - tag: "正向累计流量"
  4244. protocol: "json"
  4245. measurement: "WaterMeter"
  4246. field: "flow_total_pos"
  4247. valueType: "double"
  4248. minValue: null
  4249. maxValue: null
  4250. syncField: null
  4251. calcFormula: null
  4252. - tag: "反向累计流量"
  4253. protocol: "json"
  4254. measurement: "WaterMeter"
  4255. field: "flow_total_rev"
  4256. valueType: "double"
  4257. minValue: null
  4258. maxValue: null
  4259. syncField: null
  4260. calcFormula: null
  4261. - tag: "压力"
  4262. protocol: "json"
  4263. measurement: "WaterMeter"
  4264. field: "press_cur"
  4265. valueType: "double"
  4266. minValue: null
  4267. maxValue: null
  4268. syncField: null
  4269. calcFormula: null
  4270. - deviceId: "710022511060098"
  4271. deviceName: "47#新华路与书院西街交汇处西南角"
  4272. deviceSn: "SB00000042"
  4273. deviceKind: "flow"
  4274. platform: "zaoyang-iot"
  4275. mfrs: "上海锐铼"
  4276. createTime: "2025-11-06 17:45:44"
  4277. tags:
  4278. - tag: "瞬时流量"
  4279. protocol: "json"
  4280. measurement: "WaterMeter"
  4281. field: "flow_cur"
  4282. valueType: "double"
  4283. minValue: null
  4284. maxValue: null
  4285. syncField: null
  4286. calcFormula: null
  4287. - tag: "正向累计流量"
  4288. protocol: "json"
  4289. measurement: "WaterMeter"
  4290. field: "flow_total_pos"
  4291. valueType: "double"
  4292. minValue: null
  4293. maxValue: null
  4294. syncField: null
  4295. calcFormula: null
  4296. - tag: "反向累计流量"
  4297. protocol: "json"
  4298. measurement: "WaterMeter"
  4299. field: "flow_total_rev"
  4300. valueType: "double"
  4301. minValue: null
  4302. maxValue: null
  4303. syncField: null
  4304. calcFormula: null
  4305. - tag: "压力"
  4306. protocol: "json"
  4307. measurement: "WaterMeter"
  4308. field: "press_cur"
  4309. valueType: "double"
  4310. minValue: null
  4311. maxValue: null
  4312. syncField: null
  4313. calcFormula: null
  4314. - deviceId: "710022511060099"
  4315. deviceName: "22#民族路师范幼儿园路口"
  4316. deviceSn: "SB00000041"
  4317. deviceKind: "flow"
  4318. platform: "zaoyang-iot"
  4319. mfrs: "上海锐铼"
  4320. createTime: "2025-11-06 17:45:44"
  4321. tags:
  4322. - tag: "瞬时流量"
  4323. protocol: "json"
  4324. measurement: "WaterMeter"
  4325. field: "flow_cur"
  4326. valueType: "double"
  4327. minValue: null
  4328. maxValue: null
  4329. syncField: null
  4330. calcFormula: null
  4331. - tag: "正向累计流量"
  4332. protocol: "json"
  4333. measurement: "WaterMeter"
  4334. field: "flow_total_pos"
  4335. valueType: "double"
  4336. minValue: null
  4337. maxValue: null
  4338. syncField: null
  4339. calcFormula: null
  4340. - tag: "反向累计流量"
  4341. protocol: "json"
  4342. measurement: "WaterMeter"
  4343. field: "flow_total_rev"
  4344. valueType: "double"
  4345. minValue: null
  4346. maxValue: null
  4347. syncField: null
  4348. calcFormula: null
  4349. - tag: "压力"
  4350. protocol: "json"
  4351. measurement: "WaterMeter"
  4352. field: "press_cur"
  4353. valueType: "double"
  4354. minValue: null
  4355. maxValue: null
  4356. syncField: null
  4357. calcFormula: null
  4358. - deviceId: "710022511060100"
  4359. deviceName: "247#新华路与中兴大道交汇处中国石油对面"
  4360. deviceSn: "SB00000037"
  4361. deviceKind: "flow"
  4362. platform: "zaoyang-iot"
  4363. mfrs: "上海锐铼"
  4364. createTime: "2025-11-06 17:45:44"
  4365. tags:
  4366. - tag: "瞬时流量"
  4367. protocol: "json"
  4368. measurement: "WaterMeter"
  4369. field: "flow_cur"
  4370. valueType: "double"
  4371. minValue: null
  4372. maxValue: null
  4373. syncField: null
  4374. calcFormula: null
  4375. - tag: "正向累计流量"
  4376. protocol: "json"
  4377. measurement: "WaterMeter"
  4378. field: "flow_total_pos"
  4379. valueType: "double"
  4380. minValue: null
  4381. maxValue: null
  4382. syncField: null
  4383. calcFormula: null
  4384. - tag: "反向累计流量"
  4385. protocol: "json"
  4386. measurement: "WaterMeter"
  4387. field: "flow_total_rev"
  4388. valueType: "double"
  4389. minValue: null
  4390. maxValue: null
  4391. syncField: null
  4392. calcFormula: null
  4393. - tag: "压力"
  4394. protocol: "json"
  4395. measurement: "WaterMeter"
  4396. field: "press_cur"
  4397. valueType: "double"
  4398. minValue: null
  4399. maxValue: null
  4400. syncField: null
  4401. calcFormula: null
  4402. - deviceId: "710022511060101"
  4403. deviceName: "8#民族西路金阳大酒店对面"
  4404. deviceSn: "SB00000036"
  4405. deviceKind: "flow"
  4406. platform: "zaoyang-iot"
  4407. mfrs: "上海锐铼"
  4408. createTime: "2025-11-06 17:45:44"
  4409. tags:
  4410. - tag: "瞬时流量"
  4411. protocol: "json"
  4412. measurement: "WaterMeter"
  4413. field: "flow_cur"
  4414. valueType: "double"
  4415. minValue: null
  4416. maxValue: null
  4417. syncField: null
  4418. calcFormula: null
  4419. - tag: "正向累计流量"
  4420. protocol: "json"
  4421. measurement: "WaterMeter"
  4422. field: "flow_total_pos"
  4423. valueType: "double"
  4424. minValue: null
  4425. maxValue: null
  4426. syncField: null
  4427. calcFormula: null
  4428. - tag: "反向累计流量"
  4429. protocol: "json"
  4430. measurement: "WaterMeter"
  4431. field: "flow_total_rev"
  4432. valueType: "double"
  4433. minValue: null
  4434. maxValue: null
  4435. syncField: null
  4436. calcFormula: null
  4437. - tag: "压力"
  4438. protocol: "json"
  4439. measurement: "WaterMeter"
  4440. field: "press_cur"
  4441. valueType: "double"
  4442. minValue: null
  4443. maxValue: null
  4444. syncField: null
  4445. calcFormula: null
  4446. - deviceId: "710022511060102"
  4447. deviceName: "109#襄阳路兴中棉纺门口"
  4448. deviceSn: "SB00000035"
  4449. deviceKind: "flow"
  4450. platform: "zaoyang-iot"
  4451. mfrs: "上海锐铼"
  4452. createTime: "2025-11-06 17:45:44"
  4453. tags:
  4454. - tag: "瞬时流量"
  4455. protocol: "json"
  4456. measurement: "WaterMeter"
  4457. field: "flow_cur"
  4458. valueType: "double"
  4459. minValue: null
  4460. maxValue: null
  4461. syncField: null
  4462. calcFormula: null
  4463. - tag: "正向累计流量"
  4464. protocol: "json"
  4465. measurement: "WaterMeter"
  4466. field: "flow_total_pos"
  4467. valueType: "double"
  4468. minValue: null
  4469. maxValue: null
  4470. syncField: null
  4471. calcFormula: null
  4472. - tag: "反向累计流量"
  4473. protocol: "json"
  4474. measurement: "WaterMeter"
  4475. field: "flow_total_rev"
  4476. valueType: "double"
  4477. minValue: null
  4478. maxValue: null
  4479. syncField: null
  4480. calcFormula: null
  4481. - tag: "压力"
  4482. protocol: "json"
  4483. measurement: "WaterMeter"
  4484. field: "press_cur"
  4485. valueType: "double"
  4486. minValue: null
  4487. maxValue: null
  4488. syncField: null
  4489. calcFormula: null
  4490. - deviceId: "710022511060103"
  4491. deviceName: "57#前进路与西环四路交汇处路南"
  4492. deviceSn: "SB00000034"
  4493. deviceKind: "flow"
  4494. platform: "zaoyang-iot"
  4495. mfrs: "上海锐铼"
  4496. createTime: "2025-11-06 17:45:44"
  4497. tags:
  4498. - tag: "瞬时流量"
  4499. protocol: "json"
  4500. measurement: "WaterMeter"
  4501. field: "flow_cur"
  4502. valueType: "double"
  4503. minValue: null
  4504. maxValue: null
  4505. syncField: null
  4506. calcFormula: null
  4507. - tag: "正向累计流量"
  4508. protocol: "json"
  4509. measurement: "WaterMeter"
  4510. field: "flow_total_pos"
  4511. valueType: "double"
  4512. minValue: null
  4513. maxValue: null
  4514. syncField: null
  4515. calcFormula: null
  4516. - tag: "反向累计流量"
  4517. protocol: "json"
  4518. measurement: "WaterMeter"
  4519. field: "flow_total_rev"
  4520. valueType: "double"
  4521. minValue: null
  4522. maxValue: null
  4523. syncField: null
  4524. calcFormula: null
  4525. - tag: "压力"
  4526. protocol: "json"
  4527. measurement: "WaterMeter"
  4528. field: "press_cur"
  4529. valueType: "double"
  4530. minValue: null
  4531. maxValue: null
  4532. syncField: null
  4533. calcFormula: null
  4534. - deviceId: "710022511060104"
  4535. deviceName: "2#神驰路与316老国道交汇处东侧路口向北150米 茶棚安置小区门口"
  4536. deviceSn: "SB00000039"
  4537. deviceKind: "flow"
  4538. platform: "zaoyang-iot"
  4539. mfrs: "上海锐铼"
  4540. createTime: "2025-11-06 17:45:44"
  4541. tags:
  4542. - tag: "瞬时流量"
  4543. protocol: "json"
  4544. measurement: "WaterMeter"
  4545. field: "flow_cur"
  4546. valueType: "double"
  4547. minValue: null
  4548. maxValue: null
  4549. syncField: null
  4550. calcFormula: null
  4551. - tag: "正向累计流量"
  4552. protocol: "json"
  4553. measurement: "WaterMeter"
  4554. field: "flow_total_pos"
  4555. valueType: "double"
  4556. minValue: null
  4557. maxValue: null
  4558. syncField: null
  4559. calcFormula: null
  4560. - tag: "反向累计流量"
  4561. protocol: "json"
  4562. measurement: "WaterMeter"
  4563. field: "flow_total_rev"
  4564. valueType: "double"
  4565. minValue: null
  4566. maxValue: null
  4567. syncField: null
  4568. calcFormula: null
  4569. - tag: "压力"
  4570. protocol: "json"
  4571. measurement: "WaterMeter"
  4572. field: "press_cur"
  4573. valueType: "double"
  4574. minValue: null
  4575. maxValue: null
  4576. syncField: null
  4577. calcFormula: null
  4578. - deviceId: "710022511060105"
  4579. deviceName: "40#新华路建材大市厂西路口"
  4580. deviceSn: "SB00000038"
  4581. deviceKind: "flow"
  4582. platform: "zaoyang-iot"
  4583. mfrs: "上海锐铼"
  4584. createTime: "2025-11-06 17:45:44"
  4585. tags:
  4586. - tag: "瞬时流量"
  4587. protocol: "json"
  4588. measurement: "WaterMeter"
  4589. field: "flow_cur"
  4590. valueType: "double"
  4591. minValue: null
  4592. maxValue: null
  4593. syncField: null
  4594. calcFormula: null
  4595. - tag: "正向累计流量"
  4596. protocol: "json"
  4597. measurement: "WaterMeter"
  4598. field: "flow_total_pos"
  4599. valueType: "double"
  4600. minValue: null
  4601. maxValue: null
  4602. syncField: null
  4603. calcFormula: null
  4604. - tag: "反向累计流量"
  4605. protocol: "json"
  4606. measurement: "WaterMeter"
  4607. field: "flow_total_rev"
  4608. valueType: "double"
  4609. minValue: null
  4610. maxValue: null
  4611. syncField: null
  4612. calcFormula: null
  4613. - tag: "压力"
  4614. protocol: "json"
  4615. measurement: "WaterMeter"
  4616. field: "press_cur"
  4617. valueType: "double"
  4618. minValue: null
  4619. maxValue: null
  4620. syncField: null
  4621. calcFormula: null
  4622. - deviceId: "710022511060106"
  4623. deviceName: "39#新华路与兴阳路交汇处"
  4624. deviceSn: "SB00000033"
  4625. deviceKind: "flow"
  4626. platform: "zaoyang-iot"
  4627. mfrs: "上海锐铼"
  4628. createTime: "2025-11-06 17:45:44"
  4629. tags:
  4630. - tag: "瞬时流量"
  4631. protocol: "json"
  4632. measurement: "WaterMeter"
  4633. field: "flow_cur"
  4634. valueType: "double"
  4635. minValue: null
  4636. maxValue: null
  4637. syncField: null
  4638. calcFormula: null
  4639. - tag: "正向累计流量"
  4640. protocol: "json"
  4641. measurement: "WaterMeter"
  4642. field: "flow_total_pos"
  4643. valueType: "double"
  4644. minValue: null
  4645. maxValue: null
  4646. syncField: null
  4647. calcFormula: null
  4648. - tag: "反向累计流量"
  4649. protocol: "json"
  4650. measurement: "WaterMeter"
  4651. field: "flow_total_rev"
  4652. valueType: "double"
  4653. minValue: null
  4654. maxValue: null
  4655. syncField: null
  4656. calcFormula: null
  4657. - tag: "压力"
  4658. protocol: "json"
  4659. measurement: "WaterMeter"
  4660. field: "press_cur"
  4661. valueType: "double"
  4662. minValue: null
  4663. maxValue: null
  4664. syncField: null
  4665. calcFormula: null
  4666. - deviceId: "710022511060107"
  4667. deviceName: "9#民族西路骨科医院对面"
  4668. deviceSn: "SB00000032"
  4669. deviceKind: "flow"
  4670. platform: "zaoyang-iot"
  4671. mfrs: "上海锐铼"
  4672. createTime: "2025-11-06 17:45:44"
  4673. tags:
  4674. - tag: "瞬时流量"
  4675. protocol: "json"
  4676. measurement: "WaterMeter"
  4677. field: "flow_cur"
  4678. valueType: "double"
  4679. minValue: null
  4680. maxValue: null
  4681. syncField: null
  4682. calcFormula: null
  4683. - tag: "正向累计流量"
  4684. protocol: "json"
  4685. measurement: "WaterMeter"
  4686. field: "flow_total_pos"
  4687. valueType: "double"
  4688. minValue: null
  4689. maxValue: null
  4690. syncField: null
  4691. calcFormula: null
  4692. - tag: "反向累计流量"
  4693. protocol: "json"
  4694. measurement: "WaterMeter"
  4695. field: "flow_total_rev"
  4696. valueType: "double"
  4697. minValue: null
  4698. maxValue: null
  4699. syncField: null
  4700. calcFormula: null
  4701. - tag: "压力"
  4702. protocol: "json"
  4703. measurement: "WaterMeter"
  4704. field: "press_cur"
  4705. valueType: "double"
  4706. minValue: null
  4707. maxValue: null
  4708. syncField: null
  4709. calcFormula: null
  4710. - deviceId: "710022511060108"
  4711. deviceName: "Z1民族北路便民市场路口"
  4712. deviceSn: "SB00000031"
  4713. deviceKind: "flow"
  4714. platform: "zaoyang-iot"
  4715. mfrs: "上海锐铼"
  4716. createTime: "2025-11-06 17:45:44"
  4717. tags:
  4718. - tag: "瞬时流量"
  4719. protocol: "json"
  4720. measurement: "WaterMeter"
  4721. field: "flow_cur"
  4722. valueType: "double"
  4723. minValue: null
  4724. maxValue: null
  4725. syncField: null
  4726. calcFormula: null
  4727. - tag: "正向累计流量"
  4728. protocol: "json"
  4729. measurement: "WaterMeter"
  4730. field: "flow_total_pos"
  4731. valueType: "double"
  4732. minValue: null
  4733. maxValue: null
  4734. syncField: null
  4735. calcFormula: null
  4736. - tag: "反向累计流量"
  4737. protocol: "json"
  4738. measurement: "WaterMeter"
  4739. field: "flow_total_rev"
  4740. valueType: "double"
  4741. minValue: null
  4742. maxValue: null
  4743. syncField: null
  4744. calcFormula: null
  4745. - tag: "压力"
  4746. protocol: "json"
  4747. measurement: "WaterMeter"
  4748. field: "press_cur"
  4749. valueType: "double"
  4750. minValue: null
  4751. maxValue: null
  4752. syncField: null
  4753. calcFormula: null
  4754. - deviceId: "710022511060109"
  4755. deviceName: "58#前进路开发区医院西侧"
  4756. deviceSn: "SB00000030"
  4757. deviceKind: "flow"
  4758. platform: "zaoyang-iot"
  4759. mfrs: "上海锐铼"
  4760. createTime: "2025-11-06 17:45:45"
  4761. tags:
  4762. - tag: "瞬时流量"
  4763. protocol: "json"
  4764. measurement: "WaterMeter"
  4765. field: "flow_cur"
  4766. valueType: "double"
  4767. minValue: null
  4768. maxValue: null
  4769. syncField: null
  4770. calcFormula: null
  4771. - tag: "正向累计流量"
  4772. protocol: "json"
  4773. measurement: "WaterMeter"
  4774. field: "flow_total_pos"
  4775. valueType: "double"
  4776. minValue: null
  4777. maxValue: null
  4778. syncField: null
  4779. calcFormula: null
  4780. - tag: "反向累计流量"
  4781. protocol: "json"
  4782. measurement: "WaterMeter"
  4783. field: "flow_total_rev"
  4784. valueType: "double"
  4785. minValue: null
  4786. maxValue: null
  4787. syncField: null
  4788. calcFormula: null
  4789. - tag: "压力"
  4790. protocol: "json"
  4791. measurement: "WaterMeter"
  4792. field: "press_cur"
  4793. valueType: "double"
  4794. minValue: null
  4795. maxValue: null
  4796. syncField: null
  4797. calcFormula: null
  4798. - deviceId: "710022511060110"
  4799. deviceName: "106#襄阳路金兰巷南路口"
  4800. deviceSn: "SB00000026"
  4801. deviceKind: "flow"
  4802. platform: "zaoyang-iot"
  4803. mfrs: "上海锐铼"
  4804. createTime: "2025-11-06 17:45:45"
  4805. tags:
  4806. - tag: "瞬时流量"
  4807. protocol: "json"
  4808. measurement: "WaterMeter"
  4809. field: "flow_cur"
  4810. valueType: "double"
  4811. minValue: null
  4812. maxValue: null
  4813. syncField: null
  4814. calcFormula: null
  4815. - tag: "正向累计流量"
  4816. protocol: "json"
  4817. measurement: "WaterMeter"
  4818. field: "flow_total_pos"
  4819. valueType: "double"
  4820. minValue: null
  4821. maxValue: null
  4822. syncField: null
  4823. calcFormula: null
  4824. - tag: "反向累计流量"
  4825. protocol: "json"
  4826. measurement: "WaterMeter"
  4827. field: "flow_total_rev"
  4828. valueType: "double"
  4829. minValue: null
  4830. maxValue: null
  4831. syncField: null
  4832. calcFormula: null
  4833. - tag: "压力"
  4834. protocol: "json"
  4835. measurement: "WaterMeter"
  4836. field: "press_cur"
  4837. valueType: "double"
  4838. minValue: null
  4839. maxValue: null
  4840. syncField: null
  4841. calcFormula: null
  4842. - deviceId: "710022511060111"
  4843. deviceName: "23#民族路申联购物广场门口"
  4844. deviceSn: "SB00000025"
  4845. deviceKind: "flow"
  4846. platform: "zaoyang-iot"
  4847. mfrs: "上海锐铼"
  4848. createTime: "2025-11-06 17:45:45"
  4849. tags:
  4850. - tag: "瞬时流量"
  4851. protocol: "json"
  4852. measurement: "WaterMeter"
  4853. field: "flow_cur"
  4854. valueType: "double"
  4855. minValue: null
  4856. maxValue: null
  4857. syncField: null
  4858. calcFormula: null
  4859. - tag: "正向累计流量"
  4860. protocol: "json"
  4861. measurement: "WaterMeter"
  4862. field: "flow_total_pos"
  4863. valueType: "double"
  4864. minValue: null
  4865. maxValue: null
  4866. syncField: null
  4867. calcFormula: null
  4868. - tag: "反向累计流量"
  4869. protocol: "json"
  4870. measurement: "WaterMeter"
  4871. field: "flow_total_rev"
  4872. valueType: "double"
  4873. minValue: null
  4874. maxValue: null
  4875. syncField: null
  4876. calcFormula: null
  4877. - tag: "压力"
  4878. protocol: "json"
  4879. measurement: "WaterMeter"
  4880. field: "press_cur"
  4881. valueType: "double"
  4882. minValue: null
  4883. maxValue: null
  4884. syncField: null
  4885. calcFormula: null
  4886. - deviceId: "710022511060112"
  4887. deviceName: "Z2民族路师范高中公交站"
  4888. deviceSn: "SB00000024"
  4889. deviceKind: "flow"
  4890. platform: "zaoyang-iot"
  4891. mfrs: "上海锐铼"
  4892. createTime: "2025-11-06 17:45:45"
  4893. tags:
  4894. - tag: "瞬时流量"
  4895. protocol: "json"
  4896. measurement: "WaterMeter"
  4897. field: "flow_cur"
  4898. valueType: "double"
  4899. minValue: null
  4900. maxValue: null
  4901. syncField: null
  4902. calcFormula: null
  4903. - tag: "正向累计流量"
  4904. protocol: "json"
  4905. measurement: "WaterMeter"
  4906. field: "flow_total_pos"
  4907. valueType: "double"
  4908. minValue: null
  4909. maxValue: null
  4910. syncField: null
  4911. calcFormula: null
  4912. - tag: "反向累计流量"
  4913. protocol: "json"
  4914. measurement: "WaterMeter"
  4915. field: "flow_total_rev"
  4916. valueType: "double"
  4917. minValue: null
  4918. maxValue: null
  4919. syncField: null
  4920. calcFormula: null
  4921. - tag: "压力"
  4922. protocol: "json"
  4923. measurement: "WaterMeter"
  4924. field: "press_cur"
  4925. valueType: "double"
  4926. minValue: null
  4927. maxValue: null
  4928. syncField: null
  4929. calcFormula: null
  4930. - deviceId: "710022511060113"
  4931. deviceName: "53#南阳路广源小区路口"
  4932. deviceSn: "SB00000023"
  4933. deviceKind: "flow"
  4934. platform: "zaoyang-iot"
  4935. mfrs: "上海锐铼"
  4936. createTime: "2025-11-06 17:45:45"
  4937. tags:
  4938. - tag: "瞬时流量"
  4939. protocol: "json"
  4940. measurement: "WaterMeter"
  4941. field: "flow_cur"
  4942. valueType: "double"
  4943. minValue: null
  4944. maxValue: null
  4945. syncField: null
  4946. calcFormula: null
  4947. - tag: "正向累计流量"
  4948. protocol: "json"
  4949. measurement: "WaterMeter"
  4950. field: "flow_total_pos"
  4951. valueType: "double"
  4952. minValue: null
  4953. maxValue: null
  4954. syncField: null
  4955. calcFormula: null
  4956. - tag: "反向累计流量"
  4957. protocol: "json"
  4958. measurement: "WaterMeter"
  4959. field: "flow_total_rev"
  4960. valueType: "double"
  4961. minValue: null
  4962. maxValue: null
  4963. syncField: null
  4964. calcFormula: null
  4965. - tag: "压力"
  4966. protocol: "json"
  4967. measurement: "WaterMeter"
  4968. field: "press_cur"
  4969. valueType: "double"
  4970. minValue: null
  4971. maxValue: null
  4972. syncField: null
  4973. calcFormula: null
  4974. - deviceId: "710022511060114"
  4975. deviceName: "48#新华路三中操场对面健康巷路口"
  4976. deviceSn: "SB00000029"
  4977. deviceKind: "flow"
  4978. platform: "zaoyang-iot"
  4979. mfrs: "上海锐铼"
  4980. createTime: "2025-11-06 17:45:45"
  4981. tags:
  4982. - tag: "瞬时流量"
  4983. protocol: "json"
  4984. measurement: "WaterMeter"
  4985. field: "flow_cur"
  4986. valueType: "double"
  4987. minValue: null
  4988. maxValue: null
  4989. syncField: null
  4990. calcFormula: null
  4991. - tag: "正向累计流量"
  4992. protocol: "json"
  4993. measurement: "WaterMeter"
  4994. field: "flow_total_pos"
  4995. valueType: "double"
  4996. minValue: null
  4997. maxValue: null
  4998. syncField: null
  4999. calcFormula: null
  5000. - tag: "反向累计流量"
  5001. protocol: "json"
  5002. measurement: "WaterMeter"
  5003. field: "flow_total_rev"
  5004. valueType: "double"
  5005. minValue: null
  5006. maxValue: null
  5007. syncField: null
  5008. calcFormula: null
  5009. - tag: "压力"
  5010. protocol: "json"
  5011. measurement: "WaterMeter"
  5012. field: "press_cur"
  5013. valueType: "double"
  5014. minValue: null
  5015. maxValue: null
  5016. syncField: null
  5017. calcFormula: null
  5018. - deviceId: "710022511060115"
  5019. deviceName: "253#发展大道张湾一组路口"
  5020. deviceSn: "SB00000027"
  5021. deviceKind: "flow"
  5022. platform: "zaoyang-iot"
  5023. mfrs: "上海锐铼"
  5024. createTime: "2025-11-06 17:45:45"
  5025. tags:
  5026. - tag: "瞬时流量"
  5027. protocol: "json"
  5028. measurement: "WaterMeter"
  5029. field: "flow_cur"
  5030. valueType: "double"
  5031. minValue: null
  5032. maxValue: null
  5033. syncField: null
  5034. calcFormula: null
  5035. - tag: "正向累计流量"
  5036. protocol: "json"
  5037. measurement: "WaterMeter"
  5038. field: "flow_total_pos"
  5039. valueType: "double"
  5040. minValue: null
  5041. maxValue: null
  5042. syncField: null
  5043. calcFormula: null
  5044. - tag: "反向累计流量"
  5045. protocol: "json"
  5046. measurement: "WaterMeter"
  5047. field: "flow_total_rev"
  5048. valueType: "double"
  5049. minValue: null
  5050. maxValue: null
  5051. syncField: null
  5052. calcFormula: null
  5053. - tag: "压力"
  5054. protocol: "json"
  5055. measurement: "WaterMeter"
  5056. field: "press_cur"
  5057. valueType: "double"
  5058. minValue: null
  5059. maxValue: null
  5060. syncField: null
  5061. calcFormula: null
  5062. - deviceId: "710022511060116"
  5063. deviceName: "14#北关街北入口(民族路与北关街交汇处)"
  5064. deviceSn: "SB00000022"
  5065. deviceKind: "flow"
  5066. platform: "zaoyang-iot"
  5067. mfrs: "上海锐铼"
  5068. createTime: "2025-11-06 17:45:45"
  5069. tags:
  5070. - tag: "瞬时流量"
  5071. protocol: "json"
  5072. measurement: "WaterMeter"
  5073. field: "flow_cur"
  5074. valueType: "double"
  5075. minValue: null
  5076. maxValue: null
  5077. syncField: null
  5078. calcFormula: null
  5079. - tag: "正向累计流量"
  5080. protocol: "json"
  5081. measurement: "WaterMeter"
  5082. field: "flow_total_pos"
  5083. valueType: "double"
  5084. minValue: null
  5085. maxValue: null
  5086. syncField: null
  5087. calcFormula: null
  5088. - tag: "反向累计流量"
  5089. protocol: "json"
  5090. measurement: "WaterMeter"
  5091. field: "flow_total_rev"
  5092. valueType: "double"
  5093. minValue: null
  5094. maxValue: null
  5095. syncField: null
  5096. calcFormula: null
  5097. - tag: "压力"
  5098. protocol: "json"
  5099. measurement: "WaterMeter"
  5100. field: "press_cur"
  5101. valueType: "double"
  5102. minValue: null
  5103. maxValue: null
  5104. syncField: null
  5105. calcFormula: null
  5106. - deviceId: "710022511060117"
  5107. deviceName: "299#史岗四组西庄路口"
  5108. deviceSn: "SB00000021"
  5109. deviceKind: "flow"
  5110. platform: "zaoyang-iot"
  5111. mfrs: "上海锐铼"
  5112. createTime: "2025-11-06 17:45:45"
  5113. tags:
  5114. - tag: "瞬时流量"
  5115. protocol: "json"
  5116. measurement: "WaterMeter"
  5117. field: "flow_cur"
  5118. valueType: "double"
  5119. minValue: null
  5120. maxValue: null
  5121. syncField: null
  5122. calcFormula: null
  5123. - tag: "正向累计流量"
  5124. protocol: "json"
  5125. measurement: "WaterMeter"
  5126. field: "flow_total_pos"
  5127. valueType: "double"
  5128. minValue: null
  5129. maxValue: null
  5130. syncField: null
  5131. calcFormula: null
  5132. - tag: "反向累计流量"
  5133. protocol: "json"
  5134. measurement: "WaterMeter"
  5135. field: "flow_total_rev"
  5136. valueType: "double"
  5137. minValue: null
  5138. maxValue: null
  5139. syncField: null
  5140. calcFormula: null
  5141. - tag: "压力"
  5142. protocol: "json"
  5143. measurement: "WaterMeter"
  5144. field: "press_cur"
  5145. valueType: "double"
  5146. minValue: null
  5147. maxValue: null
  5148. syncField: null
  5149. calcFormula: null
  5150. - deviceId: "710022511060118"
  5151. deviceName: "148#襄阳东路侯集一组路口西"
  5152. deviceSn: "SB00000020"
  5153. deviceKind: "flow"
  5154. platform: "zaoyang-iot"
  5155. mfrs: "上海锐铼"
  5156. createTime: "2025-11-06 17:45:45"
  5157. tags:
  5158. - tag: "瞬时流量"
  5159. protocol: "json"
  5160. measurement: "WaterMeter"
  5161. field: "flow_cur"
  5162. valueType: "double"
  5163. minValue: null
  5164. maxValue: null
  5165. syncField: null
  5166. calcFormula: null
  5167. - tag: "正向累计流量"
  5168. protocol: "json"
  5169. measurement: "WaterMeter"
  5170. field: "flow_total_pos"
  5171. valueType: "double"
  5172. minValue: null
  5173. maxValue: null
  5174. syncField: null
  5175. calcFormula: null
  5176. - tag: "反向累计流量"
  5177. protocol: "json"
  5178. measurement: "WaterMeter"
  5179. field: "flow_total_rev"
  5180. valueType: "double"
  5181. minValue: null
  5182. maxValue: null
  5183. syncField: null
  5184. calcFormula: null
  5185. - tag: "压力"
  5186. protocol: "json"
  5187. measurement: "WaterMeter"
  5188. field: "press_cur"
  5189. valueType: "double"
  5190. minValue: null
  5191. maxValue: null
  5192. syncField: null
  5193. calcFormula: null
  5194. - deviceId: "710012511140001"
  5195. deviceName: "1803200293"
  5196. deviceSn: "SB00000157"
  5197. deviceKind: "flow_press"
  5198. platform: "zaoyang-iot"
  5199. mfrs: "上海锐铼"
  5200. createTime: "2025-11-14 10:03:44"
  5201. tags:
  5202. - tag: "瞬时流量"
  5203. protocol: "json"
  5204. measurement: "WaterMeter"
  5205. field: "flow_cur"
  5206. valueType: "double"
  5207. minValue: null
  5208. maxValue: null
  5209. syncField: null
  5210. calcFormula: null
  5211. - tag: "正向累计流量"
  5212. protocol: "json"
  5213. measurement: "WaterMeter"
  5214. field: "flow_total_pos"
  5215. valueType: "double"
  5216. minValue: null
  5217. maxValue: null
  5218. syncField: null
  5219. calcFormula: null
  5220. - tag: "反向累计流量"
  5221. protocol: "json"
  5222. measurement: "WaterMeter"
  5223. field: "flow_total_rev"
  5224. valueType: "double"
  5225. minValue: null
  5226. maxValue: null
  5227. syncField: null
  5228. calcFormula: null
  5229. - tag: "压力"
  5230. protocol: "json"
  5231. measurement: "WaterMeter"
  5232. field: "press_cur"
  5233. valueType: "double"
  5234. minValue: null
  5235. maxValue: null
  5236. syncField: null
  5237. calcFormula: null
  5238. - deviceId: "710012511140002"
  5239. deviceName: "1803200292"
  5240. deviceSn: "SB00000156"
  5241. deviceKind: "flow_press"
  5242. platform: "zaoyang-iot"
  5243. mfrs: "上海锐铼"
  5244. createTime: "2025-11-14 10:03:44"
  5245. tags:
  5246. - tag: "瞬时流量"
  5247. protocol: "json"
  5248. measurement: "WaterMeter"
  5249. field: "flow_cur"
  5250. valueType: "double"
  5251. minValue: null
  5252. maxValue: null
  5253. syncField: null
  5254. calcFormula: null
  5255. - tag: "正向累计流量"
  5256. protocol: "json"
  5257. measurement: "WaterMeter"
  5258. field: "flow_total_pos"
  5259. valueType: "double"
  5260. minValue: null
  5261. maxValue: null
  5262. syncField: null
  5263. calcFormula: null
  5264. - tag: "反向累计流量"
  5265. protocol: "json"
  5266. measurement: "WaterMeter"
  5267. field: "flow_total_rev"
  5268. valueType: "double"
  5269. minValue: null
  5270. maxValue: null
  5271. syncField: null
  5272. calcFormula: null
  5273. - tag: "压力"
  5274. protocol: "json"
  5275. measurement: "WaterMeter"
  5276. field: "press_cur"
  5277. valueType: "double"
  5278. minValue: null
  5279. maxValue: null
  5280. syncField: null
  5281. calcFormula: null
  5282. - deviceId: "710012511140003"
  5283. deviceName: "Z6西环二路小瑞刀削面门口"
  5284. deviceSn: "SB00000199"
  5285. deviceKind: "flow_press"
  5286. platform: "zaoyang-iot"
  5287. mfrs: "上海锐铼"
  5288. createTime: "2025-11-14 10:03:44"
  5289. tags:
  5290. - tag: "瞬时流量"
  5291. protocol: "json"
  5292. measurement: "WaterMeter"
  5293. field: "flow_cur"
  5294. valueType: "double"
  5295. minValue: null
  5296. maxValue: null
  5297. syncField: null
  5298. calcFormula: null
  5299. - tag: "正向累计流量"
  5300. protocol: "json"
  5301. measurement: "WaterMeter"
  5302. field: "flow_total_pos"
  5303. valueType: "double"
  5304. minValue: null
  5305. maxValue: null
  5306. syncField: null
  5307. calcFormula: null
  5308. - tag: "反向累计流量"
  5309. protocol: "json"
  5310. measurement: "WaterMeter"
  5311. field: "flow_total_rev"
  5312. valueType: "double"
  5313. minValue: null
  5314. maxValue: null
  5315. syncField: null
  5316. calcFormula: null
  5317. - tag: "压力"
  5318. protocol: "json"
  5319. measurement: "WaterMeter"
  5320. field: "press_cur"
  5321. valueType: "double"
  5322. minValue: null
  5323. maxValue: null
  5324. syncField: null
  5325. calcFormula: null
  5326. - deviceId: "710012511140004"
  5327. deviceName: "1807207007"
  5328. deviceSn: "SB00000139"
  5329. deviceKind: "flow_press"
  5330. platform: "zaoyang-iot"
  5331. mfrs: "上海锐铼"
  5332. createTime: "2025-11-14 10:03:44"
  5333. tags:
  5334. - tag: "瞬时流量"
  5335. protocol: "json"
  5336. measurement: "WaterMeter"
  5337. field: "flow_cur"
  5338. valueType: "double"
  5339. minValue: null
  5340. maxValue: null
  5341. syncField: null
  5342. calcFormula: null
  5343. - tag: "正向累计流量"
  5344. protocol: "json"
  5345. measurement: "WaterMeter"
  5346. field: "flow_total_pos"
  5347. valueType: "double"
  5348. minValue: null
  5349. maxValue: null
  5350. syncField: null
  5351. calcFormula: null
  5352. - tag: "反向累计流量"
  5353. protocol: "json"
  5354. measurement: "WaterMeter"
  5355. field: "flow_total_rev"
  5356. valueType: "double"
  5357. minValue: null
  5358. maxValue: null
  5359. syncField: null
  5360. calcFormula: null
  5361. - tag: "压力"
  5362. protocol: "json"
  5363. measurement: "WaterMeter"
  5364. field: "press_cur"
  5365. valueType: "double"
  5366. minValue: null
  5367. maxValue: null
  5368. syncField: null
  5369. calcFormula: null
  5370. - deviceId: "710012511140005"
  5371. deviceName: "141#书院街富民路路口"
  5372. deviceSn: "SB00000193"
  5373. deviceKind: "flow_press"
  5374. platform: "zaoyang-iot"
  5375. mfrs: "上海锐铼"
  5376. createTime: "2025-11-14 10:03:44"
  5377. tags:
  5378. - tag: "瞬时流量"
  5379. protocol: "json"
  5380. measurement: "WaterMeter"
  5381. field: "flow_cur"
  5382. valueType: "double"
  5383. minValue: null
  5384. maxValue: null
  5385. syncField: null
  5386. calcFormula: null
  5387. - tag: "正向累计流量"
  5388. protocol: "json"
  5389. measurement: "WaterMeter"
  5390. field: "flow_total_pos"
  5391. valueType: "double"
  5392. minValue: null
  5393. maxValue: null
  5394. syncField: null
  5395. calcFormula: null
  5396. - tag: "反向累计流量"
  5397. protocol: "json"
  5398. measurement: "WaterMeter"
  5399. field: "flow_total_rev"
  5400. valueType: "double"
  5401. minValue: null
  5402. maxValue: null
  5403. syncField: null
  5404. calcFormula: null
  5405. - tag: "压力"
  5406. protocol: "json"
  5407. measurement: "WaterMeter"
  5408. field: "press_cur"
  5409. valueType: "double"
  5410. minValue: null
  5411. maxValue: null
  5412. syncField: null
  5413. calcFormula: null
  5414. - deviceId: "710012511140006"
  5415. deviceName: "98#襄阳路与新华路交汇处岗亭南侧"
  5416. deviceSn: "SB00000192"
  5417. deviceKind: "flow_press"
  5418. platform: "zaoyang-iot"
  5419. mfrs: "上海锐铼"
  5420. createTime: "2025-11-14 10:03:44"
  5421. tags:
  5422. - tag: "瞬时流量"
  5423. protocol: "json"
  5424. measurement: "WaterMeter"
  5425. field: "flow_cur"
  5426. valueType: "double"
  5427. minValue: null
  5428. maxValue: null
  5429. syncField: null
  5430. calcFormula: null
  5431. - tag: "正向累计流量"
  5432. protocol: "json"
  5433. measurement: "WaterMeter"
  5434. field: "flow_total_pos"
  5435. valueType: "double"
  5436. minValue: null
  5437. maxValue: null
  5438. syncField: null
  5439. calcFormula: null
  5440. - tag: "反向累计流量"
  5441. protocol: "json"
  5442. measurement: "WaterMeter"
  5443. field: "flow_total_rev"
  5444. valueType: "double"
  5445. minValue: null
  5446. maxValue: null
  5447. syncField: null
  5448. calcFormula: null
  5449. - tag: "压力"
  5450. protocol: "json"
  5451. measurement: "WaterMeter"
  5452. field: "press_cur"
  5453. valueType: "double"
  5454. minValue: null
  5455. maxValue: null
  5456. syncField: null
  5457. calcFormula: null
  5458. - deviceId: "710012511140007"
  5459. deviceName: "97#襄阳路财富广场门口"
  5460. deviceSn: "SB00000191"
  5461. deviceKind: "flow_press"
  5462. platform: "zaoyang-iot"
  5463. mfrs: "上海锐铼"
  5464. createTime: "2025-11-14 10:03:44"
  5465. tags:
  5466. - tag: "瞬时流量"
  5467. protocol: "json"
  5468. measurement: "WaterMeter"
  5469. field: "flow_cur"
  5470. valueType: "double"
  5471. minValue: null
  5472. maxValue: null
  5473. syncField: null
  5474. calcFormula: null
  5475. - tag: "正向累计流量"
  5476. protocol: "json"
  5477. measurement: "WaterMeter"
  5478. field: "flow_total_pos"
  5479. valueType: "double"
  5480. minValue: null
  5481. maxValue: null
  5482. syncField: null
  5483. calcFormula: null
  5484. - tag: "反向累计流量"
  5485. protocol: "json"
  5486. measurement: "WaterMeter"
  5487. field: "flow_total_rev"
  5488. valueType: "double"
  5489. minValue: null
  5490. maxValue: null
  5491. syncField: null
  5492. calcFormula: null
  5493. - tag: "压力"
  5494. protocol: "json"
  5495. measurement: "WaterMeter"
  5496. field: "press_cur"
  5497. valueType: "double"
  5498. minValue: null
  5499. maxValue: null
  5500. syncField: null
  5501. calcFormula: null
  5502. - deviceId: "710012511140008"
  5503. deviceName: "1723745"
  5504. deviceSn: "SB00000132"
  5505. deviceKind: "flow_press"
  5506. platform: "zaoyang-iot"
  5507. mfrs: "上海锐铼"
  5508. createTime: "2025-11-14 10:03:44"
  5509. tags:
  5510. - tag: "瞬时流量"
  5511. protocol: "json"
  5512. measurement: "WaterMeter"
  5513. field: "flow_cur"
  5514. valueType: "double"
  5515. minValue: null
  5516. maxValue: null
  5517. syncField: null
  5518. calcFormula: null
  5519. - tag: "正向累计流量"
  5520. protocol: "json"
  5521. measurement: "WaterMeter"
  5522. field: "flow_total_pos"
  5523. valueType: "double"
  5524. minValue: null
  5525. maxValue: null
  5526. syncField: null
  5527. calcFormula: null
  5528. - tag: "反向累计流量"
  5529. protocol: "json"
  5530. measurement: "WaterMeter"
  5531. field: "flow_total_rev"
  5532. valueType: "double"
  5533. minValue: null
  5534. maxValue: null
  5535. syncField: null
  5536. calcFormula: null
  5537. - tag: "压力"
  5538. protocol: "json"
  5539. measurement: "WaterMeter"
  5540. field: "press_cur"
  5541. valueType: "double"
  5542. minValue: null
  5543. maxValue: null
  5544. syncField: null
  5545. calcFormula: null
  5546. - deviceId: "710012511140009"
  5547. deviceName: "1803200290"
  5548. deviceSn: "SB00000154"
  5549. deviceKind: "flow_press"
  5550. platform: "zaoyang-iot"
  5551. mfrs: "上海锐铼"
  5552. createTime: "2025-11-14 10:03:44"
  5553. tags:
  5554. - tag: "瞬时流量"
  5555. protocol: "json"
  5556. measurement: "WaterMeter"
  5557. field: "flow_cur"
  5558. valueType: "double"
  5559. minValue: null
  5560. maxValue: null
  5561. syncField: null
  5562. calcFormula: null
  5563. - tag: "正向累计流量"
  5564. protocol: "json"
  5565. measurement: "WaterMeter"
  5566. field: "flow_total_pos"
  5567. valueType: "double"
  5568. minValue: null
  5569. maxValue: null
  5570. syncField: null
  5571. calcFormula: null
  5572. - tag: "反向累计流量"
  5573. protocol: "json"
  5574. measurement: "WaterMeter"
  5575. field: "flow_total_rev"
  5576. valueType: "double"
  5577. minValue: null
  5578. maxValue: null
  5579. syncField: null
  5580. calcFormula: null
  5581. - deviceId: "710012511140010"
  5582. deviceName: "1723744"
  5583. deviceSn: "SB00000131"
  5584. deviceKind: "flow_press"
  5585. platform: "zaoyang-iot"
  5586. mfrs: "上海锐铼"
  5587. createTime: "2025-11-14 10:03:44"
  5588. tags:
  5589. - tag: "瞬时流量"
  5590. protocol: "json"
  5591. measurement: "WaterMeter"
  5592. field: "flow_cur"
  5593. valueType: "double"
  5594. minValue: null
  5595. maxValue: null
  5596. syncField: null
  5597. calcFormula: null
  5598. - tag: "正向累计流量"
  5599. protocol: "json"
  5600. measurement: "WaterMeter"
  5601. field: "flow_total_pos"
  5602. valueType: "double"
  5603. minValue: null
  5604. maxValue: null
  5605. syncField: null
  5606. calcFormula: null
  5607. - tag: "反向累计流量"
  5608. protocol: "json"
  5609. measurement: "WaterMeter"
  5610. field: "flow_total_rev"
  5611. valueType: "double"
  5612. minValue: null
  5613. maxValue: null
  5614. syncField: null
  5615. calcFormula: null
  5616. - tag: "压力"
  5617. protocol: "json"
  5618. measurement: "WaterMeter"
  5619. field: "press_cur"
  5620. valueType: "double"
  5621. minValue: null
  5622. maxValue: null
  5623. syncField: null
  5624. calcFormula: null
  5625. - deviceId: "710012511140011"
  5626. deviceName: "Z4西环二路红丽商务宾馆门口"
  5627. deviceSn: "SB00000197"
  5628. deviceKind: "flow_press"
  5629. platform: "zaoyang-iot"
  5630. mfrs: "上海锐铼"
  5631. createTime: "2025-11-14 10:03:44"
  5632. tags:
  5633. - tag: "瞬时流量"
  5634. protocol: "json"
  5635. measurement: "WaterMeter"
  5636. field: "flow_cur"
  5637. valueType: "double"
  5638. minValue: null
  5639. maxValue: null
  5640. syncField: null
  5641. calcFormula: null
  5642. - tag: "正向累计流量"
  5643. protocol: "json"
  5644. measurement: "WaterMeter"
  5645. field: "flow_total_pos"
  5646. valueType: "double"
  5647. minValue: null
  5648. maxValue: null
  5649. syncField: null
  5650. calcFormula: null
  5651. - tag: "反向累计流量"
  5652. protocol: "json"
  5653. measurement: "WaterMeter"
  5654. field: "flow_total_rev"
  5655. valueType: "double"
  5656. minValue: null
  5657. maxValue: null
  5658. syncField: null
  5659. calcFormula: null
  5660. - tag: "压力"
  5661. protocol: "json"
  5662. measurement: "WaterMeter"
  5663. field: "press_cur"
  5664. valueType: "double"
  5665. minValue: null
  5666. maxValue: null
  5667. syncField: null
  5668. calcFormula: null
  5669. - deviceId: "710012511140012"
  5670. deviceName: "1723743"
  5671. deviceSn: "SB00000130"
  5672. deviceKind: "flow_press"
  5673. platform: "zaoyang-iot"
  5674. mfrs: "上海锐铼"
  5675. createTime: "2025-11-14 10:03:44"
  5676. tags:
  5677. - tag: "瞬时流量"
  5678. protocol: "json"
  5679. measurement: "WaterMeter"
  5680. field: "flow_cur"
  5681. valueType: "double"
  5682. minValue: null
  5683. maxValue: null
  5684. syncField: null
  5685. calcFormula: null
  5686. - tag: "正向累计流量"
  5687. protocol: "json"
  5688. measurement: "WaterMeter"
  5689. field: "flow_total_pos"
  5690. valueType: "double"
  5691. minValue: null
  5692. maxValue: null
  5693. syncField: null
  5694. calcFormula: null
  5695. - tag: "反向累计流量"
  5696. protocol: "json"
  5697. measurement: "WaterMeter"
  5698. field: "flow_total_rev"
  5699. valueType: "double"
  5700. minValue: null
  5701. maxValue: null
  5702. syncField: null
  5703. calcFormula: null
  5704. - tag: "压力"
  5705. protocol: "json"
  5706. measurement: "WaterMeter"
  5707. field: "press_cur"
  5708. valueType: "double"
  5709. minValue: null
  5710. maxValue: null
  5711. syncField: null
  5712. calcFormula: null
  5713. - deviceId: "710012511140013"
  5714. deviceName: "Z11西环二路兰亭序酒店院后意和新村小区路口"
  5715. deviceSn: "SB00000196"
  5716. deviceKind: "flow_press"
  5717. platform: "zaoyang-iot"
  5718. mfrs: "上海锐铼"
  5719. createTime: "2025-11-14 10:03:44"
  5720. tags:
  5721. - tag: "瞬时流量"
  5722. protocol: "json"
  5723. measurement: "WaterMeter"
  5724. field: "flow_cur"
  5725. valueType: "double"
  5726. minValue: null
  5727. maxValue: null
  5728. syncField: null
  5729. calcFormula: null
  5730. - tag: "正向累计流量"
  5731. protocol: "json"
  5732. measurement: "WaterMeter"
  5733. field: "flow_total_pos"
  5734. valueType: "double"
  5735. minValue: null
  5736. maxValue: null
  5737. syncField: null
  5738. calcFormula: null
  5739. - tag: "反向累计流量"
  5740. protocol: "json"
  5741. measurement: "WaterMeter"
  5742. field: "flow_total_rev"
  5743. valueType: "double"
  5744. minValue: null
  5745. maxValue: null
  5746. syncField: null
  5747. calcFormula: null
  5748. - tag: "压力"
  5749. protocol: "json"
  5750. measurement: "WaterMeter"
  5751. field: "press_cur"
  5752. valueType: "double"
  5753. minValue: null
  5754. maxValue: null
  5755. syncField: null
  5756. calcFormula: null
  5757. - deviceId: "710012511140014"
  5758. deviceName: "Z10西环二路永宏宾馆门口"
  5759. deviceSn: "SB00000195"
  5760. deviceKind: "flow_press"
  5761. platform: "zaoyang-iot"
  5762. mfrs: "上海锐铼"
  5763. createTime: "2025-11-14 10:03:44"
  5764. tags:
  5765. - tag: "瞬时流量"
  5766. protocol: "json"
  5767. measurement: "WaterMeter"
  5768. field: "flow_cur"
  5769. valueType: "double"
  5770. minValue: null
  5771. maxValue: null
  5772. syncField: null
  5773. calcFormula: null
  5774. - tag: "正向累计流量"
  5775. protocol: "json"
  5776. measurement: "WaterMeter"
  5777. field: "flow_total_pos"
  5778. valueType: "double"
  5779. minValue: null
  5780. maxValue: null
  5781. syncField: null
  5782. calcFormula: null
  5783. - tag: "反向累计流量"
  5784. protocol: "json"
  5785. measurement: "WaterMeter"
  5786. field: "flow_total_rev"
  5787. valueType: "double"
  5788. minValue: null
  5789. maxValue: null
  5790. syncField: null
  5791. calcFormula: null
  5792. - tag: "压力"
  5793. protocol: "json"
  5794. measurement: "WaterMeter"
  5795. field: "press_cur"
  5796. valueType: "double"
  5797. minValue: null
  5798. maxValue: null
  5799. syncField: null
  5800. calcFormula: null
  5801. - deviceId: "710012511140015"
  5802. deviceName: "95#静鸿巷东路口对面"
  5803. deviceSn: "SB00000190"
  5804. deviceKind: "flow_press"
  5805. platform: "zaoyang-iot"
  5806. mfrs: "上海锐铼"
  5807. createTime: "2025-11-14 10:03:44"
  5808. tags:
  5809. - tag: "瞬时流量"
  5810. protocol: "json"
  5811. measurement: "WaterMeter"
  5812. field: "flow_cur"
  5813. valueType: "double"
  5814. minValue: null
  5815. maxValue: null
  5816. syncField: null
  5817. calcFormula: null
  5818. - tag: "正向累计流量"
  5819. protocol: "json"
  5820. measurement: "WaterMeter"
  5821. field: "flow_total_pos"
  5822. valueType: "double"
  5823. minValue: null
  5824. maxValue: null
  5825. syncField: null
  5826. calcFormula: null
  5827. - tag: "反向累计流量"
  5828. protocol: "json"
  5829. measurement: "WaterMeter"
  5830. field: "flow_total_rev"
  5831. valueType: "double"
  5832. minValue: null
  5833. maxValue: null
  5834. syncField: null
  5835. calcFormula: null
  5836. - tag: "压力"
  5837. protocol: "json"
  5838. measurement: "WaterMeter"
  5839. field: "press_cur"
  5840. valueType: "double"
  5841. minValue: null
  5842. maxValue: null
  5843. syncField: null
  5844. calcFormula: null
  5845. - deviceId: "710012511140016"
  5846. deviceName: "1911215504"
  5847. deviceSn: "SB00000147"
  5848. deviceKind: "flow_press"
  5849. platform: "zaoyang-iot"
  5850. mfrs: "上海锐铼"
  5851. createTime: "2025-11-14 10:03:44"
  5852. tags:
  5853. - tag: "瞬时流量"
  5854. protocol: "json"
  5855. measurement: "WaterMeter"
  5856. field: "flow_cur"
  5857. valueType: "double"
  5858. minValue: null
  5859. maxValue: null
  5860. syncField: null
  5861. calcFormula: null
  5862. - tag: "正向累计流量"
  5863. protocol: "json"
  5864. measurement: "WaterMeter"
  5865. field: "flow_total_pos"
  5866. valueType: "double"
  5867. minValue: null
  5868. maxValue: null
  5869. syncField: null
  5870. calcFormula: null
  5871. - tag: "反向累计流量"
  5872. protocol: "json"
  5873. measurement: "WaterMeter"
  5874. field: "flow_total_rev"
  5875. valueType: "double"
  5876. minValue: null
  5877. maxValue: null
  5878. syncField: null
  5879. calcFormula: null
  5880. - tag: "压力"
  5881. protocol: "json"
  5882. measurement: "WaterMeter"
  5883. field: "press_cur"
  5884. valueType: "double"
  5885. minValue: null
  5886. maxValue: null
  5887. syncField: null
  5888. calcFormula: null
  5889. - deviceId: "710012511140017"
  5890. deviceName: "Z8西环二路万豪大酒店门口"
  5891. deviceSn: "SB00000201"
  5892. deviceKind: "flow_press"
  5893. platform: "zaoyang-iot"
  5894. mfrs: "上海锐铼"
  5895. createTime: "2025-11-14 10:03:44"
  5896. tags:
  5897. - tag: "瞬时流量"
  5898. protocol: "json"
  5899. measurement: "WaterMeter"
  5900. field: "flow_cur"
  5901. valueType: "double"
  5902. minValue: null
  5903. maxValue: null
  5904. syncField: null
  5905. calcFormula: null
  5906. - tag: "正向累计流量"
  5907. protocol: "json"
  5908. measurement: "WaterMeter"
  5909. field: "flow_total_pos"
  5910. valueType: "double"
  5911. minValue: null
  5912. maxValue: null
  5913. syncField: null
  5914. calcFormula: null
  5915. - tag: "反向累计流量"
  5916. protocol: "json"
  5917. measurement: "WaterMeter"
  5918. field: "flow_total_rev"
  5919. valueType: "double"
  5920. minValue: null
  5921. maxValue: null
  5922. syncField: null
  5923. calcFormula: null
  5924. - tag: "压力"
  5925. protocol: "json"
  5926. measurement: "WaterMeter"
  5927. field: "press_cur"
  5928. valueType: "double"
  5929. minValue: null
  5930. maxValue: null
  5931. syncField: null
  5932. calcFormula: null
  5933. - deviceId: "710012511140018"
  5934. deviceName: "Z7西环二路银尊足道门口"
  5935. deviceSn: "SB00000200"
  5936. deviceKind: "flow_press"
  5937. platform: "zaoyang-iot"
  5938. mfrs: "上海锐铼"
  5939. createTime: "2025-11-14 10:03:44"
  5940. tags:
  5941. - tag: "瞬时流量"
  5942. protocol: "json"
  5943. measurement: "WaterMeter"
  5944. field: "flow_cur"
  5945. valueType: "double"
  5946. minValue: null
  5947. maxValue: null
  5948. syncField: null
  5949. calcFormula: null
  5950. - tag: "正向累计流量"
  5951. protocol: "json"
  5952. measurement: "WaterMeter"
  5953. field: "flow_total_pos"
  5954. valueType: "double"
  5955. minValue: null
  5956. maxValue: null
  5957. syncField: null
  5958. calcFormula: null
  5959. - tag: "反向累计流量"
  5960. protocol: "json"
  5961. measurement: "WaterMeter"
  5962. field: "flow_total_rev"
  5963. valueType: "double"
  5964. minValue: null
  5965. maxValue: null
  5966. syncField: null
  5967. calcFormula: null
  5968. - tag: "压力"
  5969. protocol: "json"
  5970. measurement: "WaterMeter"
  5971. field: "press_cur"
  5972. valueType: "double"
  5973. minValue: null
  5974. maxValue: null
  5975. syncField: null
  5976. calcFormula: null
  5977. - deviceId: "710012511140019"
  5978. deviceName: "1911215502"
  5979. deviceSn: "SB00000145"
  5980. deviceKind: "flow_press"
  5981. platform: "zaoyang-iot"
  5982. mfrs: "上海锐铼"
  5983. createTime: "2025-11-14 10:03:44"
  5984. tags:
  5985. - tag: "瞬时流量"
  5986. protocol: "json"
  5987. measurement: "WaterMeter"
  5988. field: "flow_cur"
  5989. valueType: "double"
  5990. minValue: null
  5991. maxValue: null
  5992. syncField: null
  5993. calcFormula: null
  5994. - tag: "正向累计流量"
  5995. protocol: "json"
  5996. measurement: "WaterMeter"
  5997. field: "flow_total_pos"
  5998. valueType: "double"
  5999. minValue: null
  6000. maxValue: null
  6001. syncField: null
  6002. calcFormula: null
  6003. - tag: "反向累计流量"
  6004. protocol: "json"
  6005. measurement: "WaterMeter"
  6006. field: "flow_total_rev"
  6007. valueType: "double"
  6008. minValue: null
  6009. maxValue: null
  6010. syncField: null
  6011. calcFormula: null
  6012. - deviceId: "710012511140020"
  6013. deviceName: "1723742"
  6014. deviceSn: "SB00000129"
  6015. deviceKind: "flow_press"
  6016. platform: "zaoyang-iot"
  6017. mfrs: "上海锐铼"
  6018. createTime: "2025-11-14 10:03:44"
  6019. tags:
  6020. - tag: "瞬时流量"
  6021. protocol: "json"
  6022. measurement: "WaterMeter"
  6023. field: "flow_cur"
  6024. valueType: "double"
  6025. minValue: null
  6026. maxValue: null
  6027. syncField: null
  6028. calcFormula: null
  6029. - tag: "正向累计流量"
  6030. protocol: "json"
  6031. measurement: "WaterMeter"
  6032. field: "flow_total_pos"
  6033. valueType: "double"
  6034. minValue: null
  6035. maxValue: null
  6036. syncField: null
  6037. calcFormula: null
  6038. - tag: "反向累计流量"
  6039. protocol: "json"
  6040. measurement: "WaterMeter"
  6041. field: "flow_total_rev"
  6042. valueType: "double"
  6043. minValue: null
  6044. maxValue: null
  6045. syncField: null
  6046. calcFormula: null
  6047. - deviceId: "710012511140021"
  6048. deviceName: "112#西环三路环岛西侧齐亿纺织外"
  6049. deviceSn: "SB00000183"
  6050. deviceKind: "flow_press"
  6051. platform: "zaoyang-iot"
  6052. mfrs: "上海锐铼"
  6053. createTime: "2025-11-14 10:03:44"
  6054. tags:
  6055. - tag: "瞬时流量"
  6056. protocol: "json"
  6057. measurement: "WaterMeter"
  6058. field: "flow_cur"
  6059. valueType: "double"
  6060. minValue: null
  6061. maxValue: null
  6062. syncField: null
  6063. calcFormula: null
  6064. - tag: "正向累计流量"
  6065. protocol: "json"
  6066. measurement: "WaterMeter"
  6067. field: "flow_total_pos"
  6068. valueType: "double"
  6069. minValue: null
  6070. maxValue: null
  6071. syncField: null
  6072. calcFormula: null
  6073. - tag: "反向累计流量"
  6074. protocol: "json"
  6075. measurement: "WaterMeter"
  6076. field: "flow_total_rev"
  6077. valueType: "double"
  6078. minValue: null
  6079. maxValue: null
  6080. syncField: null
  6081. calcFormula: null
  6082. - tag: "压力"
  6083. protocol: "json"
  6084. measurement: "WaterMeter"
  6085. field: "press_cur"
  6086. valueType: "double"
  6087. minValue: null
  6088. maxValue: null
  6089. syncField: null
  6090. calcFormula: null
  6091. - deviceId: "710012511140022"
  6092. deviceName: "113#鲍庄五组路口"
  6093. deviceSn: "SB00000182"
  6094. deviceKind: "flow_press"
  6095. platform: "zaoyang-iot"
  6096. mfrs: "上海锐铼"
  6097. createTime: "2025-11-14 10:03:44"
  6098. tags:
  6099. - tag: "瞬时流量"
  6100. protocol: "json"
  6101. measurement: "WaterMeter"
  6102. field: "flow_cur"
  6103. valueType: "double"
  6104. minValue: null
  6105. maxValue: null
  6106. syncField: null
  6107. calcFormula: null
  6108. - tag: "正向累计流量"
  6109. protocol: "json"
  6110. measurement: "WaterMeter"
  6111. field: "flow_total_pos"
  6112. valueType: "double"
  6113. minValue: null
  6114. maxValue: null
  6115. syncField: null
  6116. calcFormula: null
  6117. - tag: "反向累计流量"
  6118. protocol: "json"
  6119. measurement: "WaterMeter"
  6120. field: "flow_total_rev"
  6121. valueType: "double"
  6122. minValue: null
  6123. maxValue: null
  6124. syncField: null
  6125. calcFormula: null
  6126. - tag: "压力"
  6127. protocol: "json"
  6128. measurement: "WaterMeter"
  6129. field: "press_cur"
  6130. valueType: "double"
  6131. minValue: null
  6132. maxValue: null
  6133. syncField: null
  6134. calcFormula: null
  6135. - deviceId: "710012511140023"
  6136. deviceName: "117#鲍庄十一组路口"
  6137. deviceSn: "SB00000187"
  6138. deviceKind: "flow_press"
  6139. platform: "zaoyang-iot"
  6140. mfrs: "上海锐铼"
  6141. createTime: "2025-11-14 10:03:44"
  6142. tags:
  6143. - tag: "瞬时流量"
  6144. protocol: "json"
  6145. measurement: "WaterMeter"
  6146. field: "flow_cur"
  6147. valueType: "double"
  6148. minValue: null
  6149. maxValue: null
  6150. syncField: null
  6151. calcFormula: null
  6152. - tag: "正向累计流量"
  6153. protocol: "json"
  6154. measurement: "WaterMeter"
  6155. field: "flow_total_pos"
  6156. valueType: "double"
  6157. minValue: null
  6158. maxValue: null
  6159. syncField: null
  6160. calcFormula: null
  6161. - tag: "反向累计流量"
  6162. protocol: "json"
  6163. measurement: "WaterMeter"
  6164. field: "flow_total_rev"
  6165. valueType: "double"
  6166. minValue: null
  6167. maxValue: null
  6168. syncField: null
  6169. calcFormula: null
  6170. - tag: "压力"
  6171. protocol: "json"
  6172. measurement: "WaterMeter"
  6173. field: "press_cur"
  6174. valueType: "double"
  6175. minValue: null
  6176. maxValue: null
  6177. syncField: null
  6178. calcFormula: null
  6179. - deviceId: "710012511140024"
  6180. deviceName: "1901200093"
  6181. deviceSn: "SB00000143"
  6182. deviceKind: "flow_press"
  6183. platform: "zaoyang-iot"
  6184. mfrs: "上海锐铼"
  6185. createTime: "2025-11-14 10:03:44"
  6186. tags:
  6187. - tag: "瞬时流量"
  6188. protocol: "json"
  6189. measurement: "WaterMeter"
  6190. field: "flow_cur"
  6191. valueType: "double"
  6192. minValue: null
  6193. maxValue: null
  6194. syncField: null
  6195. calcFormula: null
  6196. - tag: "正向累计流量"
  6197. protocol: "json"
  6198. measurement: "WaterMeter"
  6199. field: "flow_total_pos"
  6200. valueType: "double"
  6201. minValue: null
  6202. maxValue: null
  6203. syncField: null
  6204. calcFormula: null
  6205. - tag: "反向累计流量"
  6206. protocol: "json"
  6207. measurement: "WaterMeter"
  6208. field: "flow_total_rev"
  6209. valueType: "double"
  6210. minValue: null
  6211. maxValue: null
  6212. syncField: null
  6213. calcFormula: null
  6214. - tag: "压力"
  6215. protocol: "json"
  6216. measurement: "WaterMeter"
  6217. field: "press_cur"
  6218. valueType: "double"
  6219. minValue: null
  6220. maxValue: null
  6221. syncField: null
  6222. calcFormula: null
  6223. - deviceId: "710012511140025"
  6224. deviceName: "115#鲍庄幼儿园还建点给水接驳口"
  6225. deviceSn: "SB00000185"
  6226. deviceKind: "flow_press"
  6227. platform: "zaoyang-iot"
  6228. mfrs: "上海锐铼"
  6229. createTime: "2025-11-14 10:03:44"
  6230. tags:
  6231. - tag: "瞬时流量"
  6232. protocol: "json"
  6233. measurement: "WaterMeter"
  6234. field: "flow_cur"
  6235. valueType: "double"
  6236. minValue: null
  6237. maxValue: null
  6238. syncField: null
  6239. calcFormula: null
  6240. - tag: "正向累计流量"
  6241. protocol: "json"
  6242. measurement: "WaterMeter"
  6243. field: "flow_total_pos"
  6244. valueType: "double"
  6245. minValue: null
  6246. maxValue: null
  6247. syncField: null
  6248. calcFormula: null
  6249. - tag: "反向累计流量"
  6250. protocol: "json"
  6251. measurement: "WaterMeter"
  6252. field: "flow_total_rev"
  6253. valueType: "double"
  6254. minValue: null
  6255. maxValue: null
  6256. syncField: null
  6257. calcFormula: null
  6258. - tag: "压力"
  6259. protocol: "json"
  6260. measurement: "WaterMeter"
  6261. field: "press_cur"
  6262. valueType: "double"
  6263. minValue: null
  6264. maxValue: null
  6265. syncField: null
  6266. calcFormula: null
  6267. - deviceId: "710012511140026"
  6268. deviceName: "1901200091"
  6269. deviceSn: "SB00000141"
  6270. deviceKind: "flow_press"
  6271. platform: "zaoyang-iot"
  6272. mfrs: "上海锐铼"
  6273. createTime: "2025-11-14 10:03:44"
  6274. tags:
  6275. - tag: "瞬时流量"
  6276. protocol: "json"
  6277. measurement: "WaterMeter"
  6278. field: "flow_cur"
  6279. valueType: "double"
  6280. minValue: null
  6281. maxValue: null
  6282. syncField: null
  6283. calcFormula: null
  6284. - tag: "正向累计流量"
  6285. protocol: "json"
  6286. measurement: "WaterMeter"
  6287. field: "flow_total_pos"
  6288. valueType: "double"
  6289. minValue: null
  6290. maxValue: null
  6291. syncField: null
  6292. calcFormula: null
  6293. - tag: "反向累计流量"
  6294. protocol: "json"
  6295. measurement: "WaterMeter"
  6296. field: "flow_total_rev"
  6297. valueType: "double"
  6298. minValue: null
  6299. maxValue: null
  6300. syncField: null
  6301. calcFormula: null
  6302. - tag: "压力"
  6303. protocol: "json"
  6304. measurement: "WaterMeter"
  6305. field: "press_cur"
  6306. valueType: "double"
  6307. minValue: null
  6308. maxValue: null
  6309. syncField: null
  6310. calcFormula: null
  6311. - deviceId: "710012511140027"
  6312. deviceName: "114#发展大道与蔡阳大道交差路口东北角"
  6313. deviceSn: "SB00000184"
  6314. deviceKind: "flow_press"
  6315. platform: "zaoyang-iot"
  6316. mfrs: "上海锐铼"
  6317. createTime: "2025-11-14 10:03:44"
  6318. tags:
  6319. - tag: "瞬时流量"
  6320. protocol: "json"
  6321. measurement: "WaterMeter"
  6322. field: "flow_cur"
  6323. valueType: "double"
  6324. minValue: null
  6325. maxValue: null
  6326. syncField: null
  6327. calcFormula: null
  6328. - tag: "正向累计流量"
  6329. protocol: "json"
  6330. measurement: "WaterMeter"
  6331. field: "flow_total_pos"
  6332. valueType: "double"
  6333. minValue: null
  6334. maxValue: null
  6335. syncField: null
  6336. calcFormula: null
  6337. - tag: "反向累计流量"
  6338. protocol: "json"
  6339. measurement: "WaterMeter"
  6340. field: "flow_total_rev"
  6341. valueType: "double"
  6342. minValue: null
  6343. maxValue: null
  6344. syncField: null
  6345. calcFormula: null
  6346. - tag: "压力"
  6347. protocol: "json"
  6348. measurement: "WaterMeter"
  6349. field: "press_cur"
  6350. valueType: "double"
  6351. minValue: null
  6352. maxValue: null
  6353. syncField: null
  6354. calcFormula: null
  6355. - deviceId: "710012511140028"
  6356. deviceName: "116#鲍庄柴岗路口给水接驳口"
  6357. deviceSn: "SB00000186"
  6358. deviceKind: "flow_press"
  6359. platform: "zaoyang-iot"
  6360. mfrs: null
  6361. createTime: "2025-11-14 12:15:01"
  6362. tags:
  6363. - tag: "瞬时流量"
  6364. protocol: "json"
  6365. measurement: "WaterMeter"
  6366. field: "flow_cur"
  6367. valueType: "double"
  6368. minValue: null
  6369. maxValue: null
  6370. syncField: null
  6371. calcFormula: null
  6372. - tag: "正向累计流量"
  6373. protocol: "json"
  6374. measurement: "WaterMeter"
  6375. field: "flow_total_pos"
  6376. valueType: "double"
  6377. minValue: null
  6378. maxValue: null
  6379. syncField: null
  6380. calcFormula: null
  6381. - tag: "反向累计流量"
  6382. protocol: "json"
  6383. measurement: "WaterMeter"
  6384. field: "flow_total_rev"
  6385. valueType: "double"
  6386. minValue: null
  6387. maxValue: null
  6388. syncField: null
  6389. calcFormula: null
  6390. - tag: "压力"
  6391. protocol: "json"
  6392. measurement: "WaterMeter"
  6393. field: "press_cur"
  6394. valueType: "double"
  6395. minValue: null
  6396. maxValue: null
  6397. syncField: null
  6398. calcFormula: null