dev_zhscada.yml 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557
  1. ---
  2. - deviceId: "710022511130001"
  3. deviceName: "云湾泵站"
  4. deviceSn: null
  5. deviceKind: "flow"
  6. platform: "zhonghuan-scada"
  7. mfrs: null
  8. createTime: "2025-11-03 17:45:44"
  9. tags:
  10. - tag: "sc_ywbz_ssll"
  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: "sc_ywbz_ljll"
  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. - deviceId: "710022511130002"
  29. deviceName: "檀溪泵站-尹集"
  30. deviceSn: null
  31. deviceKind: "flow"
  32. platform: "zhonghuan-scada"
  33. mfrs: null
  34. createTime: "2025-11-03 17:45:44"
  35. tags:
  36. - tag: "sc_txbz_yjss"
  37. protocol: "json"
  38. measurement: "WaterMeter"
  39. field: "flow_cur"
  40. valueType: "double"
  41. minValue: null
  42. maxValue: null
  43. syncField: null
  44. calcFormula: null
  45. - deviceId: "710022511130003"
  46. deviceName: "檀溪泵站-卧龙"
  47. deviceSn: null
  48. deviceKind: "flow"
  49. platform: "zhonghuan-scada"
  50. mfrs: null
  51. createTime: "2025-11-03 17:45:44"
  52. tags:
  53. - tag: "sc_txbz_wlss"
  54. protocol: "json"
  55. measurement: "WaterMeter"
  56. field: "flow_cur"
  57. valueType: "double"
  58. minValue: null
  59. maxValue: null
  60. syncField: null
  61. calcFormula: null
  62. - deviceId: "710022511130004"
  63. deviceName: "富康路"
  64. deviceSn: null
  65. deviceKind: "flow"
  66. platform: "zhonghuan-scada"
  67. mfrs: null
  68. createTime: "2025-11-03 17:45:44"
  69. tags:
  70. - tag: "gw_fkl_ssll"
  71. protocol: "json"
  72. measurement: "WaterMeter"
  73. field: "flow_cur"
  74. valueType: "double"
  75. minValue: null
  76. maxValue: null
  77. syncField: null
  78. calcFormula: null
  79. - tag: "gw_fkl_zljll"
  80. protocol: "json"
  81. measurement: "WaterMeter"
  82. field: "flow_total_pos"
  83. valueType: "double"
  84. minValue: null
  85. maxValue: null
  86. syncField: null
  87. calcFormula: null
  88. - tag: "gw_fkl_fljll"
  89. protocol: "json"
  90. measurement: "WaterMeter"
  91. field: "flow_total_rev"
  92. valueType: "double"
  93. minValue: null
  94. maxValue: null
  95. syncField: null
  96. calcFormula: null
  97. - deviceId: "710022511130005"
  98. deviceName: "邓城大道与汉江北路"
  99. deviceSn: null
  100. deviceKind: "flow"
  101. platform: "zhonghuan-scada"
  102. mfrs: null
  103. createTime: "2025-11-03 17:45:44"
  104. tags:
  105. - tag: "gw_dcddyhjbl_ssll"
  106. protocol: "json"
  107. measurement: "WaterMeter"
  108. field: "flow_cur"
  109. valueType: "double"
  110. minValue: null
  111. maxValue: null
  112. syncField: null
  113. calcFormula: null
  114. - tag: "gw_dcddyhjbl_zljll"
  115. protocol: "json"
  116. measurement: "WaterMeter"
  117. field: "flow_total_pos"
  118. valueType: "double"
  119. minValue: null
  120. maxValue: null
  121. syncField: null
  122. calcFormula: null
  123. - tag: "gw_dcddyhjbl_fljll"
  124. protocol: "json"
  125. measurement: "WaterMeter"
  126. field: "flow_total_rev"
  127. valueType: "double"
  128. minValue: null
  129. maxValue: null
  130. syncField: null
  131. calcFormula: null
  132. - deviceId: "710022511130006"
  133. deviceName: "富康路与奔驰大道"
  134. deviceSn: null
  135. deviceKind: "flow"
  136. platform: "zhonghuan-scada"
  137. mfrs: null
  138. createTime: "2025-11-03 17:45:44"
  139. tags:
  140. - tag: "gw_fklybcdd_ssll"
  141. protocol: "json"
  142. measurement: "WaterMeter"
  143. field: "flow_cur"
  144. valueType: "double"
  145. minValue: null
  146. maxValue: null
  147. syncField: null
  148. calcFormula: null
  149. - tag: "gw_fklybcdd_zljll"
  150. protocol: "json"
  151. measurement: "WaterMeter"
  152. field: "flow_total_pos"
  153. valueType: "double"
  154. minValue: null
  155. maxValue: null
  156. syncField: null
  157. calcFormula: null
  158. - tag: "gw_fklybcdd_fljll"
  159. protocol: "json"
  160. measurement: "WaterMeter"
  161. field: "flow_total_rev"
  162. valueType: "double"
  163. minValue: null
  164. maxValue: null
  165. syncField: null
  166. calcFormula: null
  167. - deviceId: "710022511130007"
  168. deviceName: "深圳大道与机场路"
  169. deviceSn: null
  170. deviceKind: "flow"
  171. platform: "zhonghuan-scada"
  172. mfrs: null
  173. createTime: "2025-11-03 17:45:44"
  174. tags:
  175. - tag: "gw_szddyjcl_ssll"
  176. protocol: "json"
  177. measurement: "WaterMeter"
  178. field: "flow_cur"
  179. valueType: "double"
  180. minValue: null
  181. maxValue: null
  182. syncField: null
  183. calcFormula: null
  184. - tag: "gw_sdddyjcl_zljll"
  185. protocol: "json"
  186. measurement: "WaterMeter"
  187. field: "flow_total_pos"
  188. valueType: "double"
  189. minValue: null
  190. maxValue: null
  191. syncField: null
  192. calcFormula: null
  193. - tag: "gw_szddyjcl_fljll"
  194. protocol: "json"
  195. measurement: "WaterMeter"
  196. field: "flow_total_rev"
  197. valueType: "double"
  198. minValue: null
  199. maxValue: null
  200. syncField: null
  201. calcFormula: null
  202. - deviceId: "710022511130008"
  203. deviceName: "深圳大道"
  204. deviceSn: null
  205. deviceKind: "flow"
  206. platform: "zhonghuan-scada"
  207. mfrs: null
  208. createTime: "2025-11-03 17:45:44"
  209. tags:
  210. - tag: "gw_szdd_ssll"
  211. protocol: "json"
  212. measurement: "WaterMeter"
  213. field: "flow_cur"
  214. valueType: "double"
  215. minValue: null
  216. maxValue: null
  217. syncField: null
  218. calcFormula: null
  219. - tag: "gw_szdd_zljll"
  220. protocol: "json"
  221. measurement: "WaterMeter"
  222. field: "flow_total_pos"
  223. valueType: "double"
  224. minValue: null
  225. maxValue: null
  226. syncField: null
  227. calcFormula: null
  228. - tag: "gw_szdd_fljll"
  229. protocol: "json"
  230. measurement: "WaterMeter"
  231. field: "flow_total_rev"
  232. valueType: "double"
  233. minValue: null
  234. maxValue: null
  235. syncField: null
  236. calcFormula: null
  237. - deviceId: "710022511130009"
  238. deviceName: "追日路"
  239. deviceSn: null
  240. deviceKind: "flow"
  241. platform: "zhonghuan-scada"
  242. mfrs: null
  243. createTime: "2025-11-03 17:45:44"
  244. tags:
  245. - tag: "gw_zrl_ssll"
  246. protocol: "json"
  247. measurement: "WaterMeter"
  248. field: "flow_cur"
  249. valueType: "double"
  250. minValue: null
  251. maxValue: null
  252. syncField: null
  253. calcFormula: null
  254. - tag: "gw_zrl_zljll"
  255. protocol: "json"
  256. measurement: "WaterMeter"
  257. field: "flow_total_pos"
  258. valueType: "double"
  259. minValue: null
  260. maxValue: null
  261. syncField: null
  262. calcFormula: null
  263. - tag: "gw_zrl_fljll"
  264. protocol: "json"
  265. measurement: "WaterMeter"
  266. field: "flow_total_rev"
  267. valueType: "double"
  268. minValue: null
  269. maxValue: null
  270. syncField: null
  271. calcFormula: null
  272. - deviceId: "710022511130010"
  273. deviceName: "龙凤桥头与环山路"
  274. deviceSn: null
  275. deviceKind: "flow"
  276. platform: "zhonghuan-scada"
  277. mfrs: null
  278. createTime: "2025-11-03 17:45:44"
  279. tags:
  280. - tag: "gw_wlddgtys_ssll"
  281. protocol: "json"
  282. measurement: "WaterMeter"
  283. field: "flow_cur"
  284. valueType: "double"
  285. minValue: null
  286. maxValue: null
  287. syncField: null
  288. calcFormula: null
  289. - tag: "gw_wlddgtys_zljll"
  290. protocol: "json"
  291. measurement: "WaterMeter"
  292. field: "flow_total_pos"
  293. valueType: "double"
  294. minValue: null
  295. maxValue: null
  296. syncField: null
  297. calcFormula: null
  298. - tag: "gw_wlddgtys_fljll"
  299. protocol: "json"
  300. measurement: "WaterMeter"
  301. field: "flow_total_rev"
  302. valueType: "double"
  303. minValue: null
  304. maxValue: null
  305. syncField: null
  306. calcFormula: null
  307. - deviceId: "710022511130011"
  308. deviceName: "新风路"
  309. deviceSn: null
  310. deviceKind: "flow"
  311. platform: "zhonghuan-scada"
  312. mfrs: null
  313. createTime: "2025-11-03 17:45:44"
  314. tags:
  315. - tag: "gw_xfl_ssll"
  316. protocol: "json"
  317. measurement: "WaterMeter"
  318. field: "flow_cur"
  319. valueType: "double"
  320. minValue: null
  321. maxValue: null
  322. syncField: null
  323. calcFormula: null
  324. - tag: "gw_xfl_zljll"
  325. protocol: "json"
  326. measurement: "WaterMeter"
  327. field: "flow_total_pos"
  328. valueType: "double"
  329. minValue: null
  330. maxValue: null
  331. syncField: null
  332. calcFormula: null
  333. - tag: "gw_xfl_fljll"
  334. protocol: "json"
  335. measurement: "WaterMeter"
  336. field: "flow_total_rev"
  337. valueType: "double"
  338. minValue: null
  339. maxValue: null
  340. syncField: null
  341. calcFormula: null
  342. - deviceId: "710022511130012"
  343. deviceName: "新名路"
  344. deviceSn: null
  345. deviceKind: "flow"
  346. platform: "zhonghuan-scada"
  347. mfrs: null
  348. createTime: "2025-11-03 17:45:44"
  349. tags:
  350. - tag: "gw_xml_ssll"
  351. protocol: "json"
  352. measurement: "WaterMeter"
  353. field: "flow_cur"
  354. valueType: "double"
  355. minValue: null
  356. maxValue: null
  357. syncField: null
  358. calcFormula: null
  359. - tag: "gw_xml_zljl"
  360. protocol: "json"
  361. measurement: "WaterMeter"
  362. field: "flow_total_pos"
  363. valueType: "double"
  364. minValue: null
  365. maxValue: null
  366. syncField: null
  367. calcFormula: null
  368. - tag: "gw_xml_fljll"
  369. protocol: "json"
  370. measurement: "WaterMeter"
  371. field: "flow_total_rev"
  372. valueType: "double"
  373. minValue: null
  374. maxValue: null
  375. syncField: null
  376. calcFormula: null
  377. - deviceId: "710022511130013"
  378. deviceName: "机场路与奔驰大道"
  379. deviceSn: null
  380. deviceKind: "flow"
  381. platform: "zhonghuan-scada"
  382. mfrs: null
  383. createTime: "2025-11-03 17:45:44"
  384. tags:
  385. - tag: "gw_jclybcdd_ssll"
  386. protocol: "json"
  387. measurement: "WaterMeter"
  388. field: "flow_cur"
  389. valueType: "double"
  390. minValue: null
  391. maxValue: null
  392. syncField: null
  393. calcFormula: null
  394. - tag: "gw_jclybcdd_zljll"
  395. protocol: "json"
  396. measurement: "WaterMeter"
  397. field: "flow_total_pos"
  398. valueType: "double"
  399. minValue: null
  400. maxValue: null
  401. syncField: null
  402. calcFormula: null
  403. - tag: "gw_jclybcdd_fljll"
  404. protocol: "json"
  405. measurement: "WaterMeter"
  406. field: "flow_total_rev"
  407. valueType: "double"
  408. minValue: null
  409. maxValue: null
  410. syncField: null
  411. calcFormula: null
  412. - deviceId: "710022511130014"
  413. deviceName: "钻石大道"
  414. deviceSn: null
  415. deviceKind: "flow"
  416. platform: "zhonghuan-scada"
  417. mfrs: null
  418. createTime: "2025-11-03 17:45:44"
  419. tags:
  420. - tag: "gw_zsdd_ssll"
  421. protocol: "json"
  422. measurement: "WaterMeter"
  423. field: "flow_cur"
  424. valueType: "double"
  425. minValue: null
  426. maxValue: null
  427. syncField: null
  428. calcFormula: null
  429. - tag: "gw_zsdd_zljll"
  430. protocol: "json"
  431. measurement: "WaterMeter"
  432. field: "flow_total_pos"
  433. valueType: "double"
  434. minValue: null
  435. maxValue: null
  436. syncField: null
  437. calcFormula: null
  438. - tag: "gw_zsdd_fljll"
  439. protocol: "json"
  440. measurement: "WaterMeter"
  441. field: "flow_total_rev"
  442. valueType: "double"
  443. minValue: null
  444. maxValue: null
  445. syncField: null
  446. calcFormula: null
  447. - deviceId: "710022511130015"
  448. deviceName: "劲风路与天籁大道"
  449. deviceSn: null
  450. deviceKind: "flow"
  451. platform: "zhonghuan-scada"
  452. mfrs: null
  453. createTime: "2025-11-03 17:45:44"
  454. tags:
  455. - tag: "gw_jfl_ssll"
  456. protocol: "json"
  457. measurement: "WaterMeter"
  458. field: "flow_cur"
  459. valueType: "double"
  460. minValue: null
  461. maxValue: null
  462. syncField: null
  463. calcFormula: null
  464. - tag: "gw_jfl_zljll"
  465. protocol: "json"
  466. measurement: "WaterMeter"
  467. field: "flow_total_pos"
  468. valueType: "double"
  469. minValue: null
  470. maxValue: null
  471. syncField: null
  472. calcFormula: null
  473. - tag: "gw_jfl_fljll"
  474. protocol: "json"
  475. measurement: "WaterMeter"
  476. field: "flow_total_rev"
  477. valueType: "double"
  478. minValue: null
  479. maxValue: null
  480. syncField: null
  481. calcFormula: null
  482. - deviceId: "710022511130016"
  483. deviceName: "名城路口"
  484. deviceSn: null
  485. deviceKind: "flow"
  486. platform: "zhonghuan-scada"
  487. mfrs: null
  488. createTime: "2025-11-03 17:45:44"
  489. tags:
  490. - tag: "gw_mclk_ssll"
  491. protocol: "json"
  492. measurement: "WaterMeter"
  493. field: "flow_cur"
  494. valueType: "double"
  495. minValue: null
  496. maxValue: null
  497. syncField: null
  498. calcFormula: null
  499. - tag: "gw_mclk_zljll"
  500. protocol: "json"
  501. measurement: "WaterMeter"
  502. field: "flow_total_pos"
  503. valueType: "double"
  504. minValue: null
  505. maxValue: null
  506. syncField: null
  507. calcFormula: null
  508. - tag: "gw_mclk_fljll"
  509. protocol: "json"
  510. measurement: "WaterMeter"
  511. field: "flow_total_rev"
  512. valueType: "double"
  513. minValue: null
  514. maxValue: null
  515. syncField: null
  516. calcFormula: null
  517. - deviceId: "710022511130017"
  518. deviceName: "奔驰大道路口"
  519. deviceSn: null
  520. deviceKind: "flow"
  521. platform: "zhonghuan-scada"
  522. mfrs: null
  523. createTime: "2025-11-03 17:45:44"
  524. tags:
  525. - tag: "gw_bcddlc_ssll"
  526. protocol: "json"
  527. measurement: "WaterMeter"
  528. field: "flow_cur"
  529. valueType: "double"
  530. minValue: null
  531. maxValue: null
  532. syncField: null
  533. calcFormula: null
  534. - tag: "gw_bcddlc_zljll"
  535. protocol: "json"
  536. measurement: "WaterMeter"
  537. field: "flow_total_pos"
  538. valueType: "double"
  539. minValue: null
  540. maxValue: null
  541. syncField: null
  542. calcFormula: null
  543. - tag: "gw_bcddlc_fljll"
  544. protocol: "json"
  545. measurement: "WaterMeter"
  546. field: "flow_total_rev"
  547. valueType: "double"
  548. minValue: null
  549. maxValue: null
  550. syncField: null
  551. calcFormula: null
  552. - deviceId: "710022511130018"
  553. deviceName: "卧龙大道与关羽路"
  554. deviceSn: null
  555. deviceKind: "flow"
  556. platform: "zhonghuan-scada"
  557. mfrs: null
  558. createTime: "2025-11-03 17:45:44"
  559. tags:
  560. - tag: "gw_wlgyl_ssll"
  561. protocol: "json"
  562. measurement: "WaterMeter"
  563. field: "flow_cur"
  564. valueType: "double"
  565. minValue: null
  566. maxValue: null
  567. syncField: null
  568. calcFormula: null
  569. - tag: "gw_wlgyl_zljll"
  570. protocol: "json"
  571. measurement: "WaterMeter"
  572. field: "flow_total_pos"
  573. valueType: "double"
  574. minValue: null
  575. maxValue: null
  576. syncField: null
  577. calcFormula: null
  578. - tag: "gw_wlgyl_fljll"
  579. protocol: "json"
  580. measurement: "WaterMeter"
  581. field: "flow_total_rev"
  582. valueType: "double"
  583. minValue: null
  584. maxValue: null
  585. syncField: null
  586. calcFormula: null
  587. - deviceId: "710022511130019"
  588. deviceName: "汉津路口"
  589. deviceSn: null
  590. deviceKind: "flow"
  591. platform: "zhonghuan-scada"
  592. mfrs: null
  593. createTime: "2025-11-03 17:45:44"
  594. tags:
  595. - tag: "gw_hjl_ssll"
  596. protocol: "json"
  597. measurement: "WaterMeter"
  598. field: "flow_cur"
  599. valueType: "double"
  600. minValue: null
  601. maxValue: null
  602. syncField: null
  603. calcFormula: null
  604. - tag: "gw_hjl_zljll"
  605. protocol: "json"
  606. measurement: "WaterMeter"
  607. field: "flow_total_pos"
  608. valueType: "double"
  609. minValue: null
  610. maxValue: null
  611. syncField: null
  612. calcFormula: null
  613. - tag: "gw_hjl_fljll"
  614. protocol: "json"
  615. measurement: "WaterMeter"
  616. field: "flow_total_rev"
  617. valueType: "double"
  618. minValue: null
  619. maxValue: null
  620. syncField: null
  621. calcFormula: null
  622. - deviceId: "710022511130020"
  623. deviceName: "光彩大市场"
  624. deviceSn: null
  625. deviceKind: "flow"
  626. platform: "zhonghuan-scada"
  627. mfrs: null
  628. createTime: "2025-11-03 17:45:44"
  629. tags:
  630. - tag: "gw_gcdsc_ssll"
  631. protocol: "json"
  632. measurement: "WaterMeter"
  633. field: "flow_cur"
  634. valueType: "double"
  635. minValue: null
  636. maxValue: null
  637. syncField: null
  638. calcFormula: null
  639. - tag: "gw_gcdsc_zljll"
  640. protocol: "json"
  641. measurement: "WaterMeter"
  642. field: "flow_total_pos"
  643. valueType: "double"
  644. minValue: null
  645. maxValue: null
  646. syncField: null
  647. calcFormula: null
  648. - tag: "gw_gcdsc_fljll"
  649. protocol: "json"
  650. measurement: "WaterMeter"
  651. field: "flow_total_rev"
  652. valueType: "double"
  653. minValue: null
  654. maxValue: null
  655. syncField: null
  656. calcFormula: null
  657. - deviceId: "710022511130021"
  658. deviceName: "车城大道路口"
  659. deviceSn: null
  660. deviceKind: "flow"
  661. platform: "zhonghuan-scada"
  662. mfrs: null
  663. createTime: "2025-11-03 17:45:44"
  664. tags:
  665. - tag: "gw_ccddlk_ssll"
  666. protocol: "json"
  667. measurement: "WaterMeter"
  668. field: "flow_cur"
  669. valueType: "double"
  670. minValue: null
  671. maxValue: null
  672. syncField: null
  673. calcFormula: null
  674. - tag: "gw_ccddlk_zljll"
  675. protocol: "json"
  676. measurement: "WaterMeter"
  677. field: "flow_total_pos"
  678. valueType: "double"
  679. minValue: null
  680. maxValue: null
  681. syncField: null
  682. calcFormula: null
  683. - tag: "gw_ccddlk_fljll"
  684. protocol: "json"
  685. measurement: "WaterMeter"
  686. field: "flow_total_rev"
  687. valueType: "double"
  688. minValue: null
  689. maxValue: null
  690. syncField: null
  691. calcFormula: null
  692. - deviceId: "710022511130022"
  693. deviceName: "富康路泵站"
  694. deviceSn: null
  695. deviceKind: "flow"
  696. platform: "zhonghuan-scada"
  697. mfrs: null
  698. createTime: "2025-11-03 17:45:44"
  699. tags:
  700. - tag: "gw_fklbz_ssll"
  701. protocol: "json"
  702. measurement: "WaterMeter"
  703. field: "flow_cur"
  704. valueType: "double"
  705. minValue: null
  706. maxValue: null
  707. syncField: null
  708. calcFormula: null
  709. - tag: "gw_fklbz_zljll"
  710. protocol: "json"
  711. measurement: "WaterMeter"
  712. field: "flow_total_pos"
  713. valueType: "double"
  714. minValue: null
  715. maxValue: null
  716. syncField: null
  717. calcFormula: null
  718. - tag: "gw_fklbz_fljll"
  719. protocol: "json"
  720. measurement: "WaterMeter"
  721. field: "flow_total_rev"
  722. valueType: "double"
  723. minValue: null
  724. maxValue: null
  725. syncField: null
  726. calcFormula: null
  727. - deviceId: "710022511130023"
  728. deviceName: "凤凰村2组"
  729. deviceSn: null
  730. deviceKind: "flow"
  731. platform: "zhonghuan-scada"
  732. mfrs: null
  733. createTime: "2025-11-03 17:45:44"
  734. tags:
  735. - tag: "gw_fhc_ssll"
  736. protocol: "json"
  737. measurement: "WaterMeter"
  738. field: "flow_cur"
  739. valueType: "double"
  740. minValue: null
  741. maxValue: null
  742. syncField: null
  743. calcFormula: null
  744. - tag: "gw_fhc_zljll"
  745. protocol: "json"
  746. measurement: "WaterMeter"
  747. field: "flow_total_pos"
  748. valueType: "double"
  749. minValue: null
  750. maxValue: null
  751. syncField: null
  752. calcFormula: null
  753. - tag: "gw_fhc_fljll"
  754. protocol: "json"
  755. measurement: "WaterMeter"
  756. field: "flow_total_rev"
  757. valueType: "double"
  758. minValue: null
  759. maxValue: null
  760. syncField: null
  761. calcFormula: null
  762. - deviceId: "710022511130024"
  763. deviceName: "襄阳大道"
  764. deviceSn: null
  765. deviceKind: "flow"
  766. platform: "zhonghuan-scada"
  767. mfrs: null
  768. createTime: "2025-11-03 17:45:44"
  769. tags:
  770. - tag: "gw_xydddn800_ssll"
  771. protocol: "json"
  772. measurement: "WaterMeter"
  773. field: "flow_cur"
  774. valueType: "double"
  775. minValue: null
  776. maxValue: null
  777. syncField: null
  778. calcFormula: null
  779. - tag: "gw_xydddn800_zljll"
  780. protocol: "json"
  781. measurement: "WaterMeter"
  782. field: "flow_total_pos"
  783. valueType: "double"
  784. minValue: null
  785. maxValue: null
  786. syncField: null
  787. calcFormula: null
  788. - tag: "gw_xydddn800_fljll"
  789. protocol: "json"
  790. measurement: "WaterMeter"
  791. field: "flow_total_rev"
  792. valueType: "double"
  793. minValue: null
  794. maxValue: null
  795. syncField: null
  796. calcFormula: null
  797. - deviceId: "710022511130025"
  798. deviceName: "卧龙南路辅路"
  799. deviceSn: null
  800. deviceKind: "flow"
  801. platform: "zhonghuan-scada"
  802. mfrs: null
  803. createTime: "2025-11-03 17:45:44"
  804. tags:
  805. - tag: "gw_wlnl_ssll"
  806. protocol: "json"
  807. measurement: "WaterMeter"
  808. field: "flow_cur"
  809. valueType: "double"
  810. minValue: null
  811. maxValue: null
  812. syncField: null
  813. calcFormula: null
  814. - tag: "gw_wlnl_zljll"
  815. protocol: "json"
  816. measurement: "WaterMeter"
  817. field: "flow_total_pos"
  818. valueType: "double"
  819. minValue: null
  820. maxValue: null
  821. syncField: null
  822. calcFormula: null
  823. - tag: "gw_wlnl_fljll"
  824. protocol: "json"
  825. measurement: "WaterMeter"
  826. field: "flow_total_rev"
  827. valueType: "double"
  828. minValue: null
  829. maxValue: null
  830. syncField: null
  831. calcFormula: null
  832. - deviceId: "710022511130026"
  833. deviceName: "天瞬大道安全岛"
  834. deviceSn: null
  835. deviceKind: "flow"
  836. platform: "zhonghuan-scada"
  837. mfrs: null
  838. createTime: "2025-11-03 17:45:44"
  839. tags:
  840. - tag: "gw_tsddaqd_ssll"
  841. protocol: "json"
  842. measurement: "WaterMeter"
  843. field: "flow_cur"
  844. valueType: "double"
  845. minValue: null
  846. maxValue: null
  847. syncField: null
  848. calcFormula: null
  849. - tag: "gw_tsddaqd_zljll"
  850. protocol: "json"
  851. measurement: "WaterMeter"
  852. field: "flow_total_pos"
  853. valueType: "double"
  854. minValue: null
  855. maxValue: null
  856. syncField: null
  857. calcFormula: null
  858. - tag: "gw_tsddaqd_fljll"
  859. protocol: "json"
  860. measurement: "WaterMeter"
  861. field: "flow_total_rev"
  862. valueType: "double"
  863. minValue: null
  864. maxValue: null
  865. syncField: null
  866. calcFormula: null
  867. - deviceId: "710022511130027"
  868. deviceName: "邓城大道辅路"
  869. deviceSn: null
  870. deviceKind: "flow"
  871. platform: "zhonghuan-scada"
  872. mfrs: null
  873. createTime: "2025-11-03 17:45:44"
  874. tags:
  875. - tag: "gw_dcddfl_ssll"
  876. protocol: "json"
  877. measurement: "WaterMeter"
  878. field: "flow_cur"
  879. valueType: "double"
  880. minValue: null
  881. maxValue: null
  882. syncField: null
  883. calcFormula: null
  884. - tag: "gw_dcddfl_zljll"
  885. protocol: "json"
  886. measurement: "WaterMeter"
  887. field: "flow_total_pos"
  888. valueType: "double"
  889. minValue: null
  890. maxValue: null
  891. syncField: null
  892. calcFormula: null
  893. - tag: "gw_dcddfl_fljll"
  894. protocol: "json"
  895. measurement: "WaterMeter"
  896. field: "flow_total_rev"
  897. valueType: "double"
  898. minValue: null
  899. maxValue: null
  900. syncField: null
  901. calcFormula: null
  902. - deviceId: "710022511130028"
  903. deviceName: "航宇路"
  904. deviceSn: null
  905. deviceKind: "flow"
  906. platform: "zhonghuan-scada"
  907. mfrs: null
  908. createTime: "2025-11-03 17:45:44"
  909. tags:
  910. - tag: "gw_hyl_ssll"
  911. protocol: "json"
  912. measurement: "WaterMeter"
  913. field: "flow_cur"
  914. valueType: "double"
  915. minValue: null
  916. maxValue: null
  917. syncField: null
  918. calcFormula: null
  919. - tag: "gw_hyl_zljll"
  920. protocol: "json"
  921. measurement: "WaterMeter"
  922. field: "flow_total_pos"
  923. valueType: "double"
  924. minValue: null
  925. maxValue: null
  926. syncField: null
  927. calcFormula: null
  928. - tag: "gw_hyl_fljll"
  929. protocol: "json"
  930. measurement: "WaterMeter"
  931. field: "flow_total_rev"
  932. valueType: "double"
  933. minValue: null
  934. maxValue: null
  935. syncField: null
  936. calcFormula: null
  937. - deviceId: "710022511130029"
  938. deviceName: "风茂路"
  939. deviceSn: null
  940. deviceKind: "flow"
  941. platform: "zhonghuan-scada"
  942. mfrs: null
  943. createTime: "2025-11-03 17:45:44"
  944. tags:
  945. - tag: "gw_lgl_ssll"
  946. protocol: "json"
  947. measurement: "WaterMeter"
  948. field: "flow_cur"
  949. valueType: "double"
  950. minValue: null
  951. maxValue: null
  952. syncField: null
  953. calcFormula: null
  954. - tag: "gw_lgl_zljll"
  955. protocol: "json"
  956. measurement: "WaterMeter"
  957. field: "flow_total_pos"
  958. valueType: "double"
  959. minValue: null
  960. maxValue: null
  961. syncField: null
  962. calcFormula: null
  963. - tag: "gw_lgl_fljll"
  964. protocol: "json"
  965. measurement: "WaterMeter"
  966. field: "flow_total_rev"
  967. valueType: "double"
  968. minValue: null
  969. maxValue: null
  970. syncField: null
  971. calcFormula: null
  972. - deviceId: "710022511130030"
  973. deviceName: "龙头桥路"
  974. deviceSn: null
  975. deviceKind: "flow"
  976. platform: "zhonghuan-scada"
  977. mfrs: null
  978. createTime: "2025-11-03 17:45:44"
  979. tags:
  980. - tag: "gw_ltql_ssll"
  981. protocol: "json"
  982. measurement: "WaterMeter"
  983. field: "flow_cur"
  984. valueType: "double"
  985. minValue: null
  986. maxValue: null
  987. syncField: null
  988. calcFormula: null
  989. - tag: "gw_ltql_zljll"
  990. protocol: "json"
  991. measurement: "WaterMeter"
  992. field: "flow_total_pos"
  993. valueType: "double"
  994. minValue: null
  995. maxValue: null
  996. syncField: null
  997. calcFormula: null
  998. - tag: "gw_ltql_fljll"
  999. protocol: "json"
  1000. measurement: "WaterMeter"
  1001. field: "flow_total_rev"
  1002. valueType: "double"
  1003. minValue: null
  1004. maxValue: null
  1005. syncField: null
  1006. calcFormula: null
  1007. - deviceId: "710022511130031"
  1008. deviceName: "大力大道"
  1009. deviceSn: null
  1010. deviceKind: "flow"
  1011. platform: "zhonghuan-scada"
  1012. mfrs: null
  1013. createTime: "2025-11-03 17:45:44"
  1014. tags:
  1015. - tag: "gw_dldd_ssll"
  1016. protocol: "json"
  1017. measurement: "WaterMeter"
  1018. field: "flow_cur"
  1019. valueType: "double"
  1020. minValue: null
  1021. maxValue: null
  1022. syncField: null
  1023. calcFormula: null
  1024. - tag: "gw_dldd_zljll"
  1025. protocol: "json"
  1026. measurement: "WaterMeter"
  1027. field: "flow_total_pos"
  1028. valueType: "double"
  1029. minValue: null
  1030. maxValue: null
  1031. syncField: null
  1032. calcFormula: null
  1033. - tag: "gw_dldd_fljll"
  1034. protocol: "json"
  1035. measurement: "WaterMeter"
  1036. field: "flow_total_rev"
  1037. valueType: "double"
  1038. minValue: null
  1039. maxValue: null
  1040. syncField: null
  1041. calcFormula: null
  1042. - deviceId: "710022511130032"
  1043. deviceName: "鏖战岗路辅路"
  1044. deviceSn: null
  1045. deviceKind: "flow"
  1046. platform: "zhonghuan-scada"
  1047. mfrs: null
  1048. createTime: "2025-11-03 17:45:44"
  1049. tags:
  1050. - tag: "gw_azg_ssll"
  1051. protocol: "json"
  1052. measurement: "WaterMeter"
  1053. field: "flow_cur"
  1054. valueType: "double"
  1055. minValue: null
  1056. maxValue: null
  1057. syncField: null
  1058. calcFormula: null
  1059. - tag: "gw_azg_zljll"
  1060. protocol: "json"
  1061. measurement: "WaterMeter"
  1062. field: "flow_total_pos"
  1063. valueType: "double"
  1064. minValue: null
  1065. maxValue: null
  1066. syncField: null
  1067. calcFormula: null
  1068. - tag: "gw_azg_fljll"
  1069. protocol: "json"
  1070. measurement: "WaterMeter"
  1071. field: "flow_total_rev"
  1072. valueType: "double"
  1073. minValue: null
  1074. maxValue: null
  1075. syncField: null
  1076. calcFormula: null
  1077. - deviceId: "710022511130033"
  1078. deviceName: "虎头山冲路"
  1079. deviceSn: null
  1080. deviceKind: "flow"
  1081. platform: "zhonghuan-scada"
  1082. mfrs: null
  1083. createTime: "2025-11-03 17:45:44"
  1084. tags:
  1085. - tag: "gw_htsl_ssll"
  1086. protocol: "json"
  1087. measurement: "WaterMeter"
  1088. field: "flow_cur"
  1089. valueType: "double"
  1090. minValue: null
  1091. maxValue: null
  1092. syncField: null
  1093. calcFormula: null
  1094. - tag: "gw_htsl_zljll"
  1095. protocol: "json"
  1096. measurement: "WaterMeter"
  1097. field: "flow_total_pos"
  1098. valueType: "double"
  1099. minValue: null
  1100. maxValue: null
  1101. syncField: null
  1102. calcFormula: null
  1103. - tag: "gw_htsl_fljll"
  1104. protocol: "json"
  1105. measurement: "WaterMeter"
  1106. field: "flow_total_rev"
  1107. valueType: "double"
  1108. minValue: null
  1109. maxValue: null
  1110. syncField: null
  1111. calcFormula: null
  1112. - deviceId: "710022511130034"
  1113. deviceName: "深圳工业园泵站DN600"
  1114. deviceSn: null
  1115. deviceKind: "flow"
  1116. platform: "zhonghuan-scada"
  1117. mfrs: null
  1118. createTime: "2025-11-03 17:45:44"
  1119. tags:
  1120. - tag: "szgyl_ssll_dn600"
  1121. protocol: "json"
  1122. measurement: "WaterMeter"
  1123. field: "flow_cur"
  1124. valueType: "double"
  1125. minValue: null
  1126. maxValue: null
  1127. syncField: null
  1128. calcFormula: null
  1129. - tag: "szgyl_ljll_dn600"
  1130. protocol: "json"
  1131. measurement: "WaterMeter"
  1132. field: "flow_total_pos"
  1133. valueType: "double"
  1134. minValue: null
  1135. maxValue: null
  1136. syncField: null
  1137. calcFormula: null
  1138. - deviceId: "710022511130035"
  1139. deviceName: "深圳工业园泵站DN400"
  1140. deviceSn: null
  1141. deviceKind: "flow"
  1142. platform: "zhonghuan-scada"
  1143. mfrs: null
  1144. createTime: "2025-11-03 17:45:44"
  1145. tags:
  1146. - tag: "szgyl_ssll_dn400"
  1147. protocol: "json"
  1148. measurement: "WaterMeter"
  1149. field: "flow_cur"
  1150. valueType: "double"
  1151. minValue: null
  1152. maxValue: null
  1153. syncField: null
  1154. calcFormula: null
  1155. - tag: "szgyl_ljll_dn400"
  1156. protocol: "json"
  1157. measurement: "WaterMeter"
  1158. field: "flow_total_pos"
  1159. valueType: "double"
  1160. minValue: null
  1161. maxValue: null
  1162. syncField: null
  1163. calcFormula: null
  1164. - deviceId: "710022511130036"
  1165. deviceName: "襄州大道"
  1166. deviceSn: null
  1167. deviceKind: "flow"
  1168. platform: "zhonghuan-scada"
  1169. mfrs: null
  1170. createTime: "2025-11-03 17:45:44"
  1171. tags:
  1172. - tag: "w_xzdddn400_ssll"
  1173. protocol: "json"
  1174. measurement: "WaterMeter"
  1175. field: "flow_cur"
  1176. valueType: "double"
  1177. minValue: null
  1178. maxValue: null
  1179. syncField: null
  1180. calcFormula: null
  1181. - tag: "gw_xzdddn400_zljll"
  1182. protocol: "json"
  1183. measurement: "WaterMeter"
  1184. field: "flow_total_pos"
  1185. valueType: "double"
  1186. minValue: null
  1187. maxValue: null
  1188. syncField: null
  1189. calcFormula: null
  1190. - tag: "gw_xzdddn400_fljll"
  1191. protocol: "json"
  1192. measurement: "WaterMeter"
  1193. field: "flow_total_rev"
  1194. valueType: "double"
  1195. minValue: null
  1196. maxValue: null
  1197. syncField: null
  1198. calcFormula: null
  1199. - deviceId: "710022511130037"
  1200. deviceName: "云湾锐莱-进口"
  1201. deviceSn: null
  1202. deviceKind: "flow"
  1203. platform: "zhonghuan-scada"
  1204. mfrs: null
  1205. createTime: "2025-11-03 17:45:44"
  1206. tags:
  1207. - tag: "yw_jkssll"
  1208. protocol: "json"
  1209. measurement: "WaterMeter"
  1210. field: "flow_cur"
  1211. valueType: "double"
  1212. minValue: null
  1213. maxValue: null
  1214. syncField: null
  1215. calcFormula: null
  1216. - tag: "yw_jkljll"
  1217. protocol: "json"
  1218. measurement: "WaterMeter"
  1219. field: "flow_total_pos"
  1220. valueType: "double"
  1221. minValue: null
  1222. maxValue: null
  1223. syncField: null
  1224. calcFormula: null
  1225. - deviceId: "710022511130038"
  1226. deviceName: "云湾锐莱-出口"
  1227. deviceSn: null
  1228. deviceKind: "flow"
  1229. platform: "zhonghuan-scada"
  1230. mfrs: null
  1231. createTime: "2025-11-03 17:45:44"
  1232. tags:
  1233. - tag: "yw_ckssll"
  1234. protocol: "json"
  1235. measurement: "WaterMeter"
  1236. field: "flow_cur"
  1237. valueType: "double"
  1238. minValue: null
  1239. maxValue: null
  1240. syncField: null
  1241. calcFormula: null
  1242. - tag: "yw_ckljll"
  1243. protocol: "json"
  1244. measurement: "WaterMeter"
  1245. field: "flow_total_pos"
  1246. valueType: "double"
  1247. minValue: null
  1248. maxValue: null
  1249. syncField: null
  1250. calcFormula: null
  1251. - deviceId: "710022511130039"
  1252. deviceName: "奔驰大道智慧泵站"
  1253. deviceSn: null
  1254. deviceKind: "flow"
  1255. platform: "zhonghuan-scada"
  1256. mfrs: null
  1257. createTime: "2025-11-03 17:45:44"
  1258. tags:
  1259. - tag: "奔驰大道瞬时流量"
  1260. protocol: "json"
  1261. measurement: "WaterMeter"
  1262. field: "flow_cur"
  1263. valueType: "double"
  1264. minValue: null
  1265. maxValue: null
  1266. syncField: null
  1267. calcFormula: null
  1268. - tag: "奔驰大道累计流量"
  1269. protocol: "json"
  1270. measurement: "WaterMeter"
  1271. field: "flow_total_pos"
  1272. valueType: "double"
  1273. minValue: null
  1274. maxValue: null
  1275. syncField: null
  1276. calcFormula: null
  1277. - deviceId: "710022511130040"
  1278. deviceName: "中南路中豪市场"
  1279. deviceSn: null
  1280. deviceKind: "flow"
  1281. platform: "zhonghuan-scada"
  1282. mfrs: null
  1283. createTime: "2025-11-03 17:45:44"
  1284. tags:
  1285. - tag: "gw_zhlznsc_瞬时流量"
  1286. protocol: "json"
  1287. measurement: "WaterMeter"
  1288. field: "flow_cur"
  1289. valueType: "double"
  1290. minValue: null
  1291. maxValue: null
  1292. syncField: null
  1293. calcFormula: null
  1294. - tag: "gw_zhlznsc_累计流量"
  1295. protocol: "json"
  1296. measurement: "WaterMeter"
  1297. field: "flow_total_pos"
  1298. valueType: "double"
  1299. minValue: null
  1300. maxValue: null
  1301. syncField: null
  1302. calcFormula: null
  1303. - deviceId: "710022511130041"
  1304. deviceName: "中豪物流大道"
  1305. deviceSn: null
  1306. deviceKind: "flow"
  1307. platform: "zhonghuan-scada"
  1308. mfrs: null
  1309. createTime: "2025-11-03 17:45:44"
  1310. tags:
  1311. - tag: "gw_zhwldd__瞬时流量"
  1312. protocol: "json"
  1313. measurement: "WaterMeter"
  1314. field: "flow_cur"
  1315. valueType: "double"
  1316. minValue: null
  1317. maxValue: null
  1318. syncField: null
  1319. calcFormula: null
  1320. - tag: "gw_zhwldd__累计流量"
  1321. protocol: "json"
  1322. measurement: "WaterMeter"
  1323. field: "flow_total_pos"
  1324. valueType: "double"
  1325. minValue: null
  1326. maxValue: null
  1327. syncField: null
  1328. calcFormula: null
  1329. - deviceId: "710022511130042"
  1330. deviceName: "鱼梁洲桥头"
  1331. deviceSn: null
  1332. deviceKind: "flow"
  1333. platform: "zhonghuan-scada"
  1334. mfrs: null
  1335. createTime: "2025-11-03 17:45:44"
  1336. tags:
  1337. - tag: "gw_ylzqt_瞬时流量"
  1338. protocol: "json"
  1339. measurement: "WaterMeter"
  1340. field: "flow_cur"
  1341. valueType: "double"
  1342. minValue: null
  1343. maxValue: null
  1344. syncField: null
  1345. calcFormula: null
  1346. - tag: "gw_ylzqt_累计流量"
  1347. protocol: "json"
  1348. measurement: "WaterMeter"
  1349. field: "flow_total_pos"
  1350. valueType: "double"
  1351. minValue: null
  1352. maxValue: null
  1353. syncField: null
  1354. calcFormula: null
  1355. - deviceId: "710022511130043"
  1356. deviceName: "余家湖泵站"
  1357. deviceSn: null
  1358. deviceKind: "flow"
  1359. platform: "zhonghuan-scada"
  1360. mfrs: null
  1361. createTime: "2025-11-03 17:45:44"
  1362. tags:
  1363. - tag: "gw_yjh__瞬时流量"
  1364. protocol: "json"
  1365. measurement: "WaterMeter"
  1366. field: "flow_cur"
  1367. valueType: "double"
  1368. minValue: null
  1369. maxValue: null
  1370. syncField: null
  1371. calcFormula: null
  1372. - tag: "gw_yjh__累计流量"
  1373. protocol: "json"
  1374. measurement: "WaterMeter"
  1375. field: "flow_total_pos"
  1376. valueType: "double"
  1377. minValue: null
  1378. maxValue: null
  1379. syncField: null
  1380. calcFormula: null
  1381. - deviceId: "710022511130044"
  1382. deviceName: "尹集新设备"
  1383. deviceSn: null
  1384. deviceKind: "flow"
  1385. platform: "zhonghuan-scada"
  1386. mfrs: null
  1387. createTime: "2025-11-03 17:45:44"
  1388. tags:
  1389. - tag: "gw_yjxsb__瞬时流量"
  1390. protocol: "json"
  1391. measurement: "WaterMeter"
  1392. field: "flow_cur"
  1393. valueType: "double"
  1394. minValue: null
  1395. maxValue: null
  1396. syncField: null
  1397. calcFormula: null
  1398. - tag: "gw_yjxsb__累计流量"
  1399. protocol: "json"
  1400. measurement: "WaterMeter"
  1401. field: "flow_total_pos"
  1402. valueType: "double"
  1403. minValue: null
  1404. maxValue: null
  1405. syncField: null
  1406. calcFormula: null
  1407. - deviceId: "710022511130045"
  1408. deviceName: "尹集泵站"
  1409. deviceSn: null
  1410. deviceKind: "flow"
  1411. platform: "zhonghuan-scada"
  1412. mfrs: null
  1413. createTime: "2025-11-03 17:45:44"
  1414. tags:
  1415. - tag: "gw_yjbz_瞬时流量"
  1416. protocol: "json"
  1417. measurement: "WaterMeter"
  1418. field: "flow_cur"
  1419. valueType: "double"
  1420. minValue: null
  1421. maxValue: null
  1422. syncField: null
  1423. calcFormula: null
  1424. - tag: "gw_yjbz_累计流量"
  1425. protocol: "json"
  1426. measurement: "WaterMeter"
  1427. field: "flow_total_pos"
  1428. valueType: "double"
  1429. minValue: null
  1430. maxValue: null
  1431. syncField: null
  1432. calcFormula: null
  1433. - deviceId: "710022511130046"
  1434. deviceName: "尹集DN300"
  1435. deviceSn: null
  1436. deviceKind: "flow"
  1437. platform: "zhonghuan-scada"
  1438. mfrs: null
  1439. createTime: "2025-11-03 17:45:44"
  1440. tags:
  1441. - tag: "gw_yjxz_瞬时流量1"
  1442. protocol: "json"
  1443. measurement: "WaterMeter"
  1444. field: "flow_cur"
  1445. valueType: "double"
  1446. minValue: null
  1447. maxValue: null
  1448. syncField: null
  1449. calcFormula: null
  1450. - tag: "gw_yjxz_累计流量1"
  1451. protocol: "json"
  1452. measurement: "WaterMeter"
  1453. field: "flow_total_pos"
  1454. valueType: "double"
  1455. minValue: null
  1456. maxValue: null
  1457. syncField: null
  1458. calcFormula: null
  1459. - deviceId: "710022511130047"
  1460. deviceName: "吾悦广场"
  1461. deviceSn: null
  1462. deviceKind: "flow"
  1463. platform: "zhonghuan-scada"
  1464. mfrs: null
  1465. createTime: "2025-11-03 17:45:44"
  1466. tags:
  1467. - tag: "gw_wygc_瞬时流量"
  1468. protocol: "json"
  1469. measurement: "WaterMeter"
  1470. field: "flow_cur"
  1471. valueType: "double"
  1472. minValue: null
  1473. maxValue: null
  1474. syncField: null
  1475. calcFormula: null
  1476. - tag: "gw_wygc_累计流量"
  1477. protocol: "json"
  1478. measurement: "WaterMeter"
  1479. field: "flow_total_pos"
  1480. valueType: "double"
  1481. minValue: null
  1482. maxValue: null
  1483. syncField: null
  1484. calcFormula: null
  1485. - deviceId: "710022511130048"
  1486. deviceName: "卧龙新测点"
  1487. deviceSn: null
  1488. deviceKind: "flow"
  1489. platform: "zhonghuan-scada"
  1490. mfrs: null
  1491. createTime: "2025-11-03 17:45:44"
  1492. tags:
  1493. - tag: "gw_wlxcd_瞬时流量"
  1494. protocol: "json"
  1495. measurement: "WaterMeter"
  1496. field: "flow_cur"
  1497. valueType: "double"
  1498. minValue: null
  1499. maxValue: null
  1500. syncField: null
  1501. calcFormula: null
  1502. - tag: "gw_wlxcd_累计流量"
  1503. protocol: "json"
  1504. measurement: "WaterMeter"
  1505. field: "flow_total_pos"
  1506. valueType: "double"
  1507. minValue: null
  1508. maxValue: null
  1509. syncField: null
  1510. calcFormula: null
  1511. - deviceId: "710022511130049"
  1512. deviceName: "汤店水厂"
  1513. deviceSn: null
  1514. deviceKind: "flow"
  1515. platform: "zhonghuan-scada"
  1516. mfrs: null
  1517. createTime: "2025-11-03 17:45:44"
  1518. tags:
  1519. - tag: "gw_tdsc1_瞬时流量"
  1520. protocol: "json"
  1521. measurement: "WaterMeter"
  1522. field: "flow_cur"
  1523. valueType: "double"
  1524. minValue: null
  1525. maxValue: null
  1526. syncField: null
  1527. calcFormula: null
  1528. - tag: "gw_tdsc1_正累计流量"
  1529. protocol: "json"
  1530. measurement: "WaterMeter"
  1531. field: "flow_total_pos"
  1532. valueType: "double"
  1533. minValue: null
  1534. maxValue: null
  1535. syncField: null
  1536. calcFormula: null
  1537. - tag: "gw_tdsc1_负累计流量"
  1538. protocol: "json"
  1539. measurement: "WaterMeter"
  1540. field: "flow_total_rev"
  1541. valueType: "double"
  1542. minValue: null
  1543. maxValue: null
  1544. syncField: null
  1545. calcFormula: null
  1546. - deviceId: "710022511130050"
  1547. deviceName: "檀溪卧龙方向"
  1548. deviceSn: null
  1549. deviceKind: "flow"
  1550. platform: "zhonghuan-scada"
  1551. mfrs: null
  1552. createTime: "2025-11-03 17:45:44"
  1553. tags:
  1554. - tag: "gw_txwllj__瞬时流量"
  1555. protocol: "json"
  1556. measurement: "WaterMeter"
  1557. field: "flow_cur"
  1558. valueType: "double"
  1559. minValue: null
  1560. maxValue: null
  1561. syncField: null
  1562. calcFormula: null
  1563. - tag: "gw_txwllj__累计流量"
  1564. protocol: "json"
  1565. measurement: "WaterMeter"
  1566. field: "flow_total_pos"
  1567. valueType: "double"
  1568. minValue: null
  1569. maxValue: null
  1570. syncField: null
  1571. calcFormula: null
  1572. - deviceId: "710022511130051"
  1573. deviceName: "檀溪泵站2"
  1574. deviceSn: null
  1575. deviceKind: "flow"
  1576. platform: "zhonghuan-scada"
  1577. mfrs: null
  1578. createTime: "2025-11-03 17:45:44"
  1579. tags:
  1580. - tag: "gw_txbz2__瞬时流量"
  1581. protocol: "json"
  1582. measurement: "WaterMeter"
  1583. field: "flow_cur"
  1584. valueType: "double"
  1585. minValue: null
  1586. maxValue: null
  1587. syncField: null
  1588. calcFormula: null
  1589. - tag: "gw_txbz2__累计流量"
  1590. protocol: "json"
  1591. measurement: "WaterMeter"
  1592. field: "flow_total_pos"
  1593. valueType: "double"
  1594. minValue: null
  1595. maxValue: null
  1596. syncField: null
  1597. calcFormula: null
  1598. - deviceId: "710022511130052"
  1599. deviceName: "裘家沟泵站"
  1600. deviceSn: null
  1601. deviceKind: "flow"
  1602. platform: "zhonghuan-scada"
  1603. mfrs: null
  1604. createTime: "2025-11-03 17:45:44"
  1605. tags:
  1606. - tag: "gw_qjg_瞬时流量"
  1607. protocol: "json"
  1608. measurement: "WaterMeter"
  1609. field: "flow_cur"
  1610. valueType: "double"
  1611. minValue: null
  1612. maxValue: null
  1613. syncField: null
  1614. calcFormula: null
  1615. - tag: "gw_qjg_累计流量"
  1616. protocol: "json"
  1617. measurement: "WaterMeter"
  1618. field: "flow_total_pos"
  1619. valueType: "double"
  1620. minValue: null
  1621. maxValue: null
  1622. syncField: null
  1623. calcFormula: null
  1624. - deviceId: "710022511130053"
  1625. deviceName: "清河一桥襄州桥头"
  1626. deviceSn: null
  1627. deviceKind: "flow"
  1628. platform: "zhonghuan-scada"
  1629. mfrs: null
  1630. createTime: "2025-11-03 17:45:44"
  1631. tags:
  1632. - tag: "gw_qhyqxz_瞬时流量"
  1633. protocol: "json"
  1634. measurement: "WaterMeter"
  1635. field: "flow_cur"
  1636. valueType: "double"
  1637. minValue: null
  1638. maxValue: null
  1639. syncField: null
  1640. calcFormula: null
  1641. - tag: "gw_qhyqxz_累计流量"
  1642. protocol: "json"
  1643. measurement: "WaterMeter"
  1644. field: "flow_total_pos"
  1645. valueType: "double"
  1646. minValue: null
  1647. maxValue: null
  1648. syncField: null
  1649. calcFormula: null
  1650. - deviceId: "710022511130054"
  1651. deviceName: "唐白河东津桥头"
  1652. deviceSn: null
  1653. deviceKind: "flow"
  1654. platform: "zhonghuan-scada"
  1655. mfrs: null
  1656. createTime: "2025-11-03 17:45:44"
  1657. tags:
  1658. - tag: "gw_tbh_瞬时流量"
  1659. protocol: "json"
  1660. measurement: "WaterMeter"
  1661. field: "flow_cur"
  1662. valueType: "double"
  1663. minValue: null
  1664. maxValue: null
  1665. syncField: null
  1666. calcFormula: null
  1667. - tag: "gw_tbh_累计流量"
  1668. protocol: "json"
  1669. measurement: "WaterMeter"
  1670. field: "flow_total_pos"
  1671. valueType: "double"
  1672. minValue: null
  1673. maxValue: null
  1674. syncField: null
  1675. calcFormula: null
  1676. - deviceId: "710022511130055"
  1677. deviceName: "黄家湾"
  1678. deviceSn: null
  1679. deviceKind: "flow"
  1680. platform: "zhonghuan-scada"
  1681. mfrs: null
  1682. createTime: "2025-11-03 17:45:44"
  1683. tags:
  1684. - tag: "gw_hjw_瞬时流量"
  1685. protocol: "json"
  1686. measurement: "WaterMeter"
  1687. field: "flow_cur"
  1688. valueType: "double"
  1689. minValue: null
  1690. maxValue: null
  1691. syncField: null
  1692. calcFormula: null
  1693. - tag: "gw_hjw_累计流量"
  1694. protocol: "json"
  1695. measurement: "WaterMeter"
  1696. field: "flow_total_pos"
  1697. valueType: "double"
  1698. minValue: null
  1699. maxValue: null
  1700. syncField: null
  1701. calcFormula: null
  1702. - deviceId: "710022511130056"
  1703. deviceName: "东津生态城"
  1704. deviceSn: null
  1705. deviceKind: "flow"
  1706. platform: "zhonghuan-scada"
  1707. mfrs: null
  1708. createTime: "2025-11-03 17:45:44"
  1709. tags:
  1710. - tag: "gw_djsct_瞬时流量"
  1711. protocol: "json"
  1712. measurement: "WaterMeter"
  1713. field: "flow_cur"
  1714. valueType: "double"
  1715. minValue: null
  1716. maxValue: null
  1717. syncField: null
  1718. calcFormula: null
  1719. - tag: "gw_djsct_累计流量"
  1720. protocol: "json"
  1721. measurement: "WaterMeter"
  1722. field: "flow_total_pos"
  1723. valueType: "double"
  1724. minValue: null
  1725. maxValue: null
  1726. syncField: null
  1727. calcFormula: null
  1728. - tag: "gw_djsct_负累计流量"
  1729. protocol: "json"
  1730. measurement: "WaterMeter"
  1731. field: "flow_total_rev"
  1732. valueType: "double"
  1733. minValue: null
  1734. maxValue: null
  1735. syncField: null
  1736. calcFormula: null
  1737. - deviceId: "710022511130057"
  1738. deviceName: "车城南路"
  1739. deviceSn: null
  1740. deviceKind: "flow"
  1741. platform: "zhonghuan-scada"
  1742. mfrs: null
  1743. createTime: "2025-11-03 17:45:44"
  1744. tags:
  1745. - tag: "gw_ccnl__瞬时流量"
  1746. protocol: "json"
  1747. measurement: "WaterMeter"
  1748. field: "flow_cur"
  1749. valueType: "double"
  1750. minValue: null
  1751. maxValue: null
  1752. syncField: null
  1753. calcFormula: null
  1754. - tag: "gw_ccnl__正累计"
  1755. protocol: "json"
  1756. measurement: "WaterMeter"
  1757. field: "flow_total_pos"
  1758. valueType: "double"
  1759. minValue: null
  1760. maxValue: null
  1761. syncField: null
  1762. calcFormula: null
  1763. - tag: "gw_ccnl__负流量"
  1764. protocol: "json"
  1765. measurement: "WaterMeter"
  1766. field: "flow_total_rev"
  1767. valueType: "double"
  1768. minValue: null
  1769. maxValue: null
  1770. syncField: null
  1771. calcFormula: null
  1772. - tag: "gw_ccnl__净累计"
  1773. protocol: "json"
  1774. measurement: "WaterMeter"
  1775. field: "flow_total_net"
  1776. valueType: "double"
  1777. minValue: null
  1778. maxValue: null
  1779. syncField: null
  1780. calcFormula: null
  1781. - deviceId: "710032511130001"
  1782. deviceName: "云湾泵站"
  1783. deviceSn: null
  1784. deviceKind: "press"
  1785. platform: "zhonghuan-scada"
  1786. mfrs: null
  1787. createTime: "2025-11-03 17:45:44"
  1788. tags:
  1789. - tag: "sc_ywbz_yl"
  1790. protocol: "json"
  1791. measurement: "WaterMeter"
  1792. field: "press_cur"
  1793. valueType: "double"
  1794. minValue: null
  1795. maxValue: null
  1796. syncField: null
  1797. calcFormula: null
  1798. - deviceId: "710032511130002"
  1799. deviceName: "云湾泵站-进口"
  1800. deviceSn: null
  1801. deviceKind: "press"
  1802. platform: "zhonghuan-scada"
  1803. mfrs: null
  1804. createTime: "2025-11-03 17:45:44"
  1805. tags:
  1806. - tag: "sc_ywbz_jkyl"
  1807. protocol: "json"
  1808. measurement: "WaterMeter"
  1809. field: "press_cur"
  1810. valueType: "double"
  1811. minValue: null
  1812. maxValue: null
  1813. syncField: null
  1814. calcFormula: null
  1815. - deviceId: "710032511130003"
  1816. deviceName: "云湾泵站-出口"
  1817. deviceSn: null
  1818. deviceKind: "press"
  1819. platform: "zhonghuan-scada"
  1820. mfrs: null
  1821. createTime: "2025-11-03 17:45:44"
  1822. tags:
  1823. - tag: "sc_ywbz_ckyl"
  1824. protocol: "json"
  1825. measurement: "WaterMeter"
  1826. field: "press_cur"
  1827. valueType: "double"
  1828. minValue: null
  1829. maxValue: null
  1830. syncField: null
  1831. calcFormula: null
  1832. - deviceId: "710032511130004"
  1833. deviceName: "檀溪泵站-进口"
  1834. deviceSn: null
  1835. deviceKind: "press"
  1836. platform: "zhonghuan-scada"
  1837. mfrs: null
  1838. createTime: "2025-11-03 17:45:44"
  1839. tags:
  1840. - tag: "sc_txbz_jkyl"
  1841. protocol: "json"
  1842. measurement: "WaterMeter"
  1843. field: "press_cur"
  1844. valueType: "double"
  1845. minValue: null
  1846. maxValue: null
  1847. syncField: null
  1848. calcFormula: null
  1849. - deviceId: "710032511130005"
  1850. deviceName: "檀溪泵站-卧龙出口"
  1851. deviceSn: null
  1852. deviceKind: "press"
  1853. platform: "zhonghuan-scada"
  1854. mfrs: null
  1855. createTime: "2025-11-03 17:45:44"
  1856. tags:
  1857. - tag: "sc_txbz_wlyl"
  1858. protocol: "json"
  1859. measurement: "WaterMeter"
  1860. field: "press_cur"
  1861. valueType: "double"
  1862. minValue: null
  1863. maxValue: null
  1864. syncField: null
  1865. calcFormula: null
  1866. - deviceId: "710032511130006"
  1867. deviceName: "檀溪泵站-尹集出口"
  1868. deviceSn: null
  1869. deviceKind: "press"
  1870. platform: "zhonghuan-scada"
  1871. mfrs: null
  1872. createTime: "2025-11-03 17:45:44"
  1873. tags:
  1874. - tag: "sc_txbz_yjyl"
  1875. protocol: "json"
  1876. measurement: "WaterMeter"
  1877. field: "press_cur"
  1878. valueType: "double"
  1879. minValue: null
  1880. maxValue: null
  1881. syncField: null
  1882. calcFormula: null
  1883. - deviceId: "710032511130007"
  1884. deviceName: "机场路与奔驰大道"
  1885. deviceSn: null
  1886. deviceKind: "press"
  1887. platform: "zhonghuan-scada"
  1888. mfrs: null
  1889. createTime: "2025-11-03 17:45:44"
  1890. tags:
  1891. - tag: "gw_jclybcdd_yl"
  1892. protocol: "json"
  1893. measurement: "WaterMeter"
  1894. field: "press_cur"
  1895. valueType: "double"
  1896. minValue: null
  1897. maxValue: null
  1898. syncField: null
  1899. calcFormula: null
  1900. - deviceId: "710032511130008"
  1901. deviceName: "嘉悦城-进口"
  1902. deviceSn: null
  1903. deviceKind: "press"
  1904. platform: "zhonghuan-scada"
  1905. mfrs: null
  1906. createTime: "2025-11-03 17:45:44"
  1907. tags:
  1908. - tag: "gw_jyc"
  1909. protocol: "json"
  1910. measurement: "WaterMeter"
  1911. field: "press_cur"
  1912. valueType: "double"
  1913. minValue: null
  1914. maxValue: null
  1915. syncField: null
  1916. calcFormula: null
  1917. - deviceId: "710032511130009"
  1918. deviceName: "嘉悦城-出口"
  1919. deviceSn: null
  1920. deviceKind: "press"
  1921. platform: "zhonghuan-scada"
  1922. mfrs: null
  1923. createTime: "2025-11-03 17:45:44"
  1924. tags:
  1925. - tag: "gw_jyc_ckyl"
  1926. protocol: "json"
  1927. measurement: "WaterMeter"
  1928. field: "press_cur"
  1929. valueType: "double"
  1930. minValue: null
  1931. maxValue: null
  1932. syncField: null
  1933. calcFormula: null
  1934. - deviceId: "710032511130010"
  1935. deviceName: "奔驰大道智慧泵站"
  1936. deviceSn: null
  1937. deviceKind: "press"
  1938. platform: "zhonghuan-scada"
  1939. mfrs: null
  1940. createTime: "2025-11-03 17:45:44"
  1941. tags:
  1942. - tag: "奔驰大道设定压力"
  1943. protocol: "json"
  1944. measurement: "WaterMeter"
  1945. field: "press_cur"
  1946. valueType: "double"
  1947. minValue: null
  1948. maxValue: null
  1949. syncField: null
  1950. calcFormula: null
  1951. - deviceId: "710032511130011"
  1952. deviceName: "奔驰大道智慧泵站-进口"
  1953. deviceSn: null
  1954. deviceKind: "press"
  1955. platform: "zhonghuan-scada"
  1956. mfrs: null
  1957. createTime: "2025-11-03 17:45:44"
  1958. tags:
  1959. - tag: "奔驰大道进口压力"
  1960. protocol: "json"
  1961. measurement: "WaterMeter"
  1962. field: "press_cur"
  1963. valueType: "double"
  1964. minValue: null
  1965. maxValue: null
  1966. syncField: null
  1967. calcFormula: null
  1968. - deviceId: "710032511130012"
  1969. deviceName: "奔驰大道智慧泵站-出口"
  1970. deviceSn: null
  1971. deviceKind: "press"
  1972. platform: "zhonghuan-scada"
  1973. mfrs: null
  1974. createTime: "2025-11-03 17:45:44"
  1975. tags:
  1976. - tag: "奔驰大道出口压力"
  1977. protocol: "json"
  1978. measurement: "WaterMeter"
  1979. field: "press_cur"
  1980. valueType: "double"
  1981. minValue: null
  1982. maxValue: null
  1983. syncField: null
  1984. calcFormula: null
  1985. - deviceId: "710032511130013"
  1986. deviceName: "中原路与航宇路交叉口"
  1987. deviceSn: null
  1988. deviceKind: "press"
  1989. platform: "zhonghuan-scada"
  1990. mfrs: null
  1991. createTime: "2025-11-03 17:45:44"
  1992. tags:
  1993. - tag: "gw_zylyhyljck_压力"
  1994. protocol: "json"
  1995. measurement: "WaterMeter"
  1996. field: "press_cur"
  1997. valueType: "double"
  1998. minValue: null
  1999. maxValue: null
  2000. syncField: null
  2001. calcFormula: null
  2002. - tag: "gw_zylyhyljck_电压"
  2003. protocol: "json"
  2004. measurement: "WaterMeter"
  2005. field: "battery_voltage"
  2006. valueType: "double"
  2007. minValue: null
  2008. maxValue: null
  2009. syncField: null
  2010. calcFormula: null
  2011. - deviceId: "710032511130014"
  2012. deviceName: "中医院"
  2013. deviceSn: null
  2014. deviceKind: "press"
  2015. platform: "zhonghuan-scada"
  2016. mfrs: null
  2017. createTime: "2025-11-03 17:45:44"
  2018. tags:
  2019. - tag: "gw_zyy_压力"
  2020. protocol: "json"
  2021. measurement: "WaterMeter"
  2022. field: "press_cur"
  2023. valueType: "double"
  2024. minValue: null
  2025. maxValue: null
  2026. syncField: null
  2027. calcFormula: null
  2028. - tag: "gw_zyy_电压"
  2029. protocol: "json"
  2030. measurement: "WaterMeter"
  2031. field: "battery_voltage"
  2032. valueType: "double"
  2033. minValue: null
  2034. maxValue: null
  2035. syncField: null
  2036. calcFormula: null
  2037. - deviceId: "710032511130015"
  2038. deviceName: "中心医院东津院区"
  2039. deviceSn: null
  2040. deviceKind: "press"
  2041. platform: "zhonghuan-scada"
  2042. mfrs: null
  2043. createTime: "2025-11-03 17:45:44"
  2044. tags:
  2045. - tag: "gw_zxyydjsq_压力"
  2046. protocol: "json"
  2047. measurement: "WaterMeter"
  2048. field: "press_cur"
  2049. valueType: "double"
  2050. minValue: null
  2051. maxValue: null
  2052. syncField: null
  2053. calcFormula: null
  2054. - tag: "gw_zxyydjsq_电压"
  2055. protocol: "json"
  2056. measurement: "WaterMeter"
  2057. field: "battery_voltage"
  2058. valueType: "double"
  2059. minValue: null
  2060. maxValue: null
  2061. syncField: null
  2062. calcFormula: null
  2063. - deviceId: "710032511130016"
  2064. deviceName: "中南路中豪市场"
  2065. deviceSn: null
  2066. deviceKind: "press"
  2067. platform: "zhonghuan-scada"
  2068. mfrs: null
  2069. createTime: "2025-11-03 17:45:44"
  2070. tags:
  2071. - tag: "gw_zhlznsc_压力"
  2072. protocol: "json"
  2073. measurement: "WaterMeter"
  2074. field: "press_cur"
  2075. valueType: "double"
  2076. minValue: null
  2077. maxValue: null
  2078. syncField: null
  2079. calcFormula: null
  2080. - tag: "gw_zhlznsc_电压"
  2081. protocol: "json"
  2082. measurement: "WaterMeter"
  2083. field: "battery_voltage"
  2084. valueType: "double"
  2085. minValue: null
  2086. maxValue: null
  2087. syncField: null
  2088. calcFormula: null
  2089. - deviceId: "710032511130017"
  2090. deviceName: "中豪物流大道"
  2091. deviceSn: null
  2092. deviceKind: "press"
  2093. platform: "zhonghuan-scada"
  2094. mfrs: null
  2095. createTime: "2025-11-03 17:45:44"
  2096. tags:
  2097. - tag: "gw_zhwldd__压力"
  2098. protocol: "json"
  2099. measurement: "WaterMeter"
  2100. field: "press_cur"
  2101. valueType: "double"
  2102. minValue: null
  2103. maxValue: null
  2104. syncField: null
  2105. calcFormula: null
  2106. - tag: "gw_zhwldd__电压"
  2107. protocol: "json"
  2108. measurement: "WaterMeter"
  2109. field: "battery_voltage"
  2110. valueType: "double"
  2111. minValue: null
  2112. maxValue: null
  2113. syncField: null
  2114. calcFormula: null
  2115. - deviceId: "710032511130018"
  2116. deviceName: "鱼梁洲桥头"
  2117. deviceSn: null
  2118. deviceKind: "press"
  2119. platform: "zhonghuan-scada"
  2120. mfrs: null
  2121. createTime: "2025-11-03 17:45:44"
  2122. tags:
  2123. - tag: "gw_ylzqt_压力"
  2124. protocol: "json"
  2125. measurement: "WaterMeter"
  2126. field: "press_cur"
  2127. valueType: "double"
  2128. minValue: null
  2129. maxValue: null
  2130. syncField: null
  2131. calcFormula: null
  2132. - tag: "gw_ylzqt_电压"
  2133. protocol: "json"
  2134. measurement: "WaterMeter"
  2135. field: "battery_voltage"
  2136. valueType: "double"
  2137. minValue: null
  2138. maxValue: null
  2139. syncField: null
  2140. calcFormula: null
  2141. - deviceId: "710032511130019"
  2142. deviceName: "鱼梁州浩然路"
  2143. deviceSn: null
  2144. deviceKind: "press"
  2145. platform: "zhonghuan-scada"
  2146. mfrs: null
  2147. createTime: "2025-11-03 17:45:44"
  2148. tags:
  2149. - tag: "gw_ylzhrl_压力"
  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. - tag: "gw_ylzhrl_电压"
  2159. protocol: "json"
  2160. measurement: "WaterMeter"
  2161. field: "battery_voltage"
  2162. valueType: "double"
  2163. minValue: null
  2164. maxValue: null
  2165. syncField: null
  2166. calcFormula: null
  2167. - deviceId: "710032511130020"
  2168. deviceName: "鱼梁州"
  2169. deviceSn: null
  2170. deviceKind: "press"
  2171. platform: "zhonghuan-scada"
  2172. mfrs: null
  2173. createTime: "2025-11-03 17:45:44"
  2174. tags:
  2175. - tag: "gw_ylz_压力"
  2176. protocol: "json"
  2177. measurement: "WaterMeter"
  2178. field: "press_cur"
  2179. valueType: "double"
  2180. minValue: null
  2181. maxValue: null
  2182. syncField: null
  2183. calcFormula: null
  2184. - tag: "gw_ylz_电压"
  2185. protocol: "json"
  2186. measurement: "WaterMeter"
  2187. field: "battery_voltage"
  2188. valueType: "double"
  2189. minValue: null
  2190. maxValue: null
  2191. syncField: null
  2192. calcFormula: null
  2193. - deviceId: "710032511130021"
  2194. deviceName: "余家湖泵站"
  2195. deviceSn: null
  2196. deviceKind: "press"
  2197. platform: "zhonghuan-scada"
  2198. mfrs: null
  2199. createTime: "2025-11-03 17:45:44"
  2200. tags:
  2201. - tag: "gw_yjh_压力"
  2202. protocol: "json"
  2203. measurement: "WaterMeter"
  2204. field: "press_cur"
  2205. valueType: "double"
  2206. minValue: null
  2207. maxValue: null
  2208. syncField: null
  2209. calcFormula: null
  2210. - tag: "gw_yjh_电压"
  2211. protocol: "json"
  2212. measurement: "WaterMeter"
  2213. field: "battery_voltage"
  2214. valueType: "double"
  2215. minValue: null
  2216. maxValue: null
  2217. syncField: null
  2218. calcFormula: null
  2219. - deviceId: "710032511130022"
  2220. deviceName: "英菲妮迪"
  2221. deviceSn: null
  2222. deviceKind: "press"
  2223. platform: "zhonghuan-scada"
  2224. mfrs: null
  2225. createTime: "2025-11-03 17:45:44"
  2226. tags:
  2227. - tag: "gw_yfnd_压力"
  2228. protocol: "json"
  2229. measurement: "WaterMeter"
  2230. field: "press_cur"
  2231. valueType: "double"
  2232. minValue: null
  2233. maxValue: null
  2234. syncField: null
  2235. calcFormula: null
  2236. - tag: "gw_yfnd_电压"
  2237. protocol: "json"
  2238. measurement: "WaterMeter"
  2239. field: "battery_voltage"
  2240. valueType: "double"
  2241. minValue: null
  2242. maxValue: null
  2243. syncField: null
  2244. calcFormula: null
  2245. - deviceId: "710032511130023"
  2246. deviceName: "尹集新设备"
  2247. deviceSn: null
  2248. deviceKind: "press"
  2249. platform: "zhonghuan-scada"
  2250. mfrs: null
  2251. createTime: "2025-11-03 17:45:44"
  2252. tags:
  2253. - tag: "gw_yjxsb__压力"
  2254. protocol: "json"
  2255. measurement: "WaterMeter"
  2256. field: "press_cur"
  2257. valueType: "double"
  2258. minValue: null
  2259. maxValue: null
  2260. syncField: null
  2261. calcFormula: null
  2262. - tag: "gw_yjxsb__电压"
  2263. protocol: "json"
  2264. measurement: "WaterMeter"
  2265. field: "battery_voltage"
  2266. valueType: "double"
  2267. minValue: null
  2268. maxValue: null
  2269. syncField: null
  2270. calcFormula: null
  2271. - deviceId: "710032511130024"
  2272. deviceName: "尹集测点"
  2273. deviceSn: null
  2274. deviceKind: "press"
  2275. platform: "zhonghuan-scada"
  2276. mfrs: null
  2277. createTime: "2025-11-03 17:45:44"
  2278. tags:
  2279. - tag: "gw_yjcd_压力"
  2280. protocol: "json"
  2281. measurement: "WaterMeter"
  2282. field: "press_cur"
  2283. valueType: "double"
  2284. minValue: null
  2285. maxValue: null
  2286. syncField: null
  2287. calcFormula: null
  2288. - tag: "gw_yjcd_电压"
  2289. protocol: "json"
  2290. measurement: "WaterMeter"
  2291. field: "battery_voltage"
  2292. valueType: "double"
  2293. minValue: null
  2294. maxValue: null
  2295. syncField: null
  2296. calcFormula: null
  2297. - deviceId: "710032511130025"
  2298. deviceName: "尹集泵站"
  2299. deviceSn: null
  2300. deviceKind: "press"
  2301. platform: "zhonghuan-scada"
  2302. mfrs: null
  2303. createTime: "2025-11-03 17:45:44"
  2304. tags:
  2305. - tag: "gw_yjbz_压力"
  2306. protocol: "json"
  2307. measurement: "WaterMeter"
  2308. field: "press_cur"
  2309. valueType: "double"
  2310. minValue: null
  2311. maxValue: null
  2312. syncField: null
  2313. calcFormula: null
  2314. - tag: "gw_yjbz_电压"
  2315. protocol: "json"
  2316. measurement: "WaterMeter"
  2317. field: "battery_voltage"
  2318. valueType: "double"
  2319. minValue: null
  2320. maxValue: null
  2321. syncField: null
  2322. calcFormula: null
  2323. - deviceId: "710032511130026"
  2324. deviceName: "尹集DN300"
  2325. deviceSn: null
  2326. deviceKind: "press"
  2327. platform: "zhonghuan-scada"
  2328. mfrs: null
  2329. createTime: "2025-11-03 17:45:44"
  2330. tags:
  2331. - tag: "gw_yjxz_压力1"
  2332. protocol: "json"
  2333. measurement: "WaterMeter"
  2334. field: "press_cur"
  2335. valueType: "double"
  2336. minValue: null
  2337. maxValue: null
  2338. syncField: null
  2339. calcFormula: null
  2340. - tag: "gw_yjxz_电压1"
  2341. protocol: "json"
  2342. measurement: "WaterMeter"
  2343. field: "battery_voltage"
  2344. valueType: "double"
  2345. minValue: null
  2346. maxValue: null
  2347. syncField: null
  2348. calcFormula: null
  2349. - deviceId: "710032511130027"
  2350. deviceName: "信访局(改十中)"
  2351. deviceSn: null
  2352. deviceKind: "press"
  2353. platform: "zhonghuan-scada"
  2354. mfrs: null
  2355. createTime: "2025-11-03 17:45:44"
  2356. tags:
  2357. - tag: "gw_xfj_压力"
  2358. protocol: "json"
  2359. measurement: "WaterMeter"
  2360. field: "press_cur"
  2361. valueType: "double"
  2362. minValue: null
  2363. maxValue: null
  2364. syncField: null
  2365. calcFormula: null
  2366. - tag: "gw_xfj_电压"
  2367. protocol: "json"
  2368. measurement: "WaterMeter"
  2369. field: "battery_voltage"
  2370. valueType: "double"
  2371. minValue: null
  2372. maxValue: null
  2373. syncField: null
  2374. calcFormula: null
  2375. - deviceId: "710032511130028"
  2376. deviceName: "襄州民发"
  2377. deviceSn: null
  2378. deviceKind: "press"
  2379. platform: "zhonghuan-scada"
  2380. mfrs: null
  2381. createTime: "2025-11-03 17:45:44"
  2382. tags:
  2383. - tag: "gw_xzmf_压力"
  2384. protocol: "json"
  2385. measurement: "WaterMeter"
  2386. field: "press_cur"
  2387. valueType: "double"
  2388. minValue: null
  2389. maxValue: null
  2390. syncField: null
  2391. calcFormula: null
  2392. - tag: "gw_xzmf_电压"
  2393. protocol: "json"
  2394. measurement: "WaterMeter"
  2395. field: "battery_voltage"
  2396. valueType: "double"
  2397. minValue: null
  2398. maxValue: null
  2399. syncField: null
  2400. calcFormula: null
  2401. - deviceId: "710032511130029"
  2402. deviceName: "襄阳东站"
  2403. deviceSn: null
  2404. deviceKind: "press"
  2405. platform: "zhonghuan-scada"
  2406. mfrs: null
  2407. createTime: "2025-11-03 17:45:44"
  2408. tags:
  2409. - tag: "gw_xydz_压力"
  2410. protocol: "json"
  2411. measurement: "WaterMeter"
  2412. field: "press_cur"
  2413. valueType: "double"
  2414. minValue: null
  2415. maxValue: null
  2416. syncField: null
  2417. calcFormula: null
  2418. - tag: "gw_xydz_电压"
  2419. protocol: "json"
  2420. measurement: "WaterMeter"
  2421. field: "battery_voltage"
  2422. valueType: "double"
  2423. minValue: null
  2424. maxValue: null
  2425. syncField: null
  2426. calcFormula: null
  2427. - deviceId: "710032511130030"
  2428. deviceName: "襄新泵站"
  2429. deviceSn: null
  2430. deviceKind: "press"
  2431. platform: "zhonghuan-scada"
  2432. mfrs: null
  2433. createTime: "2025-11-03 17:45:44"
  2434. tags:
  2435. - tag: "gw_xxbz_压力"
  2436. protocol: "json"
  2437. measurement: "WaterMeter"
  2438. field: "press_cur"
  2439. valueType: "double"
  2440. minValue: null
  2441. maxValue: null
  2442. syncField: null
  2443. calcFormula: null
  2444. - tag: "gw_xxbz_电压"
  2445. protocol: "json"
  2446. measurement: "WaterMeter"
  2447. field: "battery_voltage"
  2448. valueType: "double"
  2449. minValue: null
  2450. maxValue: null
  2451. syncField: null
  2452. calcFormula: null
  2453. - deviceId: "710032511130031"
  2454. deviceName: "襄管物流"
  2455. deviceSn: null
  2456. deviceKind: "press"
  2457. platform: "zhonghuan-scada"
  2458. mfrs: null
  2459. createTime: "2025-11-03 17:45:44"
  2460. tags:
  2461. - tag: "gw_xgwl_压力"
  2462. protocol: "json"
  2463. measurement: "WaterMeter"
  2464. field: "press_cur"
  2465. valueType: "double"
  2466. minValue: null
  2467. maxValue: null
  2468. syncField: null
  2469. calcFormula: null
  2470. - tag: "gw_xgwl_电压"
  2471. protocol: "json"
  2472. measurement: "WaterMeter"
  2473. field: "battery_voltage"
  2474. valueType: "double"
  2475. minValue: null
  2476. maxValue: null
  2477. syncField: null
  2478. calcFormula: null
  2479. - deviceId: "710032511130032"
  2480. deviceName: "襄城区政府"
  2481. deviceSn: null
  2482. deviceKind: "press"
  2483. platform: "zhonghuan-scada"
  2484. mfrs: null
  2485. createTime: "2025-11-03 17:45:44"
  2486. tags:
  2487. - tag: "gw_xcqzf_压力"
  2488. protocol: "json"
  2489. measurement: "WaterMeter"
  2490. field: "press_cur"
  2491. valueType: "double"
  2492. minValue: null
  2493. maxValue: null
  2494. syncField: null
  2495. calcFormula: null
  2496. - tag: "gw_xcqzf_电压"
  2497. protocol: "json"
  2498. measurement: "WaterMeter"
  2499. field: "battery_voltage"
  2500. valueType: "double"
  2501. minValue: null
  2502. maxValue: null
  2503. syncField: null
  2504. calcFormula: null
  2505. - deviceId: "710032511130033"
  2506. deviceName: "襄城经济开发区"
  2507. deviceSn: null
  2508. deviceKind: "press"
  2509. platform: "zhonghuan-scada"
  2510. mfrs: null
  2511. createTime: "2025-11-03 17:45:44"
  2512. tags:
  2513. - tag: "gw_jjkf_压力"
  2514. protocol: "json"
  2515. measurement: "WaterMeter"
  2516. field: "press_cur"
  2517. valueType: "double"
  2518. minValue: null
  2519. maxValue: null
  2520. syncField: null
  2521. calcFormula: null
  2522. - tag: "gw_jjkf_电压"
  2523. protocol: "json"
  2524. measurement: "WaterMeter"
  2525. field: "battery_voltage"
  2526. valueType: "double"
  2527. minValue: null
  2528. maxValue: null
  2529. syncField: null
  2530. calcFormula: null
  2531. - deviceId: "710032511130034"
  2532. deviceName: "习家池"
  2533. deviceSn: null
  2534. deviceKind: "press"
  2535. platform: "zhonghuan-scada"
  2536. mfrs: null
  2537. createTime: "2025-11-03 17:45:44"
  2538. tags:
  2539. - tag: "gw_xjcbz_压力"
  2540. protocol: "json"
  2541. measurement: "WaterMeter"
  2542. field: "press_cur"
  2543. valueType: "double"
  2544. minValue: null
  2545. maxValue: null
  2546. syncField: null
  2547. calcFormula: null
  2548. - tag: "gw_xjcbz_电压"
  2549. protocol: "json"
  2550. measurement: "WaterMeter"
  2551. field: "battery_voltage"
  2552. valueType: "double"
  2553. minValue: null
  2554. maxValue: null
  2555. syncField: null
  2556. calcFormula: null
  2557. - deviceId: "710032511130035"
  2558. deviceName: "武装部测点"
  2559. deviceSn: null
  2560. deviceKind: "press"
  2561. platform: "zhonghuan-scada"
  2562. mfrs: null
  2563. createTime: "2025-11-03 17:45:44"
  2564. tags:
  2565. - tag: "gw_wzbce_压力"
  2566. protocol: "json"
  2567. measurement: "WaterMeter"
  2568. field: "press_cur"
  2569. valueType: "double"
  2570. minValue: null
  2571. maxValue: null
  2572. syncField: null
  2573. calcFormula: null
  2574. - tag: "gw_wzbce_电压"
  2575. protocol: "json"
  2576. measurement: "WaterMeter"
  2577. field: "battery_voltage"
  2578. valueType: "double"
  2579. minValue: null
  2580. maxValue: null
  2581. syncField: null
  2582. calcFormula: null
  2583. - deviceId: "710032511130036"
  2584. deviceName: "五洲国际"
  2585. deviceSn: null
  2586. deviceKind: "press"
  2587. platform: "zhonghuan-scada"
  2588. mfrs: null
  2589. createTime: "2025-11-03 17:45:44"
  2590. tags:
  2591. - tag: "gw_wzgj_压力"
  2592. protocol: "json"
  2593. measurement: "WaterMeter"
  2594. field: "press_cur"
  2595. valueType: "double"
  2596. minValue: null
  2597. maxValue: null
  2598. syncField: null
  2599. calcFormula: null
  2600. - tag: "gw_wzgj_电压"
  2601. protocol: "json"
  2602. measurement: "WaterMeter"
  2603. field: "battery_voltage"
  2604. valueType: "double"
  2605. minValue: null
  2606. maxValue: null
  2607. syncField: null
  2608. calcFormula: null
  2609. - deviceId: "710032511130037"
  2610. deviceName: "吾悦广场"
  2611. deviceSn: null
  2612. deviceKind: "press"
  2613. platform: "zhonghuan-scada"
  2614. mfrs: null
  2615. createTime: "2025-11-03 17:45:44"
  2616. tags:
  2617. - tag: "gw_wygc_压力"
  2618. protocol: "json"
  2619. measurement: "WaterMeter"
  2620. field: "press_cur"
  2621. valueType: "double"
  2622. minValue: null
  2623. maxValue: null
  2624. syncField: null
  2625. calcFormula: null
  2626. - tag: "gw_wygc_电压"
  2627. protocol: "json"
  2628. measurement: "WaterMeter"
  2629. field: "battery_voltage"
  2630. valueType: "double"
  2631. minValue: null
  2632. maxValue: null
  2633. syncField: null
  2634. calcFormula: null
  2635. - deviceId: "710032511130038"
  2636. deviceName: "卧龙新测点"
  2637. deviceSn: null
  2638. deviceKind: "press"
  2639. platform: "zhonghuan-scada"
  2640. mfrs: null
  2641. createTime: "2025-11-03 17:45:44"
  2642. tags:
  2643. - tag: "gw_wlxcd_压力"
  2644. protocol: "json"
  2645. measurement: "WaterMeter"
  2646. field: "press_cur"
  2647. valueType: "double"
  2648. minValue: null
  2649. maxValue: null
  2650. syncField: null
  2651. calcFormula: null
  2652. - tag: "gw_wlxcd_电压"
  2653. protocol: "json"
  2654. measurement: "WaterMeter"
  2655. field: "battery_voltage"
  2656. valueType: "double"
  2657. minValue: null
  2658. maxValue: null
  2659. syncField: null
  2660. calcFormula: null
  2661. - deviceId: "710032511130039"
  2662. deviceName: "铁道口"
  2663. deviceSn: null
  2664. deviceKind: "press"
  2665. platform: "zhonghuan-scada"
  2666. mfrs: null
  2667. createTime: "2025-11-03 17:45:44"
  2668. tags:
  2669. - tag: "gw_tdk_压力"
  2670. protocol: "json"
  2671. measurement: "WaterMeter"
  2672. field: "press_cur"
  2673. valueType: "double"
  2674. minValue: null
  2675. maxValue: null
  2676. syncField: null
  2677. calcFormula: null
  2678. - tag: "gw_tdk_电压"
  2679. protocol: "json"
  2680. measurement: "WaterMeter"
  2681. field: "battery_voltage"
  2682. valueType: "double"
  2683. minValue: null
  2684. maxValue: null
  2685. syncField: null
  2686. calcFormula: null
  2687. - deviceId: "710032511130040"
  2688. deviceName: "天鹅堡"
  2689. deviceSn: null
  2690. deviceKind: "press"
  2691. platform: "zhonghuan-scada"
  2692. mfrs: null
  2693. createTime: "2025-11-03 17:45:44"
  2694. tags:
  2695. - tag: "gw_teb_压力"
  2696. protocol: "json"
  2697. measurement: "WaterMeter"
  2698. field: "press_cur"
  2699. valueType: "double"
  2700. minValue: null
  2701. maxValue: null
  2702. syncField: null
  2703. calcFormula: null
  2704. - tag: "gw_teb_电压"
  2705. protocol: "json"
  2706. measurement: "WaterMeter"
  2707. field: "battery_voltage"
  2708. valueType: "double"
  2709. minValue: null
  2710. maxValue: null
  2711. syncField: null
  2712. calcFormula: null
  2713. - deviceId: "710032511130041"
  2714. deviceName: "唐城"
  2715. deviceSn: null
  2716. deviceKind: "press"
  2717. platform: "zhonghuan-scada"
  2718. mfrs: null
  2719. createTime: "2025-11-03 17:45:44"
  2720. tags:
  2721. - tag: "gw_tc_压力"
  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. - tag: "gw_tc_电压"
  2731. protocol: "json"
  2732. measurement: "WaterMeter"
  2733. field: "battery_voltage"
  2734. valueType: "double"
  2735. minValue: null
  2736. maxValue: null
  2737. syncField: null
  2738. calcFormula: null
  2739. - deviceId: "710032511130042"
  2740. deviceName: "汤店水厂"
  2741. deviceSn: null
  2742. deviceKind: "press"
  2743. platform: "zhonghuan-scada"
  2744. mfrs: null
  2745. createTime: "2025-11-03 17:45:44"
  2746. tags:
  2747. - tag: "gw_tdsc1_压力"
  2748. protocol: "json"
  2749. measurement: "WaterMeter"
  2750. field: "press_cur"
  2751. valueType: "double"
  2752. minValue: null
  2753. maxValue: null
  2754. syncField: null
  2755. calcFormula: null
  2756. - tag: "gw_tdsc1_电压"
  2757. protocol: "json"
  2758. measurement: "WaterMeter"
  2759. field: "battery_voltage"
  2760. valueType: "double"
  2761. minValue: null
  2762. maxValue: null
  2763. syncField: null
  2764. calcFormula: null
  2765. - deviceId: "710032511130043"
  2766. deviceName: "檀溪卧龙方向"
  2767. deviceSn: null
  2768. deviceKind: "press"
  2769. platform: "zhonghuan-scada"
  2770. mfrs: null
  2771. createTime: "2025-11-03 17:45:44"
  2772. tags:
  2773. - tag: "gw_txwllj__压力"
  2774. protocol: "json"
  2775. measurement: "WaterMeter"
  2776. field: "press_cur"
  2777. valueType: "double"
  2778. minValue: null
  2779. maxValue: null
  2780. syncField: null
  2781. calcFormula: null
  2782. - tag: "gw_txwllj__电压"
  2783. protocol: "json"
  2784. measurement: "WaterMeter"
  2785. field: "battery_voltage"
  2786. valueType: "double"
  2787. minValue: null
  2788. maxValue: null
  2789. syncField: null
  2790. calcFormula: null
  2791. - deviceId: "710032511130044"
  2792. deviceName: "檀溪泵站2"
  2793. deviceSn: null
  2794. deviceKind: "press"
  2795. platform: "zhonghuan-scada"
  2796. mfrs: null
  2797. createTime: "2025-11-03 17:45:44"
  2798. tags:
  2799. - tag: "gw_txbz2__压力"
  2800. protocol: "json"
  2801. measurement: "WaterMeter"
  2802. field: "press_cur"
  2803. valueType: "double"
  2804. minValue: null
  2805. maxValue: null
  2806. syncField: null
  2807. calcFormula: null
  2808. - tag: "gw_txbz2__电压"
  2809. protocol: "json"
  2810. measurement: "WaterMeter"
  2811. field: "battery_voltage"
  2812. valueType: "double"
  2813. minValue: null
  2814. maxValue: null
  2815. syncField: null
  2816. calcFormula: null
  2817. - deviceId: "710032511130045"
  2818. deviceName: "顺安山泵站"
  2819. deviceSn: null
  2820. deviceKind: "press"
  2821. platform: "zhonghuan-scada"
  2822. mfrs: null
  2823. createTime: "2025-11-03 17:45:44"
  2824. tags:
  2825. - tag: "gw_sas_压力"
  2826. protocol: "json"
  2827. measurement: "WaterMeter"
  2828. field: "press_cur"
  2829. valueType: "double"
  2830. minValue: null
  2831. maxValue: null
  2832. syncField: null
  2833. calcFormula: null
  2834. - tag: "gw_sas_电压"
  2835. protocol: "json"
  2836. measurement: "WaterMeter"
  2837. field: "battery_voltage"
  2838. valueType: "double"
  2839. minValue: null
  2840. maxValue: null
  2841. syncField: null
  2842. calcFormula: null
  2843. - deviceId: "710032511130046"
  2844. deviceName: "市民中心"
  2845. deviceSn: null
  2846. deviceKind: "press"
  2847. platform: "zhonghuan-scada"
  2848. mfrs: null
  2849. createTime: "2025-11-03 17:45:44"
  2850. tags:
  2851. - tag: "smzx_压力"
  2852. protocol: "json"
  2853. measurement: "WaterMeter"
  2854. field: "press_cur"
  2855. valueType: "double"
  2856. minValue: null
  2857. maxValue: null
  2858. syncField: null
  2859. calcFormula: null
  2860. - tag: "smzx_电压"
  2861. protocol: "json"
  2862. measurement: "WaterMeter"
  2863. field: "battery_voltage"
  2864. valueType: "double"
  2865. minValue: null
  2866. maxValue: null
  2867. syncField: null
  2868. calcFormula: null
  2869. - deviceId: "710032511130047"
  2870. deviceName: "食神"
  2871. deviceSn: null
  2872. deviceKind: "press"
  2873. platform: "zhonghuan-scada"
  2874. mfrs: null
  2875. createTime: "2025-11-03 17:45:44"
  2876. tags:
  2877. - tag: "gw_ss_压力"
  2878. protocol: "json"
  2879. measurement: "WaterMeter"
  2880. field: "press_cur"
  2881. valueType: "double"
  2882. minValue: null
  2883. maxValue: null
  2884. syncField: null
  2885. calcFormula: null
  2886. - tag: "gw_ss_电压"
  2887. protocol: "json"
  2888. measurement: "WaterMeter"
  2889. field: "battery_voltage"
  2890. valueType: "double"
  2891. minValue: null
  2892. maxValue: null
  2893. syncField: null
  2894. calcFormula: null
  2895. - deviceId: "710032511130048"
  2896. deviceName: "十字街"
  2897. deviceSn: null
  2898. deviceKind: "press"
  2899. platform: "zhonghuan-scada"
  2900. mfrs: null
  2901. createTime: "2025-11-03 17:45:44"
  2902. tags:
  2903. - tag: "gw_szj_压力"
  2904. protocol: "json"
  2905. measurement: "WaterMeter"
  2906. field: "press_cur"
  2907. valueType: "double"
  2908. minValue: null
  2909. maxValue: null
  2910. syncField: null
  2911. calcFormula: null
  2912. - tag: "gw_szj_电压"
  2913. protocol: "json"
  2914. measurement: "WaterMeter"
  2915. field: "battery_voltage"
  2916. valueType: "double"
  2917. minValue: null
  2918. maxValue: null
  2919. syncField: null
  2920. calcFormula: null
  2921. - deviceId: "710032511130049"
  2922. deviceName: "深圳工业园"
  2923. deviceSn: null
  2924. deviceKind: "press"
  2925. platform: "zhonghuan-scada"
  2926. mfrs: null
  2927. createTime: "2025-11-03 17:45:44"
  2928. tags:
  2929. - tag: "gw_szgyy_压力"
  2930. protocol: "json"
  2931. measurement: "WaterMeter"
  2932. field: "press_cur"
  2933. valueType: "double"
  2934. minValue: null
  2935. maxValue: null
  2936. syncField: null
  2937. calcFormula: null
  2938. - tag: "gw_szgyy_电压"
  2939. protocol: "json"
  2940. measurement: "WaterMeter"
  2941. field: "battery_voltage"
  2942. valueType: "double"
  2943. minValue: null
  2944. maxValue: null
  2945. syncField: null
  2946. calcFormula: null
  2947. - deviceId: "710032511130050"
  2948. deviceName: "人民路贾洼路口"
  2949. deviceSn: null
  2950. deviceKind: "press"
  2951. platform: "zhonghuan-scada"
  2952. mfrs: null
  2953. createTime: "2025-11-03 17:45:44"
  2954. tags:
  2955. - tag: "gw_rmljwlk_压力"
  2956. protocol: "json"
  2957. measurement: "WaterMeter"
  2958. field: "press_cur"
  2959. valueType: "double"
  2960. minValue: null
  2961. maxValue: null
  2962. syncField: null
  2963. calcFormula: null
  2964. - tag: "gw_rmljwlk_电压"
  2965. protocol: "json"
  2966. measurement: "WaterMeter"
  2967. field: "battery_voltage"
  2968. valueType: "double"
  2969. minValue: null
  2970. maxValue: null
  2971. syncField: null
  2972. calcFormula: null
  2973. - deviceId: "710032511130051"
  2974. deviceName: "裘家沟泵站"
  2975. deviceSn: null
  2976. deviceKind: "press"
  2977. platform: "zhonghuan-scada"
  2978. mfrs: null
  2979. createTime: "2025-11-03 17:45:44"
  2980. tags:
  2981. - tag: "gw_qjg_压力"
  2982. protocol: "json"
  2983. measurement: "WaterMeter"
  2984. field: "press_cur"
  2985. valueType: "double"
  2986. minValue: null
  2987. maxValue: null
  2988. syncField: null
  2989. calcFormula: null
  2990. - tag: "gw_qjg_电压"
  2991. protocol: "json"
  2992. measurement: "WaterMeter"
  2993. field: "battery_voltage"
  2994. valueType: "double"
  2995. minValue: null
  2996. maxValue: null
  2997. syncField: null
  2998. calcFormula: null
  2999. - deviceId: "710032511130052"
  3000. deviceName: "清河一桥襄州桥头"
  3001. deviceSn: null
  3002. deviceKind: "press"
  3003. platform: "zhonghuan-scada"
  3004. mfrs: null
  3005. createTime: "2025-11-03 17:45:44"
  3006. tags:
  3007. - tag: "gw_qhyqxz_压力"
  3008. protocol: "json"
  3009. measurement: "WaterMeter"
  3010. field: "press_cur"
  3011. valueType: "double"
  3012. minValue: null
  3013. maxValue: null
  3014. syncField: null
  3015. calcFormula: null
  3016. - tag: "gw_qhyqxz_电压"
  3017. protocol: "json"
  3018. measurement: "WaterMeter"
  3019. field: "battery_voltage"
  3020. valueType: "double"
  3021. minValue: null
  3022. maxValue: null
  3023. syncField: null
  3024. calcFormula: null
  3025. - deviceId: "710032511130053"
  3026. deviceName: "清河一桥"
  3027. deviceSn: null
  3028. deviceKind: "press"
  3029. platform: "zhonghuan-scada"
  3030. mfrs: null
  3031. createTime: "2025-11-03 17:45:44"
  3032. tags:
  3033. - tag: "gw_qhyq_压力"
  3034. protocol: "json"
  3035. measurement: "WaterMeter"
  3036. field: "press_cur"
  3037. valueType: "double"
  3038. minValue: null
  3039. maxValue: null
  3040. syncField: null
  3041. calcFormula: null
  3042. - tag: "gw_qhyq_电压"
  3043. protocol: "json"
  3044. measurement: "WaterMeter"
  3045. field: "battery_voltage"
  3046. valueType: "double"
  3047. minValue: null
  3048. maxValue: null
  3049. syncField: null
  3050. calcFormula: null
  3051. - deviceId: "710032511130054"
  3052. deviceName: "气象局"
  3053. deviceSn: null
  3054. deviceKind: "press"
  3055. platform: "zhonghuan-scada"
  3056. mfrs: null
  3057. createTime: "2025-11-03 17:45:44"
  3058. tags:
  3059. - tag: "gw_qxj_压力"
  3060. protocol: "json"
  3061. measurement: "WaterMeter"
  3062. field: "press_cur"
  3063. valueType: "double"
  3064. minValue: null
  3065. maxValue: null
  3066. syncField: null
  3067. calcFormula: null
  3068. - tag: "gw_qxj_电压"
  3069. protocol: "json"
  3070. measurement: "WaterMeter"
  3071. field: "battery_voltage"
  3072. valueType: "double"
  3073. minValue: null
  3074. maxValue: null
  3075. syncField: null
  3076. calcFormula: null
  3077. - deviceId: "710032511130055"
  3078. deviceName: "平升测试"
  3079. deviceSn: null
  3080. deviceKind: "press"
  3081. platform: "zhonghuan-scada"
  3082. mfrs: null
  3083. createTime: "2025-11-03 17:45:44"
  3084. tags:
  3085. - tag: "压力"
  3086. protocol: "json"
  3087. measurement: "WaterMeter"
  3088. field: "press_cur"
  3089. valueType: "double"
  3090. minValue: null
  3091. maxValue: null
  3092. syncField: null
  3093. calcFormula: null
  3094. - tag: "电压"
  3095. protocol: "json"
  3096. measurement: "WaterMeter"
  3097. field: "battery_voltage"
  3098. valueType: "double"
  3099. minValue: null
  3100. maxValue: null
  3101. syncField: null
  3102. calcFormula: null
  3103. - deviceId: "710032511130056"
  3104. deviceName: "欧庙"
  3105. deviceSn: null
  3106. deviceKind: "press"
  3107. platform: "zhonghuan-scada"
  3108. mfrs: null
  3109. createTime: "2025-11-03 17:45:44"
  3110. tags:
  3111. - tag: "gw_om_压力"
  3112. protocol: "json"
  3113. measurement: "WaterMeter"
  3114. field: "press_cur"
  3115. valueType: "double"
  3116. minValue: null
  3117. maxValue: null
  3118. syncField: null
  3119. calcFormula: null
  3120. - tag: "gw_om_电压"
  3121. protocol: "json"
  3122. measurement: "WaterMeter"
  3123. field: "battery_voltage"
  3124. valueType: "double"
  3125. minValue: null
  3126. maxValue: null
  3127. syncField: null
  3128. calcFormula: null
  3129. - deviceId: "710032511130057"
  3130. deviceName: "南还建房"
  3131. deviceSn: null
  3132. deviceKind: "press"
  3133. platform: "zhonghuan-scada"
  3134. mfrs: null
  3135. createTime: "2025-11-03 17:45:44"
  3136. tags:
  3137. - tag: "nhjf_压力"
  3138. protocol: "json"
  3139. measurement: "WaterMeter"
  3140. field: "press_cur"
  3141. valueType: "double"
  3142. minValue: null
  3143. maxValue: null
  3144. syncField: null
  3145. calcFormula: null
  3146. - tag: "nhjf_电压"
  3147. protocol: "json"
  3148. measurement: "WaterMeter"
  3149. field: "battery_voltage"
  3150. valueType: "double"
  3151. minValue: null
  3152. maxValue: null
  3153. syncField: null
  3154. calcFormula: null
  3155. - deviceId: "710032511130058"
  3156. deviceName: "骆驼新能源"
  3157. deviceSn: null
  3158. deviceKind: "press"
  3159. platform: "zhonghuan-scada"
  3160. mfrs: null
  3161. createTime: "2025-11-03 17:45:44"
  3162. tags:
  3163. - tag: "gw_ltxny_压力"
  3164. protocol: "json"
  3165. measurement: "WaterMeter"
  3166. field: "press_cur"
  3167. valueType: "double"
  3168. minValue: null
  3169. maxValue: null
  3170. syncField: null
  3171. calcFormula: null
  3172. - tag: "gw_ltxny_电压"
  3173. protocol: "json"
  3174. measurement: "WaterMeter"
  3175. field: "battery_voltage"
  3176. valueType: "double"
  3177. minValue: null
  3178. maxValue: null
  3179. syncField: null
  3180. calcFormula: null
  3181. - deviceId: "710032511130059"
  3182. deviceName: "鹿门大道西北角"
  3183. deviceSn: null
  3184. deviceKind: "press"
  3185. platform: "zhonghuan-scada"
  3186. mfrs: null
  3187. createTime: "2025-11-03 17:45:44"
  3188. tags:
  3189. - tag: "gw_lmddxbj_压力"
  3190. protocol: "json"
  3191. measurement: "WaterMeter"
  3192. field: "press_cur"
  3193. valueType: "double"
  3194. minValue: null
  3195. maxValue: null
  3196. syncField: null
  3197. calcFormula: null
  3198. - tag: "gw_lmddxbj_电压"
  3199. protocol: "json"
  3200. measurement: "WaterMeter"
  3201. field: "battery_voltage"
  3202. valueType: "double"
  3203. minValue: null
  3204. maxValue: null
  3205. syncField: null
  3206. calcFormula: null
  3207. - deviceId: "710032511130060"
  3208. deviceName: "鹿门大道东南角"
  3209. deviceSn: null
  3210. deviceKind: "press"
  3211. platform: "zhonghuan-scada"
  3212. mfrs: null
  3213. createTime: "2025-11-03 17:45:44"
  3214. tags:
  3215. - tag: "gw_lmdd_压力1"
  3216. protocol: "json"
  3217. measurement: "WaterMeter"
  3218. field: "press_cur"
  3219. valueType: "double"
  3220. minValue: null
  3221. maxValue: null
  3222. syncField: null
  3223. calcFormula: null
  3224. - tag: "gw_lmdd_电压1"
  3225. protocol: "json"
  3226. measurement: "WaterMeter"
  3227. field: "battery_voltage"
  3228. valueType: "double"
  3229. minValue: null
  3230. maxValue: null
  3231. syncField: null
  3232. calcFormula: null
  3233. - deviceId: "710032511130061"
  3234. deviceName: "隆中派出所"
  3235. deviceSn: null
  3236. deviceKind: "press"
  3237. platform: "zhonghuan-scada"
  3238. mfrs: null
  3239. createTime: "2025-11-03 17:45:44"
  3240. tags:
  3241. - tag: "gw_wzb_压力"
  3242. protocol: "json"
  3243. measurement: "WaterMeter"
  3244. field: "press_cur"
  3245. valueType: "double"
  3246. minValue: null
  3247. maxValue: null
  3248. syncField: null
  3249. calcFormula: null
  3250. - tag: "gw_wzb_电压"
  3251. protocol: "json"
  3252. measurement: "WaterMeter"
  3253. field: "battery_voltage"
  3254. valueType: "double"
  3255. minValue: null
  3256. maxValue: null
  3257. syncField: null
  3258. calcFormula: null
  3259. - deviceId: "710032511130062"
  3260. deviceName: "唐白河东津桥头"
  3261. deviceSn: null
  3262. deviceKind: "press"
  3263. platform: "zhonghuan-scada"
  3264. mfrs: null
  3265. createTime: "2025-11-03 17:45:44"
  3266. tags:
  3267. - tag: "gw_tbh_压力"
  3268. protocol: "json"
  3269. measurement: "WaterMeter"
  3270. field: "press_cur"
  3271. valueType: "double"
  3272. minValue: null
  3273. maxValue: null
  3274. syncField: null
  3275. calcFormula: null
  3276. - tag: "gw_tbh_电压"
  3277. protocol: "json"
  3278. measurement: "WaterMeter"
  3279. field: "battery_voltage"
  3280. valueType: "double"
  3281. minValue: null
  3282. maxValue: null
  3283. syncField: null
  3284. calcFormula: null
  3285. - deviceId: "710032511130063"
  3286. deviceName: "廉政教育中心"
  3287. deviceSn: null
  3288. deviceKind: "press"
  3289. platform: "zhonghuan-scada"
  3290. mfrs: null
  3291. createTime: "2025-11-03 17:45:44"
  3292. tags:
  3293. - tag: "gw_lzjyzx_压力"
  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. - tag: "gw_lzjyzx_电压"
  3303. protocol: "json"
  3304. measurement: "WaterMeter"
  3305. field: "battery_voltage"
  3306. valueType: "double"
  3307. minValue: null
  3308. maxValue: null
  3309. syncField: null
  3310. calcFormula: null
  3311. - deviceId: "710032511130064"
  3312. deviceName: "连山鼎府"
  3313. deviceSn: null
  3314. deviceKind: "press"
  3315. platform: "zhonghuan-scada"
  3316. mfrs: null
  3317. createTime: "2025-11-03 17:45:44"
  3318. tags:
  3319. - tag: "gw_lsdf_压力"
  3320. protocol: "json"
  3321. measurement: "WaterMeter"
  3322. field: "press_cur"
  3323. valueType: "double"
  3324. minValue: null
  3325. maxValue: null
  3326. syncField: null
  3327. calcFormula: null
  3328. - tag: "gw_lsdf_电压"
  3329. protocol: "json"
  3330. measurement: "WaterMeter"
  3331. field: "battery_voltage"
  3332. valueType: "double"
  3333. minValue: null
  3334. maxValue: null
  3335. syncField: null
  3336. calcFormula: null
  3337. - deviceId: "710032511130065"
  3338. deviceName: "金源供水"
  3339. deviceSn: null
  3340. deviceKind: "press"
  3341. platform: "zhonghuan-scada"
  3342. mfrs: null
  3343. createTime: "2025-11-03 17:45:44"
  3344. tags:
  3345. - tag: "gw_jygs_压力"
  3346. protocol: "json"
  3347. measurement: "WaterMeter"
  3348. field: "press_cur"
  3349. valueType: "double"
  3350. minValue: null
  3351. maxValue: null
  3352. syncField: null
  3353. calcFormula: null
  3354. - tag: "gw_jygs_电压"
  3355. protocol: "json"
  3356. measurement: "WaterMeter"
  3357. field: "battery_voltage"
  3358. valueType: "double"
  3359. minValue: null
  3360. maxValue: null
  3361. syncField: null
  3362. calcFormula: null
  3363. - deviceId: "710032511130066"
  3364. deviceName: "金鹰重工"
  3365. deviceSn: null
  3366. deviceKind: "press"
  3367. platform: "zhonghuan-scada"
  3368. mfrs: null
  3369. createTime: "2025-11-03 17:45:44"
  3370. tags:
  3371. - tag: "gw_jyzg_压力"
  3372. protocol: "json"
  3373. measurement: "WaterMeter"
  3374. field: "press_cur"
  3375. valueType: "double"
  3376. minValue: null
  3377. maxValue: null
  3378. syncField: null
  3379. calcFormula: null
  3380. - tag: "gw_jyzg_电压"
  3381. protocol: "json"
  3382. measurement: "WaterMeter"
  3383. field: "battery_voltage"
  3384. valueType: "double"
  3385. minValue: null
  3386. maxValue: null
  3387. syncField: null
  3388. calcFormula: null
  3389. - deviceId: "710032511130067"
  3390. deviceName: "技师学院"
  3391. deviceSn: null
  3392. deviceKind: "press"
  3393. platform: "zhonghuan-scada"
  3394. mfrs: null
  3395. createTime: "2025-11-03 17:45:44"
  3396. tags:
  3397. - tag: "gw_jsxy压力"
  3398. protocol: "json"
  3399. measurement: "WaterMeter"
  3400. field: "press_cur"
  3401. valueType: "double"
  3402. minValue: null
  3403. maxValue: null
  3404. syncField: null
  3405. calcFormula: null
  3406. - tag: "gw_jsxy电压"
  3407. protocol: "json"
  3408. measurement: "WaterMeter"
  3409. field: "battery_voltage"
  3410. valueType: "double"
  3411. minValue: null
  3412. maxValue: null
  3413. syncField: null
  3414. calcFormula: null
  3415. - deviceId: "710032511130068"
  3416. deviceName: "机场路"
  3417. deviceSn: null
  3418. deviceKind: "press"
  3419. platform: "zhonghuan-scada"
  3420. mfrs: null
  3421. createTime: "2025-11-03 17:45:44"
  3422. tags:
  3423. - tag: "gw_jcl_压力"
  3424. protocol: "json"
  3425. measurement: "WaterMeter"
  3426. field: "press_cur"
  3427. valueType: "double"
  3428. minValue: null
  3429. maxValue: null
  3430. syncField: null
  3431. calcFormula: null
  3432. - tag: "gw_jcl_电压"
  3433. protocol: "json"
  3434. measurement: "WaterMeter"
  3435. field: "battery_voltage"
  3436. valueType: "double"
  3437. minValue: null
  3438. maxValue: null
  3439. syncField: null
  3440. calcFormula: null
  3441. - deviceId: "710032511130069"
  3442. deviceName: "伙牌"
  3443. deviceSn: null
  3444. deviceKind: "press"
  3445. platform: "zhonghuan-scada"
  3446. mfrs: null
  3447. createTime: "2025-11-03 17:45:44"
  3448. tags:
  3449. - tag: "gw_hp_压力"
  3450. protocol: "json"
  3451. measurement: "WaterMeter"
  3452. field: "press_cur"
  3453. valueType: "double"
  3454. minValue: null
  3455. maxValue: null
  3456. syncField: null
  3457. calcFormula: null
  3458. - tag: "gw_hp_电压"
  3459. protocol: "json"
  3460. measurement: "WaterMeter"
  3461. field: "battery_voltage"
  3462. valueType: "double"
  3463. minValue: null
  3464. maxValue: null
  3465. syncField: null
  3466. calcFormula: null
  3467. - deviceId: "710032511130070"
  3468. deviceName: "火车站"
  3469. deviceSn: null
  3470. deviceKind: "press"
  3471. platform: "zhonghuan-scada"
  3472. mfrs: null
  3473. createTime: "2025-11-03 17:45:44"
  3474. tags:
  3475. - tag: "gw_hcz_压力"
  3476. protocol: "json"
  3477. measurement: "WaterMeter"
  3478. field: "press_cur"
  3479. valueType: "double"
  3480. minValue: null
  3481. maxValue: null
  3482. syncField: null
  3483. calcFormula: null
  3484. - tag: "gw_hcz_电压"
  3485. protocol: "json"
  3486. measurement: "WaterMeter"
  3487. field: "battery_voltage"
  3488. valueType: "double"
  3489. minValue: null
  3490. maxValue: null
  3491. syncField: null
  3492. calcFormula: null
  3493. - deviceId: "710032511130071"
  3494. deviceName: "黄家湾"
  3495. deviceSn: null
  3496. deviceKind: "press"
  3497. platform: "zhonghuan-scada"
  3498. mfrs: null
  3499. createTime: "2025-11-03 17:45:44"
  3500. tags:
  3501. - tag: "gw_hjw_压力"
  3502. protocol: "json"
  3503. measurement: "WaterMeter"
  3504. field: "press_cur"
  3505. valueType: "double"
  3506. minValue: null
  3507. maxValue: null
  3508. syncField: null
  3509. calcFormula: null
  3510. - tag: "gw_hjw_电压"
  3511. protocol: "json"
  3512. measurement: "WaterMeter"
  3513. field: "battery_voltage"
  3514. valueType: "double"
  3515. minValue: null
  3516. maxValue: null
  3517. syncField: null
  3518. calcFormula: null
  3519. - deviceId: "710032511130072"
  3520. deviceName: "华为"
  3521. deviceSn: null
  3522. deviceKind: "press"
  3523. platform: "zhonghuan-scada"
  3524. mfrs: null
  3525. createTime: "2025-11-03 17:45:44"
  3526. tags:
  3527. - tag: "gw_hw_压力"
  3528. protocol: "json"
  3529. measurement: "WaterMeter"
  3530. field: "press_cur"
  3531. valueType: "double"
  3532. minValue: null
  3533. maxValue: null
  3534. syncField: null
  3535. calcFormula: null
  3536. - tag: "gw_hw_电压"
  3537. protocol: "json"
  3538. measurement: "WaterMeter"
  3539. field: "battery_voltage"
  3540. valueType: "double"
  3541. minValue: null
  3542. maxValue: null
  3543. syncField: null
  3544. calcFormula: null
  3545. - deviceId: "710032511130073"
  3546. deviceName: "湖北航宇精工"
  3547. deviceSn: null
  3548. deviceKind: "press"
  3549. platform: "zhonghuan-scada"
  3550. mfrs: null
  3551. createTime: "2025-11-03 17:45:44"
  3552. tags:
  3553. - tag: "gw_hbhyjg_压力"
  3554. protocol: "json"
  3555. measurement: "WaterMeter"
  3556. field: "press_cur"
  3557. valueType: "double"
  3558. minValue: null
  3559. maxValue: null
  3560. syncField: null
  3561. calcFormula: null
  3562. - tag: "gw_hbhyjg_电压"
  3563. protocol: "json"
  3564. measurement: "WaterMeter"
  3565. field: "battery_voltage"
  3566. valueType: "double"
  3567. minValue: null
  3568. maxValue: null
  3569. syncField: null
  3570. calcFormula: null
  3571. - deviceId: "710032511130074"
  3572. deviceName: "韩洼"
  3573. deviceSn: null
  3574. deviceKind: "press"
  3575. platform: "zhonghuan-scada"
  3576. mfrs: null
  3577. createTime: "2025-11-03 17:45:44"
  3578. tags:
  3579. - tag: "gw_hwsq_压力"
  3580. protocol: "json"
  3581. measurement: "WaterMeter"
  3582. field: "press_cur"
  3583. valueType: "double"
  3584. minValue: null
  3585. maxValue: null
  3586. syncField: null
  3587. calcFormula: null
  3588. - tag: "gw_hwsq_电压"
  3589. protocol: "json"
  3590. measurement: "WaterMeter"
  3591. field: "battery_voltage"
  3592. valueType: "double"
  3593. minValue: null
  3594. maxValue: null
  3595. syncField: null
  3596. calcFormula: null
  3597. - deviceId: "710032511130075"
  3598. deviceName: "购物中心"
  3599. deviceSn: null
  3600. deviceKind: "press"
  3601. platform: "zhonghuan-scada"
  3602. mfrs: null
  3603. createTime: "2025-11-03 17:45:44"
  3604. tags:
  3605. - tag: "gw_gwzx_压力"
  3606. protocol: "json"
  3607. measurement: "WaterMeter"
  3608. field: "press_cur"
  3609. valueType: "double"
  3610. minValue: null
  3611. maxValue: null
  3612. syncField: null
  3613. calcFormula: null
  3614. - tag: "gw_gwzx_电压"
  3615. protocol: "json"
  3616. measurement: "WaterMeter"
  3617. field: "battery_voltage"
  3618. valueType: "double"
  3619. minValue: null
  3620. maxValue: null
  3621. syncField: null
  3622. calcFormula: null
  3623. - deviceId: "710032511130076"
  3624. deviceName: "公路段测压点"
  3625. deviceSn: null
  3626. deviceKind: "press"
  3627. platform: "zhonghuan-scada"
  3628. mfrs: null
  3629. createTime: "2025-11-03 17:45:44"
  3630. tags:
  3631. - tag: "gw_gld_压力"
  3632. protocol: "json"
  3633. measurement: "WaterMeter"
  3634. field: "press_cur"
  3635. valueType: "double"
  3636. minValue: null
  3637. maxValue: null
  3638. syncField: null
  3639. calcFormula: null
  3640. - tag: "gw_gld_电压"
  3641. protocol: "json"
  3642. measurement: "WaterMeter"
  3643. field: "battery_voltage"
  3644. valueType: "double"
  3645. minValue: null
  3646. maxValue: null
  3647. syncField: null
  3648. calcFormula: null
  3649. - deviceId: "710032511130077"
  3650. deviceName: "富康大道"
  3651. deviceSn: null
  3652. deviceKind: "press"
  3653. platform: "zhonghuan-scada"
  3654. mfrs: null
  3655. createTime: "2025-11-03 17:45:44"
  3656. tags:
  3657. - tag: "gw_fkdd_压力"
  3658. protocol: "json"
  3659. measurement: "WaterMeter"
  3660. field: "press_cur"
  3661. valueType: "double"
  3662. minValue: null
  3663. maxValue: null
  3664. syncField: null
  3665. calcFormula: null
  3666. - tag: "gw_fkdd_电压"
  3667. protocol: "json"
  3668. measurement: "WaterMeter"
  3669. field: "battery_voltage"
  3670. valueType: "double"
  3671. minValue: null
  3672. maxValue: null
  3673. syncField: null
  3674. calcFormula: null
  3675. - deviceId: "710032511130078"
  3676. deviceName: "釜占港"
  3677. deviceSn: null
  3678. deviceKind: "press"
  3679. platform: "zhonghuan-scada"
  3680. mfrs: null
  3681. createTime: "2025-11-03 17:45:44"
  3682. tags:
  3683. - tag: "gw_fzg_压力"
  3684. protocol: "json"
  3685. measurement: "WaterMeter"
  3686. field: "press_cur"
  3687. valueType: "double"
  3688. minValue: null
  3689. maxValue: null
  3690. syncField: null
  3691. calcFormula: null
  3692. - tag: "gw_fzg_电压"
  3693. protocol: "json"
  3694. measurement: "WaterMeter"
  3695. field: "battery_voltage"
  3696. valueType: "double"
  3697. minValue: null
  3698. maxValue: null
  3699. syncField: null
  3700. calcFormula: null
  3701. - deviceId: "710032511130079"
  3702. deviceName: "樊西新城"
  3703. deviceSn: null
  3704. deviceKind: "press"
  3705. platform: "zhonghuan-scada"
  3706. mfrs: null
  3707. createTime: "2025-11-03 17:45:44"
  3708. tags:
  3709. - tag: "gw_fxxc_压力"
  3710. protocol: "json"
  3711. measurement: "WaterMeter"
  3712. field: "press_cur"
  3713. valueType: "double"
  3714. minValue: null
  3715. maxValue: null
  3716. syncField: null
  3717. calcFormula: null
  3718. - tag: "gw_fxxc_电压"
  3719. protocol: "json"
  3720. measurement: "WaterMeter"
  3721. field: "battery_voltage"
  3722. valueType: "double"
  3723. minValue: null
  3724. maxValue: null
  3725. syncField: null
  3726. calcFormula: null
  3727. - deviceId: "710032511130080"
  3728. deviceName: "二中"
  3729. deviceSn: null
  3730. deviceKind: "press"
  3731. platform: "zhonghuan-scada"
  3732. mfrs: null
  3733. createTime: "2025-11-03 17:45:44"
  3734. tags:
  3735. - tag: "gw_ez_压力"
  3736. protocol: "json"
  3737. measurement: "WaterMeter"
  3738. field: "press_cur"
  3739. valueType: "double"
  3740. minValue: null
  3741. maxValue: null
  3742. syncField: null
  3743. calcFormula: null
  3744. - tag: "gw_ez_电压"
  3745. protocol: "json"
  3746. measurement: "WaterMeter"
  3747. field: "battery_voltage"
  3748. valueType: "double"
  3749. minValue: null
  3750. maxValue: null
  3751. syncField: null
  3752. calcFormula: null
  3753. - deviceId: "710032511130081"
  3754. deviceName: "二十三中"
  3755. deviceSn: null
  3756. deviceKind: "press"
  3757. platform: "zhonghuan-scada"
  3758. mfrs: null
  3759. createTime: "2025-11-03 17:45:44"
  3760. tags:
  3761. - tag: "gw_23z_压力"
  3762. protocol: "json"
  3763. measurement: "WaterMeter"
  3764. field: "press_cur"
  3765. valueType: "double"
  3766. minValue: null
  3767. maxValue: null
  3768. syncField: null
  3769. calcFormula: null
  3770. - tag: "gw_23z_电压"
  3771. protocol: "json"
  3772. measurement: "WaterMeter"
  3773. field: "battery_voltage"
  3774. valueType: "double"
  3775. minValue: null
  3776. maxValue: null
  3777. syncField: null
  3778. calcFormula: null
  3779. - deviceId: "710032511130082"
  3780. deviceName: "东津生态城"
  3781. deviceSn: null
  3782. deviceKind: "press"
  3783. platform: "zhonghuan-scada"
  3784. mfrs: null
  3785. createTime: "2025-11-03 17:45:44"
  3786. tags:
  3787. - tag: "gw_djctc_压力"
  3788. protocol: "json"
  3789. measurement: "WaterMeter"
  3790. field: "press_cur"
  3791. valueType: "double"
  3792. minValue: null
  3793. maxValue: null
  3794. syncField: null
  3795. calcFormula: null
  3796. - tag: "gw_djctc_电压"
  3797. protocol: "json"
  3798. measurement: "WaterMeter"
  3799. field: "battery_voltage"
  3800. valueType: "double"
  3801. minValue: null
  3802. maxValue: null
  3803. syncField: null
  3804. calcFormula: null
  3805. - deviceId: "710032511130083"
  3806. deviceName: "东津商务大楼"
  3807. deviceSn: null
  3808. deviceKind: "press"
  3809. platform: "zhonghuan-scada"
  3810. mfrs: null
  3811. createTime: "2025-11-03 17:45:44"
  3812. tags:
  3813. - tag: "djswdl_压力"
  3814. protocol: "json"
  3815. measurement: "WaterMeter"
  3816. field: "press_cur"
  3817. valueType: "double"
  3818. minValue: null
  3819. maxValue: null
  3820. syncField: null
  3821. calcFormula: null
  3822. - tag: "djswdl_电压"
  3823. protocol: "json"
  3824. measurement: "WaterMeter"
  3825. field: "battery_voltage"
  3826. valueType: "double"
  3827. minValue: null
  3828. maxValue: null
  3829. syncField: null
  3830. calcFormula: null
  3831. - deviceId: "710032511130084"
  3832. deviceName: "东风井关"
  3833. deviceSn: null
  3834. deviceKind: "press"
  3835. platform: "zhonghuan-scada"
  3836. mfrs: null
  3837. createTime: "2025-11-03 17:45:44"
  3838. tags:
  3839. - tag: "gw_dfjg_压力"
  3840. protocol: "json"
  3841. measurement: "WaterMeter"
  3842. field: "press_cur"
  3843. valueType: "double"
  3844. minValue: null
  3845. maxValue: null
  3846. syncField: null
  3847. calcFormula: null
  3848. - tag: "gw_dfjg_电压"
  3849. protocol: "json"
  3850. measurement: "WaterMeter"
  3851. field: "battery_voltage"
  3852. valueType: "double"
  3853. minValue: null
  3854. maxValue: null
  3855. syncField: null
  3856. calcFormula: null
  3857. - deviceId: "710032511130085"
  3858. deviceName: "大吕沟桥"
  3859. deviceSn: null
  3860. deviceKind: "press"
  3861. platform: "zhonghuan-scada"
  3862. mfrs: null
  3863. createTime: "2025-11-03 17:45:44"
  3864. tags:
  3865. - tag: "gw_dlg_压力"
  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. - tag: "gw_dlg_电压"
  3875. protocol: "json"
  3876. measurement: "WaterMeter"
  3877. field: "battery_voltage"
  3878. valueType: "double"
  3879. minValue: null
  3880. maxValue: null
  3881. syncField: null
  3882. calcFormula: null
  3883. - deviceId: "710032511130086"
  3884. deviceName: "春园东路"
  3885. deviceSn: null
  3886. deviceKind: "press"
  3887. platform: "zhonghuan-scada"
  3888. mfrs: null
  3889. createTime: "2025-11-03 17:45:44"
  3890. tags:
  3891. - tag: "cydl_压力"
  3892. protocol: "json"
  3893. measurement: "WaterMeter"
  3894. field: "press_cur"
  3895. valueType: "double"
  3896. minValue: null
  3897. maxValue: null
  3898. syncField: null
  3899. calcFormula: null
  3900. - tag: "cydl_电压"
  3901. protocol: "json"
  3902. measurement: "WaterMeter"
  3903. field: "battery_voltage"
  3904. valueType: "double"
  3905. minValue: null
  3906. maxValue: null
  3907. syncField: null
  3908. calcFormula: null
  3909. - deviceId: "710032511130087"
  3910. deviceName: "车城南路"
  3911. deviceSn: null
  3912. deviceKind: "press"
  3913. platform: "zhonghuan-scada"
  3914. mfrs: null
  3915. createTime: "2025-11-03 17:45:44"
  3916. tags:
  3917. - tag: "gw_ccnl__压力"
  3918. protocol: "json"
  3919. measurement: "WaterMeter"
  3920. field: "press_cur"
  3921. valueType: "double"
  3922. minValue: null
  3923. maxValue: null
  3924. syncField: null
  3925. calcFormula: null
  3926. - tag: "gw_ccnl__电压"
  3927. protocol: "json"
  3928. measurement: "WaterMeter"
  3929. field: "battery_voltage"
  3930. valueType: "double"
  3931. minValue: null
  3932. maxValue: null
  3933. syncField: null
  3934. calcFormula: null
  3935. - deviceId: "710032511130088"
  3936. deviceName: "测压3542"
  3937. deviceSn: null
  3938. deviceKind: "press"
  3939. platform: "zhonghuan-scada"
  3940. mfrs: null
  3941. createTime: "2025-11-03 17:45:44"
  3942. tags:
  3943. - tag: "gw_3542_压力"
  3944. protocol: "json"
  3945. measurement: "WaterMeter"
  3946. field: "press_cur"
  3947. valueType: "double"
  3948. minValue: null
  3949. maxValue: null
  3950. syncField: null
  3951. calcFormula: null
  3952. - tag: "gw_3542_电压"
  3953. protocol: "json"
  3954. measurement: "WaterMeter"
  3955. field: "battery_voltage"
  3956. valueType: "double"
  3957. minValue: null
  3958. maxValue: null
  3959. syncField: null
  3960. calcFormula: null
  3961. - deviceId: "710032511130089"
  3962. deviceName: "比亚迪"
  3963. deviceSn: null
  3964. deviceKind: "press"
  3965. platform: "zhonghuan-scada"
  3966. mfrs: null
  3967. createTime: "2025-11-03 17:45:44"
  3968. tags:
  3969. - tag: "gw_byd_压力"
  3970. protocol: "json"
  3971. measurement: "WaterMeter"
  3972. field: "press_cur"
  3973. valueType: "double"
  3974. minValue: null
  3975. maxValue: null
  3976. syncField: null
  3977. calcFormula: null
  3978. - tag: "gw_byd_电压"
  3979. protocol: "json"
  3980. measurement: "WaterMeter"
  3981. field: "battery_voltage"
  3982. valueType: "double"
  3983. minValue: null
  3984. maxValue: null
  3985. syncField: null
  3986. calcFormula: null
  3987. - deviceId: "710032511130090"
  3988. deviceName: "备用6"
  3989. deviceSn: null
  3990. deviceKind: "press"
  3991. platform: "zhonghuan-scada"
  3992. mfrs: null
  3993. createTime: "2025-11-03 17:45:44"
  3994. tags:
  3995. - tag: "by6_压力"
  3996. protocol: "json"
  3997. measurement: "WaterMeter"
  3998. field: "press_cur"
  3999. valueType: "double"
  4000. minValue: null
  4001. maxValue: null
  4002. syncField: null
  4003. calcFormula: null
  4004. - tag: "by6_电压"
  4005. protocol: "json"
  4006. measurement: "WaterMeter"
  4007. field: "battery_voltage"
  4008. valueType: "double"
  4009. minValue: null
  4010. maxValue: null
  4011. syncField: null
  4012. calcFormula: null
  4013. - deviceId: "710032511130091"
  4014. deviceName: "北环建"
  4015. deviceSn: null
  4016. deviceKind: "press"
  4017. platform: "zhonghuan-scada"
  4018. mfrs: null
  4019. createTime: "2025-11-03 17:45:44"
  4020. tags:
  4021. - tag: "gw_bhj_压力"
  4022. protocol: "json"
  4023. measurement: "WaterMeter"
  4024. field: "press_cur"
  4025. valueType: "double"
  4026. minValue: null
  4027. maxValue: null
  4028. syncField: null
  4029. calcFormula: null
  4030. - tag: "gw_bhj_电压"
  4031. protocol: "json"
  4032. measurement: "WaterMeter"
  4033. field: "battery_voltage"
  4034. valueType: "double"
  4035. minValue: null
  4036. maxValue: null
  4037. syncField: null
  4038. calcFormula: null
  4039. - deviceId: "710032511130092"
  4040. deviceName: "保税物流中心"
  4041. deviceSn: null
  4042. deviceKind: "press"
  4043. platform: "zhonghuan-scada"
  4044. mfrs: null
  4045. createTime: "2025-11-03 17:45:44"
  4046. tags:
  4047. - tag: "gw_bswl_压力"
  4048. protocol: "json"
  4049. measurement: "WaterMeter"
  4050. field: "press_cur"
  4051. valueType: "double"
  4052. minValue: null
  4053. maxValue: null
  4054. syncField: null
  4055. calcFormula: null
  4056. - tag: "gw_bswl_电压"
  4057. protocol: "json"
  4058. measurement: "WaterMeter"
  4059. field: "battery_voltage"
  4060. valueType: "double"
  4061. minValue: null
  4062. maxValue: null
  4063. syncField: null
  4064. calcFormula: null
  4065. - deviceId: "710032511130093"
  4066. deviceName: "白马广场"
  4067. deviceSn: null
  4068. deviceKind: "press"
  4069. platform: "zhonghuan-scada"
  4070. mfrs: null
  4071. createTime: "2025-11-03 17:45:44"
  4072. tags:
  4073. - tag: "gw_bmgc_压力"
  4074. protocol: "json"
  4075. measurement: "WaterMeter"
  4076. field: "press_cur"
  4077. valueType: "double"
  4078. minValue: null
  4079. maxValue: null
  4080. syncField: null
  4081. calcFormula: null
  4082. - tag: "gw_bmgc_电压"
  4083. protocol: "json"
  4084. measurement: "WaterMeter"
  4085. field: "battery_voltage"
  4086. valueType: "double"
  4087. minValue: null
  4088. maxValue: null
  4089. syncField: null
  4090. calcFormula: null
  4091. - deviceId: "710102511130001"
  4092. deviceName: "云湾泵站"
  4093. deviceSn: null
  4094. deviceKind: "quality"
  4095. platform: "zhonghuan-scada"
  4096. mfrs: null
  4097. createTime: "2025-11-03 17:45:44"
  4098. tags:
  4099. - tag: "sc_ywbz_yl"
  4100. protocol: "json"
  4101. measurement: "WaterQuality"
  4102. field: "chlorine"
  4103. valueType: "double"
  4104. minValue: null
  4105. maxValue: null
  4106. syncField: null
  4107. calcFormula: null
  4108. - deviceId: "710102511130002"
  4109. deviceName: "汤店水厂"
  4110. deviceSn: null
  4111. deviceKind: "quality"
  4112. platform: "zhonghuan-scada"
  4113. mfrs: null
  4114. createTime: "2025-11-03 17:45:44"
  4115. tags:
  4116. - tag: "gw_tdsc_yv"
  4117. protocol: "json"
  4118. measurement: "WaterQuality"
  4119. field: "chlorine"
  4120. valueType: "double"
  4121. minValue: null
  4122. maxValue: null
  4123. syncField: null
  4124. calcFormula: null
  4125. - tag: "gw_tdsc_zd"
  4126. protocol: "json"
  4127. measurement: "WaterQuality"
  4128. field: "turbidity"
  4129. valueType: "double"
  4130. minValue: null
  4131. maxValue: null
  4132. syncField: null
  4133. calcFormula: null
  4134. - deviceId: "710102511130003"
  4135. deviceName: "四厂原水浊度"
  4136. deviceSn: null
  4137. deviceKind: "quality"
  4138. platform: "zhonghuan-scada"
  4139. mfrs: null
  4140. createTime: "2025-11-03 17:45:44"
  4141. tags:
  4142. - tag: "ssc_qszd"
  4143. protocol: "json"
  4144. measurement: "WaterQuality"
  4145. field: "turbidity"
  4146. valueType: "double"
  4147. minValue: null
  4148. maxValue: null
  4149. syncField: null
  4150. calcFormula: null
  4151. - deviceId: "710102511130004"
  4152. deviceName: "四厂原水浊度1"
  4153. deviceSn: null
  4154. deviceKind: "quality"
  4155. platform: "zhonghuan-scada"
  4156. mfrs: null
  4157. createTime: "2025-11-03 17:45:44"
  4158. tags:
  4159. - tag: "ssc_qszd1"
  4160. protocol: "json"
  4161. measurement: "WaterQuality"
  4162. field: "turbidity"
  4163. valueType: "double"
  4164. minValue: null
  4165. maxValue: null
  4166. syncField: null
  4167. calcFormula: null
  4168. - deviceId: "710102511130005"
  4169. deviceName: "水质三厂出水浊度"
  4170. deviceSn: null
  4171. deviceKind: "quality"
  4172. platform: "zhonghuan-scada"
  4173. mfrs: null
  4174. createTime: "2025-11-03 17:45:44"
  4175. tags:
  4176. - tag: "gw_ssc_cszd"
  4177. protocol: "json"
  4178. measurement: "WaterQuality"
  4179. field: "turbidity"
  4180. valueType: "double"
  4181. minValue: null
  4182. maxValue: null
  4183. syncField: null
  4184. calcFormula: null
  4185. - deviceId: "710102511130006"
  4186. deviceName: "华侨城五中实验中学"
  4187. deviceSn: null
  4188. deviceKind: "quality"
  4189. platform: "zhonghuan-scada"
  4190. mfrs: null
  4191. createTime: "2025-11-03 17:45:44"
  4192. tags:
  4193. - tag: "wzsy_ph"
  4194. protocol: "json"
  4195. measurement: "WaterQuality"
  4196. field: "ph"
  4197. valueType: "double"
  4198. minValue: null
  4199. maxValue: null
  4200. syncField: null
  4201. calcFormula: null
  4202. - tag: "wzsy_yv"
  4203. protocol: "json"
  4204. measurement: "WaterQuality"
  4205. field: "chlorine"
  4206. valueType: "double"
  4207. minValue: null
  4208. maxValue: null
  4209. syncField: null
  4210. calcFormula: null
  4211. - tag: "wzsy_zd"
  4212. protocol: "json"
  4213. measurement: "WaterQuality"
  4214. field: "turbidity"
  4215. valueType: "double"
  4216. minValue: null
  4217. maxValue: null
  4218. syncField: null
  4219. calcFormula: null
  4220. - deviceId: "710102511130007"
  4221. deviceName: "二厂原水浊度"
  4222. deviceSn: null
  4223. deviceKind: "quality"
  4224. platform: "zhonghuan-scada"
  4225. mfrs: null
  4226. createTime: "2025-11-03 17:45:44"
  4227. tags:
  4228. - tag: "gw_esc_yszd"
  4229. protocol: "json"
  4230. measurement: "WaterQuality"
  4231. field: "turbidity"
  4232. valueType: "double"
  4233. minValue: null
  4234. maxValue: null
  4235. syncField: null
  4236. calcFormula: null
  4237. - deviceId: "710102511130008"
  4238. deviceName: "水质五水厂取水浊度"
  4239. deviceSn: null
  4240. deviceKind: "quality"
  4241. platform: "zhonghuan-scada"
  4242. mfrs: null
  4243. createTime: "2025-11-03 17:45:44"
  4244. tags:
  4245. - tag: "gw_wscqs_zd"
  4246. protocol: "json"
  4247. measurement: "WaterQuality"
  4248. field: "turbidity"
  4249. valueType: "double"
  4250. minValue: null
  4251. maxValue: null
  4252. syncField: null
  4253. calcFormula: null
  4254. - deviceId: "710102511130009"
  4255. deviceName: "水质五水厂"
  4256. deviceSn: null
  4257. deviceKind: "quality"
  4258. platform: "zhonghuan-scada"
  4259. mfrs: null
  4260. createTime: "2025-11-03 17:45:44"
  4261. tags:
  4262. - tag: "gw_wsc_yv"
  4263. protocol: "json"
  4264. measurement: "WaterQuality"
  4265. field: "chlorine"
  4266. valueType: "double"
  4267. minValue: null
  4268. maxValue: null
  4269. syncField: null
  4270. calcFormula: null
  4271. - tag: "gw_wsc_zd"
  4272. protocol: "json"
  4273. measurement: "WaterQuality"
  4274. field: "turbidity"
  4275. valueType: "double"
  4276. minValue: null
  4277. maxValue: null
  4278. syncField: null
  4279. calcFormula: null
  4280. - tag: "gw_wsc_wd"
  4281. protocol: "json"
  4282. measurement: "WaterQuality"
  4283. field: "temperature"
  4284. valueType: "double"
  4285. minValue: null
  4286. maxValue: null
  4287. syncField: null
  4288. calcFormula: null
  4289. - deviceId: "710102511130010"
  4290. deviceName: "水质四水厂"
  4291. deviceSn: null
  4292. deviceKind: "quality"
  4293. platform: "zhonghuan-scada"
  4294. mfrs: null
  4295. createTime: "2025-11-03 17:45:44"
  4296. tags:
  4297. - tag: "gw_sisc_ph"
  4298. protocol: "json"
  4299. measurement: "WaterQuality"
  4300. field: "ph"
  4301. valueType: "double"
  4302. minValue: null
  4303. maxValue: null
  4304. syncField: null
  4305. calcFormula: null
  4306. - tag: "gw_sisc_yv"
  4307. protocol: "json"
  4308. measurement: "WaterQuality"
  4309. field: "chlorine"
  4310. valueType: "double"
  4311. minValue: null
  4312. maxValue: null
  4313. syncField: null
  4314. calcFormula: null
  4315. - tag: "gw_sisc_zd"
  4316. protocol: "json"
  4317. measurement: "WaterQuality"
  4318. field: "turbidity"
  4319. valueType: "double"
  4320. minValue: null
  4321. maxValue: null
  4322. syncField: null
  4323. calcFormula: null
  4324. - tag: "gw_sisc_wd"
  4325. protocol: "json"
  4326. measurement: "WaterQuality"
  4327. field: "temperature"
  4328. valueType: "double"
  4329. minValue: null
  4330. maxValue: null
  4331. syncField: null
  4332. calcFormula: null
  4333. - deviceId: "710102511130011"
  4334. deviceName: "水质三水厂"
  4335. deviceSn: null
  4336. deviceKind: "quality"
  4337. platform: "zhonghuan-scada"
  4338. mfrs: null
  4339. createTime: "2025-11-03 17:45:44"
  4340. tags:
  4341. - tag: "gw_ssc_ph"
  4342. protocol: "json"
  4343. measurement: "WaterQuality"
  4344. field: "ph"
  4345. valueType: "double"
  4346. minValue: null
  4347. maxValue: null
  4348. syncField: null
  4349. calcFormula: null
  4350. - tag: "gw_ssc_yv"
  4351. protocol: "json"
  4352. measurement: "WaterQuality"
  4353. field: "chlorine"
  4354. valueType: "double"
  4355. minValue: null
  4356. maxValue: null
  4357. syncField: null
  4358. calcFormula: null
  4359. - tag: "gw_ssc_zd"
  4360. protocol: "json"
  4361. measurement: "WaterQuality"
  4362. field: "turbidity"
  4363. valueType: "double"
  4364. minValue: null
  4365. maxValue: null
  4366. syncField: null
  4367. calcFormula: null
  4368. - tag: "gw_ssc_wd"
  4369. protocol: "json"
  4370. measurement: "WaterQuality"
  4371. field: "temperature"
  4372. valueType: "double"
  4373. minValue: null
  4374. maxValue: null
  4375. syncField: null
  4376. calcFormula: null
  4377. - deviceId: "710102511130012"
  4378. deviceName: "水质二水厂"
  4379. deviceSn: null
  4380. deviceKind: "quality"
  4381. platform: "zhonghuan-scada"
  4382. mfrs: null
  4383. createTime: "2025-11-03 17:45:44"
  4384. tags:
  4385. - tag: "gw_esc_ph"
  4386. protocol: "json"
  4387. measurement: "WaterQuality"
  4388. field: "ph"
  4389. valueType: "double"
  4390. minValue: null
  4391. maxValue: null
  4392. syncField: null
  4393. calcFormula: null
  4394. - tag: "gw_esc_yv"
  4395. protocol: "json"
  4396. measurement: "WaterQuality"
  4397. field: "chlorine"
  4398. valueType: "double"
  4399. minValue: null
  4400. maxValue: null
  4401. syncField: null
  4402. calcFormula: null
  4403. - tag: "gw_esc_zd"
  4404. protocol: "json"
  4405. measurement: "WaterQuality"
  4406. field: "turbidity"
  4407. valueType: "double"
  4408. minValue: null
  4409. maxValue: null
  4410. syncField: null
  4411. calcFormula: null
  4412. - deviceId: "710102511130013"
  4413. deviceName: "苏岭山大道监测"
  4414. deviceSn: null
  4415. deviceKind: "quality"
  4416. platform: "zhonghuan-scada"
  4417. mfrs: null
  4418. createTime: "2025-11-03 17:45:44"
  4419. tags:
  4420. - tag: "tyxq_zd"
  4421. protocol: "json"
  4422. measurement: "WaterQuality"
  4423. field: "turbidity"
  4424. valueType: "double"
  4425. minValue: null
  4426. maxValue: null
  4427. syncField: null
  4428. calcFormula: null
  4429. - deviceId: "710112511130001"
  4430. deviceName: "云湾泵站-1"
  4431. deviceSn: null
  4432. deviceKind: "level"
  4433. platform: "zhonghuan-scada"
  4434. mfrs: null
  4435. createTime: "2025-11-03 17:45:44"
  4436. tags:
  4437. - tag: "sc_ywbz_sw1"
  4438. protocol: "json"
  4439. measurement: "LiquidLevel"
  4440. field: "level"
  4441. valueType: "double"
  4442. minValue: null
  4443. maxValue: null
  4444. syncField: null
  4445. calcFormula: null
  4446. - deviceId: "710112511130002"
  4447. deviceName: "云湾泵站-2"
  4448. deviceSn: null
  4449. deviceKind: "level"
  4450. platform: "zhonghuan-scada"
  4451. mfrs: null
  4452. createTime: "2025-11-03 17:45:44"
  4453. tags:
  4454. - tag: "sc_ywbz_sw2"
  4455. protocol: "json"
  4456. measurement: "LiquidLevel"
  4457. field: "level"
  4458. valueType: "double"
  4459. minValue: null
  4460. maxValue: null
  4461. syncField: null
  4462. calcFormula: null
  4463. - deviceId: "710112511130003"
  4464. deviceName: "鱼梁洲桥头"
  4465. deviceSn: null
  4466. deviceKind: "level"
  4467. platform: "zhonghuan-scada"
  4468. mfrs: null
  4469. createTime: "2025-11-03 17:45:44"
  4470. tags:
  4471. - tag: "gw_ylzqt_水位"
  4472. protocol: "json"
  4473. measurement: "LiquidLevel"
  4474. field: "level"
  4475. valueType: "double"
  4476. minValue: null
  4477. maxValue: null
  4478. syncField: null
  4479. calcFormula: null
  4480. - deviceId: "710202511130001"
  4481. deviceName: "奔驰大道智慧泵站-1号"
  4482. deviceSn: null
  4483. deviceKind: "water_pump"
  4484. platform: "zhonghuan-scada"
  4485. mfrs: null
  4486. createTime: "2025-11-03 17:45:44"
  4487. tags:
  4488. - tag: "奔驰大道1号泵开停状况"
  4489. protocol: "json"
  4490. measurement: "WaterPump"
  4491. field: "running"
  4492. valueType: "double"
  4493. minValue: null
  4494. maxValue: null
  4495. syncField: null
  4496. calcFormula: null
  4497. - tag: "奔驰大道1号泵工作频率"
  4498. protocol: "json"
  4499. measurement: "WaterPump"
  4500. field: "frequency"
  4501. valueType: "double"
  4502. minValue: null
  4503. maxValue: null
  4504. syncField: null
  4505. calcFormula: null
  4506. - deviceId: "710202511130002"
  4507. deviceName: "奔驰大道智慧泵站-2号"
  4508. deviceSn: null
  4509. deviceKind: "water_pump"
  4510. platform: "zhonghuan-scada"
  4511. mfrs: null
  4512. createTime: "2025-11-03 17:45:44"
  4513. tags:
  4514. - tag: "奔驰大道2号泵开停状况"
  4515. protocol: "json"
  4516. measurement: "WaterPump"
  4517. field: "running"
  4518. valueType: "double"
  4519. minValue: null
  4520. maxValue: null
  4521. syncField: null
  4522. calcFormula: null
  4523. - tag: "奔驰大道2号泵工作频率"
  4524. protocol: "json"
  4525. measurement: "WaterPump"
  4526. field: "frequency"
  4527. valueType: "double"
  4528. minValue: null
  4529. maxValue: null
  4530. syncField: null
  4531. calcFormula: null
  4532. - deviceId: "710202511130003"
  4533. deviceName: "奔驰大道智慧泵站-3号"
  4534. deviceSn: null
  4535. deviceKind: "water_pump"
  4536. platform: "zhonghuan-scada"
  4537. mfrs: null
  4538. createTime: "2025-11-03 17:45:44"
  4539. tags:
  4540. - tag: "奔驰大道3号泵开停状况"
  4541. protocol: "json"
  4542. measurement: "WaterPump"
  4543. field: "running"
  4544. valueType: "double"
  4545. minValue: null
  4546. maxValue: null
  4547. syncField: null
  4548. calcFormula: null
  4549. - tag: "奔驰大道3号泵工作频率"
  4550. protocol: "json"
  4551. measurement: "WaterPump"
  4552. field: "frequency"
  4553. valueType: "double"
  4554. minValue: null
  4555. maxValue: null
  4556. syncField: null
  4557. calcFormula: null