WSDH.json 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331
  1. [
  2. {
  3. "id": "79017bc87cd245f0a4b8c40f0dcc6c6e",
  4. "code": "auxiliaryHeatType",
  5. "origCode": "AuxiliaryHeatType",
  6. "name": "辅助热源形式",
  7. "aliasCode": "AuxiliaryHeatType",
  8. "aliasName": "辅助热源形式",
  9. "classCode": "WSDH",
  10. "category": "STATIC",
  11. "type": "common",
  12. "groupCode": "0",
  13. "projectId": "0",
  14. "firstTag": "技术参数",
  15. "secondTag": "太阳能",
  16. "priority": "M",
  17. "dataType": "ENUM",
  18. "isMultiple": false,
  19. "isRegion": false,
  20. "dataSource": [
  21. {
  22. "code": "1",
  23. "name": "电加热"
  24. },
  25. {
  26. "code": "2",
  27. "name": "盘管换热"
  28. },
  29. {
  30. "code": "99",
  31. "name": "其他"
  32. }
  33. ],
  34. "subFlag": false,
  35. "weakPoint": false
  36. },
  37. {
  38. "id": "03e85487808542d79bc72c8c1f50e9a5",
  39. "code": "worstTerminalOutPress",
  40. "origCode": "WorstTerminalOutPress",
  41. "name": "最不利末端出水压力",
  42. "aliasCode": "WorstTerminalOutPress",
  43. "aliasName": "最不利末端出水压力",
  44. "classCode": "WSDH",
  45. "category": "SEQUENTIAL",
  46. "type": "common",
  47. "groupCode": "0",
  48. "projectId": "0",
  49. "firstTag": "运行参数",
  50. "secondTag": "整体",
  51. "priority": "M",
  52. "unit": "Pa",
  53. "dataType": "DOUBLE",
  54. "isMultiple": false,
  55. "isRegion": false,
  56. "subFlag": false,
  57. "weakPoint": false
  58. },
  59. {
  60. "id": "f603b4141a4448b1a70c11bfaf0fe7c5",
  61. "code": "localRemoteStatus",
  62. "origCode": "LocalRemoteStatus",
  63. "name": "本地远程状态",
  64. "aliasCode": "LocalRemoteStatus",
  65. "aliasName": "本地远程状态",
  66. "classCode": "WSDH",
  67. "category": "SEQUENTIAL",
  68. "type": "common",
  69. "groupCode": "0",
  70. "projectId": "0",
  71. "firstTag": "运行参数",
  72. "priority": "S",
  73. "dataType": "BOOLEAN",
  74. "isMultiple": false,
  75. "isRegion": false,
  76. "dataSource": [
  77. {
  78. "code": "0",
  79. "name": "本地"
  80. },
  81. {
  82. "code": "1",
  83. "name": "远程"
  84. }
  85. ],
  86. "subFlag": false,
  87. "weakPoint": false
  88. },
  89. {
  90. "id": "8509622a6b09435ca1357ef0ee2d68e9",
  91. "code": "bimId",
  92. "origCode": "BIMID",
  93. "name": "BIM模型中编码",
  94. "aliasCode": "BIMID",
  95. "aliasName": "BIM模型中编码",
  96. "classCode": "WSDH",
  97. "category": "STATIC",
  98. "type": "common",
  99. "groupCode": "0",
  100. "projectId": "0",
  101. "firstTag": "基本参数",
  102. "priority": "R",
  103. "dataType": "STRING",
  104. "isMultiple": false,
  105. "isRegion": false,
  106. "subFlag": false,
  107. "weakPoint": false
  108. },
  109. {
  110. "id": "e13dcea0286e4ae89d4a2a1bc4fffe6d",
  111. "code": "supplyPumpInPress",
  112. "origCode": "SupplyPumpInPress",
  113. "name": "供水侧水泵进口压强",
  114. "aliasCode": "SupplyPumpInPress",
  115. "aliasName": "供水侧水泵进口压强",
  116. "classCode": "WSDH",
  117. "category": "SEQUENTIAL",
  118. "type": "common",
  119. "groupCode": "0",
  120. "projectId": "0",
  121. "firstTag": "运行参数",
  122. "secondTag": "整体",
  123. "priority": "M",
  124. "unit": "MPa",
  125. "dataType": "DOUBLE",
  126. "isMultiple": false,
  127. "isRegion": false,
  128. "subFlag": false,
  129. "weakPoint": false
  130. },
  131. {
  132. "id": "85e7c3c0c5784032af250d636de591da",
  133. "code": "heatSourceReturnFlow",
  134. "origCode": "HeatSourceReturnFlow",
  135. "name": "热源回水量",
  136. "aliasCode": "HeatSourceReturnFlow",
  137. "aliasName": "热源回水量",
  138. "classCode": "WSDH",
  139. "category": "SEQUENTIAL",
  140. "type": "common",
  141. "groupCode": "0",
  142. "projectId": "0",
  143. "firstTag": "运行参数",
  144. "secondTag": "整体",
  145. "priority": "M",
  146. "unit": "m3/h",
  147. "dataType": "DOUBLE",
  148. "isMultiple": false,
  149. "isRegion": false,
  150. "subFlag": false,
  151. "weakPoint": false
  152. },
  153. {
  154. "id": "16c1e16ab6fd431789777654accd1897",
  155. "code": "onlineStatus",
  156. "origCode": "OnlineStatus",
  157. "name": "在线状态",
  158. "aliasCode": "OnlineStatus",
  159. "aliasName": "在线状态",
  160. "classCode": "WSDH",
  161. "category": "SEQUENTIAL",
  162. "type": "common",
  163. "groupCode": "0",
  164. "projectId": "0",
  165. "firstTag": "运行参数",
  166. "priority": "S",
  167. "dataType": "BOOLEAN",
  168. "isMultiple": false,
  169. "isRegion": false,
  170. "dataSource": [
  171. {
  172. "code": "0",
  173. "name": "离线"
  174. },
  175. {
  176. "code": "1",
  177. "name": "在线"
  178. }
  179. ],
  180. "subFlag": false,
  181. "weakPoint": false
  182. },
  183. {
  184. "id": "1d89c77592704e1f8b3aed771297ba4f",
  185. "code": "supplyPumpNum",
  186. "origCode": "SupplyPumpNum",
  187. "name": "供水侧水泵台数",
  188. "aliasCode": "SupplyPumpNum",
  189. "aliasName": "供水侧水泵台数",
  190. "classCode": "WSDH",
  191. "category": "STATIC",
  192. "type": "common",
  193. "groupCode": "0",
  194. "projectId": "0",
  195. "firstTag": "技术参数",
  196. "secondTag": "整体",
  197. "priority": "M",
  198. "unit": "台",
  199. "dataType": "DOUBLE",
  200. "isMultiple": false,
  201. "isRegion": false,
  202. "note": "整型",
  203. "subFlag": false,
  204. "weakPoint": false
  205. },
  206. {
  207. "id": "2e381fea7490444fa3bb615033f38ff7",
  208. "code": "hotWaterSupplyFlow",
  209. "origCode": "HotWaterSupplyFlow",
  210. "name": "供热水流量",
  211. "aliasCode": "HotWaterSupplyFlow",
  212. "aliasName": "供热水流量",
  213. "classCode": "WSDH",
  214. "category": "SEQUENTIAL",
  215. "type": "common",
  216. "groupCode": "0",
  217. "projectId": "0",
  218. "firstTag": "运行参数",
  219. "secondTag": "整体",
  220. "priority": "M",
  221. "unit": "m3/h",
  222. "dataType": "DOUBLE",
  223. "isMultiple": false,
  224. "isRegion": false,
  225. "subFlag": false,
  226. "weakPoint": false
  227. },
  228. {
  229. "id": "ffdfaf04c15641d9a93ad804753751ef",
  230. "code": "collectorDirect",
  231. "origCode": "CollectorDirect",
  232. "name": "集热板朝向",
  233. "aliasCode": "CollectorDirect",
  234. "aliasName": "集热板朝向",
  235. "classCode": "WSDH",
  236. "category": "STATIC",
  237. "type": "common",
  238. "groupCode": "0",
  239. "projectId": "0",
  240. "firstTag": "技术参数",
  241. "secondTag": "太阳能",
  242. "priority": "R",
  243. "dataType": "ENUM",
  244. "isMultiple": false,
  245. "isRegion": false,
  246. "dataSource": [
  247. {
  248. "code": "0",
  249. "name": "其他"
  250. },
  251. {
  252. "code": "1",
  253. "name": "北"
  254. },
  255. {
  256. "code": "2",
  257. "name": "东北偏北"
  258. },
  259. {
  260. "code": "3",
  261. "name": "东北"
  262. },
  263. {
  264. "code": "4",
  265. "name": "东北偏东"
  266. },
  267. {
  268. "code": "5",
  269. "name": "东"
  270. },
  271. {
  272. "code": "6",
  273. "name": "东南偏东"
  274. },
  275. {
  276. "code": "7",
  277. "name": "东南"
  278. },
  279. {
  280. "code": "8",
  281. "name": "东南偏南"
  282. },
  283. {
  284. "code": "9",
  285. "name": "南"
  286. },
  287. {
  288. "code": "A",
  289. "name": "西南偏南"
  290. },
  291. {
  292. "code": "B",
  293. "name": "西南"
  294. },
  295. {
  296. "code": "C",
  297. "name": "西南偏西"
  298. },
  299. {
  300. "code": "D",
  301. "name": "西"
  302. },
  303. {
  304. "code": "E",
  305. "name": "西北偏西"
  306. },
  307. {
  308. "code": "F",
  309. "name": "西北"
  310. },
  311. {
  312. "code": "G",
  313. "name": "西北偏北"
  314. },
  315. {
  316. "code": "H",
  317. "name": "全向"
  318. }
  319. ],
  320. "subFlag": false,
  321. "weakPoint": false
  322. },
  323. {
  324. "id": "9c45356fa51d4293b13fac7ec2738c1a",
  325. "code": "localId",
  326. "origCode": "SysLocalID",
  327. "name": "系统本地编码",
  328. "aliasCode": "SysLocalID",
  329. "aliasName": "系统本地编码",
  330. "classCode": "WSDH",
  331. "category": "STATIC",
  332. "type": "common",
  333. "groupCode": "0",
  334. "projectId": "0",
  335. "firstTag": "基本参数",
  336. "priority": "S",
  337. "dataType": "STRING",
  338. "isMultiple": false,
  339. "isRegion": false,
  340. "subFlag": false,
  341. "weakPoint": false
  342. },
  343. {
  344. "id": "c1d251e1a3ca48db8ad61cd0cb363e5c",
  345. "code": "heatSourceReturnTemp",
  346. "origCode": "HeatSourceReturnTemp",
  347. "name": "热源回水温度",
  348. "aliasCode": "HeatSourceReturnTemp",
  349. "aliasName": "热源回水温度",
  350. "classCode": "WSDH",
  351. "category": "SEQUENTIAL",
  352. "type": "common",
  353. "groupCode": "0",
  354. "projectId": "0",
  355. "firstTag": "运行参数",
  356. "secondTag": "整体",
  357. "priority": "M",
  358. "unit": "℃",
  359. "dataType": "DOUBLE",
  360. "isMultiple": false,
  361. "isRegion": false,
  362. "subFlag": false,
  363. "weakPoint": false
  364. },
  365. {
  366. "id": "1d070bb7a62b43c2a0255c2a0a957f69",
  367. "code": "mixType",
  368. "origCode": "MixType",
  369. "name": "混水形式",
  370. "aliasCode": "MixType",
  371. "aliasName": "混水形式",
  372. "classCode": "WSDH",
  373. "category": "STATIC",
  374. "type": "common",
  375. "groupCode": "0",
  376. "projectId": "0",
  377. "firstTag": "技术参数",
  378. "secondTag": "整体",
  379. "priority": "R",
  380. "dataType": "ENUM",
  381. "isMultiple": false,
  382. "isRegion": false,
  383. "dataSource": [
  384. {
  385. "code": "1",
  386. "name": "无混合装置的直接连接"
  387. },
  388. {
  389. "code": "2",
  390. "name": "水喷射器的直接连接"
  391. },
  392. {
  393. "code": "3",
  394. "name": "混合水泵的直接连接"
  395. },
  396. {
  397. "code": "99",
  398. "name": "其他"
  399. }
  400. ],
  401. "note": "无换热器直供",
  402. "subFlag": false,
  403. "weakPoint": false
  404. },
  405. {
  406. "id": "a57837c93fb041efbb232020b034f8c6",
  407. "code": "ratedHeatSourceOutFlow",
  408. "origCode": "RatedHeatSourceOutFlow",
  409. "name": "额定热源出水流量",
  410. "aliasCode": "RatedHeatSourceOutFlow",
  411. "aliasName": "额定热源出水流量",
  412. "classCode": "WSDH",
  413. "category": "STATIC",
  414. "type": "common",
  415. "groupCode": "0",
  416. "projectId": "0",
  417. "firstTag": "技术参数",
  418. "secondTag": "整体",
  419. "priority": "M",
  420. "unit": "m3/h",
  421. "dataType": "DOUBLE",
  422. "isMultiple": false,
  423. "isRegion": false,
  424. "subFlag": false,
  425. "weakPoint": false
  426. },
  427. {
  428. "id": "cf3d21bd4f4041fc82b5bc5f1023ef4e",
  429. "code": "faultStatus",
  430. "origCode": "FaultStatus",
  431. "name": "故障状态",
  432. "aliasCode": "FaultStatus",
  433. "aliasName": "故障状态",
  434. "classCode": "WSDH",
  435. "category": "SEQUENTIAL",
  436. "type": "common",
  437. "groupCode": "0",
  438. "projectId": "0",
  439. "firstTag": "运行参数",
  440. "priority": "S",
  441. "dataType": "BOOLEAN",
  442. "isMultiple": false,
  443. "isRegion": false,
  444. "dataSource": [
  445. {
  446. "code": "0",
  447. "name": "正常"
  448. },
  449. {
  450. "code": "1",
  451. "name": "故障"
  452. }
  453. ],
  454. "subFlag": false,
  455. "weakPoint": false
  456. },
  457. {
  458. "id": "4973ede0795b4be286078f42b25b5a16",
  459. "code": "sysOnSet",
  460. "origCode": "SysOnSet",
  461. "name": "系统开设定",
  462. "aliasCode": "SysOnSet",
  463. "aliasName": "系统开设定",
  464. "classCode": "WSDH",
  465. "category": "GRADATION",
  466. "type": "common",
  467. "groupCode": "0",
  468. "projectId": "0",
  469. "firstTag": "设定参数",
  470. "priority": "S",
  471. "dataType": "BOOLEAN",
  472. "isMultiple": false,
  473. "isRegion": false,
  474. "dataSource": [
  475. {
  476. "code": "0",
  477. "name": "正常"
  478. },
  479. {
  480. "code": "1",
  481. "name": "开启"
  482. }
  483. ],
  484. "subFlag": false,
  485. "weakPoint": false
  486. },
  487. {
  488. "id": "0ea35eeede82479d834ab45c5e7f2f06",
  489. "code": "heatSourcePumpRunNum",
  490. "origCode": "HeatSourcePumpRunNum",
  491. "name": "热源侧水泵开启台数",
  492. "aliasCode": "HeatSourcePumpRunNum",
  493. "aliasName": "热源侧水泵开启台数",
  494. "classCode": "WSDH",
  495. "category": "SEQUENTIAL",
  496. "type": "common",
  497. "groupCode": "0",
  498. "projectId": "0",
  499. "firstTag": "运行参数",
  500. "secondTag": "整体",
  501. "priority": "S",
  502. "unit": "台",
  503. "dataType": "DOUBLE",
  504. "isMultiple": false,
  505. "isRegion": false,
  506. "note": "整型",
  507. "subFlag": false,
  508. "weakPoint": false
  509. },
  510. {
  511. "id": "91642f18387e4c08b935c57af6046d7e",
  512. "code": "runStatus",
  513. "origCode": "RunStatus",
  514. "name": "运行状态",
  515. "aliasCode": "RunStatus",
  516. "aliasName": "运行状态",
  517. "classCode": "WSDH",
  518. "category": "SEQUENTIAL",
  519. "type": "common",
  520. "groupCode": "0",
  521. "projectId": "0",
  522. "firstTag": "运行参数",
  523. "priority": "S",
  524. "dataType": "BOOLEAN",
  525. "isMultiple": false,
  526. "isRegion": false,
  527. "dataSource": [
  528. {
  529. "code": "0",
  530. "name": "停止"
  531. },
  532. {
  533. "code": "1",
  534. "name": "运行"
  535. }
  536. ],
  537. "subFlag": false,
  538. "weakPoint": false
  539. },
  540. {
  541. "id": "b20a29da759a46d89c1a66ec656b4ceb",
  542. "code": "ratedWorstTerminalPressDrop",
  543. "origCode": "RatedWorstTerminalPressDrop",
  544. "name": "设计最不利末端压降",
  545. "aliasCode": "RatedWorstTerminalPressDrop",
  546. "aliasName": "设计最不利末端压降",
  547. "classCode": "WSDH",
  548. "category": "STATIC",
  549. "type": "common",
  550. "groupCode": "0",
  551. "projectId": "0",
  552. "firstTag": "技术参数",
  553. "secondTag": "整体",
  554. "priority": "M",
  555. "unit": "MPa",
  556. "dataType": "DOUBLE",
  557. "isMultiple": false,
  558. "isRegion": false,
  559. "note": "额定流量下",
  560. "subFlag": false,
  561. "weakPoint": false
  562. },
  563. {
  564. "id": "6da5c9159f4d45698f939080b6992ed4",
  565. "code": "hotWaterReturnTemp",
  566. "origCode": "HotWaterReturnTemp",
  567. "name": "供热水回水温度",
  568. "aliasCode": "HotWaterReturnTemp",
  569. "aliasName": "供热水回水温度",
  570. "classCode": "WSDH",
  571. "category": "SEQUENTIAL",
  572. "type": "common",
  573. "groupCode": "0",
  574. "projectId": "0",
  575. "firstTag": "运行参数",
  576. "secondTag": "整体",
  577. "priority": "M",
  578. "unit": "℃",
  579. "dataType": "DOUBLE",
  580. "isMultiple": false,
  581. "isRegion": false,
  582. "subFlag": false,
  583. "weakPoint": false
  584. },
  585. {
  586. "id": "a116c06af0fa4fa186741a18287145af",
  587. "code": "cycleType",
  588. "origCode": "CycleType",
  589. "name": "系统循环方式",
  590. "aliasCode": "CycleType",
  591. "aliasName": "系统循环方式",
  592. "classCode": "WSDH",
  593. "category": "STATIC",
  594. "type": "common",
  595. "groupCode": "0",
  596. "projectId": "0",
  597. "firstTag": "技术参数",
  598. "secondTag": "整体",
  599. "priority": "S",
  600. "dataType": "ENUM",
  601. "isMultiple": false,
  602. "isRegion": false,
  603. "dataSource": [
  604. {
  605. "code": "1",
  606. "name": "全循环系统"
  607. },
  608. {
  609. "code": "2",
  610. "name": "半循环系统"
  611. },
  612. {
  613. "code": "3",
  614. "name": "不循环直流系统"
  615. },
  616. {
  617. "code": "99",
  618. "name": "其他"
  619. }
  620. ],
  621. "subFlag": false,
  622. "weakPoint": false
  623. },
  624. {
  625. "id": "a4f0a5387c49444f88bef9ffa91b6089",
  626. "code": "manualAutoStatus",
  627. "origCode": "ManualAutoStatus",
  628. "name": "手自动状态",
  629. "aliasCode": "ManualAutoStatus",
  630. "aliasName": "手自动状态",
  631. "classCode": "WSDH",
  632. "category": "SEQUENTIAL",
  633. "type": "common",
  634. "groupCode": "0",
  635. "projectId": "0",
  636. "firstTag": "运行参数",
  637. "priority": "S",
  638. "dataType": "BOOLEAN",
  639. "isMultiple": false,
  640. "isRegion": false,
  641. "dataSource": [
  642. {
  643. "code": "0",
  644. "name": "手动"
  645. },
  646. {
  647. "code": "1",
  648. "name": "自动"
  649. }
  650. ],
  651. "subFlag": false,
  652. "weakPoint": false
  653. },
  654. {
  655. "id": "021244406e5743dabf44330f406452b3",
  656. "code": "auxiliaryHeatP",
  657. "origCode": "AuxiliaryHeatP",
  658. "name": "辅热设备加热功率",
  659. "aliasCode": "AuxiliaryHeatP",
  660. "aliasName": "辅热设备加热功率",
  661. "classCode": "WSDH",
  662. "category": "SEQUENTIAL",
  663. "type": "common",
  664. "groupCode": "0",
  665. "projectId": "0",
  666. "firstTag": "运行参数",
  667. "secondTag": "整体",
  668. "priority": "M",
  669. "unit": "kW",
  670. "dataType": "DOUBLE",
  671. "isMultiple": false,
  672. "isRegion": false,
  673. "note": "太阳能系统",
  674. "subFlag": false,
  675. "weakPoint": false
  676. },
  677. {
  678. "id": "cbec50fd9fc648df8bb37d432e2ba661",
  679. "code": "heatSourceType",
  680. "origCode": "HeatSourceType",
  681. "name": "热源",
  682. "aliasCode": "HeatSourceType",
  683. "aliasName": "热源",
  684. "classCode": "WSDH",
  685. "category": "STATIC",
  686. "type": "common",
  687. "groupCode": "0",
  688. "projectId": "0",
  689. "firstTag": "技术参数",
  690. "secondTag": "整体",
  691. "priority": "S",
  692. "dataType": "MENUM",
  693. "isMultiple": false,
  694. "isRegion": false,
  695. "dataSource": [
  696. {
  697. "code": "1",
  698. "name": "燃油热水锅炉"
  699. },
  700. {
  701. "code": "2",
  702. "name": "燃气热水锅炉"
  703. },
  704. {
  705. "code": "3",
  706. "name": "电热水锅炉"
  707. },
  708. {
  709. "code": "4",
  710. "name": "太阳能热水器"
  711. },
  712. {
  713. "code": "5",
  714. "name": "燃气热水器"
  715. },
  716. {
  717. "code": "6",
  718. "name": "电热水器"
  719. },
  720. {
  721. "code": "7",
  722. "name": "热泵"
  723. },
  724. {
  725. "code": "99",
  726. "name": "其他"
  727. }
  728. ],
  729. "subFlag": false,
  730. "weakPoint": false
  731. },
  732. {
  733. "id": "23e77359c7cb42bdbe8eac61d351d660",
  734. "code": "supplyPumpRunNum",
  735. "origCode": "SupplyPumpRunNum",
  736. "name": "供水侧水泵开启台数",
  737. "aliasCode": "SupplyPumpRunNum",
  738. "aliasName": "供水侧水泵开启台数",
  739. "classCode": "WSDH",
  740. "category": "SEQUENTIAL",
  741. "type": "common",
  742. "groupCode": "0",
  743. "projectId": "0",
  744. "firstTag": "运行参数",
  745. "secondTag": "整体",
  746. "priority": "S",
  747. "unit": "台",
  748. "dataType": "DOUBLE",
  749. "isMultiple": false,
  750. "isRegion": false,
  751. "note": "整型",
  752. "subFlag": false,
  753. "weakPoint": false
  754. },
  755. {
  756. "id": "d8293ff27173409299949215f1638246",
  757. "code": "manualAutoSet",
  758. "origCode": "ManualAutoSet",
  759. "name": "手自动状态设定",
  760. "aliasCode": "ManualAutoSet",
  761. "aliasName": "手自动状态设定",
  762. "classCode": "WSDH",
  763. "category": "GRADATION",
  764. "type": "common",
  765. "groupCode": "0",
  766. "projectId": "0",
  767. "firstTag": "设定参数",
  768. "priority": "S",
  769. "dataType": "BOOLEAN",
  770. "isMultiple": false,
  771. "isRegion": false,
  772. "dataSource": [
  773. {
  774. "code": "0",
  775. "name": "手动"
  776. },
  777. {
  778. "code": "1",
  779. "name": "自动"
  780. }
  781. ],
  782. "subFlag": false,
  783. "weakPoint": false
  784. },
  785. {
  786. "id": "c52da94407b64416bb853407470ff663",
  787. "code": "sysSwitchSet",
  788. "origCode": "SysSwitchSet",
  789. "name": "系统开关设定",
  790. "aliasCode": "SysSwitchSet",
  791. "aliasName": "系统开关设定",
  792. "classCode": "WSDH",
  793. "category": "GRADATION",
  794. "type": "common",
  795. "groupCode": "0",
  796. "projectId": "0",
  797. "firstTag": "设定参数",
  798. "priority": "S",
  799. "dataType": "BOOLEAN",
  800. "isMultiple": false,
  801. "isRegion": false,
  802. "dataSource": [
  803. {
  804. "code": "0",
  805. "name": "关闭"
  806. },
  807. {
  808. "code": "1",
  809. "name": "开启"
  810. }
  811. ],
  812. "subFlag": false,
  813. "weakPoint": false
  814. },
  815. {
  816. "id": "68da79983c1748a9b6c41020b32cdd7d",
  817. "code": "ratedSupplyFlow",
  818. "origCode": "RatedSupplyFlow",
  819. "name": "额定供热水循环流量",
  820. "aliasCode": "RatedSupplyFlow",
  821. "aliasName": "额定供热水循环流量",
  822. "classCode": "WSDH",
  823. "category": "STATIC",
  824. "type": "common",
  825. "groupCode": "0",
  826. "projectId": "0",
  827. "firstTag": "技术参数",
  828. "secondTag": "整体",
  829. "priority": "S",
  830. "unit": "m3/h",
  831. "dataType": "DOUBLE",
  832. "isMultiple": false,
  833. "isRegion": false,
  834. "subFlag": false,
  835. "weakPoint": false
  836. },
  837. {
  838. "id": "e6d248f7b6354196aeeffe09384d15a8",
  839. "code": "qRCodePic",
  840. "origCode": "QRCodePic",
  841. "name": "二维码图片",
  842. "aliasCode": "QRCodePic",
  843. "aliasName": "二维码图片",
  844. "classCode": "WSDH",
  845. "category": "STATIC",
  846. "type": "common",
  847. "groupCode": "0",
  848. "projectId": "0",
  849. "firstTag": "基本参数",
  850. "priority": "R",
  851. "dataType": "ATTACHMENT",
  852. "isMultiple": false,
  853. "isRegion": false,
  854. "note": "图片",
  855. "subFlag": false,
  856. "weakPoint": false
  857. },
  858. {
  859. "id": "fe4aa315be414828be5a60e4e0d5450a",
  860. "code": "collectorHorizontalAngle",
  861. "origCode": "CollectorHorizontalAngle",
  862. "name": "集热板与水平方向夹角",
  863. "aliasCode": "CollectorHorizontalAngle",
  864. "aliasName": "集热板与水平方向夹角",
  865. "classCode": "WSDH",
  866. "category": "STATIC",
  867. "type": "common",
  868. "groupCode": "0",
  869. "projectId": "0",
  870. "firstTag": "技术参数",
  871. "secondTag": "太阳能",
  872. "priority": "R",
  873. "unit": "°",
  874. "dataType": "DOUBLE",
  875. "isMultiple": false,
  876. "isRegion": false,
  877. "subFlag": false,
  878. "weakPoint": false
  879. },
  880. {
  881. "id": "61be60ecd9e844c28ba9945cad8ad62e",
  882. "code": "id",
  883. "origCode": "SysID",
  884. "name": "系统ID",
  885. "aliasCode": "SysID",
  886. "aliasName": "系统ID",
  887. "classCode": "WSDH",
  888. "category": "STATIC",
  889. "type": "common",
  890. "groupCode": "0",
  891. "projectId": "0",
  892. "dataType": "STRING",
  893. "isMultiple": false,
  894. "isRegion": false,
  895. "subFlag": false,
  896. "weakPoint": false
  897. },
  898. {
  899. "id": "05ea63f673db4947bb99debfaf56f7a0",
  900. "code": "bAInterveneStatus",
  901. "origCode": "BAInterveneStatus",
  902. "name": "BA手动干预状态",
  903. "aliasCode": "BAInterveneStatus",
  904. "aliasName": "BA手动干预状态",
  905. "classCode": "WSDH",
  906. "category": "SEQUENTIAL",
  907. "type": "common",
  908. "groupCode": "0",
  909. "projectId": "0",
  910. "firstTag": "运行参数",
  911. "priority": "S",
  912. "dataType": "BOOLEAN",
  913. "isMultiple": false,
  914. "isRegion": false,
  915. "dataSource": [
  916. {
  917. "code": "0",
  918. "name": "不允许"
  919. },
  920. {
  921. "code": "1",
  922. "name": "允许"
  923. }
  924. ],
  925. "subFlag": false,
  926. "weakPoint": false
  927. },
  928. {
  929. "id": "682c55e366a4480588d89c2f5e8fe305",
  930. "code": "accHeat",
  931. "origCode": "AccHeat",
  932. "name": "累计加热量",
  933. "aliasCode": "AccHeat",
  934. "aliasName": "累计加热量",
  935. "classCode": "WSDH",
  936. "category": "SEQUENTIAL",
  937. "type": "common",
  938. "groupCode": "0",
  939. "projectId": "0",
  940. "firstTag": "运行参数",
  941. "secondTag": "整体",
  942. "priority": "M",
  943. "unit": "kWh",
  944. "dataType": "DOUBLE",
  945. "isMultiple": false,
  946. "isRegion": false,
  947. "subFlag": false,
  948. "weakPoint": false
  949. },
  950. {
  951. "id": "91c2666d54024ef18fb1ad5b9505281e",
  952. "code": "heatSourcePumpNum",
  953. "origCode": "HeatSourcePumpNum",
  954. "name": "热源侧水泵台数",
  955. "aliasCode": "HeatSourcePumpNum",
  956. "aliasName": "热源侧水泵台数",
  957. "classCode": "WSDH",
  958. "category": "STATIC",
  959. "type": "common",
  960. "groupCode": "0",
  961. "projectId": "0",
  962. "firstTag": "技术参数",
  963. "secondTag": "整体",
  964. "priority": "M",
  965. "unit": "台",
  966. "dataType": "DOUBLE",
  967. "isMultiple": false,
  968. "isRegion": false,
  969. "note": "整型",
  970. "subFlag": false,
  971. "weakPoint": false
  972. },
  973. {
  974. "id": "436a8ef8ff354a5d88c16cb127670c92",
  975. "code": "localName",
  976. "origCode": "SysLocalName",
  977. "name": "系统本地名称",
  978. "aliasCode": "SysLocalName",
  979. "aliasName": "系统本地名称",
  980. "classCode": "WSDH",
  981. "category": "STATIC",
  982. "type": "common",
  983. "groupCode": "0",
  984. "projectId": "0",
  985. "firstTag": "基本参数",
  986. "priority": "S",
  987. "dataType": "STRING",
  988. "isMultiple": false,
  989. "isRegion": false,
  990. "subFlag": false,
  991. "weakPoint": false
  992. },
  993. {
  994. "id": "12099118db4f43db93bec0fee2a7584e",
  995. "code": "collectorType",
  996. "origCode": "CollectorType",
  997. "name": "集热器类型",
  998. "aliasCode": "CollectorType",
  999. "aliasName": "集热器类型",
  1000. "classCode": "WSDH",
  1001. "category": "STATIC",
  1002. "type": "common",
  1003. "groupCode": "0",
  1004. "projectId": "0",
  1005. "firstTag": "技术参数",
  1006. "secondTag": "太阳能",
  1007. "priority": "S",
  1008. "dataType": "ENUM",
  1009. "isMultiple": false,
  1010. "isRegion": false,
  1011. "dataSource": [
  1012. {
  1013. "code": "1",
  1014. "name": "平板型"
  1015. },
  1016. {
  1017. "code": "2",
  1018. "name": "真空管型"
  1019. },
  1020. {
  1021. "code": "99",
  1022. "name": "其他"
  1023. }
  1024. ],
  1025. "subFlag": false,
  1026. "weakPoint": false
  1027. },
  1028. {
  1029. "id": "839530ea313b4e7cbfe6fa537eee6808",
  1030. "code": "accSysElecConsum",
  1031. "origCode": "AccSysElecConsum",
  1032. "name": "系统累计耗电量",
  1033. "aliasCode": "AccSysElecConsum",
  1034. "aliasName": "系统累计耗电量",
  1035. "classCode": "WSDH",
  1036. "category": "SEQUENTIAL",
  1037. "type": "common",
  1038. "groupCode": "0",
  1039. "projectId": "0",
  1040. "firstTag": "运行参数",
  1041. "secondTag": "整体",
  1042. "priority": "M",
  1043. "unit": "kWh",
  1044. "dataType": "DOUBLE",
  1045. "isMultiple": false,
  1046. "isRegion": false,
  1047. "subFlag": false,
  1048. "weakPoint": false
  1049. },
  1050. {
  1051. "id": "020dc22ada6e48c5add0a11e4eea3627",
  1052. "code": "runMode",
  1053. "origCode": "RunMode",
  1054. "name": "运行模式",
  1055. "aliasCode": "RunMode",
  1056. "aliasName": "运行模式",
  1057. "classCode": "WSDH",
  1058. "category": "SEQUENTIAL",
  1059. "type": "common",
  1060. "groupCode": "0",
  1061. "projectId": "0",
  1062. "firstTag": "运行参数",
  1063. "priority": "S",
  1064. "dataType": "ENUM",
  1065. "isMultiple": false,
  1066. "isRegion": false,
  1067. "dataSource": [
  1068. {
  1069. "code": "99",
  1070. "name": "其他"
  1071. }
  1072. ],
  1073. "note": "选项自定义",
  1074. "subFlag": false,
  1075. "weakPoint": false
  1076. },
  1077. {
  1078. "id": "6cfbfc83d7c54e8eae22cf2d4960599d",
  1079. "code": "collectorConnect",
  1080. "origCode": "CollectorConnect",
  1081. "name": "集热器间连接形式",
  1082. "aliasCode": "CollectorConnect",
  1083. "aliasName": "集热器间连接形式",
  1084. "classCode": "WSDH",
  1085. "category": "STATIC",
  1086. "type": "common",
  1087. "groupCode": "0",
  1088. "projectId": "0",
  1089. "firstTag": "技术参数",
  1090. "secondTag": "太阳能",
  1091. "priority": "R",
  1092. "dataType": "ENUM",
  1093. "isMultiple": false,
  1094. "isRegion": false,
  1095. "dataSource": [
  1096. {
  1097. "code": "1",
  1098. "name": "串联"
  1099. },
  1100. {
  1101. "code": "2",
  1102. "name": "并联"
  1103. },
  1104. {
  1105. "code": "99",
  1106. "name": "其他"
  1107. }
  1108. ],
  1109. "subFlag": false,
  1110. "weakPoint": false
  1111. },
  1112. {
  1113. "id": "4f98c206620148a3ba8bee1e33ddb5b4",
  1114. "code": "collectorMediumConnect",
  1115. "origCode": "CollectorMediumConnect",
  1116. "name": "集热器内传热工质与大气连接形式",
  1117. "aliasCode": "CollectorMediumConnect",
  1118. "aliasName": "集热器内传热工质与大气连接形式",
  1119. "classCode": "WSDH",
  1120. "category": "STATIC",
  1121. "type": "common",
  1122. "groupCode": "0",
  1123. "projectId": "0",
  1124. "firstTag": "技术参数",
  1125. "secondTag": "太阳能",
  1126. "priority": "R",
  1127. "dataType": "ENUM",
  1128. "isMultiple": false,
  1129. "isRegion": false,
  1130. "dataSource": [
  1131. {
  1132. "code": "1",
  1133. "name": "开口式"
  1134. },
  1135. {
  1136. "code": "2",
  1137. "name": "敞开式"
  1138. },
  1139. {
  1140. "code": "3",
  1141. "name": "封闭式"
  1142. },
  1143. {
  1144. "code": "99",
  1145. "name": "其他"
  1146. }
  1147. ],
  1148. "subFlag": false,
  1149. "weakPoint": false
  1150. },
  1151. {
  1152. "id": "2fdf41308f73499e86bfa08d2b9952cf",
  1153. "code": "accAbsorbSolarE",
  1154. "origCode": "AccAbsorbSolarE",
  1155. "name": "累计吸收太阳能",
  1156. "aliasCode": "AccAbsorbSolarE",
  1157. "aliasName": "累计吸收太阳能",
  1158. "classCode": "WSDH",
  1159. "category": "SEQUENTIAL",
  1160. "type": "common",
  1161. "groupCode": "0",
  1162. "projectId": "0",
  1163. "firstTag": "运行参数",
  1164. "secondTag": "整体",
  1165. "priority": "R",
  1166. "unit": "kWh",
  1167. "dataType": "DOUBLE",
  1168. "isMultiple": false,
  1169. "isRegion": false,
  1170. "note": "太阳能系统",
  1171. "subFlag": false,
  1172. "weakPoint": false
  1173. },
  1174. {
  1175. "id": "889ce3706eff4daf9b70bcc65d450033",
  1176. "code": "isAuxiliaryHeat",
  1177. "origCode": "isAuxiliaryHeat",
  1178. "name": "是否有辅助热源",
  1179. "aliasCode": "isAuxiliaryHeat",
  1180. "aliasName": "是否有辅助热源",
  1181. "classCode": "WSDH",
  1182. "category": "STATIC",
  1183. "type": "common",
  1184. "groupCode": "0",
  1185. "projectId": "0",
  1186. "firstTag": "技术参数",
  1187. "secondTag": "太阳能",
  1188. "priority": "S",
  1189. "dataType": "BOOLEAN",
  1190. "isMultiple": false,
  1191. "isRegion": false,
  1192. "dataSource": [
  1193. {
  1194. "code": "0",
  1195. "name": "无"
  1196. },
  1197. {
  1198. "code": "1",
  1199. "name": "有"
  1200. }
  1201. ],
  1202. "subFlag": false,
  1203. "weakPoint": false
  1204. },
  1205. {
  1206. "id": "20e34bec8e914e96929812b826dc9be2",
  1207. "code": "maxAuxiliaryHeatP",
  1208. "origCode": "MaxAuxiliaryHeatP",
  1209. "name": "辅助热源最大加热功率",
  1210. "aliasCode": "MaxAuxiliaryHeatP",
  1211. "aliasName": "辅助热源最大加热功率",
  1212. "classCode": "WSDH",
  1213. "category": "STATIC",
  1214. "type": "common",
  1215. "groupCode": "0",
  1216. "projectId": "0",
  1217. "firstTag": "技术参数",
  1218. "secondTag": "太阳能",
  1219. "priority": "M",
  1220. "unit": "kW",
  1221. "dataType": "DOUBLE",
  1222. "isMultiple": false,
  1223. "isRegion": false,
  1224. "subFlag": false,
  1225. "weakPoint": false
  1226. },
  1227. {
  1228. "id": "0988025b65bc4e7fb7be9296c831ee68",
  1229. "code": "ratedHeatSourceOutTemp",
  1230. "origCode": "RatedHeatSourceOutTemp",
  1231. "name": "额定热源出水温度",
  1232. "aliasCode": "RatedHeatSourceOutTemp",
  1233. "aliasName": "额定热源出水温度",
  1234. "classCode": "WSDH",
  1235. "category": "STATIC",
  1236. "type": "common",
  1237. "groupCode": "0",
  1238. "projectId": "0",
  1239. "firstTag": "技术参数",
  1240. "secondTag": "整体",
  1241. "priority": "M",
  1242. "unit": "℃",
  1243. "dataType": "DOUBLE",
  1244. "isMultiple": false,
  1245. "isRegion": false,
  1246. "subFlag": false,
  1247. "weakPoint": false
  1248. },
  1249. {
  1250. "id": "5679f8dad5aa47f795a992f5b396630c",
  1251. "code": "sysElecConsumP",
  1252. "origCode": "SysElecConsumP",
  1253. "name": "系统耗电功率",
  1254. "aliasCode": "SysElecConsumP",
  1255. "aliasName": "系统耗电功率",
  1256. "classCode": "WSDH",
  1257. "category": "SEQUENTIAL",
  1258. "type": "common",
  1259. "groupCode": "0",
  1260. "projectId": "0",
  1261. "firstTag": "运行参数",
  1262. "secondTag": "整体",
  1263. "priority": "S",
  1264. "unit": "kW",
  1265. "dataType": "DOUBLE",
  1266. "isMultiple": false,
  1267. "isRegion": false,
  1268. "subFlag": false,
  1269. "weakPoint": false
  1270. },
  1271. {
  1272. "id": "6498fa2485f54df5a4927347325b46e5",
  1273. "code": "collectArea",
  1274. "origCode": "CollectArea",
  1275. "name": "有效集热面积",
  1276. "aliasCode": "CollectArea",
  1277. "aliasName": "有效集热面积",
  1278. "classCode": "WSDH",
  1279. "category": "STATIC",
  1280. "type": "common",
  1281. "groupCode": "0",
  1282. "projectId": "0",
  1283. "firstTag": "技术参数",
  1284. "secondTag": "太阳能",
  1285. "priority": "M",
  1286. "unit": "m2",
  1287. "dataType": "DOUBLE",
  1288. "isMultiple": false,
  1289. "isRegion": false,
  1290. "subFlag": false,
  1291. "weakPoint": false
  1292. },
  1293. {
  1294. "id": "940d27584b5849229bf7364b496e3dd6",
  1295. "code": "isMachanicalPower",
  1296. "origCode": "isMachanicalPower",
  1297. "name": "是否为机械动力循环",
  1298. "aliasCode": "isMachanicalPower",
  1299. "aliasName": "是否为机械动力循环",
  1300. "classCode": "WSDH",
  1301. "category": "STATIC",
  1302. "type": "common",
  1303. "groupCode": "0",
  1304. "projectId": "0",
  1305. "firstTag": "技术参数",
  1306. "secondTag": "整体",
  1307. "priority": "S",
  1308. "dataType": "BOOLEAN",
  1309. "isMultiple": false,
  1310. "isRegion": false,
  1311. "dataSource": [
  1312. {
  1313. "code": "0",
  1314. "name": "自然循环系统"
  1315. },
  1316. {
  1317. "code": "1",
  1318. "name": "强制循环系统"
  1319. }
  1320. ],
  1321. "subFlag": false,
  1322. "weakPoint": false
  1323. },
  1324. {
  1325. "id": "7c18895a1f4849fbbdff036d800f3a35",
  1326. "code": "isolationSet",
  1327. "origCode": "IsolationSet",
  1328. "name": "隔离设定",
  1329. "aliasCode": "IsolationSet",
  1330. "aliasName": "隔离设定",
  1331. "classCode": "WSDH",
  1332. "category": "GRADATION",
  1333. "type": "common",
  1334. "groupCode": "0",
  1335. "projectId": "0",
  1336. "firstTag": "设定参数",
  1337. "priority": "S",
  1338. "dataType": "BOOLEAN",
  1339. "isMultiple": false,
  1340. "isRegion": false,
  1341. "dataSource": [
  1342. {
  1343. "code": "0",
  1344. "name": "正常"
  1345. },
  1346. {
  1347. "code": "1",
  1348. "name": "隔离"
  1349. }
  1350. ],
  1351. "subFlag": false,
  1352. "weakPoint": false
  1353. },
  1354. {
  1355. "id": "287f2fefebcb40b0b14629dca196e1f8",
  1356. "code": "hotWaterReturnFlow",
  1357. "origCode": "HotWaterReturnFlow",
  1358. "name": "供热水回水流量",
  1359. "aliasCode": "HotWaterReturnFlow",
  1360. "aliasName": "供热水回水流量",
  1361. "classCode": "WSDH",
  1362. "category": "SEQUENTIAL",
  1363. "type": "common",
  1364. "groupCode": "0",
  1365. "projectId": "0",
  1366. "firstTag": "运行参数",
  1367. "secondTag": "整体",
  1368. "priority": "M",
  1369. "unit": "m3/h",
  1370. "dataType": "DOUBLE",
  1371. "isMultiple": false,
  1372. "isRegion": false,
  1373. "subFlag": false,
  1374. "weakPoint": false
  1375. },
  1376. {
  1377. "id": "112a3cabd43c4130b128c1a57d7be22d",
  1378. "code": "heatSourceOutFlow",
  1379. "origCode": "HeatSourceOutFlow",
  1380. "name": "热源出水量",
  1381. "aliasCode": "HeatSourceOutFlow",
  1382. "aliasName": "热源出水量",
  1383. "classCode": "WSDH",
  1384. "category": "SEQUENTIAL",
  1385. "type": "common",
  1386. "groupCode": "0",
  1387. "projectId": "0",
  1388. "firstTag": "运行参数",
  1389. "secondTag": "整体",
  1390. "priority": "M",
  1391. "unit": "m3/h",
  1392. "dataType": "DOUBLE",
  1393. "isMultiple": false,
  1394. "isRegion": false,
  1395. "subFlag": false,
  1396. "weakPoint": false
  1397. },
  1398. {
  1399. "id": "88f564be1b29453d9f8e45c02c18f2e4",
  1400. "code": "defaultQRCode",
  1401. "origCode": "DefaultQRCode",
  1402. "name": "二维码内容",
  1403. "aliasCode": "DefaultQRCode",
  1404. "aliasName": "二维码内容",
  1405. "classCode": "WSDH",
  1406. "category": "STATIC",
  1407. "type": "common",
  1408. "groupCode": "0",
  1409. "projectId": "0",
  1410. "firstTag": "基本参数",
  1411. "priority": "S",
  1412. "dataType": "STRING",
  1413. "isMultiple": false,
  1414. "isRegion": false,
  1415. "subFlag": false,
  1416. "weakPoint": false
  1417. },
  1418. {
  1419. "id": "15db90caf8864fbf8618cff1bda686de",
  1420. "code": "constantPressType",
  1421. "origCode": "ConstantPressType",
  1422. "name": "定压方式",
  1423. "aliasCode": "ConstantPressType",
  1424. "aliasName": "定压方式",
  1425. "classCode": "WSDH",
  1426. "category": "STATIC",
  1427. "type": "common",
  1428. "groupCode": "0",
  1429. "projectId": "0",
  1430. "firstTag": "技术参数",
  1431. "secondTag": "整体",
  1432. "priority": "R",
  1433. "dataType": "ENUM",
  1434. "isMultiple": false,
  1435. "isRegion": false,
  1436. "dataSource": [
  1437. {
  1438. "code": "1",
  1439. "name": "水箱定压"
  1440. },
  1441. {
  1442. "code": "2",
  1443. "name": "泵定压"
  1444. },
  1445. {
  1446. "code": "3",
  1447. "name": "气罐定压"
  1448. },
  1449. {
  1450. "code": "99",
  1451. "name": "其他"
  1452. }
  1453. ],
  1454. "subFlag": false,
  1455. "weakPoint": false
  1456. },
  1457. {
  1458. "id": "c6d400275eee414d8cae5e49b366dd90",
  1459. "code": "sysOffSet",
  1460. "origCode": "SysOffSet",
  1461. "name": "系统关设定",
  1462. "aliasCode": "SysOffSet",
  1463. "aliasName": "系统关设定",
  1464. "classCode": "WSDH",
  1465. "category": "GRADATION",
  1466. "type": "common",
  1467. "groupCode": "0",
  1468. "projectId": "0",
  1469. "firstTag": "设定参数",
  1470. "priority": "S",
  1471. "dataType": "BOOLEAN",
  1472. "isMultiple": false,
  1473. "isRegion": false,
  1474. "dataSource": [
  1475. {
  1476. "code": "0",
  1477. "name": "正常"
  1478. },
  1479. {
  1480. "code": "1",
  1481. "name": "关闭"
  1482. }
  1483. ],
  1484. "subFlag": false,
  1485. "weakPoint": false
  1486. },
  1487. {
  1488. "id": "2599dfd2bb22405ca0827451f2076542",
  1489. "code": "tapWaterFillingFlow",
  1490. "origCode": "TapWaterFillingFlow",
  1491. "name": "冷水补水量",
  1492. "aliasCode": "TapWaterFillingFlow",
  1493. "aliasName": "冷水补水量",
  1494. "classCode": "WSDH",
  1495. "category": "SEQUENTIAL",
  1496. "type": "common",
  1497. "groupCode": "0",
  1498. "projectId": "0",
  1499. "firstTag": "运行参数",
  1500. "secondTag": "整体",
  1501. "priority": "R",
  1502. "unit": "m3/h",
  1503. "dataType": "DOUBLE",
  1504. "isMultiple": false,
  1505. "isRegion": false,
  1506. "subFlag": false,
  1507. "weakPoint": false
  1508. },
  1509. {
  1510. "id": "54b6476daad348198be9192501a0f1a6",
  1511. "code": "collectorTemp",
  1512. "origCode": "CollectorTemp",
  1513. "name": "集热器内温度",
  1514. "aliasCode": "CollectorTemp",
  1515. "aliasName": "集热器内温度",
  1516. "classCode": "WSDH",
  1517. "category": "SEQUENTIAL",
  1518. "type": "common",
  1519. "groupCode": "0",
  1520. "projectId": "0",
  1521. "firstTag": "运行参数",
  1522. "secondTag": "整体",
  1523. "priority": "M",
  1524. "unit": "℃",
  1525. "dataType": "DOUBLE",
  1526. "isMultiple": false,
  1527. "isRegion": false,
  1528. "note": "太阳能系统",
  1529. "subFlag": false,
  1530. "weakPoint": false
  1531. },
  1532. {
  1533. "id": "d66946b67a6f4d09867a45579a13bfb1",
  1534. "code": "name",
  1535. "origCode": "SysName",
  1536. "name": "系统名称",
  1537. "aliasCode": "SysName",
  1538. "aliasName": "系统名称",
  1539. "classCode": "WSDH",
  1540. "category": "STATIC",
  1541. "type": "common",
  1542. "groupCode": "0",
  1543. "projectId": "0",
  1544. "dataType": "STRING",
  1545. "isMultiple": false,
  1546. "isRegion": false,
  1547. "subFlag": false,
  1548. "weakPoint": false
  1549. },
  1550. {
  1551. "id": "ea3b3cb8c20d47e88c412563fdf081e8",
  1552. "code": "inCloudStatus",
  1553. "origCode": "InCloudStatus",
  1554. "name": "云端状态",
  1555. "aliasCode": "InCloudStatus",
  1556. "aliasName": "云端状态",
  1557. "classCode": "WSDH",
  1558. "category": "SEQUENTIAL",
  1559. "type": "common",
  1560. "groupCode": "0",
  1561. "projectId": "0",
  1562. "firstTag": "运行参数",
  1563. "priority": "S",
  1564. "dataType": "BOOLEAN",
  1565. "isMultiple": false,
  1566. "isRegion": false,
  1567. "dataSource": [
  1568. {
  1569. "code": "0",
  1570. "name": "非云端"
  1571. },
  1572. {
  1573. "code": "1",
  1574. "name": "云端"
  1575. }
  1576. ],
  1577. "subFlag": false,
  1578. "weakPoint": false
  1579. },
  1580. {
  1581. "id": "9b36e0c3f1374f2b81a9bb18909b0e88",
  1582. "code": "hotWaterTankVolume",
  1583. "origCode": "HotWaterTankVolume",
  1584. "name": "储热水箱水量",
  1585. "aliasCode": "HotWaterTankVolume",
  1586. "aliasName": "储热水箱水量",
  1587. "classCode": "WSDH",
  1588. "category": "SEQUENTIAL",
  1589. "type": "common",
  1590. "groupCode": "0",
  1591. "projectId": "0",
  1592. "firstTag": "运行参数",
  1593. "secondTag": "整体",
  1594. "priority": "M",
  1595. "unit": "m3",
  1596. "dataType": "DOUBLE",
  1597. "isMultiple": false,
  1598. "isRegion": false,
  1599. "subFlag": false,
  1600. "weakPoint": false
  1601. },
  1602. {
  1603. "id": "da6cda49c914437ba9fe57acdee783e9",
  1604. "code": "hotWaterStoreTankCap",
  1605. "origCode": "HotWaterStoreTankCap",
  1606. "name": "储热水箱容积",
  1607. "aliasCode": "HotWaterStoreTankCap",
  1608. "aliasName": "储热水箱容积",
  1609. "classCode": "WSDH",
  1610. "category": "STATIC",
  1611. "type": "common",
  1612. "groupCode": "0",
  1613. "projectId": "0",
  1614. "firstTag": "技术参数",
  1615. "secondTag": "整体",
  1616. "priority": "M",
  1617. "unit": "m3",
  1618. "dataType": "DOUBLE",
  1619. "isMultiple": false,
  1620. "isRegion": false,
  1621. "subFlag": false,
  1622. "weakPoint": false
  1623. },
  1624. {
  1625. "id": "0dbfc79b7d4847cf8ce0bc0c57203c4c",
  1626. "code": "isHeatExchanger",
  1627. "origCode": "isHeatExchanger",
  1628. "name": "是否有换热器间接换热",
  1629. "aliasCode": "isHeatExchanger",
  1630. "aliasName": "是否有换热器间接换热",
  1631. "classCode": "WSDH",
  1632. "category": "STATIC",
  1633. "type": "common",
  1634. "groupCode": "0",
  1635. "projectId": "0",
  1636. "firstTag": "技术参数",
  1637. "secondTag": "整体",
  1638. "priority": "M",
  1639. "dataType": "BOOLEAN",
  1640. "isMultiple": false,
  1641. "isRegion": false,
  1642. "dataSource": [
  1643. {
  1644. "code": "0",
  1645. "name": "无换热器直供"
  1646. },
  1647. {
  1648. "code": "1",
  1649. "name": "有换热器间供"
  1650. }
  1651. ],
  1652. "subFlag": false,
  1653. "weakPoint": false
  1654. },
  1655. {
  1656. "id": "2c7b0f6149ae4ff49c649b5818339648",
  1657. "code": "tapWaterTemp",
  1658. "origCode": "TapWaterTemp",
  1659. "name": "市政冷水温度",
  1660. "aliasCode": "TapWaterTemp",
  1661. "aliasName": "市政冷水温度",
  1662. "classCode": "WSDH",
  1663. "category": "SEQUENTIAL",
  1664. "type": "common",
  1665. "groupCode": "0",
  1666. "projectId": "0",
  1667. "firstTag": "运行参数",
  1668. "secondTag": "整体",
  1669. "priority": "R",
  1670. "unit": "℃",
  1671. "dataType": "DOUBLE",
  1672. "isMultiple": false,
  1673. "isRegion": false,
  1674. "subFlag": false,
  1675. "weakPoint": false
  1676. },
  1677. {
  1678. "id": "59feeebc2a844955b1635b48b380ec63",
  1679. "code": "hotWaterConsumFlow",
  1680. "origCode": "HotWaterConsumFlow",
  1681. "name": "热水使用量",
  1682. "aliasCode": "HotWaterConsumFlow",
  1683. "aliasName": "热水使用量",
  1684. "classCode": "WSDH",
  1685. "category": "SEQUENTIAL",
  1686. "type": "common",
  1687. "groupCode": "0",
  1688. "projectId": "0",
  1689. "firstTag": "运行参数",
  1690. "secondTag": "整体",
  1691. "priority": "M",
  1692. "unit": "m3/h",
  1693. "dataType": "DOUBLE",
  1694. "isMultiple": false,
  1695. "isRegion": false,
  1696. "subFlag": false,
  1697. "weakPoint": false
  1698. },
  1699. {
  1700. "id": "21cc0b2e1a8942f7bbd9a709491c7f08",
  1701. "code": "maxSupplyFlow",
  1702. "origCode": "MaxSupplyFlow",
  1703. "name": "最大供热水量",
  1704. "aliasCode": "MaxSupplyFlow",
  1705. "aliasName": "最大供热水量",
  1706. "classCode": "WSDH",
  1707. "category": "STATIC",
  1708. "type": "common",
  1709. "groupCode": "0",
  1710. "projectId": "0",
  1711. "firstTag": "技术参数",
  1712. "secondTag": "整体",
  1713. "priority": "M",
  1714. "unit": "m3/h",
  1715. "dataType": "DOUBLE",
  1716. "isMultiple": false,
  1717. "isRegion": false,
  1718. "subFlag": false,
  1719. "weakPoint": false
  1720. },
  1721. {
  1722. "id": "8530e1ed3c124a17ab8d5b70618f7656",
  1723. "code": "userNum",
  1724. "origCode": "UserNum",
  1725. "name": "供热水户数",
  1726. "aliasCode": "UserNum",
  1727. "aliasName": "供热水户数",
  1728. "classCode": "WSDH",
  1729. "category": "STATIC",
  1730. "type": "common",
  1731. "groupCode": "0",
  1732. "projectId": "0",
  1733. "firstTag": "技术参数",
  1734. "secondTag": "整体",
  1735. "priority": "M",
  1736. "unit": "户",
  1737. "dataType": "DOUBLE",
  1738. "isMultiple": false,
  1739. "isRegion": false,
  1740. "note": "整型",
  1741. "subFlag": false,
  1742. "weakPoint": false
  1743. },
  1744. {
  1745. "id": "ce61e18da737404790b47bb848c14aff",
  1746. "code": "cADID",
  1747. "origCode": "CADID",
  1748. "name": "设计图纸中编码",
  1749. "aliasCode": "CADID",
  1750. "aliasName": "设计图纸中编码",
  1751. "classCode": "WSDH",
  1752. "category": "STATIC",
  1753. "type": "common",
  1754. "groupCode": "0",
  1755. "projectId": "0",
  1756. "firstTag": "基本参数",
  1757. "priority": "R",
  1758. "dataType": "STRING",
  1759. "isMultiple": false,
  1760. "isRegion": false,
  1761. "subFlag": false,
  1762. "weakPoint": false
  1763. },
  1764. {
  1765. "id": "0d3392b5872a4856bb7a82aa46ae308a",
  1766. "code": "hotWaterTankTemp",
  1767. "origCode": "HotWaterTankTemp",
  1768. "name": "储热水箱温度",
  1769. "aliasCode": "HotWaterTankTemp",
  1770. "aliasName": "储热水箱温度",
  1771. "classCode": "WSDH",
  1772. "category": "SEQUENTIAL",
  1773. "type": "common",
  1774. "groupCode": "0",
  1775. "projectId": "0",
  1776. "firstTag": "运行参数",
  1777. "secondTag": "整体",
  1778. "priority": "M",
  1779. "unit": "℃",
  1780. "dataType": "DOUBLE",
  1781. "isMultiple": false,
  1782. "isRegion": false,
  1783. "subFlag": false,
  1784. "weakPoint": false
  1785. },
  1786. {
  1787. "id": "08664ef559034521a434c2ee29c63b42",
  1788. "code": "instUserNum",
  1789. "origCode": "InstUserNum",
  1790. "name": "开启热水户数",
  1791. "aliasCode": "InstUserNum",
  1792. "aliasName": "开启热水户数",
  1793. "classCode": "WSDH",
  1794. "category": "SEQUENTIAL",
  1795. "type": "common",
  1796. "groupCode": "0",
  1797. "projectId": "0",
  1798. "firstTag": "运行参数",
  1799. "secondTag": "整体",
  1800. "priority": "R",
  1801. "unit": "户",
  1802. "dataType": "DOUBLE",
  1803. "isMultiple": false,
  1804. "isRegion": false,
  1805. "note": "整型",
  1806. "subFlag": false,
  1807. "weakPoint": false
  1808. },
  1809. {
  1810. "id": "00fff5e5f6e64523881f4191f74e8477",
  1811. "code": "tapWaterInPress",
  1812. "origCode": "TapWaterInPress",
  1813. "name": "市政冷水入口压力",
  1814. "aliasCode": "TapWaterInPress",
  1815. "aliasName": "市政冷水入口压力",
  1816. "classCode": "WSDH",
  1817. "category": "SEQUENTIAL",
  1818. "type": "common",
  1819. "groupCode": "0",
  1820. "projectId": "0",
  1821. "firstTag": "运行参数",
  1822. "secondTag": "整体",
  1823. "priority": "R",
  1824. "unit": "MPa",
  1825. "dataType": "DOUBLE",
  1826. "isMultiple": false,
  1827. "isRegion": false,
  1828. "subFlag": false,
  1829. "weakPoint": false
  1830. },
  1831. {
  1832. "id": "3bd5827a293642ad918ab2e90d8b4db2",
  1833. "code": "heatSourceOutTemp",
  1834. "origCode": "HeatSourceOutTemp",
  1835. "name": "热源出水温度",
  1836. "aliasCode": "HeatSourceOutTemp",
  1837. "aliasName": "热源出水温度",
  1838. "classCode": "WSDH",
  1839. "category": "SEQUENTIAL",
  1840. "type": "common",
  1841. "groupCode": "0",
  1842. "projectId": "0",
  1843. "firstTag": "运行参数",
  1844. "secondTag": "整体",
  1845. "priority": "M",
  1846. "unit": "℃",
  1847. "dataType": "DOUBLE",
  1848. "isMultiple": false,
  1849. "isRegion": false,
  1850. "subFlag": false,
  1851. "weakPoint": false
  1852. },
  1853. {
  1854. "id": "5170e0174b124da3b947e1b5e3931e78",
  1855. "code": "localRemoteSet",
  1856. "origCode": "LocalRemoteSet",
  1857. "name": "本地远程控制",
  1858. "aliasCode": "LocalRemoteSet",
  1859. "aliasName": "本地远程控制",
  1860. "classCode": "WSDH",
  1861. "category": "GRADATION",
  1862. "type": "common",
  1863. "groupCode": "0",
  1864. "projectId": "0",
  1865. "firstTag": "设定参数",
  1866. "priority": "S",
  1867. "dataType": "BOOLEAN",
  1868. "isMultiple": false,
  1869. "isRegion": false,
  1870. "dataSource": [
  1871. {
  1872. "code": "0",
  1873. "name": "本地"
  1874. },
  1875. {
  1876. "code": "1",
  1877. "name": "远程"
  1878. }
  1879. ],
  1880. "subFlag": false,
  1881. "weakPoint": false
  1882. },
  1883. {
  1884. "id": "41ecf28ed67346c097df287e760a4dcb",
  1885. "code": "systemChart",
  1886. "origCode": "SystemChart",
  1887. "name": "系统图",
  1888. "aliasCode": "SystemChart",
  1889. "aliasName": "系统图",
  1890. "classCode": "WSDH",
  1891. "category": "STATIC",
  1892. "type": "common",
  1893. "groupCode": "0",
  1894. "projectId": "0",
  1895. "firstTag": "基本参数",
  1896. "priority": "M",
  1897. "dataType": "ATTACHMENT",
  1898. "isMultiple": true,
  1899. "isRegion": false,
  1900. "subFlag": false,
  1901. "weakPoint": false
  1902. },
  1903. {
  1904. "id": "e86fcb31d3344b049e83f3357f405bec",
  1905. "code": "inCloudSet",
  1906. "origCode": "InCloudSet",
  1907. "name": "云端控制",
  1908. "aliasCode": "InCloudSet",
  1909. "aliasName": "云端控制",
  1910. "classCode": "WSDH",
  1911. "category": "GRADATION",
  1912. "type": "common",
  1913. "groupCode": "0",
  1914. "projectId": "0",
  1915. "firstTag": "设定参数",
  1916. "priority": "S",
  1917. "dataType": "BOOLEAN",
  1918. "isMultiple": false,
  1919. "isRegion": false,
  1920. "dataSource": [
  1921. {
  1922. "code": "0",
  1923. "name": "非云端"
  1924. },
  1925. {
  1926. "code": "1",
  1927. "name": "云端"
  1928. }
  1929. ],
  1930. "subFlag": false,
  1931. "weakPoint": false
  1932. },
  1933. {
  1934. "id": "8d609c612c1048918f64a10214a7b904",
  1935. "code": "orderFailAlarm",
  1936. "origCode": "OrderFailAlarm",
  1937. "name": "状态反馈与指令不符报警",
  1938. "aliasCode": "OrderFailAlarm",
  1939. "aliasName": "状态反馈与指令不符报警",
  1940. "classCode": "WSDH",
  1941. "category": "GRADATION",
  1942. "type": "common",
  1943. "groupCode": "0",
  1944. "projectId": "0",
  1945. "firstTag": "事件记录",
  1946. "secondTag": "报警消息",
  1947. "priority": "S",
  1948. "dataType": "BOOLEAN",
  1949. "isMultiple": false,
  1950. "isRegion": false,
  1951. "dataSource": [
  1952. {
  1953. "code": "0",
  1954. "name": "正常"
  1955. },
  1956. {
  1957. "code": "1",
  1958. "name": "报警"
  1959. }
  1960. ],
  1961. "subFlag": false,
  1962. "weakPoint": false
  1963. },
  1964. {
  1965. "id": "bec9fdd0e5434a7da3f15b4219f531b2",
  1966. "code": "ratedCollectEff",
  1967. "origCode": "RatedCollectEff",
  1968. "name": "额定集热器集热效率",
  1969. "aliasCode": "RatedCollectEff",
  1970. "aliasName": "额定集热器集热效率",
  1971. "classCode": "WSDH",
  1972. "category": "STATIC",
  1973. "type": "common",
  1974. "groupCode": "0",
  1975. "projectId": "0",
  1976. "firstTag": "技术参数",
  1977. "secondTag": "太阳能",
  1978. "priority": "R",
  1979. "unit": "%",
  1980. "dataType": "DOUBLE",
  1981. "isMultiple": false,
  1982. "isRegion": false,
  1983. "subFlag": false,
  1984. "weakPoint": false
  1985. },
  1986. {
  1987. "id": "942216ac39804cf4b7c8e26734bd5f03",
  1988. "code": "accHotWaterConsumHeat",
  1989. "origCode": "AccHotWaterConsumHeat",
  1990. "name": "累计用热水热量",
  1991. "aliasCode": "AccHotWaterConsumHeat",
  1992. "aliasName": "累计用热水热量",
  1993. "classCode": "WSDH",
  1994. "category": "SEQUENTIAL",
  1995. "type": "common",
  1996. "groupCode": "0",
  1997. "projectId": "0",
  1998. "firstTag": "运行参数",
  1999. "secondTag": "整体",
  2000. "priority": "M",
  2001. "unit": "kWh",
  2002. "dataType": "DOUBLE",
  2003. "isMultiple": false,
  2004. "isRegion": false,
  2005. "subFlag": false,
  2006. "weakPoint": false
  2007. },
  2008. {
  2009. "id": "8b05842eb3ae4fc0b9ede08dda989475",
  2010. "code": "accHotWaterConsumVolume",
  2011. "origCode": "AccHotWaterConsumVolume",
  2012. "name": "累计用热水量",
  2013. "aliasCode": "AccHotWaterConsumVolume",
  2014. "aliasName": "累计用热水量",
  2015. "classCode": "WSDH",
  2016. "category": "SEQUENTIAL",
  2017. "type": "common",
  2018. "groupCode": "0",
  2019. "projectId": "0",
  2020. "firstTag": "运行参数",
  2021. "secondTag": "整体",
  2022. "priority": "M",
  2023. "unit": "m3",
  2024. "dataType": "DOUBLE",
  2025. "isMultiple": false,
  2026. "isRegion": false,
  2027. "subFlag": false,
  2028. "weakPoint": false
  2029. },
  2030. {
  2031. "id": "e76e8d9830a443ebba2577b4792556ac",
  2032. "code": "heatSourcePumpInPress",
  2033. "origCode": "HeatSourcePumpInPress",
  2034. "name": "热源侧水泵进口压强",
  2035. "aliasCode": "HeatSourcePumpInPress",
  2036. "aliasName": "热源侧水泵进口压强",
  2037. "classCode": "WSDH",
  2038. "category": "SEQUENTIAL",
  2039. "type": "common",
  2040. "groupCode": "0",
  2041. "projectId": "0",
  2042. "firstTag": "运行参数",
  2043. "secondTag": "整体",
  2044. "priority": "M",
  2045. "unit": "MPa",
  2046. "dataType": "DOUBLE",
  2047. "isMultiple": false,
  2048. "isRegion": false,
  2049. "subFlag": false,
  2050. "weakPoint": false
  2051. },
  2052. {
  2053. "id": "af026fb3bbfa4fb7b7eb2fe1686b1144",
  2054. "code": "hotWaterSupplyTemp",
  2055. "origCode": "HotWaterSupplyTemp",
  2056. "name": "供热水温度",
  2057. "aliasCode": "HotWaterSupplyTemp",
  2058. "aliasName": "供热水温度",
  2059. "classCode": "WSDH",
  2060. "category": "SEQUENTIAL",
  2061. "type": "common",
  2062. "groupCode": "0",
  2063. "projectId": "0",
  2064. "firstTag": "运行参数",
  2065. "secondTag": "整体",
  2066. "priority": "S",
  2067. "unit": "℃",
  2068. "dataType": "DOUBLE",
  2069. "isMultiple": false,
  2070. "isRegion": false,
  2071. "subFlag": false,
  2072. "weakPoint": false
  2073. },
  2074. {
  2075. "id": "03028789064e4a1bb9fea34a65bdbca9",
  2076. "code": "ratedHotWaterStoreTankTemp",
  2077. "origCode": "RatedHotWaterStoreTankTemp",
  2078. "name": "额定储热水箱温度",
  2079. "aliasCode": "RatedHotWaterStoreTankTemp",
  2080. "aliasName": "额定储热水箱温度",
  2081. "classCode": "WSDH",
  2082. "category": "STATIC",
  2083. "type": "common",
  2084. "groupCode": "0",
  2085. "projectId": "0",
  2086. "firstTag": "技术参数",
  2087. "secondTag": "整体",
  2088. "priority": "M",
  2089. "unit": "℃",
  2090. "dataType": "DOUBLE",
  2091. "isMultiple": false,
  2092. "isRegion": false,
  2093. "subFlag": false,
  2094. "weakPoint": false
  2095. },
  2096. {
  2097. "id": "f95f3da83e2844d78a6807a66685c9e1",
  2098. "code": "heatExchangerType",
  2099. "origCode": "HeatExchangerType",
  2100. "name": "换热器形式",
  2101. "aliasCode": "HeatExchangerType",
  2102. "aliasName": "换热器形式",
  2103. "classCode": "WSDH",
  2104. "category": "STATIC",
  2105. "type": "common",
  2106. "groupCode": "0",
  2107. "projectId": "0",
  2108. "firstTag": "技术参数",
  2109. "secondTag": "整体",
  2110. "priority": "R",
  2111. "dataType": "ENUM",
  2112. "isMultiple": false,
  2113. "isRegion": false,
  2114. "dataSource": [
  2115. {
  2116. "code": "1",
  2117. "name": "板式换热器"
  2118. },
  2119. {
  2120. "code": "2",
  2121. "name": "容积式换热器"
  2122. },
  2123. {
  2124. "code": "99",
  2125. "name": "其他"
  2126. }
  2127. ],
  2128. "note": "有换热器间供",
  2129. "subFlag": false,
  2130. "weakPoint": false
  2131. },
  2132. {
  2133. "id": "add38ce4d51c4267b957384f23b05687",
  2134. "code": "collectorEff",
  2135. "origCode": "CollectorEff",
  2136. "name": "集热器效率",
  2137. "aliasCode": "CollectorEff",
  2138. "aliasName": "集热器效率",
  2139. "classCode": "WSDH",
  2140. "category": "SEQUENTIAL",
  2141. "type": "common",
  2142. "groupCode": "0",
  2143. "projectId": "0",
  2144. "firstTag": "运行参数",
  2145. "secondTag": "关键指标",
  2146. "priority": "R",
  2147. "unit": "%",
  2148. "dataType": "DOUBLE",
  2149. "isMultiple": false,
  2150. "isRegion": false,
  2151. "note": "太阳能系统",
  2152. "subFlag": false,
  2153. "weakPoint": false
  2154. },
  2155. {
  2156. "id": "f0166c0c3c35486486e9187e775d5723",
  2157. "code": "heatSourcePumpOutPress",
  2158. "origCode": "HeatSourcePumpOutPress",
  2159. "name": "热源侧水泵出口压强",
  2160. "aliasCode": "HeatSourcePumpOutPress",
  2161. "aliasName": "热源侧水泵出口压强",
  2162. "classCode": "WSDH",
  2163. "category": "SEQUENTIAL",
  2164. "type": "common",
  2165. "groupCode": "0",
  2166. "projectId": "0",
  2167. "firstTag": "运行参数",
  2168. "secondTag": "整体",
  2169. "priority": "M",
  2170. "unit": "MPa",
  2171. "dataType": "DOUBLE",
  2172. "isMultiple": false,
  2173. "isRegion": false,
  2174. "subFlag": false,
  2175. "weakPoint": false
  2176. },
  2177. {
  2178. "id": "384b1ae3ecf64b319beb2d7db1d34d9a",
  2179. "code": "supplyPumpOutPress",
  2180. "origCode": "SupplyPumpOutPress",
  2181. "name": "供水侧水泵出口压强",
  2182. "aliasCode": "SupplyPumpOutPress",
  2183. "aliasName": "供水侧水泵出口压强",
  2184. "classCode": "WSDH",
  2185. "category": "SEQUENTIAL",
  2186. "type": "common",
  2187. "groupCode": "0",
  2188. "projectId": "0",
  2189. "firstTag": "运行参数",
  2190. "secondTag": "整体",
  2191. "priority": "M",
  2192. "unit": "MPa",
  2193. "dataType": "DOUBLE",
  2194. "isMultiple": false,
  2195. "isRegion": false,
  2196. "subFlag": false,
  2197. "weakPoint": false
  2198. },
  2199. {
  2200. "id": "da9fc1ecc6c240bb930236d0de0ce51b",
  2201. "code": "bAInterveneSet",
  2202. "origCode": "BAInterveneSet",
  2203. "name": "BA手动干预状态设定",
  2204. "aliasCode": "BAInterveneSet",
  2205. "aliasName": "BA手动干预状态设定",
  2206. "classCode": "WSDH",
  2207. "category": "GRADATION",
  2208. "type": "common",
  2209. "groupCode": "0",
  2210. "projectId": "0",
  2211. "firstTag": "设定参数",
  2212. "priority": "S",
  2213. "dataType": "BOOLEAN",
  2214. "isMultiple": false,
  2215. "isRegion": false,
  2216. "dataSource": [
  2217. {
  2218. "code": "0",
  2219. "name": "不允许"
  2220. },
  2221. {
  2222. "code": "1",
  2223. "name": "允许"
  2224. }
  2225. ],
  2226. "subFlag": false,
  2227. "weakPoint": false
  2228. },
  2229. {
  2230. "id": "b3a93b5ffa30473baf8ad733bffcf46e",
  2231. "code": "ratedSupplyTemp",
  2232. "origCode": "RatedSupplyTemp",
  2233. "name": "额定供热水温度",
  2234. "aliasCode": "RatedSupplyTemp",
  2235. "aliasName": "额定供热水温度",
  2236. "classCode": "WSDH",
  2237. "category": "STATIC",
  2238. "type": "common",
  2239. "groupCode": "0",
  2240. "projectId": "0",
  2241. "firstTag": "技术参数",
  2242. "secondTag": "整体",
  2243. "priority": "S",
  2244. "unit": "℃",
  2245. "dataType": "DOUBLE",
  2246. "isMultiple": false,
  2247. "isRegion": false,
  2248. "subFlag": false,
  2249. "weakPoint": false
  2250. },
  2251. {
  2252. "id": "b3ea6dfc2b284333bc9d5a0467085212",
  2253. "code": "sysEff",
  2254. "origCode": "SysEff",
  2255. "name": "系统加热效率",
  2256. "aliasCode": "SysEff",
  2257. "aliasName": "系统加热效率",
  2258. "classCode": "WSDH",
  2259. "category": "SEQUENTIAL",
  2260. "type": "common",
  2261. "groupCode": "0",
  2262. "projectId": "0",
  2263. "firstTag": "运行参数",
  2264. "secondTag": "关键指标",
  2265. "priority": "R",
  2266. "unit": "%",
  2267. "dataType": "DOUBLE",
  2268. "isMultiple": false,
  2269. "isRegion": false,
  2270. "subFlag": false,
  2271. "weakPoint": false
  2272. },
  2273. {
  2274. "id": "441f7300fd9e409fa96926ed16cbd96b",
  2275. "code": "runModeSet",
  2276. "origCode": "RunModeSet",
  2277. "name": "运行模式设定",
  2278. "aliasCode": "RunModeSet",
  2279. "aliasName": "运行模式设定",
  2280. "classCode": "WSDH",
  2281. "category": "GRADATION",
  2282. "type": "common",
  2283. "groupCode": "0",
  2284. "projectId": "0",
  2285. "firstTag": "设定参数",
  2286. "priority": "S",
  2287. "dataType": "ENUM",
  2288. "isMultiple": false,
  2289. "isRegion": false,
  2290. "dataSource": [
  2291. {
  2292. "code": "99",
  2293. "name": "其他"
  2294. }
  2295. ],
  2296. "note": "选项自定义",
  2297. "subFlag": false,
  2298. "weakPoint": false
  2299. },
  2300. {
  2301. "id": "0ba91684529b49c0a1d5a2294303a8cf",
  2302. "code": "isHotWaterStoreTank",
  2303. "origCode": "isHotWaterStoreTank",
  2304. "name": "是否有储热水箱",
  2305. "aliasCode": "isHotWaterStoreTank",
  2306. "aliasName": "是否有储热水箱",
  2307. "classCode": "WSDH",
  2308. "category": "STATIC",
  2309. "type": "common",
  2310. "groupCode": "0",
  2311. "projectId": "0",
  2312. "firstTag": "技术参数",
  2313. "secondTag": "整体",
  2314. "priority": "S",
  2315. "dataType": "BOOLEAN",
  2316. "isMultiple": false,
  2317. "isRegion": false,
  2318. "dataSource": [
  2319. {
  2320. "code": "0",
  2321. "name": "无"
  2322. },
  2323. {
  2324. "code": "1",
  2325. "name": "有"
  2326. }
  2327. ],
  2328. "subFlag": false,
  2329. "weakPoint": false
  2330. }
  2331. ]