WSDHGB.json 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359
  1. [
  2. {
  3. "id": "7f2f2f0840be4ab8b2b514954972fc5e",
  4. "code": "manufacturerWeb",
  5. "origCode": "ManufacturerWeb",
  6. "name": "生产厂家网址",
  7. "aliasCode": "ManufacturerWeb",
  8. "aliasName": "生产厂家网址",
  9. "classCode": "WSDHGB",
  10. "category": "STATIC",
  11. "type": "common",
  12. "groupCode": "0",
  13. "projectId": "0",
  14. "firstTag": "台账参数",
  15. "secondTag": "生产厂家",
  16. "priority": "R",
  17. "dataType": "STRING",
  18. "isMultiple": false,
  19. "isRegion": false,
  20. "subFlag": false,
  21. "weakPoint": false
  22. },
  23. {
  24. "id": "b4f9e8d998654b26b35cd4cda3e10588",
  25. "code": "ratedFilling",
  26. "origCode": "RatedFilling",
  27. "name": "额定补水量",
  28. "aliasCode": "RatedFilling",
  29. "aliasName": "额定补水量",
  30. "classCode": "WSDHGB",
  31. "category": "STATIC",
  32. "type": "common",
  33. "groupCode": "0",
  34. "projectId": "0",
  35. "firstTag": "技术参数",
  36. "secondTag": "整机",
  37. "priority": "R",
  38. "unit": "m3/h",
  39. "dataType": "DOUBLE",
  40. "isMultiple": false,
  41. "isRegion": false,
  42. "note": "排去的污水量",
  43. "subFlag": false,
  44. "weakPoint": false
  45. },
  46. {
  47. "id": "24ecd0fa68bd43c3b5a83274e5ae1c5a",
  48. "code": "vaporFlow",
  49. "origCode": "VaporFlow",
  50. "name": "制蒸汽量",
  51. "aliasCode": "VaporFlow",
  52. "aliasName": "制蒸汽量",
  53. "classCode": "WSDHGB",
  54. "category": "SEQUENTIAL",
  55. "type": "common",
  56. "groupCode": "0",
  57. "projectId": "0",
  58. "firstTag": "运行参数",
  59. "secondTag": "整机",
  60. "priority": "S",
  61. "unit": "t/h",
  62. "dataType": "DOUBLE",
  63. "isMultiple": false,
  64. "isRegion": false,
  65. "note": "蒸汽系统",
  66. "subFlag": false,
  67. "weakPoint": false
  68. },
  69. {
  70. "id": "e70022cb41134b8aac8af9f6e8989ea2",
  71. "code": "ratedHotWaterFlow",
  72. "origCode": "RatedHotWaterFlow",
  73. "name": "额定热水流量",
  74. "aliasCode": "RatedHotWaterFlow",
  75. "aliasName": "额定热水流量",
  76. "classCode": "WSDHGB",
  77. "category": "STATIC",
  78. "type": "common",
  79. "groupCode": "0",
  80. "projectId": "0",
  81. "firstTag": "技术参数",
  82. "secondTag": "热水锅炉",
  83. "priority": "S",
  84. "unit": "m3/h",
  85. "dataType": "DOUBLE",
  86. "isMultiple": false,
  87. "isRegion": false,
  88. "subFlag": false,
  89. "weakPoint": false
  90. },
  91. {
  92. "id": "3c43bb42bdde404e9ddcf60b6a0d8662",
  93. "code": "equipOnSet",
  94. "origCode": "EquipOnSet",
  95. "name": "设备开设定",
  96. "aliasCode": "EquipOnSet",
  97. "aliasName": "设备开设定",
  98. "classCode": "WSDHGB",
  99. "category": "GRADATION",
  100. "type": "common",
  101. "groupCode": "0",
  102. "projectId": "0",
  103. "firstTag": "设定参数",
  104. "priority": "S",
  105. "dataType": "BOOLEAN",
  106. "isMultiple": false,
  107. "isRegion": false,
  108. "dataSource": [
  109. {
  110. "code": "0",
  111. "name": "正常"
  112. },
  113. {
  114. "code": "1",
  115. "name": "开启"
  116. }
  117. ],
  118. "subFlag": false,
  119. "weakPoint": false
  120. },
  121. {
  122. "id": "89c955d07900496997b1391a2d69a9aa",
  123. "code": "material",
  124. "origCode": "Material",
  125. "name": "主体材质",
  126. "aliasCode": "Material",
  127. "aliasName": "主体材质",
  128. "classCode": "WSDHGB",
  129. "category": "STATIC",
  130. "type": "common",
  131. "groupCode": "0",
  132. "projectId": "0",
  133. "firstTag": "台账参数",
  134. "secondTag": "现场安装",
  135. "priority": "R",
  136. "dataType": "STRING",
  137. "isMultiple": false,
  138. "isRegion": false,
  139. "subFlag": false,
  140. "weakPoint": false
  141. },
  142. {
  143. "id": "12fbaa933cb542c89e26c026e53c5626",
  144. "code": "accRunTime",
  145. "origCode": "AccRunTime",
  146. "name": "累计运行时间",
  147. "aliasCode": "AccRunTime",
  148. "aliasName": "累计运行时间",
  149. "classCode": "WSDHGB",
  150. "category": "SEQUENTIAL",
  151. "type": "common",
  152. "groupCode": "0",
  153. "projectId": "0",
  154. "firstTag": "运行参数",
  155. "secondTag": "运行时间",
  156. "priority": "S",
  157. "unit": "h",
  158. "dataType": "DOUBLE",
  159. "isMultiple": false,
  160. "isRegion": false,
  161. "subFlag": false,
  162. "weakPoint": false
  163. },
  164. {
  165. "id": "c1dc9690e59d4121b3656ff8178a1e2c",
  166. "code": "supplierContractID",
  167. "origCode": "SupplierContractID",
  168. "name": "供应合同编号",
  169. "aliasCode": "SupplierContractID",
  170. "aliasName": "供应合同编号",
  171. "classCode": "WSDHGB",
  172. "category": "STATIC",
  173. "type": "common",
  174. "groupCode": "0",
  175. "projectId": "0",
  176. "firstTag": "台账参数",
  177. "secondTag": "供应购买",
  178. "priority": "R",
  179. "dataType": "STRING",
  180. "isMultiple": false,
  181. "isRegion": false,
  182. "subFlag": false,
  183. "weakPoint": false
  184. },
  185. {
  186. "id": "3ce10bb2474647319139ef3027d0e9c7",
  187. "code": "isSaltFogDefend",
  188. "origCode": "isSaltFogDefend",
  189. "name": "是否有防盐雾要求",
  190. "aliasCode": "isSaltFogDefend",
  191. "aliasName": "是否有防盐雾要求",
  192. "classCode": "WSDHGB",
  193. "category": "STATIC",
  194. "type": "common",
  195. "groupCode": "0",
  196. "projectId": "0",
  197. "firstTag": "技术参数",
  198. "secondTag": "整机",
  199. "priority": "R",
  200. "dataType": "BOOLEAN",
  201. "isMultiple": false,
  202. "isRegion": false,
  203. "dataSource": [
  204. {
  205. "code": "0",
  206. "name": "无防盐雾设计"
  207. },
  208. {
  209. "code": "1",
  210. "name": "沿海地区专用"
  211. }
  212. ],
  213. "subFlag": false,
  214. "weakPoint": false
  215. },
  216. {
  217. "id": "1c3f3b5bae2c4c4d84e5e2eded2827e0",
  218. "code": "maintainer",
  219. "origCode": "Maintainer",
  220. "name": "维修商单位名称",
  221. "aliasCode": "Maintainer",
  222. "aliasName": "维修商单位名称",
  223. "classCode": "WSDHGB",
  224. "category": "STATIC",
  225. "type": "common",
  226. "groupCode": "0",
  227. "projectId": "0",
  228. "firstTag": "台账参数",
  229. "secondTag": "运行维保",
  230. "priority": "M",
  231. "dataType": "STRING",
  232. "isMultiple": false,
  233. "isRegion": false,
  234. "subFlag": false,
  235. "weakPoint": false
  236. },
  237. {
  238. "id": "2694b52acd954e9cbb59145e2c4e02c5",
  239. "code": "maintainerEmail",
  240. "origCode": "MaintainerEmail",
  241. "name": "维修商电子邮件",
  242. "aliasCode": "MaintainerEmail",
  243. "aliasName": "维修商电子邮件",
  244. "classCode": "WSDHGB",
  245. "category": "STATIC",
  246. "type": "common",
  247. "groupCode": "0",
  248. "projectId": "0",
  249. "firstTag": "台账参数",
  250. "secondTag": "运行维保",
  251. "priority": "R",
  252. "dataType": "STRING",
  253. "isMultiple": false,
  254. "isRegion": false,
  255. "subFlag": false,
  256. "weakPoint": false
  257. },
  258. {
  259. "id": "bbd7a6bb010446479c73a099a79a4c23",
  260. "code": "productDate",
  261. "origCode": "ProductDate",
  262. "name": "生产日期",
  263. "aliasCode": "ProductDate",
  264. "aliasName": "生产日期",
  265. "classCode": "WSDHGB",
  266. "category": "STATIC",
  267. "type": "common",
  268. "groupCode": "0",
  269. "projectId": "0",
  270. "firstTag": "台账参数",
  271. "secondTag": "生产厂家",
  272. "priority": "M",
  273. "dataType": "DATETIME",
  274. "isMultiple": false,
  275. "isRegion": false,
  276. "formater": "YYYYMMDD",
  277. "note": "同出厂日期YYYYMMDD",
  278. "subFlag": false,
  279. "weakPoint": false
  280. },
  281. {
  282. "id": "65950759d8434f2c95582702b687f193",
  283. "code": "orderFailAlarm",
  284. "origCode": "OrderFailAlarm",
  285. "name": "状态反馈与指令不符报警",
  286. "aliasCode": "OrderFailAlarm",
  287. "aliasName": "状态反馈与指令不符报警",
  288. "classCode": "WSDHGB",
  289. "category": "GRADATION",
  290. "type": "common",
  291. "groupCode": "0",
  292. "projectId": "0",
  293. "firstTag": "事件记录",
  294. "secondTag": "报警消息",
  295. "priority": "S",
  296. "dataType": "BOOLEAN",
  297. "isMultiple": false,
  298. "isRegion": false,
  299. "dataSource": [
  300. {
  301. "code": "0",
  302. "name": "正常"
  303. },
  304. {
  305. "code": "1",
  306. "name": "报警"
  307. }
  308. ],
  309. "subFlag": false,
  310. "weakPoint": false
  311. },
  312. {
  313. "id": "e07be761964845748ea24ae6965a6a7c",
  314. "code": "installerFax",
  315. "origCode": "InstallerFax",
  316. "name": "安装单位传真",
  317. "aliasCode": "InstallerFax",
  318. "aliasName": "安装单位传真",
  319. "classCode": "WSDHGB",
  320. "category": "STATIC",
  321. "type": "common",
  322. "groupCode": "0",
  323. "projectId": "0",
  324. "firstTag": "台账参数",
  325. "secondTag": "现场安装",
  326. "priority": "R",
  327. "dataType": "STRING",
  328. "isMultiple": false,
  329. "isRegion": false,
  330. "subFlag": false,
  331. "weakPoint": false
  332. },
  333. {
  334. "id": "ebf4ffa52d2445369a8a1db86de48660",
  335. "code": "supplierPhone",
  336. "origCode": "SupplierPhone",
  337. "name": "供应商联系电话",
  338. "aliasCode": "SupplierPhone",
  339. "aliasName": "供应商联系电话",
  340. "classCode": "WSDHGB",
  341. "category": "STATIC",
  342. "type": "common",
  343. "groupCode": "0",
  344. "projectId": "0",
  345. "firstTag": "台账参数",
  346. "secondTag": "供应购买",
  347. "priority": "M",
  348. "dataType": "STRING",
  349. "isMultiple": false,
  350. "isRegion": false,
  351. "subFlag": false,
  352. "weakPoint": false
  353. },
  354. {
  355. "id": "7e3015f7a3d8485e8d1281b49cca9ed3",
  356. "code": "warranterFax",
  357. "origCode": "WarranterFax",
  358. "name": "质保单位传真",
  359. "aliasCode": "WarranterFax",
  360. "aliasName": "质保单位传真",
  361. "classCode": "WSDHGB",
  362. "category": "STATIC",
  363. "type": "common",
  364. "groupCode": "0",
  365. "projectId": "0",
  366. "firstTag": "台账参数",
  367. "secondTag": "运行维保",
  368. "priority": "R",
  369. "dataType": "STRING",
  370. "isMultiple": false,
  371. "isRegion": false,
  372. "subFlag": false,
  373. "weakPoint": false
  374. },
  375. {
  376. "id": "87a28d39c8fd422f9fa676d38fa19513",
  377. "code": "sampleInterval",
  378. "origCode": "SampleInterval",
  379. "name": "通讯最小间隔",
  380. "aliasCode": "SampleInterval",
  381. "aliasName": "通讯最小间隔",
  382. "classCode": "WSDHGB",
  383. "category": "STATIC",
  384. "type": "common",
  385. "groupCode": "0",
  386. "projectId": "0",
  387. "firstTag": "通讯参数",
  388. "secondTag": "协议",
  389. "priority": "S",
  390. "unit": "10ms",
  391. "dataType": "DOUBLE",
  392. "isMultiple": false,
  393. "isRegion": false,
  394. "subFlag": false,
  395. "weakPoint": false
  396. },
  397. {
  398. "id": "1e4dc2875e564c94bc8d949c512cac6f",
  399. "code": "inCloudSet",
  400. "origCode": "InCloudSet",
  401. "name": "云端控制",
  402. "aliasCode": "InCloudSet",
  403. "aliasName": "云端控制",
  404. "classCode": "WSDHGB",
  405. "category": "GRADATION",
  406. "type": "common",
  407. "groupCode": "0",
  408. "projectId": "0",
  409. "firstTag": "设定参数",
  410. "priority": "S",
  411. "dataType": "BOOLEAN",
  412. "isMultiple": false,
  413. "isRegion": false,
  414. "dataSource": [
  415. {
  416. "code": "0",
  417. "name": "非云端"
  418. },
  419. {
  420. "code": "1",
  421. "name": "云端"
  422. }
  423. ],
  424. "subFlag": false,
  425. "weakPoint": false
  426. },
  427. {
  428. "id": "d4b2f3b95bd8448f907a7369e2d0813b",
  429. "code": "insurer",
  430. "origCode": "Insurer",
  431. "name": "保险公司名称",
  432. "aliasCode": "Insurer",
  433. "aliasName": "保险公司名称",
  434. "classCode": "WSDHGB",
  435. "category": "STATIC",
  436. "type": "common",
  437. "groupCode": "0",
  438. "projectId": "0",
  439. "firstTag": "台账参数",
  440. "secondTag": "保险文件",
  441. "priority": "R",
  442. "dataType": "STRING",
  443. "isMultiple": false,
  444. "isRegion": false,
  445. "subFlag": false,
  446. "weakPoint": false
  447. },
  448. {
  449. "id": "03a5d2667e784ef5ac8ac45115e40142",
  450. "code": "bAInterveneSet",
  451. "origCode": "BAInterveneSet",
  452. "name": "BA手动干预状态设定",
  453. "aliasCode": "BAInterveneSet",
  454. "aliasName": "BA手动干预状态设定",
  455. "classCode": "WSDHGB",
  456. "category": "GRADATION",
  457. "type": "common",
  458. "groupCode": "0",
  459. "projectId": "0",
  460. "firstTag": "设定参数",
  461. "priority": "S",
  462. "dataType": "BOOLEAN",
  463. "isMultiple": false,
  464. "isRegion": false,
  465. "dataSource": [
  466. {
  467. "code": "0",
  468. "name": "不允许"
  469. },
  470. {
  471. "code": "1",
  472. "name": "允许"
  473. }
  474. ],
  475. "subFlag": false,
  476. "weakPoint": false
  477. },
  478. {
  479. "id": "805f13f860594d498d9d3daa8e6641f9",
  480. "code": "equipStatus",
  481. "origCode": "EquipStatus",
  482. "name": "设备状态",
  483. "aliasCode": "EquipStatus",
  484. "aliasName": "设备状态",
  485. "classCode": "WSDHGB",
  486. "category": "STATIC",
  487. "type": "common",
  488. "groupCode": "0",
  489. "projectId": "0",
  490. "firstTag": "台账参数",
  491. "secondTag": "运行维保",
  492. "priority": "M",
  493. "dataType": "ENUM",
  494. "isMultiple": false,
  495. "isRegion": false,
  496. "dataSource": [
  497. {
  498. "code": "1",
  499. "name": "投入使用"
  500. },
  501. {
  502. "code": "2",
  503. "name": "未使用"
  504. },
  505. {
  506. "code": "3",
  507. "name": "封存"
  508. },
  509. {
  510. "code": "99",
  511. "name": "其他"
  512. }
  513. ],
  514. "subFlag": false,
  515. "weakPoint": false
  516. },
  517. {
  518. "id": "6326b636e3db435693cd5e8bc44b0fc2",
  519. "code": "fillingFlow",
  520. "origCode": "FillingFlow",
  521. "name": "补水流量",
  522. "aliasCode": "FillingFlow",
  523. "aliasName": "补水流量",
  524. "classCode": "WSDHGB",
  525. "category": "SEQUENTIAL",
  526. "type": "common",
  527. "groupCode": "0",
  528. "projectId": "0",
  529. "firstTag": "运行参数",
  530. "secondTag": "整机",
  531. "priority": "M",
  532. "unit": "m3/h",
  533. "dataType": "DOUBLE",
  534. "isMultiple": false,
  535. "isRegion": false,
  536. "subFlag": false,
  537. "weakPoint": false
  538. },
  539. {
  540. "id": "b5efc4d89a824ca095ec322350bed9f6",
  541. "code": "ratedWorkPress",
  542. "origCode": "RatedWorkPress",
  543. "name": "额定工作压力",
  544. "aliasCode": "RatedWorkPress",
  545. "aliasName": "额定工作压力",
  546. "classCode": "WSDHGB",
  547. "category": "STATIC",
  548. "type": "common",
  549. "groupCode": "0",
  550. "projectId": "0",
  551. "firstTag": "技术参数",
  552. "secondTag": "整机",
  553. "priority": "M",
  554. "unit": "MPa",
  555. "dataType": "DOUBLE",
  556. "isMultiple": false,
  557. "isRegion": false,
  558. "subFlag": false,
  559. "weakPoint": false
  560. },
  561. {
  562. "id": "dff1373707f6489c89859c8b4ae29876",
  563. "code": "closeTimeCount",
  564. "origCode": "CloseTimeCount",
  565. "name": "关闭时间计时",
  566. "aliasCode": "CloseTimeCount",
  567. "aliasName": "关闭时间计时",
  568. "classCode": "WSDHGB",
  569. "category": "SEQUENTIAL",
  570. "type": "common",
  571. "groupCode": "0",
  572. "projectId": "0",
  573. "firstTag": "运行参数",
  574. "secondTag": "运行时间",
  575. "priority": "R",
  576. "unit": "h",
  577. "dataType": "DOUBLE",
  578. "isMultiple": false,
  579. "isRegion": false,
  580. "subFlag": false,
  581. "weakPoint": false
  582. },
  583. {
  584. "id": "d8b4316b13a04cf29ce529b12e754730",
  585. "code": "supplierContactor",
  586. "origCode": "SupplierContactor",
  587. "name": "供应商联系人",
  588. "aliasCode": "SupplierContactor",
  589. "aliasName": "供应商联系人",
  590. "classCode": "WSDHGB",
  591. "category": "STATIC",
  592. "type": "common",
  593. "groupCode": "0",
  594. "projectId": "0",
  595. "firstTag": "台账参数",
  596. "secondTag": "供应购买",
  597. "priority": "M",
  598. "dataType": "STRING",
  599. "isMultiple": false,
  600. "isRegion": false,
  601. "subFlag": false,
  602. "weakPoint": false
  603. },
  604. {
  605. "id": "91b0b5790d16405181835a6145cbb826",
  606. "code": "supplierWeb",
  607. "origCode": "SupplierWeb",
  608. "name": "供应商网址",
  609. "aliasCode": "SupplierWeb",
  610. "aliasName": "供应商网址",
  611. "classCode": "WSDHGB",
  612. "category": "STATIC",
  613. "type": "common",
  614. "groupCode": "0",
  615. "projectId": "0",
  616. "firstTag": "台账参数",
  617. "secondTag": "供应购买",
  618. "priority": "R",
  619. "dataType": "STRING",
  620. "isMultiple": false,
  621. "isRegion": false,
  622. "subFlag": false,
  623. "weakPoint": false
  624. },
  625. {
  626. "id": "b6aacdfe423545e3a6ec2e0012925f65",
  627. "code": "ratedSurfaceEvaporationRate",
  628. "origCode": "RatedSurfaceEvaporationRate",
  629. "name": "额定受热面蒸发率",
  630. "aliasCode": "RatedSurfaceEvaporationRate",
  631. "aliasName": "额定受热面蒸发率",
  632. "classCode": "WSDHGB",
  633. "category": "STATIC",
  634. "type": "common",
  635. "groupCode": "0",
  636. "projectId": "0",
  637. "firstTag": "技术参数",
  638. "secondTag": "蒸汽锅炉",
  639. "priority": "M",
  640. "unit": "t/(hm2)",
  641. "dataType": "DOUBLE",
  642. "isMultiple": false,
  643. "isRegion": false,
  644. "subFlag": false,
  645. "weakPoint": false
  646. },
  647. {
  648. "id": "1e313e2004de4d00a50ce429e3e8cb40",
  649. "code": "equipSwitchSet",
  650. "origCode": "EquipSwitchSet",
  651. "name": "设备开关设定",
  652. "aliasCode": "EquipSwitchSet",
  653. "aliasName": "设备开关设定",
  654. "classCode": "WSDHGB",
  655. "category": "GRADATION",
  656. "type": "common",
  657. "groupCode": "0",
  658. "projectId": "0",
  659. "firstTag": "设定参数",
  660. "priority": "S",
  661. "dataType": "BOOLEAN",
  662. "isMultiple": false,
  663. "isRegion": false,
  664. "dataSource": [
  665. {
  666. "code": "0",
  667. "name": "关闭"
  668. },
  669. {
  670. "code": "1",
  671. "name": "开启"
  672. }
  673. ],
  674. "subFlag": false,
  675. "weakPoint": false
  676. },
  677. {
  678. "id": "857036131da94a3a9b8dfaabf24a6319",
  679. "code": "installerContactor",
  680. "origCode": "InstallerContactor",
  681. "name": "安装单位联系人",
  682. "aliasCode": "InstallerContactor",
  683. "aliasName": "安装单位联系人",
  684. "classCode": "WSDHGB",
  685. "category": "STATIC",
  686. "type": "common",
  687. "groupCode": "0",
  688. "projectId": "0",
  689. "firstTag": "台账参数",
  690. "secondTag": "现场安装",
  691. "priority": "M",
  692. "dataType": "STRING",
  693. "isMultiple": false,
  694. "isRegion": false,
  695. "subFlag": false,
  696. "weakPoint": false
  697. },
  698. {
  699. "id": "c947ef5ee9e34ab18d92715dd1a7e261",
  700. "code": "purchasePrice",
  701. "origCode": "PurchasePrice",
  702. "name": "采购价格",
  703. "aliasCode": "PurchasePrice",
  704. "aliasName": "采购价格",
  705. "classCode": "WSDHGB",
  706. "category": "STATIC",
  707. "type": "common",
  708. "groupCode": "0",
  709. "projectId": "0",
  710. "firstTag": "台账参数",
  711. "secondTag": "供应购买",
  712. "priority": "R",
  713. "unit": "元",
  714. "dataType": "DOUBLE",
  715. "isMultiple": false,
  716. "isRegion": false,
  717. "subFlag": false,
  718. "weakPoint": false
  719. },
  720. {
  721. "id": "2a831695dbef44b6bbe1de80bafe2b77",
  722. "code": "tapWaterTemp",
  723. "origCode": "TapWaterTemp",
  724. "name": "冷水温度",
  725. "aliasCode": "TapWaterTemp",
  726. "aliasName": "冷水温度",
  727. "classCode": "WSDHGB",
  728. "category": "SEQUENTIAL",
  729. "type": "common",
  730. "groupCode": "0",
  731. "projectId": "0",
  732. "firstTag": "运行参数",
  733. "secondTag": "整机",
  734. "priority": "R",
  735. "unit": "℃",
  736. "dataType": "DOUBLE",
  737. "isMultiple": false,
  738. "isRegion": false,
  739. "subFlag": false,
  740. "weakPoint": false
  741. },
  742. {
  743. "id": "5b36bb3cf2e2413a8c80d9623752dac7",
  744. "code": "noise",
  745. "origCode": "Noise",
  746. "name": "噪声强度",
  747. "aliasCode": "Noise",
  748. "aliasName": "噪声强度",
  749. "classCode": "WSDHGB",
  750. "category": "STATIC",
  751. "type": "common",
  752. "groupCode": "0",
  753. "projectId": "0",
  754. "firstTag": "技术参数",
  755. "secondTag": "整机",
  756. "priority": "M",
  757. "unit": "dB(A)",
  758. "dataType": "DOUBLE",
  759. "isMultiple": false,
  760. "isRegion": false,
  761. "subFlag": false,
  762. "weakPoint": false
  763. },
  764. {
  765. "id": "5aa40fd0ee5a4d3f897dde8b0a90e45e",
  766. "code": "insuranceFile",
  767. "origCode": "InsuranceFile",
  768. "name": "保险文件",
  769. "aliasCode": "InsuranceFile",
  770. "aliasName": "保险文件",
  771. "classCode": "WSDHGB",
  772. "category": "STATIC",
  773. "type": "common",
  774. "groupCode": "0",
  775. "projectId": "0",
  776. "firstTag": "台账参数",
  777. "secondTag": "保险文件",
  778. "priority": "R",
  779. "dataType": "ATTACHMENT",
  780. "isMultiple": true,
  781. "isRegion": false,
  782. "subFlag": false,
  783. "weakPoint": false
  784. },
  785. {
  786. "id": "9dfc1be4afb44902a97401e32fc56e49",
  787. "code": "insurerContactor",
  788. "origCode": "InsurerContactor",
  789. "name": "保险公司联系人",
  790. "aliasCode": "InsurerContactor",
  791. "aliasName": "保险公司联系人",
  792. "classCode": "WSDHGB",
  793. "category": "STATIC",
  794. "type": "common",
  795. "groupCode": "0",
  796. "projectId": "0",
  797. "firstTag": "台账参数",
  798. "secondTag": "保险文件",
  799. "priority": "R",
  800. "dataType": "STRING",
  801. "isMultiple": false,
  802. "isRegion": false,
  803. "subFlag": false,
  804. "weakPoint": false
  805. },
  806. {
  807. "id": "cf037024369c468f9617be76f10b312b",
  808. "code": "originalCertificate",
  809. "origCode": "OriginalCertificate",
  810. "name": "原厂证明",
  811. "aliasCode": "OriginalCertificate",
  812. "aliasName": "原厂证明",
  813. "classCode": "WSDHGB",
  814. "category": "STATIC",
  815. "type": "common",
  816. "groupCode": "0",
  817. "projectId": "0",
  818. "firstTag": "台账参数",
  819. "secondTag": "生产厂家",
  820. "priority": "R",
  821. "dataType": "ATTACHMENT",
  822. "isMultiple": true,
  823. "isRegion": false,
  824. "subFlag": false,
  825. "weakPoint": false
  826. },
  827. {
  828. "id": "f6c8186f640a41af84724828b8316e83",
  829. "code": "gasValveOpening",
  830. "origCode": "GasValveOpening",
  831. "name": "燃气阀门开度",
  832. "aliasCode": "GasValveOpening",
  833. "aliasName": "燃气阀门开度",
  834. "classCode": "WSDHGB",
  835. "category": "SEQUENTIAL",
  836. "type": "common",
  837. "groupCode": "0",
  838. "projectId": "0",
  839. "firstTag": "运行参数",
  840. "secondTag": "整机",
  841. "priority": "R",
  842. "unit": "%",
  843. "dataType": "DOUBLE",
  844. "isMultiple": false,
  845. "isRegion": false,
  846. "subFlag": false,
  847. "weakPoint": false
  848. },
  849. {
  850. "id": "7313446e27334920b54c215eae215361",
  851. "code": "openTimeCount",
  852. "origCode": "OpenTimeCount",
  853. "name": "开启时间计时",
  854. "aliasCode": "OpenTimeCount",
  855. "aliasName": "开启时间计时",
  856. "classCode": "WSDHGB",
  857. "category": "SEQUENTIAL",
  858. "type": "common",
  859. "groupCode": "0",
  860. "projectId": "0",
  861. "firstTag": "运行参数",
  862. "secondTag": "运行时间",
  863. "priority": "R",
  864. "unit": "h",
  865. "dataType": "DOUBLE",
  866. "isMultiple": false,
  867. "isRegion": false,
  868. "subFlag": false,
  869. "weakPoint": false
  870. },
  871. {
  872. "id": "6e495d1f309e4982b6200be57b5d61d6",
  873. "code": "localName",
  874. "origCode": "EquipLocalName",
  875. "name": "设备本地名称",
  876. "aliasCode": "EquipLocalName",
  877. "aliasName": "设备本地名称",
  878. "classCode": "WSDHGB",
  879. "category": "STATIC",
  880. "type": "common",
  881. "groupCode": "0",
  882. "projectId": "0",
  883. "firstTag": "基本参数",
  884. "priority": "S",
  885. "dataType": "STRING",
  886. "isMultiple": false,
  887. "isRegion": false,
  888. "subFlag": false,
  889. "weakPoint": false
  890. },
  891. {
  892. "id": "a8ef3607441d4298899acf6bc2ae3ff0",
  893. "code": "netWeight",
  894. "origCode": "NetWeight",
  895. "name": "净重",
  896. "aliasCode": "NetWeight",
  897. "aliasName": "净重",
  898. "classCode": "WSDHGB",
  899. "category": "STATIC",
  900. "type": "common",
  901. "groupCode": "0",
  902. "projectId": "0",
  903. "firstTag": "台账参数",
  904. "secondTag": "现场安装",
  905. "priority": "M",
  906. "unit": "kg",
  907. "dataType": "DOUBLE",
  908. "isMultiple": false,
  909. "isRegion": false,
  910. "subFlag": false,
  911. "weakPoint": false
  912. },
  913. {
  914. "id": "e3bb96bd38b1408abd96dfce55f80f05",
  915. "code": "condensateReturnMaxWorkTemp",
  916. "origCode": "CondensateReturnMaxWorkTemp",
  917. "name": "蒸汽冷凝水回收最高工作温度",
  918. "aliasCode": "CondensateReturnMaxWorkTemp",
  919. "aliasName": "蒸汽冷凝水回收最高工作温度",
  920. "classCode": "WSDHGB",
  921. "category": "STATIC",
  922. "type": "common",
  923. "groupCode": "0",
  924. "projectId": "0",
  925. "firstTag": "技术参数",
  926. "secondTag": "蒸汽冷凝水回收装置",
  927. "priority": "R",
  928. "unit": "℃",
  929. "dataType": "DOUBLE",
  930. "isMultiple": false,
  931. "isRegion": false,
  932. "subFlag": false,
  933. "weakPoint": false
  934. },
  935. {
  936. "id": "95c77d99485f45c6a656277f6538846b",
  937. "code": "eEffIndex",
  938. "origCode": "EEffIndex",
  939. "name": "能效等级",
  940. "aliasCode": "EEffIndex",
  941. "aliasName": "能效等级",
  942. "classCode": "WSDHGB",
  943. "category": "STATIC",
  944. "type": "common",
  945. "groupCode": "0",
  946. "projectId": "0",
  947. "firstTag": "技术参数",
  948. "secondTag": "整机",
  949. "priority": "M",
  950. "dataType": "ENUM",
  951. "isMultiple": false,
  952. "isRegion": false,
  953. "dataSource": [
  954. {
  955. "code": "1",
  956. "name": "1级"
  957. },
  958. {
  959. "code": "2",
  960. "name": "2级"
  961. },
  962. {
  963. "code": "3",
  964. "name": "3级"
  965. },
  966. {
  967. "code": "4",
  968. "name": "4级"
  969. },
  970. {
  971. "code": "5",
  972. "name": "5级"
  973. },
  974. {
  975. "code": "99",
  976. "name": "其他"
  977. }
  978. ],
  979. "subFlag": false,
  980. "weakPoint": false
  981. },
  982. {
  983. "id": "fe1999744035496cbe8fdfe3cee427d3",
  984. "code": "vaporValveOpening",
  985. "origCode": "VaporValveOpening",
  986. "name": "蒸汽阀开度",
  987. "aliasCode": "VaporValveOpening",
  988. "aliasName": "蒸汽阀开度",
  989. "classCode": "WSDHGB",
  990. "category": "SEQUENTIAL",
  991. "type": "common",
  992. "groupCode": "0",
  993. "projectId": "0",
  994. "firstTag": "运行参数",
  995. "secondTag": "整机",
  996. "priority": "R",
  997. "unit": "%",
  998. "dataType": "DOUBLE",
  999. "isMultiple": false,
  1000. "isRegion": false,
  1001. "note": "蒸汽锅炉",
  1002. "subFlag": false,
  1003. "weakPoint": false
  1004. },
  1005. {
  1006. "id": "2798ec4109ef4115b4b0e2f6ab2d36da",
  1007. "code": "installDate",
  1008. "origCode": "InstallDate",
  1009. "name": "安装日期",
  1010. "aliasCode": "InstallDate",
  1011. "aliasName": "安装日期",
  1012. "classCode": "WSDHGB",
  1013. "category": "STATIC",
  1014. "type": "common",
  1015. "groupCode": "0",
  1016. "projectId": "0",
  1017. "firstTag": "台账参数",
  1018. "secondTag": "现场安装",
  1019. "priority": "M",
  1020. "dataType": "DATETIME",
  1021. "isMultiple": false,
  1022. "isRegion": false,
  1023. "formater": "YYYYMMDD",
  1024. "note": "YYYYMMDD",
  1025. "subFlag": false,
  1026. "weakPoint": false
  1027. },
  1028. {
  1029. "id": "921171571d1d4b539a45eb01b06c825d",
  1030. "code": "gasConsumP",
  1031. "origCode": "GasConsumP",
  1032. "name": "燃气量",
  1033. "aliasCode": "GasConsumP",
  1034. "aliasName": "燃气量",
  1035. "classCode": "WSDHGB",
  1036. "category": "SEQUENTIAL",
  1037. "type": "common",
  1038. "groupCode": "0",
  1039. "projectId": "0",
  1040. "firstTag": "运行参数",
  1041. "secondTag": "整机",
  1042. "priority": "M",
  1043. "unit": "m3/h",
  1044. "dataType": "DOUBLE",
  1045. "isMultiple": false,
  1046. "isRegion": false,
  1047. "subFlag": false,
  1048. "weakPoint": false
  1049. },
  1050. {
  1051. "id": "4edc4eeeaa654fdf924e71706623f4d7",
  1052. "code": "hotWaterOutTempSet",
  1053. "origCode": "HotWaterOutTempSet",
  1054. "name": "热水出水温度设定",
  1055. "aliasCode": "HotWaterOutTempSet",
  1056. "aliasName": "热水出水温度设定",
  1057. "classCode": "WSDHGB",
  1058. "category": "GRADATION",
  1059. "type": "common",
  1060. "groupCode": "0",
  1061. "projectId": "0",
  1062. "firstTag": "设定参数",
  1063. "priority": "S",
  1064. "unit": "℃",
  1065. "dataType": "DOUBLE",
  1066. "isMultiple": false,
  1067. "isRegion": false,
  1068. "note": "热水锅炉",
  1069. "subFlag": false,
  1070. "weakPoint": false
  1071. },
  1072. {
  1073. "id": "881f397726f04074991726476898df35",
  1074. "code": "hotWaterValveOpeningSet",
  1075. "origCode": "HotWaterValveOpeningSet",
  1076. "name": "热水阀开度设定",
  1077. "aliasCode": "HotWaterValveOpeningSet",
  1078. "aliasName": "热水阀开度设定",
  1079. "classCode": "WSDHGB",
  1080. "category": "GRADATION",
  1081. "type": "common",
  1082. "groupCode": "0",
  1083. "projectId": "0",
  1084. "firstTag": "设定参数",
  1085. "priority": "S",
  1086. "unit": "%",
  1087. "dataType": "DOUBLE",
  1088. "isMultiple": false,
  1089. "isRegion": false,
  1090. "note": "热水锅炉",
  1091. "subFlag": false,
  1092. "weakPoint": false
  1093. },
  1094. {
  1095. "id": "bed66b3d95cd4f1c9c0cbc0eea510d07",
  1096. "code": "assetID",
  1097. "origCode": "AssetID",
  1098. "name": "资产编号",
  1099. "aliasCode": "AssetID",
  1100. "aliasName": "资产编号",
  1101. "classCode": "WSDHGB",
  1102. "category": "STATIC",
  1103. "type": "common",
  1104. "groupCode": "0",
  1105. "projectId": "0",
  1106. "firstTag": "台账参数",
  1107. "secondTag": "供应购买",
  1108. "priority": "R",
  1109. "dataType": "STRING",
  1110. "isMultiple": false,
  1111. "isRegion": false,
  1112. "subFlag": false,
  1113. "weakPoint": false
  1114. },
  1115. {
  1116. "id": "b50950496fac47e0b57cbefcd6bd4298",
  1117. "code": "inAirTemp",
  1118. "origCode": "InAirTemp",
  1119. "name": "吸气温度",
  1120. "aliasCode": "InAirTemp",
  1121. "aliasName": "吸气温度",
  1122. "classCode": "WSDHGB",
  1123. "category": "SEQUENTIAL",
  1124. "type": "common",
  1125. "groupCode": "0",
  1126. "projectId": "0",
  1127. "firstTag": "运行参数",
  1128. "secondTag": "整机",
  1129. "priority": "R",
  1130. "unit": "℃",
  1131. "dataType": "DOUBLE",
  1132. "isMultiple": false,
  1133. "isRegion": false,
  1134. "subFlag": false,
  1135. "weakPoint": false
  1136. },
  1137. {
  1138. "id": "80090588c7d5429981c93fdb3cfee80f",
  1139. "code": "accFilling",
  1140. "origCode": "AccFilling",
  1141. "name": "累计补水量",
  1142. "aliasCode": "AccFilling",
  1143. "aliasName": "累计补水量",
  1144. "classCode": "WSDHGB",
  1145. "category": "SEQUENTIAL",
  1146. "type": "common",
  1147. "groupCode": "0",
  1148. "projectId": "0",
  1149. "firstTag": "运行参数",
  1150. "secondTag": "整机",
  1151. "priority": "R",
  1152. "unit": "m3",
  1153. "dataType": "DOUBLE",
  1154. "isMultiple": false,
  1155. "isRegion": false,
  1156. "subFlag": false,
  1157. "weakPoint": false
  1158. },
  1159. {
  1160. "id": "f003acca9dcd4135acf8977899ab0962",
  1161. "code": "checkReport",
  1162. "origCode": "CheckReport",
  1163. "name": "安装质检报告",
  1164. "aliasCode": "CheckReport",
  1165. "aliasName": "安装质检报告",
  1166. "classCode": "WSDHGB",
  1167. "category": "STATIC",
  1168. "type": "common",
  1169. "groupCode": "0",
  1170. "projectId": "0",
  1171. "firstTag": "台账参数",
  1172. "secondTag": "现场安装",
  1173. "priority": "R",
  1174. "dataType": "ATTACHMENT",
  1175. "isMultiple": true,
  1176. "isRegion": false,
  1177. "subFlag": false,
  1178. "weakPoint": false
  1179. },
  1180. {
  1181. "id": "8fc482cede56426487cbd0d0bf309375",
  1182. "code": "bimFamilySymbol",
  1183. "origCode": "BIMFamilySymbol",
  1184. "name": "Revit族类型",
  1185. "aliasCode": "BIMFamilySymbol",
  1186. "aliasName": "Revit族类型",
  1187. "classCode": "WSDHGB",
  1188. "category": "STATIC",
  1189. "type": "common",
  1190. "groupCode": "0",
  1191. "projectId": "0",
  1192. "firstTag": "基本参数",
  1193. "priority": "R",
  1194. "dataType": "STRING",
  1195. "isMultiple": false,
  1196. "isRegion": false,
  1197. "subFlag": false,
  1198. "weakPoint": false
  1199. },
  1200. {
  1201. "id": "25708e15d606444781016bf54da8cbe1",
  1202. "code": "bimId",
  1203. "origCode": "BIMID",
  1204. "name": "BIM模型中编码",
  1205. "aliasCode": "BIMID",
  1206. "aliasName": "BIM模型中编码",
  1207. "classCode": "WSDHGB",
  1208. "category": "STATIC",
  1209. "type": "common",
  1210. "groupCode": "0",
  1211. "projectId": "0",
  1212. "firstTag": "基本参数",
  1213. "priority": "R",
  1214. "dataType": "STRING",
  1215. "isMultiple": false,
  1216. "isRegion": false,
  1217. "subFlag": false,
  1218. "weakPoint": false
  1219. },
  1220. {
  1221. "id": "264e5c4c17f94b3282cdc5cd16bf1957",
  1222. "code": "acceptanceReport",
  1223. "origCode": "AcceptanceReport",
  1224. "name": "验收报告",
  1225. "aliasCode": "AcceptanceReport",
  1226. "aliasName": "验收报告",
  1227. "classCode": "WSDHGB",
  1228. "category": "STATIC",
  1229. "type": "common",
  1230. "groupCode": "0",
  1231. "projectId": "0",
  1232. "firstTag": "台账参数",
  1233. "secondTag": "供应购买",
  1234. "priority": "R",
  1235. "dataType": "ATTACHMENT",
  1236. "isMultiple": true,
  1237. "isRegion": false,
  1238. "subFlag": false,
  1239. "weakPoint": false
  1240. },
  1241. {
  1242. "id": "edc8ccdd782b4898b669cb7d5d128736",
  1243. "code": "connectingMethod",
  1244. "origCode": "ConnectingMethod",
  1245. "name": "连接方式",
  1246. "aliasCode": "ConnectingMethod",
  1247. "aliasName": "连接方式",
  1248. "classCode": "WSDHGB",
  1249. "category": "STATIC",
  1250. "type": "common",
  1251. "groupCode": "0",
  1252. "projectId": "0",
  1253. "firstTag": "通讯参数",
  1254. "secondTag": "协议",
  1255. "priority": "S",
  1256. "dataType": "ENUM",
  1257. "isMultiple": false,
  1258. "isRegion": false,
  1259. "dataSource": [
  1260. {
  1261. "code": "1",
  1262. "name": "TCP"
  1263. },
  1264. {
  1265. "code": "2",
  1266. "name": "UDP"
  1267. },
  1268. {
  1269. "code": "3",
  1270. "name": "工业总线"
  1271. },
  1272. {
  1273. "code": "99",
  1274. "name": "其他"
  1275. }
  1276. ],
  1277. "subFlag": false,
  1278. "weakPoint": false
  1279. },
  1280. {
  1281. "id": "ea9e64659a0c4197b8f8c39ab05e2794",
  1282. "code": "installPic",
  1283. "origCode": "InstallPic",
  1284. "name": "安装照片",
  1285. "aliasCode": "InstallPic",
  1286. "aliasName": "安装照片",
  1287. "classCode": "WSDHGB",
  1288. "category": "STATIC",
  1289. "type": "common",
  1290. "groupCode": "0",
  1291. "projectId": "0",
  1292. "firstTag": "台账参数",
  1293. "secondTag": "现场安装",
  1294. "priority": "R",
  1295. "dataType": "ATTACHMENT",
  1296. "isMultiple": true,
  1297. "isRegion": false,
  1298. "subFlag": false,
  1299. "weakPoint": false
  1300. },
  1301. {
  1302. "id": "ae344a7e202847028b970476610bc7ea",
  1303. "code": "ratedHeatP",
  1304. "origCode": "RatedHeatP",
  1305. "name": "额定加热功率",
  1306. "aliasCode": "RatedHeatP",
  1307. "aliasName": "额定加热功率",
  1308. "classCode": "WSDHGB",
  1309. "category": "STATIC",
  1310. "type": "common",
  1311. "groupCode": "0",
  1312. "projectId": "0",
  1313. "firstTag": "技术参数",
  1314. "secondTag": "整机",
  1315. "priority": "S",
  1316. "unit": "kW",
  1317. "dataType": "DOUBLE",
  1318. "isMultiple": false,
  1319. "isRegion": false,
  1320. "subFlag": false,
  1321. "weakPoint": false
  1322. },
  1323. {
  1324. "id": "32719516668e47dbb07c0abb239a4006",
  1325. "code": "bimLocation",
  1326. "origCode": "BIMLocation",
  1327. "name": "BIM模型中坐标",
  1328. "aliasCode": "BIMLocation",
  1329. "aliasName": "BIM模型中坐标",
  1330. "classCode": "WSDHGB",
  1331. "category": "STATIC",
  1332. "type": "common",
  1333. "groupCode": "0",
  1334. "projectId": "0",
  1335. "firstTag": "基本参数",
  1336. "priority": "R",
  1337. "dataType": "STRING",
  1338. "isMultiple": false,
  1339. "isRegion": false,
  1340. "subFlag": false,
  1341. "weakPoint": false
  1342. },
  1343. {
  1344. "id": "1a7c3d0327f4466d86484ea8299c1aff",
  1345. "code": "ratedGasConsum",
  1346. "origCode": "RatedGasConsum",
  1347. "name": "额定输入燃气量",
  1348. "aliasCode": "RatedGasConsum",
  1349. "aliasName": "额定输入燃气量",
  1350. "classCode": "WSDHGB",
  1351. "category": "STATIC",
  1352. "type": "common",
  1353. "groupCode": "0",
  1354. "projectId": "0",
  1355. "firstTag": "技术参数",
  1356. "secondTag": "整机",
  1357. "priority": "S",
  1358. "unit": "m3/h",
  1359. "dataType": "DOUBLE",
  1360. "isMultiple": false,
  1361. "isRegion": false,
  1362. "subFlag": false,
  1363. "weakPoint": false
  1364. },
  1365. {
  1366. "id": "a27804b4902545189a45ff674fddae42",
  1367. "code": "equipFreqSet",
  1368. "origCode": "EquipFreqSet",
  1369. "name": "设备频率设定",
  1370. "aliasCode": "EquipFreqSet",
  1371. "aliasName": "设备频率设定",
  1372. "classCode": "WSDHGB",
  1373. "category": "GRADATION",
  1374. "type": "common",
  1375. "groupCode": "0",
  1376. "projectId": "0",
  1377. "firstTag": "设定参数",
  1378. "priority": "S",
  1379. "unit": "Hz",
  1380. "dataType": "DOUBLE",
  1381. "isMultiple": false,
  1382. "isRegion": false,
  1383. "subFlag": false,
  1384. "weakPoint": false
  1385. },
  1386. {
  1387. "id": "ccca8564d66c4926aca9f9eecb85cc2a",
  1388. "code": "warranterWeb",
  1389. "origCode": "WarranterWeb",
  1390. "name": "质保单位网址",
  1391. "aliasCode": "WarranterWeb",
  1392. "aliasName": "质保单位网址",
  1393. "classCode": "WSDHGB",
  1394. "category": "STATIC",
  1395. "type": "common",
  1396. "groupCode": "0",
  1397. "projectId": "0",
  1398. "firstTag": "台账参数",
  1399. "secondTag": "运行维保",
  1400. "priority": "R",
  1401. "dataType": "STRING",
  1402. "isMultiple": false,
  1403. "isRegion": false,
  1404. "subFlag": false,
  1405. "weakPoint": false
  1406. },
  1407. {
  1408. "id": "f59d7f49188f475080fbf7a96ff3b452",
  1409. "code": "gasInPress",
  1410. "origCode": "GasInPress",
  1411. "name": "燃气进口压力",
  1412. "aliasCode": "GasInPress",
  1413. "aliasName": "燃气进口压力",
  1414. "classCode": "WSDHGB",
  1415. "category": "SEQUENTIAL",
  1416. "type": "common",
  1417. "groupCode": "0",
  1418. "projectId": "0",
  1419. "firstTag": "运行参数",
  1420. "secondTag": "整机",
  1421. "priority": "R",
  1422. "unit": "MPa",
  1423. "dataType": "DOUBLE",
  1424. "isMultiple": false,
  1425. "isRegion": false,
  1426. "subFlag": false,
  1427. "weakPoint": false
  1428. },
  1429. {
  1430. "id": "9ccc42fad72f44b6b865465aa1200d7b",
  1431. "code": "supplierEmail",
  1432. "origCode": "SupplierEmail",
  1433. "name": "供应商电子邮件",
  1434. "aliasCode": "SupplierEmail",
  1435. "aliasName": "供应商电子邮件",
  1436. "classCode": "WSDHGB",
  1437. "category": "STATIC",
  1438. "type": "common",
  1439. "groupCode": "0",
  1440. "projectId": "0",
  1441. "firstTag": "台账参数",
  1442. "secondTag": "供应购买",
  1443. "priority": "R",
  1444. "dataType": "STRING",
  1445. "isMultiple": false,
  1446. "isRegion": false,
  1447. "subFlag": false,
  1448. "weakPoint": false
  1449. },
  1450. {
  1451. "id": "2343929a65be4766827c09f7773489be",
  1452. "code": "runStatus",
  1453. "origCode": "RunStatus",
  1454. "name": "运行状态",
  1455. "aliasCode": "RunStatus",
  1456. "aliasName": "运行状态",
  1457. "classCode": "WSDHGB",
  1458. "category": "SEQUENTIAL",
  1459. "type": "common",
  1460. "groupCode": "0",
  1461. "projectId": "0",
  1462. "firstTag": "运行参数",
  1463. "priority": "S",
  1464. "dataType": "BOOLEAN",
  1465. "isMultiple": false,
  1466. "isRegion": false,
  1467. "dataSource": [
  1468. {
  1469. "code": "0",
  1470. "name": "停止"
  1471. },
  1472. {
  1473. "code": "1",
  1474. "name": "运行"
  1475. }
  1476. ],
  1477. "subFlag": false,
  1478. "weakPoint": false
  1479. },
  1480. {
  1481. "id": "9d02ea572fa240cf87da7c61d9e22f75",
  1482. "code": "ratedCondensateReturnFlow",
  1483. "origCode": "RatedCondensateReturnFlow",
  1484. "name": "蒸汽冷凝水回收额定回收量",
  1485. "aliasCode": "RatedCondensateReturnFlow",
  1486. "aliasName": "蒸汽冷凝水回收额定回收量",
  1487. "classCode": "WSDHGB",
  1488. "category": "STATIC",
  1489. "type": "common",
  1490. "groupCode": "0",
  1491. "projectId": "0",
  1492. "firstTag": "技术参数",
  1493. "secondTag": "蒸汽冷凝水回收装置",
  1494. "priority": "M",
  1495. "unit": "m3/h",
  1496. "dataType": "DOUBLE",
  1497. "isMultiple": false,
  1498. "isRegion": false,
  1499. "subFlag": false,
  1500. "weakPoint": false
  1501. },
  1502. {
  1503. "id": "9c3b4da377574ee1aabd2d8d305c336a",
  1504. "code": "ratedVaporOutPress",
  1505. "origCode": "RatedVaporOutPress",
  1506. "name": "额定蒸汽压力",
  1507. "aliasCode": "RatedVaporOutPress",
  1508. "aliasName": "额定蒸汽压力",
  1509. "classCode": "WSDHGB",
  1510. "category": "STATIC",
  1511. "type": "common",
  1512. "groupCode": "0",
  1513. "projectId": "0",
  1514. "firstTag": "技术参数",
  1515. "secondTag": "蒸汽锅炉",
  1516. "priority": "S",
  1517. "unit": "MPa",
  1518. "dataType": "DOUBLE",
  1519. "isMultiple": false,
  1520. "isRegion": false,
  1521. "subFlag": false,
  1522. "weakPoint": false
  1523. },
  1524. {
  1525. "id": "73a894f5b5584b86b3005ddb99f7432e",
  1526. "code": "protocol",
  1527. "origCode": "Protocol",
  1528. "name": "通讯协议",
  1529. "aliasCode": "Protocol",
  1530. "aliasName": "通讯协议",
  1531. "classCode": "WSDHGB",
  1532. "category": "STATIC",
  1533. "type": "common",
  1534. "groupCode": "0",
  1535. "projectId": "0",
  1536. "firstTag": "通讯参数",
  1537. "secondTag": "协议",
  1538. "priority": "S",
  1539. "dataType": "STRING",
  1540. "isMultiple": false,
  1541. "isRegion": false,
  1542. "subFlag": false,
  1543. "weakPoint": false
  1544. },
  1545. {
  1546. "id": "f413688504f94e34a36effbd44b52a92",
  1547. "code": "localRemoteStatus",
  1548. "origCode": "LocalRemoteStatus",
  1549. "name": "本地远程状态",
  1550. "aliasCode": "LocalRemoteStatus",
  1551. "aliasName": "本地远程状态",
  1552. "classCode": "WSDHGB",
  1553. "category": "SEQUENTIAL",
  1554. "type": "common",
  1555. "groupCode": "0",
  1556. "projectId": "0",
  1557. "firstTag": "运行参数",
  1558. "priority": "S",
  1559. "dataType": "BOOLEAN",
  1560. "isMultiple": false,
  1561. "isRegion": false,
  1562. "dataSource": [
  1563. {
  1564. "code": "0",
  1565. "name": "本地"
  1566. },
  1567. {
  1568. "code": "1",
  1569. "name": "远程"
  1570. }
  1571. ],
  1572. "subFlag": false,
  1573. "weakPoint": false
  1574. },
  1575. {
  1576. "id": "0c445ad480584c27823d8b4a903d2ba9",
  1577. "code": "productCertification",
  1578. "origCode": "ProductCertification",
  1579. "name": "产品合格证",
  1580. "aliasCode": "ProductCertification",
  1581. "aliasName": "产品合格证",
  1582. "classCode": "WSDHGB",
  1583. "category": "STATIC",
  1584. "type": "common",
  1585. "groupCode": "0",
  1586. "projectId": "0",
  1587. "firstTag": "台账参数",
  1588. "secondTag": "照片文档",
  1589. "priority": "R",
  1590. "dataType": "ATTACHMENT",
  1591. "isMultiple": true,
  1592. "isRegion": false,
  1593. "subFlag": false,
  1594. "weakPoint": false
  1595. },
  1596. {
  1597. "id": "d0d7428100644263b52783c08dc29c31",
  1598. "code": "equipOpeningSet",
  1599. "origCode": "EquipOpeningSet",
  1600. "name": "设备开度设定",
  1601. "aliasCode": "EquipOpeningSet",
  1602. "aliasName": "设备开度设定",
  1603. "classCode": "WSDHGB",
  1604. "category": "GRADATION",
  1605. "type": "common",
  1606. "groupCode": "0",
  1607. "projectId": "0",
  1608. "firstTag": "设定参数",
  1609. "priority": "S",
  1610. "unit": "%",
  1611. "dataType": "DOUBLE",
  1612. "isMultiple": false,
  1613. "isRegion": false,
  1614. "subFlag": false,
  1615. "weakPoint": false
  1616. },
  1617. {
  1618. "id": "a0fae94ff2a64218b9cca03d55254a33",
  1619. "code": "recoveryMaxWorkPress",
  1620. "origCode": "RecoveryMaxWorkPress",
  1621. "name": "烟气余热回收最高工作压力",
  1622. "aliasCode": "RecoveryMaxWorkPress",
  1623. "aliasName": "烟气余热回收最高工作压力",
  1624. "classCode": "WSDHGB",
  1625. "category": "STATIC",
  1626. "type": "common",
  1627. "groupCode": "0",
  1628. "projectId": "0",
  1629. "firstTag": "技术参数",
  1630. "secondTag": "烟气余热回收装置",
  1631. "priority": "R",
  1632. "unit": "MPa",
  1633. "dataType": "DOUBLE",
  1634. "isMultiple": false,
  1635. "isRegion": false,
  1636. "subFlag": false,
  1637. "weakPoint": false
  1638. },
  1639. {
  1640. "id": "7cb7773d30184c3ca2b21334cf437956",
  1641. "code": "expectScrapDate",
  1642. "origCode": "ExpectScrapDate",
  1643. "name": "预计报废日期",
  1644. "aliasCode": "ExpectScrapDate",
  1645. "aliasName": "预计报废日期",
  1646. "classCode": "WSDHGB",
  1647. "category": "STATIC",
  1648. "type": "common",
  1649. "groupCode": "0",
  1650. "projectId": "0",
  1651. "firstTag": "台账参数",
  1652. "secondTag": "运行维保",
  1653. "priority": "R",
  1654. "dataType": "DATETIME",
  1655. "isMultiple": false,
  1656. "isRegion": false,
  1657. "formater": "YYYYMMDD",
  1658. "note": "YYYYMMDD",
  1659. "subFlag": false,
  1660. "weakPoint": false
  1661. },
  1662. {
  1663. "id": "828211caf8ae4d16851a37c9f8a0d2df",
  1664. "code": "localRemoteSet",
  1665. "origCode": "LocalRemoteSet",
  1666. "name": "本地远程控制",
  1667. "aliasCode": "LocalRemoteSet",
  1668. "aliasName": "本地远程控制",
  1669. "classCode": "WSDHGB",
  1670. "category": "GRADATION",
  1671. "type": "common",
  1672. "groupCode": "0",
  1673. "projectId": "0",
  1674. "firstTag": "设定参数",
  1675. "priority": "S",
  1676. "dataType": "BOOLEAN",
  1677. "isMultiple": false,
  1678. "isRegion": false,
  1679. "dataSource": [
  1680. {
  1681. "code": "0",
  1682. "name": "本地"
  1683. },
  1684. {
  1685. "code": "1",
  1686. "name": "远程"
  1687. }
  1688. ],
  1689. "subFlag": false,
  1690. "weakPoint": false
  1691. },
  1692. {
  1693. "id": "eef244784f6d41ef95a3a8005470b0af",
  1694. "code": "fillingValveOpening",
  1695. "origCode": "FillingValveOpening",
  1696. "name": "补水阀开度",
  1697. "aliasCode": "FillingValveOpening",
  1698. "aliasName": "补水阀开度",
  1699. "classCode": "WSDHGB",
  1700. "category": "SEQUENTIAL",
  1701. "type": "common",
  1702. "groupCode": "0",
  1703. "projectId": "0",
  1704. "firstTag": "运行参数",
  1705. "secondTag": "整机",
  1706. "priority": "M",
  1707. "unit": "%",
  1708. "dataType": "DOUBLE",
  1709. "isMultiple": false,
  1710. "isRegion": false,
  1711. "subFlag": false,
  1712. "weakPoint": false
  1713. },
  1714. {
  1715. "id": "8e96c9831ffa480ca5d5537e33a977ef",
  1716. "code": "pic",
  1717. "origCode": "Pic",
  1718. "name": "设备照片",
  1719. "aliasCode": "Pic",
  1720. "aliasName": "设备照片",
  1721. "classCode": "WSDHGB",
  1722. "category": "STATIC",
  1723. "type": "common",
  1724. "groupCode": "0",
  1725. "projectId": "0",
  1726. "firstTag": "台账参数",
  1727. "secondTag": "照片文档",
  1728. "priority": "M",
  1729. "dataType": "ATTACHMENT",
  1730. "isMultiple": true,
  1731. "isRegion": false,
  1732. "subFlag": false,
  1733. "weakPoint": false
  1734. },
  1735. {
  1736. "id": "a72c2539a16d469b83421e9ba0892d47",
  1737. "code": "qRCodePic",
  1738. "origCode": "QRCodePic",
  1739. "name": "二维码图片",
  1740. "aliasCode": "QRCodePic",
  1741. "aliasName": "二维码图片",
  1742. "classCode": "WSDHGB",
  1743. "category": "STATIC",
  1744. "type": "common",
  1745. "groupCode": "0",
  1746. "projectId": "0",
  1747. "firstTag": "基本参数",
  1748. "priority": "R",
  1749. "dataType": "ATTACHMENT",
  1750. "isMultiple": false,
  1751. "isRegion": false,
  1752. "note": "图片",
  1753. "subFlag": false,
  1754. "weakPoint": false
  1755. },
  1756. {
  1757. "id": "8ed69291d86043c48a2249a494d60b72",
  1758. "code": "defaultQRCode",
  1759. "origCode": "DefaultQRCode",
  1760. "name": "二维码内容",
  1761. "aliasCode": "DefaultQRCode",
  1762. "aliasName": "二维码内容",
  1763. "classCode": "WSDHGB",
  1764. "category": "STATIC",
  1765. "type": "common",
  1766. "groupCode": "0",
  1767. "projectId": "0",
  1768. "firstTag": "基本参数",
  1769. "priority": "S",
  1770. "dataType": "STRING",
  1771. "isMultiple": false,
  1772. "isRegion": false,
  1773. "subFlag": false,
  1774. "weakPoint": false
  1775. },
  1776. {
  1777. "id": "942167d4646046e09ddc0b001bd539a8",
  1778. "code": "manufacturerPhone",
  1779. "origCode": "ManufacturerPhone",
  1780. "name": "生产厂家联系电话",
  1781. "aliasCode": "ManufacturerPhone",
  1782. "aliasName": "生产厂家联系电话",
  1783. "classCode": "WSDHGB",
  1784. "category": "STATIC",
  1785. "type": "common",
  1786. "groupCode": "0",
  1787. "projectId": "0",
  1788. "firstTag": "台账参数",
  1789. "secondTag": "生产厂家",
  1790. "priority": "M",
  1791. "dataType": "STRING",
  1792. "isMultiple": false,
  1793. "isRegion": false,
  1794. "subFlag": false,
  1795. "weakPoint": false
  1796. },
  1797. {
  1798. "id": "77896d19447c41ca9d3135deb3f96b39",
  1799. "code": "nameplate",
  1800. "origCode": "Nameplate",
  1801. "name": "设备铭牌照片",
  1802. "aliasCode": "Nameplate",
  1803. "aliasName": "设备铭牌照片",
  1804. "classCode": "WSDHGB",
  1805. "category": "STATIC",
  1806. "type": "common",
  1807. "groupCode": "0",
  1808. "projectId": "0",
  1809. "firstTag": "台账参数",
  1810. "secondTag": "照片文档",
  1811. "priority": "M",
  1812. "dataType": "ATTACHMENT",
  1813. "isMultiple": true,
  1814. "isRegion": false,
  1815. "subFlag": false,
  1816. "weakPoint": false
  1817. },
  1818. {
  1819. "id": "374e290db9554a52a4d0efc19d319623",
  1820. "code": "inCloudStatus",
  1821. "origCode": "InCloudStatus",
  1822. "name": "云端状态",
  1823. "aliasCode": "InCloudStatus",
  1824. "aliasName": "云端状态",
  1825. "classCode": "WSDHGB",
  1826. "category": "SEQUENTIAL",
  1827. "type": "common",
  1828. "groupCode": "0",
  1829. "projectId": "0",
  1830. "firstTag": "运行参数",
  1831. "priority": "S",
  1832. "dataType": "BOOLEAN",
  1833. "isMultiple": false,
  1834. "isRegion": false,
  1835. "dataSource": [
  1836. {
  1837. "code": "0",
  1838. "name": "非云端"
  1839. },
  1840. {
  1841. "code": "1",
  1842. "name": "云端"
  1843. }
  1844. ],
  1845. "subFlag": false,
  1846. "weakPoint": false
  1847. },
  1848. {
  1849. "id": "ad74cef198984b509ee21d3a49b9e384",
  1850. "code": "recoveryMaxWorkTemp",
  1851. "origCode": "RecoveryMaxWorkTemp",
  1852. "name": "烟气余热回收最高工作温度",
  1853. "aliasCode": "RecoveryMaxWorkTemp",
  1854. "aliasName": "烟气余热回收最高工作温度",
  1855. "classCode": "WSDHGB",
  1856. "category": "STATIC",
  1857. "type": "common",
  1858. "groupCode": "0",
  1859. "projectId": "0",
  1860. "firstTag": "技术参数",
  1861. "secondTag": "烟气余热回收装置",
  1862. "priority": "R",
  1863. "unit": "℃",
  1864. "dataType": "DOUBLE",
  1865. "isMultiple": false,
  1866. "isRegion": false,
  1867. "subFlag": false,
  1868. "weakPoint": false
  1869. },
  1870. {
  1871. "id": "947ec0443f654a519491f42d72972ce4",
  1872. "code": "id",
  1873. "origCode": "EquipID",
  1874. "name": "设备ID",
  1875. "aliasCode": "EquipID",
  1876. "aliasName": "设备ID",
  1877. "classCode": "WSDHGB",
  1878. "category": "STATIC",
  1879. "type": "common",
  1880. "groupCode": "0",
  1881. "projectId": "0",
  1882. "inputMode": "X",
  1883. "dataType": "STRING",
  1884. "origDataType": "Str",
  1885. "isMultiple": false,
  1886. "isRegion": false,
  1887. "subFlag": false,
  1888. "weakPoint": false
  1889. },
  1890. {
  1891. "id": "3982f33d6be145b9a55316e0edfc780c",
  1892. "code": "runModeSet",
  1893. "origCode": "RunModeSet",
  1894. "name": "运行模式设定",
  1895. "aliasCode": "RunModeSet",
  1896. "aliasName": "运行模式设定",
  1897. "classCode": "WSDHGB",
  1898. "category": "GRADATION",
  1899. "type": "common",
  1900. "groupCode": "0",
  1901. "projectId": "0",
  1902. "firstTag": "设定参数",
  1903. "priority": "S",
  1904. "dataType": "ENUM",
  1905. "isMultiple": false,
  1906. "isRegion": false,
  1907. "dataSource": [
  1908. {
  1909. "code": "99",
  1910. "name": "其他"
  1911. }
  1912. ],
  1913. "note": "选项自定义",
  1914. "subFlag": false,
  1915. "weakPoint": false
  1916. },
  1917. {
  1918. "id": "6d7ab6c138ec4b35983a2bfe63d685ec",
  1919. "code": "supplierContract",
  1920. "origCode": "SupplierContract",
  1921. "name": "供应合同",
  1922. "aliasCode": "SupplierContract",
  1923. "aliasName": "供应合同",
  1924. "classCode": "WSDHGB",
  1925. "category": "STATIC",
  1926. "type": "common",
  1927. "groupCode": "0",
  1928. "projectId": "0",
  1929. "firstTag": "台账参数",
  1930. "secondTag": "供应购买",
  1931. "priority": "R",
  1932. "dataType": "ATTACHMENT",
  1933. "isMultiple": true,
  1934. "isRegion": false,
  1935. "subFlag": false,
  1936. "weakPoint": false
  1937. },
  1938. {
  1939. "id": "57a2a661bdc0444bb00ea21052a20d63",
  1940. "code": "warranterEmail",
  1941. "origCode": "WarranterEmail",
  1942. "name": "质保单位电子邮件",
  1943. "aliasCode": "WarranterEmail",
  1944. "aliasName": "质保单位电子邮件",
  1945. "classCode": "WSDHGB",
  1946. "category": "STATIC",
  1947. "type": "common",
  1948. "groupCode": "0",
  1949. "projectId": "0",
  1950. "firstTag": "台账参数",
  1951. "secondTag": "运行维保",
  1952. "priority": "R",
  1953. "dataType": "STRING",
  1954. "isMultiple": false,
  1955. "isRegion": false,
  1956. "subFlag": false,
  1957. "weakPoint": false
  1958. },
  1959. {
  1960. "id": "d0d80cedd0ec46edbd6098b298be5f52",
  1961. "code": "ratedRecoveryHeatTrans",
  1962. "origCode": "RatedRecoveryHeatTrans",
  1963. "name": "烟气余热回收额定换热量",
  1964. "aliasCode": "RatedRecoveryHeatTrans",
  1965. "aliasName": "烟气余热回收额定换热量",
  1966. "classCode": "WSDHGB",
  1967. "category": "STATIC",
  1968. "type": "common",
  1969. "groupCode": "0",
  1970. "projectId": "0",
  1971. "firstTag": "技术参数",
  1972. "secondTag": "烟气余热回收装置",
  1973. "priority": "M",
  1974. "unit": "kW",
  1975. "dataType": "DOUBLE",
  1976. "isMultiple": false,
  1977. "isRegion": false,
  1978. "subFlag": false,
  1979. "weakPoint": false
  1980. },
  1981. {
  1982. "id": "c45442636ebc4e21a83797d3d65f5314",
  1983. "code": "ratedVaporFlow",
  1984. "origCode": "RatedVaporFlow",
  1985. "name": "额定制蒸汽量",
  1986. "aliasCode": "RatedVaporFlow",
  1987. "aliasName": "额定制蒸汽量",
  1988. "classCode": "WSDHGB",
  1989. "category": "STATIC",
  1990. "type": "common",
  1991. "groupCode": "0",
  1992. "projectId": "0",
  1993. "firstTag": "技术参数",
  1994. "secondTag": "蒸汽锅炉",
  1995. "priority": "S",
  1996. "unit": "t/h",
  1997. "dataType": "DOUBLE",
  1998. "isMultiple": false,
  1999. "isRegion": false,
  2000. "subFlag": false,
  2001. "weakPoint": false
  2002. },
  2003. {
  2004. "id": "97833f667ff2408cbe66fd653a56bb6c",
  2005. "code": "insurerPhone",
  2006. "origCode": "InsurerPhone",
  2007. "name": "保险公司联系电话",
  2008. "aliasCode": "InsurerPhone",
  2009. "aliasName": "保险公司联系电话",
  2010. "classCode": "WSDHGB",
  2011. "category": "STATIC",
  2012. "type": "common",
  2013. "groupCode": "0",
  2014. "projectId": "0",
  2015. "firstTag": "台账参数",
  2016. "secondTag": "保险文件",
  2017. "priority": "R",
  2018. "dataType": "STRING",
  2019. "isMultiple": false,
  2020. "isRegion": false,
  2021. "subFlag": false,
  2022. "weakPoint": false
  2023. },
  2024. {
  2025. "id": "ba7575321ed9465b80cdd776de5203dd",
  2026. "code": "equipGearSet",
  2027. "origCode": "EquipGearSet",
  2028. "name": "设备档位设定",
  2029. "aliasCode": "EquipGearSet",
  2030. "aliasName": "设备档位设定",
  2031. "classCode": "WSDHGB",
  2032. "category": "GRADATION",
  2033. "type": "common",
  2034. "groupCode": "0",
  2035. "projectId": "0",
  2036. "firstTag": "设定参数",
  2037. "priority": "S",
  2038. "dataType": "ENUM",
  2039. "isMultiple": false,
  2040. "isRegion": false,
  2041. "dataSource": [
  2042. {
  2043. "code": "1",
  2044. "name": "低档"
  2045. },
  2046. {
  2047. "code": "2",
  2048. "name": "中挡"
  2049. },
  2050. {
  2051. "code": "3",
  2052. "name": "高挡"
  2053. },
  2054. {
  2055. "code": "99",
  2056. "name": "其他"
  2057. }
  2058. ],
  2059. "subFlag": false,
  2060. "weakPoint": false
  2061. },
  2062. {
  2063. "id": "d6b5013c32584f05b6c8d9c0b4727e89",
  2064. "code": "vaporOutPress",
  2065. "origCode": "VaporOutPress",
  2066. "name": "蒸汽压力",
  2067. "aliasCode": "VaporOutPress",
  2068. "aliasName": "蒸汽压力",
  2069. "classCode": "WSDHGB",
  2070. "category": "SEQUENTIAL",
  2071. "type": "common",
  2072. "groupCode": "0",
  2073. "projectId": "0",
  2074. "firstTag": "运行参数",
  2075. "secondTag": "整机",
  2076. "priority": "S",
  2077. "unit": "MPa",
  2078. "dataType": "DOUBLE",
  2079. "isMultiple": false,
  2080. "isRegion": false,
  2081. "note": "蒸汽系统",
  2082. "subFlag": false,
  2083. "weakPoint": false
  2084. },
  2085. {
  2086. "id": "a254c51740624f948649e839899779fd",
  2087. "code": "ratedHotWaterOutTemp",
  2088. "origCode": "RatedHotWaterOutTemp",
  2089. "name": "额定出水温度",
  2090. "aliasCode": "RatedHotWaterOutTemp",
  2091. "aliasName": "额定出水温度",
  2092. "classCode": "WSDHGB",
  2093. "category": "STATIC",
  2094. "type": "common",
  2095. "groupCode": "0",
  2096. "projectId": "0",
  2097. "firstTag": "技术参数",
  2098. "secondTag": "热水锅炉",
  2099. "priority": "S",
  2100. "unit": "℃",
  2101. "dataType": "DOUBLE",
  2102. "isMultiple": false,
  2103. "isRegion": false,
  2104. "subFlag": false,
  2105. "weakPoint": false
  2106. },
  2107. {
  2108. "id": "a4a5464c842748738bfb953af3e10d19",
  2109. "code": "vaporValveSwitchSet",
  2110. "origCode": "VaporValveSwitchSet",
  2111. "name": "蒸汽阀开关设定",
  2112. "aliasCode": "VaporValveSwitchSet",
  2113. "aliasName": "蒸汽阀开关设定",
  2114. "classCode": "WSDHGB",
  2115. "category": "SEQUENTIAL",
  2116. "type": "common",
  2117. "groupCode": "0",
  2118. "projectId": "0",
  2119. "firstTag": "设定参数",
  2120. "priority": "R",
  2121. "dataType": "BOOLEAN",
  2122. "isMultiple": false,
  2123. "isRegion": false,
  2124. "dataSource": [
  2125. {
  2126. "code": "0",
  2127. "name": "关闭"
  2128. },
  2129. {
  2130. "code": "1",
  2131. "name": "开启"
  2132. }
  2133. ],
  2134. "note": "蒸汽锅炉",
  2135. "subFlag": false,
  2136. "weakPoint": false
  2137. },
  2138. {
  2139. "id": "ccddaaf616e94cc3ae5cf23e7fd15b85",
  2140. "code": "accGasConsum",
  2141. "origCode": "AccGasConsum",
  2142. "name": "累计燃气量",
  2143. "aliasCode": "AccGasConsum",
  2144. "aliasName": "累计燃气量",
  2145. "classCode": "WSDHGB",
  2146. "category": "SEQUENTIAL",
  2147. "type": "common",
  2148. "groupCode": "0",
  2149. "projectId": "0",
  2150. "firstTag": "运行参数",
  2151. "secondTag": "整机",
  2152. "priority": "M",
  2153. "unit": "m3",
  2154. "dataType": "DOUBLE",
  2155. "isMultiple": false,
  2156. "isRegion": false,
  2157. "subFlag": false,
  2158. "weakPoint": false
  2159. },
  2160. {
  2161. "id": "429a0f1c6ebe48c399796af50b1ff2f1",
  2162. "code": "logicalAddress",
  2163. "origCode": "LogicalAddress",
  2164. "name": "协议地址",
  2165. "aliasCode": "LogicalAddress",
  2166. "aliasName": "协议地址",
  2167. "classCode": "WSDHGB",
  2168. "category": "STATIC",
  2169. "type": "common",
  2170. "groupCode": "0",
  2171. "projectId": "0",
  2172. "firstTag": "通讯参数",
  2173. "secondTag": "通讯地址",
  2174. "priority": "S",
  2175. "dataType": "STRING",
  2176. "isMultiple": false,
  2177. "isRegion": false,
  2178. "note": "软件设定",
  2179. "subFlag": false,
  2180. "weakPoint": false
  2181. },
  2182. {
  2183. "id": "c90a01061a7648438d4009a32121efd2",
  2184. "code": "insurerWeb",
  2185. "origCode": "InsurerWeb",
  2186. "name": "保险公司网址",
  2187. "aliasCode": "InsurerWeb",
  2188. "aliasName": "保险公司网址",
  2189. "classCode": "WSDHGB",
  2190. "category": "STATIC",
  2191. "type": "common",
  2192. "groupCode": "0",
  2193. "projectId": "0",
  2194. "firstTag": "台账参数",
  2195. "secondTag": "保险文件",
  2196. "priority": "R",
  2197. "dataType": "STRING",
  2198. "isMultiple": false,
  2199. "isRegion": false,
  2200. "subFlag": false,
  2201. "weakPoint": false
  2202. },
  2203. {
  2204. "id": "0f490b3f66494d8b8b45c1227dc75811",
  2205. "code": "heatRecoveryEff",
  2206. "origCode": "HeatRecoveryEff",
  2207. "name": "余热回收效率",
  2208. "aliasCode": "HeatRecoveryEff",
  2209. "aliasName": "余热回收效率",
  2210. "classCode": "WSDHGB",
  2211. "category": "SEQUENTIAL",
  2212. "type": "common",
  2213. "groupCode": "0",
  2214. "projectId": "0",
  2215. "firstTag": "运行参数",
  2216. "secondTag": "关键指标",
  2217. "priority": "R",
  2218. "unit": "%",
  2219. "dataType": "DOUBLE",
  2220. "isMultiple": false,
  2221. "isRegion": false,
  2222. "subFlag": false,
  2223. "weakPoint": false
  2224. },
  2225. {
  2226. "id": "c579725d3b7849fa907766dab9b72ee3",
  2227. "code": "heatP",
  2228. "origCode": "HeatP",
  2229. "name": "供热功率",
  2230. "aliasCode": "HeatP",
  2231. "aliasName": "供热功率",
  2232. "classCode": "WSDHGB",
  2233. "category": "SEQUENTIAL",
  2234. "type": "common",
  2235. "groupCode": "0",
  2236. "projectId": "0",
  2237. "firstTag": "运行参数",
  2238. "secondTag": "整机",
  2239. "priority": "M",
  2240. "unit": "kW",
  2241. "dataType": "DOUBLE",
  2242. "isMultiple": false,
  2243. "isRegion": false,
  2244. "subFlag": false,
  2245. "weakPoint": false
  2246. },
  2247. {
  2248. "id": "05ead0d8aecf42c090d0b6045c1724c4",
  2249. "code": "installType",
  2250. "origCode": "InstallType",
  2251. "name": "安装结构",
  2252. "aliasCode": "InstallType",
  2253. "aliasName": "安装结构",
  2254. "classCode": "WSDHGB",
  2255. "category": "STATIC",
  2256. "type": "common",
  2257. "groupCode": "0",
  2258. "projectId": "0",
  2259. "firstTag": "技术参数",
  2260. "secondTag": "整机",
  2261. "priority": "R",
  2262. "dataType": "ENUM",
  2263. "isMultiple": false,
  2264. "isRegion": false,
  2265. "dataSource": [
  2266. {
  2267. "code": "1",
  2268. "name": "卧式"
  2269. },
  2270. {
  2271. "code": "2",
  2272. "name": "立式"
  2273. },
  2274. {
  2275. "code": "99",
  2276. "name": "其他"
  2277. }
  2278. ],
  2279. "subFlag": false,
  2280. "weakPoint": false
  2281. },
  2282. {
  2283. "id": "c6ead8d8c14540da9a643f638e236c2c",
  2284. "code": "brand",
  2285. "origCode": "Brand",
  2286. "name": "品牌",
  2287. "aliasCode": "Brand",
  2288. "aliasName": "品牌",
  2289. "classCode": "WSDHGB",
  2290. "category": "STATIC",
  2291. "type": "common",
  2292. "groupCode": "0",
  2293. "projectId": "0",
  2294. "firstTag": "台账参数",
  2295. "secondTag": "生产厂家",
  2296. "priority": "S",
  2297. "dataType": "STRING",
  2298. "isMultiple": false,
  2299. "isRegion": false,
  2300. "subFlag": false,
  2301. "weakPoint": false
  2302. },
  2303. {
  2304. "id": "629db2e5dcab4131a6e6175de1d52399",
  2305. "code": "specification",
  2306. "origCode": "Specification",
  2307. "name": "设备型号",
  2308. "aliasCode": "Specification",
  2309. "aliasName": "设备型号",
  2310. "classCode": "WSDHGB",
  2311. "category": "STATIC",
  2312. "type": "common",
  2313. "groupCode": "0",
  2314. "projectId": "0",
  2315. "firstTag": "台账参数",
  2316. "secondTag": "生产厂家",
  2317. "priority": "S",
  2318. "dataType": "STRING",
  2319. "isMultiple": false,
  2320. "isRegion": false,
  2321. "subFlag": false,
  2322. "weakPoint": false
  2323. },
  2324. {
  2325. "id": "f916f65d3dbe4dcdacf1be85b14a0226",
  2326. "code": "exhaustSmokeTemp",
  2327. "origCode": "ExhaustSmokeTemp",
  2328. "name": "排烟温度",
  2329. "aliasCode": "ExhaustSmokeTemp",
  2330. "aliasName": "排烟温度",
  2331. "classCode": "WSDHGB",
  2332. "category": "SEQUENTIAL",
  2333. "type": "common",
  2334. "groupCode": "0",
  2335. "projectId": "0",
  2336. "firstTag": "运行参数",
  2337. "secondTag": "整机",
  2338. "priority": "M",
  2339. "unit": "℃",
  2340. "dataType": "DOUBLE",
  2341. "isMultiple": false,
  2342. "isRegion": false,
  2343. "subFlag": false,
  2344. "weakPoint": false
  2345. },
  2346. {
  2347. "id": "5e29024f227542639985a39e2180cb51",
  2348. "code": "maintainerContactor",
  2349. "origCode": "MaintainerContactor",
  2350. "name": "维修商联系人",
  2351. "aliasCode": "MaintainerContactor",
  2352. "aliasName": "维修商联系人",
  2353. "classCode": "WSDHGB",
  2354. "category": "STATIC",
  2355. "type": "common",
  2356. "groupCode": "0",
  2357. "projectId": "0",
  2358. "firstTag": "台账参数",
  2359. "secondTag": "运行维保",
  2360. "priority": "M",
  2361. "dataType": "STRING",
  2362. "isMultiple": false,
  2363. "isRegion": false,
  2364. "subFlag": false,
  2365. "weakPoint": false
  2366. },
  2367. {
  2368. "id": "46af2d07dbda4be989fa74856c15c72e",
  2369. "code": "localId",
  2370. "origCode": "EquipLocalID",
  2371. "name": "设备本地编码",
  2372. "aliasCode": "EquipLocalID",
  2373. "aliasName": "设备本地编码",
  2374. "classCode": "WSDHGB",
  2375. "category": "STATIC",
  2376. "type": "common",
  2377. "groupCode": "0",
  2378. "projectId": "0",
  2379. "firstTag": "基本参数",
  2380. "priority": "S",
  2381. "dataType": "STRING",
  2382. "isMultiple": false,
  2383. "isRegion": false,
  2384. "subFlag": false,
  2385. "weakPoint": false
  2386. },
  2387. {
  2388. "id": "4348c356a1f94c84bdb92b848062117f",
  2389. "code": "length",
  2390. "origCode": "Length",
  2391. "name": "长",
  2392. "aliasCode": "Length",
  2393. "aliasName": "长",
  2394. "classCode": "WSDHGB",
  2395. "category": "STATIC",
  2396. "type": "common",
  2397. "groupCode": "0",
  2398. "projectId": "0",
  2399. "firstTag": "台账参数",
  2400. "secondTag": "现场安装",
  2401. "priority": "M",
  2402. "unit": "m",
  2403. "dataType": "DOUBLE",
  2404. "isMultiple": false,
  2405. "isRegion": false,
  2406. "subFlag": false,
  2407. "weakPoint": false
  2408. },
  2409. {
  2410. "id": "7e879ddac73748828d4c78a5b0d3477d",
  2411. "code": "serialNum",
  2412. "origCode": "SerialNum",
  2413. "name": "出厂编号",
  2414. "aliasCode": "SerialNum",
  2415. "aliasName": "出厂编号",
  2416. "classCode": "WSDHGB",
  2417. "category": "STATIC",
  2418. "type": "common",
  2419. "groupCode": "0",
  2420. "projectId": "0",
  2421. "firstTag": "台账参数",
  2422. "secondTag": "生产厂家",
  2423. "priority": "R",
  2424. "dataType": "STRING",
  2425. "isMultiple": false,
  2426. "isRegion": false,
  2427. "subFlag": false,
  2428. "weakPoint": false
  2429. },
  2430. {
  2431. "id": "c2d2c49a65a742d19c7b9f21926ae960",
  2432. "code": "designEff",
  2433. "origCode": "DesignEff",
  2434. "name": "设计热效率",
  2435. "aliasCode": "DesignEff",
  2436. "aliasName": "设计热效率",
  2437. "classCode": "WSDHGB",
  2438. "category": "STATIC",
  2439. "type": "common",
  2440. "groupCode": "0",
  2441. "projectId": "0",
  2442. "firstTag": "技术参数",
  2443. "secondTag": "整机",
  2444. "priority": "M",
  2445. "unit": "%",
  2446. "dataType": "DOUBLE",
  2447. "isMultiple": false,
  2448. "isRegion": false,
  2449. "subFlag": false,
  2450. "weakPoint": false
  2451. },
  2452. {
  2453. "id": "0d78fe12e2a64a34a5b381a5c0188afa",
  2454. "code": "testReport",
  2455. "origCode": "TestReport",
  2456. "name": "检测报告",
  2457. "aliasCode": "TestReport",
  2458. "aliasName": "检测报告",
  2459. "classCode": "WSDHGB",
  2460. "category": "STATIC",
  2461. "type": "common",
  2462. "groupCode": "0",
  2463. "projectId": "0",
  2464. "firstTag": "台账参数",
  2465. "secondTag": "生产厂家",
  2466. "priority": "R",
  2467. "dataType": "ATTACHMENT",
  2468. "isMultiple": true,
  2469. "isRegion": false,
  2470. "subFlag": false,
  2471. "weakPoint": false
  2472. },
  2473. {
  2474. "id": "54bbf45bee3f402ea04eb2419d70c644",
  2475. "code": "name",
  2476. "origCode": "EquipName",
  2477. "name": "设备名称",
  2478. "aliasCode": "EquipName",
  2479. "aliasName": "设备名称",
  2480. "classCode": "WSDHGB",
  2481. "category": "STATIC",
  2482. "type": "common",
  2483. "groupCode": "0",
  2484. "projectId": "0",
  2485. "inputMode": "X",
  2486. "dataType": "STRING",
  2487. "origDataType": "Str",
  2488. "isMultiple": false,
  2489. "isRegion": false,
  2490. "subFlag": false,
  2491. "weakPoint": false
  2492. },
  2493. {
  2494. "id": "9be759e5a7004af3b8351e8cc5d585ba",
  2495. "code": "cADID",
  2496. "origCode": "CADID",
  2497. "name": "设计图纸中编码",
  2498. "aliasCode": "CADID",
  2499. "aliasName": "设计图纸中编码",
  2500. "classCode": "WSDHGB",
  2501. "category": "STATIC",
  2502. "type": "common",
  2503. "groupCode": "0",
  2504. "projectId": "0",
  2505. "firstTag": "基本参数",
  2506. "priority": "M",
  2507. "dataType": "STRING",
  2508. "isMultiple": false,
  2509. "isRegion": false,
  2510. "subFlag": false,
  2511. "weakPoint": false
  2512. },
  2513. {
  2514. "id": "4df8ecbae4d64a28b40a079fcf129f17",
  2515. "code": "boilerType",
  2516. "origCode": "BoilerType",
  2517. "name": "锅炉类型",
  2518. "aliasCode": "BoilerType",
  2519. "aliasName": "锅炉类型",
  2520. "classCode": "WSDHGB",
  2521. "category": "STATIC",
  2522. "type": "common",
  2523. "groupCode": "0",
  2524. "projectId": "0",
  2525. "firstTag": "技术参数",
  2526. "secondTag": "整机",
  2527. "priority": "S",
  2528. "dataType": "ENUM",
  2529. "isMultiple": false,
  2530. "isRegion": false,
  2531. "dataSource": [
  2532. {
  2533. "code": "1",
  2534. "name": "热水锅炉"
  2535. },
  2536. {
  2537. "code": "2",
  2538. "name": "蒸汽锅炉"
  2539. },
  2540. {
  2541. "code": "3",
  2542. "name": "蒸汽热水锅炉"
  2543. },
  2544. {
  2545. "code": "99",
  2546. "name": "其他"
  2547. }
  2548. ],
  2549. "subFlag": false,
  2550. "weakPoint": false
  2551. },
  2552. {
  2553. "id": "7230fb68111b44efa3967f805161287f",
  2554. "code": "vaporOutPressSet",
  2555. "origCode": "VaporOutPressSet",
  2556. "name": "蒸汽压力设定",
  2557. "aliasCode": "VaporOutPressSet",
  2558. "aliasName": "蒸汽压力设定",
  2559. "classCode": "WSDHGB",
  2560. "category": "GRADATION",
  2561. "type": "common",
  2562. "groupCode": "0",
  2563. "projectId": "0",
  2564. "firstTag": "设定参数",
  2565. "priority": "S",
  2566. "unit": "MPa",
  2567. "dataType": "DOUBLE",
  2568. "isMultiple": false,
  2569. "isRegion": false,
  2570. "note": "蒸汽锅炉",
  2571. "subFlag": false,
  2572. "weakPoint": false
  2573. },
  2574. {
  2575. "id": "d5ba108822994ca1bd15fc9d2c630cfc",
  2576. "code": "supplier",
  2577. "origCode": "Supplier",
  2578. "name": "供应商单位名称",
  2579. "aliasCode": "Supplier",
  2580. "aliasName": "供应商单位名称",
  2581. "classCode": "WSDHGB",
  2582. "category": "STATIC",
  2583. "type": "common",
  2584. "groupCode": "0",
  2585. "projectId": "0",
  2586. "firstTag": "台账参数",
  2587. "secondTag": "供应购买",
  2588. "priority": "M",
  2589. "dataType": "STRING",
  2590. "isMultiple": false,
  2591. "isRegion": false,
  2592. "subFlag": false,
  2593. "weakPoint": false
  2594. },
  2595. {
  2596. "id": "4f439ff195b144198e8fab04cd9d8fef",
  2597. "code": "installerPhone",
  2598. "origCode": "InstallerPhone",
  2599. "name": "安装单位联系电话",
  2600. "aliasCode": "InstallerPhone",
  2601. "aliasName": "安装单位联系电话",
  2602. "classCode": "WSDHGB",
  2603. "category": "STATIC",
  2604. "type": "common",
  2605. "groupCode": "0",
  2606. "projectId": "0",
  2607. "firstTag": "台账参数",
  2608. "secondTag": "现场安装",
  2609. "priority": "M",
  2610. "dataType": "STRING",
  2611. "isMultiple": false,
  2612. "isRegion": false,
  2613. "subFlag": false,
  2614. "weakPoint": false
  2615. },
  2616. {
  2617. "id": "fe40dbdbcb954f269d9ec9618a50908f",
  2618. "code": "maintainPeriod",
  2619. "origCode": "MaintainPeriod",
  2620. "name": "保养周期",
  2621. "aliasCode": "MaintainPeriod",
  2622. "aliasName": "保养周期",
  2623. "classCode": "WSDHGB",
  2624. "category": "STATIC",
  2625. "type": "common",
  2626. "groupCode": "0",
  2627. "projectId": "0",
  2628. "firstTag": "台账参数",
  2629. "secondTag": "运行维保",
  2630. "priority": "M",
  2631. "unit": "天",
  2632. "dataType": "DOUBLE",
  2633. "isMultiple": false,
  2634. "isRegion": false,
  2635. "note": "整数",
  2636. "subFlag": false,
  2637. "weakPoint": false
  2638. },
  2639. {
  2640. "id": "e2132a1ad2f947069f5262707a4af762",
  2641. "code": "pressLev",
  2642. "origCode": "PressLev",
  2643. "name": "压力等级",
  2644. "aliasCode": "PressLev",
  2645. "aliasName": "压力等级",
  2646. "classCode": "WSDHGB",
  2647. "category": "STATIC",
  2648. "type": "common",
  2649. "groupCode": "0",
  2650. "projectId": "0",
  2651. "firstTag": "技术参数",
  2652. "secondTag": "整机",
  2653. "priority": "M",
  2654. "dataType": "ENUM",
  2655. "isMultiple": false,
  2656. "isRegion": false,
  2657. "dataSource": [
  2658. {
  2659. "code": "1",
  2660. "name": "低压L"
  2661. },
  2662. {
  2663. "code": "2",
  2664. "name": "中压M"
  2665. },
  2666. {
  2667. "code": "3",
  2668. "name": "高压H"
  2669. },
  2670. {
  2671. "code": "4",
  2672. "name": "超高压U"
  2673. },
  2674. {
  2675. "code": "99",
  2676. "name": "其他"
  2677. }
  2678. ],
  2679. "subFlag": false,
  2680. "weakPoint": false
  2681. },
  2682. {
  2683. "id": "b3e2528f9ba14c61b7e6683fc3b249ea",
  2684. "code": "bAInterveneStatus",
  2685. "origCode": "BAInterveneStatus",
  2686. "name": "BA手动干预状态",
  2687. "aliasCode": "BAInterveneStatus",
  2688. "aliasName": "BA手动干预状态",
  2689. "classCode": "WSDHGB",
  2690. "category": "SEQUENTIAL",
  2691. "type": "common",
  2692. "groupCode": "0",
  2693. "projectId": "0",
  2694. "firstTag": "运行参数",
  2695. "priority": "S",
  2696. "dataType": "BOOLEAN",
  2697. "isMultiple": false,
  2698. "isRegion": false,
  2699. "dataSource": [
  2700. {
  2701. "code": "0",
  2702. "name": "不允许"
  2703. },
  2704. {
  2705. "code": "1",
  2706. "name": "允许"
  2707. }
  2708. ],
  2709. "subFlag": false,
  2710. "weakPoint": false
  2711. },
  2712. {
  2713. "id": "ca3aaefa214749dda8b9431a1301bb4a",
  2714. "code": "installDrawing",
  2715. "origCode": "InstallDrawing",
  2716. "name": "安装图纸",
  2717. "aliasCode": "InstallDrawing",
  2718. "aliasName": "安装图纸",
  2719. "classCode": "WSDHGB",
  2720. "category": "STATIC",
  2721. "type": "common",
  2722. "groupCode": "0",
  2723. "projectId": "0",
  2724. "firstTag": "台账参数",
  2725. "secondTag": "现场安装",
  2726. "priority": "R",
  2727. "dataType": "ATTACHMENT",
  2728. "isMultiple": true,
  2729. "isRegion": false,
  2730. "subFlag": false,
  2731. "weakPoint": false
  2732. },
  2733. {
  2734. "id": "508f58fa92ae4b558cc39911e1ca721a",
  2735. "code": "startDate",
  2736. "origCode": "StartDate",
  2737. "name": "投产日期",
  2738. "aliasCode": "StartDate",
  2739. "aliasName": "投产日期",
  2740. "classCode": "WSDHGB",
  2741. "category": "STATIC",
  2742. "type": "common",
  2743. "groupCode": "0",
  2744. "projectId": "0",
  2745. "firstTag": "台账参数",
  2746. "secondTag": "运行维保",
  2747. "priority": "M",
  2748. "dataType": "DATETIME",
  2749. "isMultiple": false,
  2750. "isRegion": false,
  2751. "formater": "YYYYMMDD",
  2752. "note": "开始使用的日期YYYYMMDD",
  2753. "subFlag": false,
  2754. "weakPoint": false
  2755. },
  2756. {
  2757. "id": "c9292fef16d642bab6aa5208e6f0cfac",
  2758. "code": "manufacturerEmail",
  2759. "origCode": "ManufacturerEmail",
  2760. "name": "生产厂家电子邮件",
  2761. "aliasCode": "ManufacturerEmail",
  2762. "aliasName": "生产厂家电子邮件",
  2763. "classCode": "WSDHGB",
  2764. "category": "STATIC",
  2765. "type": "common",
  2766. "groupCode": "0",
  2767. "projectId": "0",
  2768. "firstTag": "台账参数",
  2769. "secondTag": "生产厂家",
  2770. "priority": "R",
  2771. "dataType": "STRING",
  2772. "isMultiple": false,
  2773. "isRegion": false,
  2774. "subFlag": false,
  2775. "weakPoint": false
  2776. },
  2777. {
  2778. "id": "c4310aab4d214fd7825a2b3d05ae1243",
  2779. "code": "heatRecoveryType",
  2780. "origCode": "HeatRecoveryType",
  2781. "name": "烟气余热回收方式",
  2782. "aliasCode": "HeatRecoveryType",
  2783. "aliasName": "烟气余热回收方式",
  2784. "classCode": "WSDHGB",
  2785. "category": "STATIC",
  2786. "type": "common",
  2787. "groupCode": "0",
  2788. "projectId": "0",
  2789. "firstTag": "技术参数",
  2790. "secondTag": "烟气余热回收装置",
  2791. "priority": "M",
  2792. "dataType": "ENUM",
  2793. "isMultiple": false,
  2794. "isRegion": false,
  2795. "dataSource": [
  2796. {
  2797. "code": "1",
  2798. "name": "预热工件"
  2799. },
  2800. {
  2801. "code": "2",
  2802. "name": "预热空气"
  2803. },
  2804. {
  2805. "code": "3",
  2806. "name": "余热回收器(气-水)"
  2807. },
  2808. {
  2809. "code": "4",
  2810. "name": "余热回收器(气-气)"
  2811. },
  2812. {
  2813. "code": "5",
  2814. "name": "余热氨水吸收制冷"
  2815. },
  2816. {
  2817. "code": "99",
  2818. "name": "其他"
  2819. }
  2820. ],
  2821. "subFlag": false,
  2822. "weakPoint": false
  2823. },
  2824. {
  2825. "id": "e945013ad2b44895a507c2e14b39f3b6",
  2826. "code": "manufacturerContactor",
  2827. "origCode": "ManufacturerContactor",
  2828. "name": "生产厂家联系人",
  2829. "aliasCode": "ManufacturerContactor",
  2830. "aliasName": "生产厂家联系人",
  2831. "classCode": "WSDHGB",
  2832. "category": "STATIC",
  2833. "type": "common",
  2834. "groupCode": "0",
  2835. "projectId": "0",
  2836. "firstTag": "台账参数",
  2837. "secondTag": "生产厂家",
  2838. "priority": "M",
  2839. "dataType": "STRING",
  2840. "isMultiple": false,
  2841. "isRegion": false,
  2842. "subFlag": false,
  2843. "weakPoint": false
  2844. },
  2845. {
  2846. "id": "2fd184db14ff45338f788efec8914c96",
  2847. "code": "maintainDeadline",
  2848. "origCode": "MaintainDeadline",
  2849. "name": "维保合同截止日期",
  2850. "aliasCode": "MaintainDeadline",
  2851. "aliasName": "维保合同截止日期",
  2852. "classCode": "WSDHGB",
  2853. "category": "STATIC",
  2854. "type": "common",
  2855. "groupCode": "0",
  2856. "projectId": "0",
  2857. "firstTag": "台账参数",
  2858. "secondTag": "运行维保",
  2859. "priority": "M",
  2860. "dataType": "DATETIME",
  2861. "isMultiple": false,
  2862. "isRegion": false,
  2863. "formater": "YYYYMMDD",
  2864. "note": "YYYYMMDD",
  2865. "subFlag": false,
  2866. "weakPoint": false
  2867. },
  2868. {
  2869. "id": "aef571ef6084413aa345641e2fc5391d",
  2870. "code": "isHighAltitude",
  2871. "origCode": "isHighAltitude",
  2872. "name": "是否有高海拔要求",
  2873. "aliasCode": "isHighAltitude",
  2874. "aliasName": "是否有高海拔要求",
  2875. "classCode": "WSDHGB",
  2876. "category": "STATIC",
  2877. "type": "common",
  2878. "groupCode": "0",
  2879. "projectId": "0",
  2880. "firstTag": "技术参数",
  2881. "secondTag": "整机",
  2882. "priority": "R",
  2883. "dataType": "BOOLEAN",
  2884. "isMultiple": false,
  2885. "isRegion": false,
  2886. "dataSource": [
  2887. {
  2888. "code": "0",
  2889. "name": "无高海拔设计"
  2890. },
  2891. {
  2892. "code": "1",
  2893. "name": "高海拔专用(>1000米)"
  2894. }
  2895. ],
  2896. "subFlag": false,
  2897. "weakPoint": false
  2898. },
  2899. {
  2900. "id": "5083d437bba84067b6e2b3ffe6035185",
  2901. "code": "insuranceDuration",
  2902. "origCode": "InsuranceDuration",
  2903. "name": "保险有效期",
  2904. "aliasCode": "InsuranceDuration",
  2905. "aliasName": "保险有效期",
  2906. "classCode": "WSDHGB",
  2907. "category": "STATIC",
  2908. "type": "common",
  2909. "groupCode": "0",
  2910. "projectId": "0",
  2911. "firstTag": "台账参数",
  2912. "secondTag": "保险文件",
  2913. "priority": "R",
  2914. "dataType": "DATETIME",
  2915. "isMultiple": false,
  2916. "isRegion": true,
  2917. "formater": "YYYYMMDD",
  2918. "note": "YYYYMMDD-YYYYMMDD",
  2919. "subFlag": false,
  2920. "weakPoint": false
  2921. },
  2922. {
  2923. "id": "990bdde7c34c4e9196eb70456c645ece",
  2924. "code": "burnerErrorAlarm",
  2925. "origCode": "BurnerErrorAlarm",
  2926. "name": "燃烧器故障报警",
  2927. "aliasCode": "BurnerErrorAlarm",
  2928. "aliasName": "燃烧器故障报警",
  2929. "classCode": "WSDHGB",
  2930. "category": "GRADATION",
  2931. "type": "common",
  2932. "groupCode": "0",
  2933. "projectId": "0",
  2934. "firstTag": "事件记录",
  2935. "secondTag": "报警消息",
  2936. "priority": "S",
  2937. "dataType": "BOOLEAN",
  2938. "isMultiple": false,
  2939. "isRegion": false,
  2940. "dataSource": [
  2941. {
  2942. "code": "0",
  2943. "name": "正常"
  2944. },
  2945. {
  2946. "code": "1",
  2947. "name": "故障"
  2948. }
  2949. ],
  2950. "subFlag": false,
  2951. "weakPoint": false
  2952. },
  2953. {
  2954. "id": "6b320d28d15040e8858f45ea37135967",
  2955. "code": "vaporCondensateTemp",
  2956. "origCode": "VaporCondensateTemp",
  2957. "name": "冷凝水回水温度",
  2958. "aliasCode": "VaporCondensateTemp",
  2959. "aliasName": "冷凝水回水温度",
  2960. "classCode": "WSDHGB",
  2961. "category": "SEQUENTIAL",
  2962. "type": "common",
  2963. "groupCode": "0",
  2964. "projectId": "0",
  2965. "firstTag": "运行参数",
  2966. "secondTag": "整机",
  2967. "priority": "R",
  2968. "unit": "℃",
  2969. "dataType": "DOUBLE",
  2970. "isMultiple": false,
  2971. "isRegion": false,
  2972. "note": "蒸汽锅炉",
  2973. "subFlag": false,
  2974. "weakPoint": false
  2975. },
  2976. {
  2977. "id": "2cb2d855a7454c13b850471203804a16",
  2978. "code": "warranterContactor",
  2979. "origCode": "WarranterContactor",
  2980. "name": "质保单位联系人",
  2981. "aliasCode": "WarranterContactor",
  2982. "aliasName": "质保单位联系人",
  2983. "classCode": "WSDHGB",
  2984. "category": "STATIC",
  2985. "type": "common",
  2986. "groupCode": "0",
  2987. "projectId": "0",
  2988. "firstTag": "台账参数",
  2989. "secondTag": "运行维保",
  2990. "priority": "M",
  2991. "dataType": "STRING",
  2992. "isMultiple": false,
  2993. "isRegion": false,
  2994. "subFlag": false,
  2995. "weakPoint": false
  2996. },
  2997. {
  2998. "id": "3323553975414b15af67fd50e15c1082",
  2999. "code": "gasType",
  3000. "origCode": "GasType",
  3001. "name": "燃气类型",
  3002. "aliasCode": "GasType",
  3003. "aliasName": "燃气类型",
  3004. "classCode": "WSDHGB",
  3005. "category": "STATIC",
  3006. "type": "common",
  3007. "groupCode": "0",
  3008. "projectId": "0",
  3009. "firstTag": "技术参数",
  3010. "secondTag": "整机",
  3011. "priority": "S",
  3012. "dataType": "ENUM",
  3013. "isMultiple": false,
  3014. "isRegion": false,
  3015. "dataSource": [
  3016. {
  3017. "code": "1",
  3018. "name": "天然气"
  3019. },
  3020. {
  3021. "code": "2",
  3022. "name": "液化石油气"
  3023. },
  3024. {
  3025. "code": "3",
  3026. "name": "沼气"
  3027. },
  3028. {
  3029. "code": "4",
  3030. "name": "城市煤气"
  3031. },
  3032. {
  3033. "code": "99",
  3034. "name": "其他"
  3035. }
  3036. ],
  3037. "subFlag": false,
  3038. "weakPoint": false
  3039. },
  3040. {
  3041. "id": "77dd8d57e6a340e9b321dd965a6e93b0",
  3042. "code": "ratedPressLost",
  3043. "origCode": "RatedPressLost",
  3044. "name": "理论压力损失",
  3045. "aliasCode": "RatedPressLost",
  3046. "aliasName": "理论压力损失",
  3047. "classCode": "WSDHGB",
  3048. "category": "STATIC",
  3049. "type": "common",
  3050. "groupCode": "0",
  3051. "projectId": "0",
  3052. "firstTag": "技术参数",
  3053. "secondTag": "整机",
  3054. "priority": "R",
  3055. "unit": "Pa",
  3056. "dataType": "DOUBLE",
  3057. "isMultiple": false,
  3058. "isRegion": false,
  3059. "subFlag": false,
  3060. "weakPoint": false
  3061. },
  3062. {
  3063. "id": "906687e090594722a221142d35573ea0",
  3064. "code": "manualAutoSet",
  3065. "origCode": "ManualAutoSet",
  3066. "name": "手自动状态设定",
  3067. "aliasCode": "ManualAutoSet",
  3068. "aliasName": "手自动状态设定",
  3069. "classCode": "WSDHGB",
  3070. "category": "GRADATION",
  3071. "type": "common",
  3072. "groupCode": "0",
  3073. "projectId": "0",
  3074. "firstTag": "设定参数",
  3075. "priority": "S",
  3076. "dataType": "BOOLEAN",
  3077. "isMultiple": false,
  3078. "isRegion": false,
  3079. "dataSource": [
  3080. {
  3081. "code": "0",
  3082. "name": "手动"
  3083. },
  3084. {
  3085. "code": "1",
  3086. "name": "自动"
  3087. }
  3088. ],
  3089. "subFlag": false,
  3090. "weakPoint": false
  3091. },
  3092. {
  3093. "id": "30eb9dc2d1394abb8392a55a016807a2",
  3094. "code": "installerEmail",
  3095. "origCode": "InstallerEmail",
  3096. "name": "安装单位电子邮件",
  3097. "aliasCode": "InstallerEmail",
  3098. "aliasName": "安装单位电子邮件",
  3099. "classCode": "WSDHGB",
  3100. "category": "STATIC",
  3101. "type": "common",
  3102. "groupCode": "0",
  3103. "projectId": "0",
  3104. "firstTag": "台账参数",
  3105. "secondTag": "现场安装",
  3106. "priority": "R",
  3107. "dataType": "STRING",
  3108. "isMultiple": false,
  3109. "isRegion": false,
  3110. "subFlag": false,
  3111. "weakPoint": false
  3112. },
  3113. {
  3114. "id": "62696d473ca049ad93fcf70c340b8354",
  3115. "code": "vaporValveSwitch",
  3116. "origCode": "VaporValveSwitch",
  3117. "name": "蒸汽阀开关",
  3118. "aliasCode": "VaporValveSwitch",
  3119. "aliasName": "蒸汽阀开关",
  3120. "classCode": "WSDHGB",
  3121. "category": "SEQUENTIAL",
  3122. "type": "common",
  3123. "groupCode": "0",
  3124. "projectId": "0",
  3125. "firstTag": "运行参数",
  3126. "secondTag": "整机",
  3127. "priority": "R",
  3128. "dataType": "BOOLEAN",
  3129. "isMultiple": false,
  3130. "isRegion": false,
  3131. "dataSource": [
  3132. {
  3133. "code": "0",
  3134. "name": "关闭"
  3135. },
  3136. {
  3137. "code": "1",
  3138. "name": "开启"
  3139. }
  3140. ],
  3141. "note": "蒸汽锅炉",
  3142. "subFlag": false,
  3143. "weakPoint": false
  3144. },
  3145. {
  3146. "id": "6fba2716fd384255862c4437acc8d442",
  3147. "code": "manualAutoStatus",
  3148. "origCode": "ManualAutoStatus",
  3149. "name": "手自动状态",
  3150. "aliasCode": "ManualAutoStatus",
  3151. "aliasName": "手自动状态",
  3152. "classCode": "WSDHGB",
  3153. "category": "SEQUENTIAL",
  3154. "type": "common",
  3155. "groupCode": "0",
  3156. "projectId": "0",
  3157. "firstTag": "运行参数",
  3158. "priority": "S",
  3159. "dataType": "BOOLEAN",
  3160. "isMultiple": false,
  3161. "isRegion": false,
  3162. "dataSource": [
  3163. {
  3164. "code": "0",
  3165. "name": "手动"
  3166. },
  3167. {
  3168. "code": "1",
  3169. "name": "自动"
  3170. }
  3171. ],
  3172. "subFlag": false,
  3173. "weakPoint": false
  3174. },
  3175. {
  3176. "id": "4f0b13c8baa648fca0b08a8f91979e11",
  3177. "code": "principal",
  3178. "origCode": "Principal",
  3179. "name": "维保负责人",
  3180. "aliasCode": "Principal",
  3181. "aliasName": "维保负责人",
  3182. "classCode": "WSDHGB",
  3183. "category": "STATIC",
  3184. "type": "common",
  3185. "groupCode": "0",
  3186. "projectId": "0",
  3187. "firstTag": "台账参数",
  3188. "secondTag": "运行维保",
  3189. "priority": "R",
  3190. "dataType": "STRING",
  3191. "isMultiple": false,
  3192. "isRegion": false,
  3193. "subFlag": false,
  3194. "weakPoint": false
  3195. },
  3196. {
  3197. "id": "d2e79ab77f3349c0bfd840d0fe094ce2",
  3198. "code": "maintainManual",
  3199. "origCode": "MaintainManual",
  3200. "name": "维修保养手册",
  3201. "aliasCode": "MaintainManual",
  3202. "aliasName": "维修保养手册",
  3203. "classCode": "WSDHGB",
  3204. "category": "STATIC",
  3205. "type": "common",
  3206. "groupCode": "0",
  3207. "projectId": "0",
  3208. "firstTag": "台账参数",
  3209. "secondTag": "运行维保",
  3210. "priority": "R",
  3211. "dataType": "ATTACHMENT",
  3212. "isMultiple": true,
  3213. "isRegion": false,
  3214. "subFlag": false,
  3215. "weakPoint": false
  3216. },
  3217. {
  3218. "id": "a7ee56c61023461b8380b028ed7b8150",
  3219. "code": "onlineStatus",
  3220. "origCode": "OnlineStatus",
  3221. "name": "在线状态",
  3222. "aliasCode": "OnlineStatus",
  3223. "aliasName": "在线状态",
  3224. "classCode": "WSDHGB",
  3225. "category": "SEQUENTIAL",
  3226. "type": "common",
  3227. "groupCode": "0",
  3228. "projectId": "0",
  3229. "firstTag": "运行参数",
  3230. "priority": "S",
  3231. "dataType": "BOOLEAN",
  3232. "isMultiple": false,
  3233. "isRegion": false,
  3234. "dataSource": [
  3235. {
  3236. "code": "0",
  3237. "name": "离线"
  3238. },
  3239. {
  3240. "code": "1",
  3241. "name": "在线"
  3242. }
  3243. ],
  3244. "subFlag": false,
  3245. "weakPoint": false
  3246. },
  3247. {
  3248. "id": "0740bd3130b14fc68c712516afde3840",
  3249. "code": "approachingAcceptance",
  3250. "origCode": "ApproachingAcceptance",
  3251. "name": "进场验收单",
  3252. "aliasCode": "ApproachingAcceptance",
  3253. "aliasName": "进场验收单",
  3254. "classCode": "WSDHGB",
  3255. "category": "STATIC",
  3256. "type": "common",
  3257. "groupCode": "0",
  3258. "projectId": "0",
  3259. "firstTag": "台账参数",
  3260. "secondTag": "供应购买",
  3261. "priority": "R",
  3262. "dataType": "ATTACHMENT",
  3263. "isMultiple": true,
  3264. "isRegion": false,
  3265. "subFlag": false,
  3266. "weakPoint": false
  3267. },
  3268. {
  3269. "id": "6eb2b634fd484b07940dce69b375aa8d",
  3270. "code": "supplierFax",
  3271. "origCode": "SupplierFax",
  3272. "name": "供应商传真",
  3273. "aliasCode": "SupplierFax",
  3274. "aliasName": "供应商传真",
  3275. "classCode": "WSDHGB",
  3276. "category": "STATIC",
  3277. "type": "common",
  3278. "groupCode": "0",
  3279. "projectId": "0",
  3280. "firstTag": "台账参数",
  3281. "secondTag": "供应购买",
  3282. "priority": "R",
  3283. "dataType": "STRING",
  3284. "isMultiple": false,
  3285. "isRegion": false,
  3286. "subFlag": false,
  3287. "weakPoint": false
  3288. },
  3289. {
  3290. "id": "67a27b01501f473da88ef073cc0ada86",
  3291. "code": "bimFamilyName",
  3292. "origCode": "BIMFamilyName",
  3293. "name": "Revit族",
  3294. "aliasCode": "BIMFamilyName",
  3295. "aliasName": "Revit族",
  3296. "classCode": "WSDHGB",
  3297. "category": "STATIC",
  3298. "type": "common",
  3299. "groupCode": "0",
  3300. "projectId": "0",
  3301. "firstTag": "基本参数",
  3302. "priority": "R",
  3303. "dataType": "STRING",
  3304. "isMultiple": false,
  3305. "isRegion": false,
  3306. "subFlag": false,
  3307. "weakPoint": false
  3308. },
  3309. {
  3310. "id": "59bb1fc1291e403baf9e0426dcb7fe8c",
  3311. "code": "hotWaterValveSwitchSet",
  3312. "origCode": "HotWaterValveSwitchSet",
  3313. "name": "热水阀开关设定",
  3314. "aliasCode": "HotWaterValveSwitchSet",
  3315. "aliasName": "热水阀开关设定",
  3316. "classCode": "WSDHGB",
  3317. "category": "GRADATION",
  3318. "type": "common",
  3319. "groupCode": "0",
  3320. "projectId": "0",
  3321. "firstTag": "设定参数",
  3322. "priority": "S",
  3323. "dataType": "BOOLEAN",
  3324. "isMultiple": false,
  3325. "isRegion": false,
  3326. "dataSource": [
  3327. {
  3328. "code": "0",
  3329. "name": "关闭"
  3330. },
  3331. {
  3332. "code": "1",
  3333. "name": "开启"
  3334. }
  3335. ],
  3336. "note": "热水锅炉",
  3337. "subFlag": false,
  3338. "weakPoint": false
  3339. },
  3340. {
  3341. "id": "2ec9992a09164dbdb6594962d2274ccb",
  3342. "code": "ratedRecoveryHeatTransEff",
  3343. "origCode": "RatedRecoveryHeatTransEff",
  3344. "name": "烟气余热回收理论换热效率",
  3345. "aliasCode": "RatedRecoveryHeatTransEff",
  3346. "aliasName": "烟气余热回收理论换热效率",
  3347. "classCode": "WSDHGB",
  3348. "category": "STATIC",
  3349. "type": "common",
  3350. "groupCode": "0",
  3351. "projectId": "0",
  3352. "firstTag": "技术参数",
  3353. "secondTag": "烟气余热回收装置",
  3354. "priority": "R",
  3355. "unit": "%",
  3356. "dataType": "DOUBLE",
  3357. "isMultiple": false,
  3358. "isRegion": false,
  3359. "subFlag": false,
  3360. "weakPoint": false
  3361. },
  3362. {
  3363. "id": "106d7d1e27cc4c42a5b1d2c94c4c3da9",
  3364. "code": "installer",
  3365. "origCode": "Installer",
  3366. "name": "安装单位名称",
  3367. "aliasCode": "Installer",
  3368. "aliasName": "安装单位名称",
  3369. "classCode": "WSDHGB",
  3370. "category": "STATIC",
  3371. "type": "common",
  3372. "groupCode": "0",
  3373. "projectId": "0",
  3374. "firstTag": "台账参数",
  3375. "secondTag": "现场安装",
  3376. "priority": "M",
  3377. "dataType": "STRING",
  3378. "isMultiple": false,
  3379. "isRegion": false,
  3380. "subFlag": false,
  3381. "weakPoint": false
  3382. },
  3383. {
  3384. "id": "1ed77f9dea8d4fa787cb20b44b927ff3",
  3385. "code": "installHeight",
  3386. "origCode": "InstallHeight",
  3387. "name": "安装高度",
  3388. "aliasCode": "InstallHeight",
  3389. "aliasName": "安装高度",
  3390. "classCode": "WSDHGB",
  3391. "category": "STATIC",
  3392. "type": "common",
  3393. "groupCode": "0",
  3394. "projectId": "0",
  3395. "firstTag": "台账参数",
  3396. "secondTag": "现场安装",
  3397. "priority": "M",
  3398. "unit": "m",
  3399. "dataType": "DOUBLE",
  3400. "isMultiple": false,
  3401. "isRegion": false,
  3402. "subFlag": false,
  3403. "weakPoint": false
  3404. },
  3405. {
  3406. "id": "1f99b4a225664f36878e0d91779885d4",
  3407. "code": "eff",
  3408. "origCode": "Eff",
  3409. "name": "锅炉热效率",
  3410. "aliasCode": "Eff",
  3411. "aliasName": "锅炉热效率",
  3412. "classCode": "WSDHGB",
  3413. "category": "SEQUENTIAL",
  3414. "type": "common",
  3415. "groupCode": "0",
  3416. "projectId": "0",
  3417. "firstTag": "运行参数",
  3418. "secondTag": "关键指标",
  3419. "priority": "R",
  3420. "unit": "%",
  3421. "dataType": "DOUBLE",
  3422. "isMultiple": false,
  3423. "isRegion": false,
  3424. "subFlag": false,
  3425. "weakPoint": false
  3426. },
  3427. {
  3428. "id": "07ac7f0169c04b5f873113d16955c106",
  3429. "code": "warranter",
  3430. "origCode": "Warranter",
  3431. "name": "质保单位名称",
  3432. "aliasCode": "Warranter",
  3433. "aliasName": "质保单位名称",
  3434. "classCode": "WSDHGB",
  3435. "category": "STATIC",
  3436. "type": "common",
  3437. "groupCode": "0",
  3438. "projectId": "0",
  3439. "firstTag": "台账参数",
  3440. "secondTag": "运行维保",
  3441. "priority": "M",
  3442. "dataType": "STRING",
  3443. "isMultiple": false,
  3444. "isRegion": false,
  3445. "subFlag": false,
  3446. "weakPoint": false
  3447. },
  3448. {
  3449. "id": "cc0217b39f264e08829263b74d00ad30",
  3450. "code": "hotWaterFlow",
  3451. "origCode": "HotWaterFlow",
  3452. "name": "热水循环量",
  3453. "aliasCode": "HotWaterFlow",
  3454. "aliasName": "热水循环量",
  3455. "classCode": "WSDHGB",
  3456. "category": "SEQUENTIAL",
  3457. "type": "common",
  3458. "groupCode": "0",
  3459. "projectId": "0",
  3460. "firstTag": "运行参数",
  3461. "secondTag": "整机",
  3462. "priority": "M",
  3463. "unit": "m3/h",
  3464. "dataType": "DOUBLE",
  3465. "isMultiple": false,
  3466. "isRegion": false,
  3467. "note": "热水系统",
  3468. "subFlag": false,
  3469. "weakPoint": false
  3470. },
  3471. {
  3472. "id": "e2d63c796b1b4131b96b855de9cdd98e",
  3473. "code": "insurerEmail",
  3474. "origCode": "InsurerEmail",
  3475. "name": "保险公司电子邮件",
  3476. "aliasCode": "InsurerEmail",
  3477. "aliasName": "保险公司电子邮件",
  3478. "classCode": "WSDHGB",
  3479. "category": "STATIC",
  3480. "type": "common",
  3481. "groupCode": "0",
  3482. "projectId": "0",
  3483. "firstTag": "台账参数",
  3484. "secondTag": "保险文件",
  3485. "priority": "R",
  3486. "dataType": "STRING",
  3487. "isMultiple": false,
  3488. "isRegion": false,
  3489. "subFlag": false,
  3490. "weakPoint": false
  3491. },
  3492. {
  3493. "id": "c135612732374a4db6910196ae69e12f",
  3494. "code": "insuranceNum",
  3495. "origCode": "InsuranceNum",
  3496. "name": "保险单号",
  3497. "aliasCode": "InsuranceNum",
  3498. "aliasName": "保险单号",
  3499. "classCode": "WSDHGB",
  3500. "category": "STATIC",
  3501. "type": "common",
  3502. "groupCode": "0",
  3503. "projectId": "0",
  3504. "firstTag": "台账参数",
  3505. "secondTag": "保险文件",
  3506. "priority": "R",
  3507. "dataType": "STRING",
  3508. "isMultiple": false,
  3509. "isRegion": false,
  3510. "subFlag": false,
  3511. "weakPoint": false
  3512. },
  3513. {
  3514. "id": "00ee120fd85841b0861982a58200265a",
  3515. "code": "warranty",
  3516. "origCode": "Warranty",
  3517. "name": "质保期限",
  3518. "aliasCode": "Warranty",
  3519. "aliasName": "质保期限",
  3520. "classCode": "WSDHGB",
  3521. "category": "STATIC",
  3522. "type": "common",
  3523. "groupCode": "0",
  3524. "projectId": "0",
  3525. "firstTag": "台账参数",
  3526. "secondTag": "运行维保",
  3527. "priority": "M",
  3528. "unit": "天",
  3529. "dataType": "DOUBLE",
  3530. "isMultiple": false,
  3531. "isRegion": false,
  3532. "note": "整数",
  3533. "subFlag": false,
  3534. "weakPoint": false
  3535. },
  3536. {
  3537. "id": "8829f55cce9e4b91ae7403fe4591e464",
  3538. "code": "accHeat",
  3539. "origCode": "AccHeat",
  3540. "name": "累计供热量",
  3541. "aliasCode": "AccHeat",
  3542. "aliasName": "累计供热量",
  3543. "classCode": "WSDHGB",
  3544. "category": "SEQUENTIAL",
  3545. "type": "common",
  3546. "groupCode": "0",
  3547. "projectId": "0",
  3548. "firstTag": "运行参数",
  3549. "secondTag": "整机",
  3550. "priority": "M",
  3551. "unit": "kWh",
  3552. "dataType": "DOUBLE",
  3553. "isMultiple": false,
  3554. "isRegion": false,
  3555. "subFlag": false,
  3556. "weakPoint": false
  3557. },
  3558. {
  3559. "id": "a3102ab962124ced939c533224de2315",
  3560. "code": "manufacturerFax",
  3561. "origCode": "ManufacturerFax",
  3562. "name": "生产厂家传真",
  3563. "aliasCode": "ManufacturerFax",
  3564. "aliasName": "生产厂家传真",
  3565. "classCode": "WSDHGB",
  3566. "category": "STATIC",
  3567. "type": "common",
  3568. "groupCode": "0",
  3569. "projectId": "0",
  3570. "firstTag": "台账参数",
  3571. "secondTag": "生产厂家",
  3572. "priority": "R",
  3573. "dataType": "STRING",
  3574. "isMultiple": false,
  3575. "isRegion": false,
  3576. "subFlag": false,
  3577. "weakPoint": false
  3578. },
  3579. {
  3580. "id": "29c7985959eb411799b7995289ba9ca7",
  3581. "code": "installInstruction",
  3582. "origCode": "InstallInstruction",
  3583. "name": "安装说明书",
  3584. "aliasCode": "InstallInstruction",
  3585. "aliasName": "安装说明书",
  3586. "classCode": "WSDHGB",
  3587. "category": "STATIC",
  3588. "type": "common",
  3589. "groupCode": "0",
  3590. "projectId": "0",
  3591. "firstTag": "台账参数",
  3592. "secondTag": "现场安装",
  3593. "priority": "R",
  3594. "dataType": "ATTACHMENT",
  3595. "isMultiple": true,
  3596. "isRegion": false,
  3597. "subFlag": false,
  3598. "weakPoint": false
  3599. },
  3600. {
  3601. "id": "b417db0711f54f76b9730ccd6421f74e",
  3602. "code": "installerWeb",
  3603. "origCode": "InstallerWeb",
  3604. "name": "安装单位网址",
  3605. "aliasCode": "InstallerWeb",
  3606. "aliasName": "安装单位网址",
  3607. "classCode": "WSDHGB",
  3608. "category": "STATIC",
  3609. "type": "common",
  3610. "groupCode": "0",
  3611. "projectId": "0",
  3612. "firstTag": "台账参数",
  3613. "secondTag": "现场安装",
  3614. "priority": "R",
  3615. "dataType": "STRING",
  3616. "isMultiple": false,
  3617. "isRegion": false,
  3618. "subFlag": false,
  3619. "weakPoint": false
  3620. },
  3621. {
  3622. "id": "0d099e0a74f24452974216f4038536f6",
  3623. "code": "exhaustSmokeOverTempAlarm",
  3624. "origCode": "ExhaustSmokeOverTempAlarm",
  3625. "name": "排烟温度过高报警",
  3626. "aliasCode": "ExhaustSmokeOverTempAlarm",
  3627. "aliasName": "排烟温度过高报警",
  3628. "classCode": "WSDHGB",
  3629. "category": "GRADATION",
  3630. "type": "common",
  3631. "groupCode": "0",
  3632. "projectId": "0",
  3633. "firstTag": "事件记录",
  3634. "secondTag": "报警消息",
  3635. "priority": "S",
  3636. "dataType": "BOOLEAN",
  3637. "isMultiple": false,
  3638. "isRegion": false,
  3639. "dataSource": [
  3640. {
  3641. "code": "0",
  3642. "name": "正常"
  3643. },
  3644. {
  3645. "code": "1",
  3646. "name": "故障"
  3647. }
  3648. ],
  3649. "subFlag": false,
  3650. "weakPoint": false
  3651. },
  3652. {
  3653. "id": "3a611ca1d0804f90a8ed4a62fa488e0f",
  3654. "code": "waterCap",
  3655. "origCode": "WaterCap",
  3656. "name": "锅炉水容量",
  3657. "aliasCode": "WaterCap",
  3658. "aliasName": "锅炉水容量",
  3659. "classCode": "WSDHGB",
  3660. "category": "STATIC",
  3661. "type": "common",
  3662. "groupCode": "0",
  3663. "projectId": "0",
  3664. "firstTag": "技术参数",
  3665. "secondTag": "整机",
  3666. "priority": "S",
  3667. "unit": "t",
  3668. "dataType": "DOUBLE",
  3669. "isMultiple": false,
  3670. "isRegion": false,
  3671. "subFlag": false,
  3672. "weakPoint": false
  3673. },
  3674. {
  3675. "id": "65aaeaa79ad04f3a87ee147e331ccb24",
  3676. "code": "runMode",
  3677. "origCode": "RunMode",
  3678. "name": "运行模式",
  3679. "aliasCode": "RunMode",
  3680. "aliasName": "运行模式",
  3681. "classCode": "WSDHGB",
  3682. "category": "SEQUENTIAL",
  3683. "type": "common",
  3684. "groupCode": "0",
  3685. "projectId": "0",
  3686. "firstTag": "运行参数",
  3687. "priority": "S",
  3688. "dataType": "ENUM",
  3689. "isMultiple": false,
  3690. "isRegion": false,
  3691. "dataSource": [
  3692. {
  3693. "code": "99",
  3694. "name": "其他"
  3695. }
  3696. ],
  3697. "note": "选项自定义",
  3698. "subFlag": false,
  3699. "weakPoint": false
  3700. },
  3701. {
  3702. "id": "318b7a12bdf64698bac2f08b5787afe7",
  3703. "code": "maintainerFax",
  3704. "origCode": "MaintainerFax",
  3705. "name": "维修商传真",
  3706. "aliasCode": "MaintainerFax",
  3707. "aliasName": "维修商传真",
  3708. "classCode": "WSDHGB",
  3709. "category": "STATIC",
  3710. "type": "common",
  3711. "groupCode": "0",
  3712. "projectId": "0",
  3713. "firstTag": "台账参数",
  3714. "secondTag": "运行维保",
  3715. "priority": "R",
  3716. "dataType": "STRING",
  3717. "isMultiple": false,
  3718. "isRegion": false,
  3719. "subFlag": false,
  3720. "weakPoint": false
  3721. },
  3722. {
  3723. "id": "db47e6c9747445c6aea34fc67b6a1bcf",
  3724. "code": "hotWaterOutTemp",
  3725. "origCode": "HotWaterOutTemp",
  3726. "name": "热水出水温度",
  3727. "aliasCode": "HotWaterOutTemp",
  3728. "aliasName": "热水出水温度",
  3729. "classCode": "WSDHGB",
  3730. "category": "SEQUENTIAL",
  3731. "type": "common",
  3732. "groupCode": "0",
  3733. "projectId": "0",
  3734. "firstTag": "运行参数",
  3735. "secondTag": "整机",
  3736. "priority": "S",
  3737. "unit": "℃",
  3738. "dataType": "DOUBLE",
  3739. "isMultiple": false,
  3740. "isRegion": false,
  3741. "note": "热水系统",
  3742. "subFlag": false,
  3743. "weakPoint": false
  3744. },
  3745. {
  3746. "id": "bff37fd32aa94f8f8642a34b35ca77bd",
  3747. "code": "dept",
  3748. "origCode": "Dept",
  3749. "name": "所属部门",
  3750. "aliasCode": "Dept",
  3751. "aliasName": "所属部门",
  3752. "classCode": "WSDHGB",
  3753. "category": "STATIC",
  3754. "type": "common",
  3755. "groupCode": "0",
  3756. "projectId": "0",
  3757. "firstTag": "台账参数",
  3758. "secondTag": "现场安装",
  3759. "priority": "R",
  3760. "dataType": "STRING",
  3761. "isMultiple": false,
  3762. "isRegion": false,
  3763. "subFlag": false,
  3764. "weakPoint": false
  3765. },
  3766. {
  3767. "id": "3481602e909b421ab02ebb680dd129f2",
  3768. "code": "drawing",
  3769. "origCode": "Drawing",
  3770. "name": "设备图纸",
  3771. "aliasCode": "Drawing",
  3772. "aliasName": "设备图纸",
  3773. "classCode": "WSDHGB",
  3774. "category": "STATIC",
  3775. "type": "common",
  3776. "groupCode": "0",
  3777. "projectId": "0",
  3778. "firstTag": "台账参数",
  3779. "secondTag": "照片文档",
  3780. "priority": "R",
  3781. "dataType": "ATTACHMENT",
  3782. "isMultiple": true,
  3783. "isRegion": false,
  3784. "subFlag": false,
  3785. "weakPoint": false
  3786. },
  3787. {
  3788. "id": "71e9b45e34cf48f99b432301c5c6b511",
  3789. "code": "installLocation",
  3790. "origCode": "InstallLocation",
  3791. "name": "安装位置",
  3792. "aliasCode": "InstallLocation",
  3793. "aliasName": "安装位置",
  3794. "classCode": "WSDHGB",
  3795. "category": "STATIC",
  3796. "type": "common",
  3797. "groupCode": "0",
  3798. "projectId": "0",
  3799. "firstTag": "台账参数",
  3800. "secondTag": "现场安装",
  3801. "priority": "M",
  3802. "dataType": "STRING",
  3803. "isMultiple": false,
  3804. "isRegion": false,
  3805. "subFlag": false,
  3806. "weakPoint": false
  3807. },
  3808. {
  3809. "id": "5760deab32824adaabd0dfd88881c49e",
  3810. "code": "operationManual",
  3811. "origCode": "OperationManual",
  3812. "name": "操作说明书",
  3813. "aliasCode": "OperationManual",
  3814. "aliasName": "操作说明书",
  3815. "classCode": "WSDHGB",
  3816. "category": "STATIC",
  3817. "type": "common",
  3818. "groupCode": "0",
  3819. "projectId": "0",
  3820. "firstTag": "台账参数",
  3821. "secondTag": "照片文档",
  3822. "priority": "R",
  3823. "dataType": "ATTACHMENT",
  3824. "isMultiple": true,
  3825. "isRegion": false,
  3826. "subFlag": false,
  3827. "weakPoint": false
  3828. },
  3829. {
  3830. "id": "3558786ece404c17b4c71abeb507b0d5",
  3831. "code": "hotWaterValveOpening",
  3832. "origCode": "HotWaterValveOpening",
  3833. "name": "热水阀开度",
  3834. "aliasCode": "HotWaterValveOpening",
  3835. "aliasName": "热水阀开度",
  3836. "classCode": "WSDHGB",
  3837. "category": "SEQUENTIAL",
  3838. "type": "common",
  3839. "groupCode": "0",
  3840. "projectId": "0",
  3841. "firstTag": "运行参数",
  3842. "secondTag": "整机",
  3843. "priority": "R",
  3844. "unit": "%",
  3845. "dataType": "DOUBLE",
  3846. "isMultiple": false,
  3847. "isRegion": false,
  3848. "note": "热水锅炉",
  3849. "subFlag": false,
  3850. "weakPoint": false
  3851. },
  3852. {
  3853. "id": "2e9b3bb9034741a8943fb330a3df41c9",
  3854. "code": "width",
  3855. "origCode": "Width",
  3856. "name": "宽",
  3857. "aliasCode": "Width",
  3858. "aliasName": "宽",
  3859. "classCode": "WSDHGB",
  3860. "category": "STATIC",
  3861. "type": "common",
  3862. "groupCode": "0",
  3863. "projectId": "0",
  3864. "firstTag": "台账参数",
  3865. "secondTag": "现场安装",
  3866. "priority": "M",
  3867. "unit": "m",
  3868. "dataType": "DOUBLE",
  3869. "isMultiple": false,
  3870. "isRegion": false,
  3871. "subFlag": false,
  3872. "weakPoint": false
  3873. },
  3874. {
  3875. "id": "e29841cadb514569bb399b998ccf4112",
  3876. "code": "ratedSurfaceHeatRate",
  3877. "origCode": "RatedSurfaceHeatRate",
  3878. "name": "额定受热面发热率",
  3879. "aliasCode": "RatedSurfaceHeatRate",
  3880. "aliasName": "额定受热面发热率",
  3881. "classCode": "WSDHGB",
  3882. "category": "STATIC",
  3883. "type": "common",
  3884. "groupCode": "0",
  3885. "projectId": "0",
  3886. "firstTag": "技术参数",
  3887. "secondTag": "热水锅炉",
  3888. "priority": "M",
  3889. "unit": "kW/m2",
  3890. "dataType": "DOUBLE",
  3891. "isMultiple": false,
  3892. "isRegion": false,
  3893. "subFlag": false,
  3894. "weakPoint": false
  3895. },
  3896. {
  3897. "id": "a178bb23f3b44bcca8264222e26149ac",
  3898. "code": "archive",
  3899. "origCode": "Archive",
  3900. "name": "设备文档",
  3901. "aliasCode": "Archive",
  3902. "aliasName": "设备文档",
  3903. "classCode": "WSDHGB",
  3904. "category": "STATIC",
  3905. "type": "common",
  3906. "groupCode": "0",
  3907. "projectId": "0",
  3908. "firstTag": "台账参数",
  3909. "secondTag": "照片文档",
  3910. "priority": "R",
  3911. "dataType": "ATTACHMENT",
  3912. "isMultiple": true,
  3913. "isRegion": false,
  3914. "subFlag": false,
  3915. "weakPoint": false
  3916. },
  3917. {
  3918. "id": "9aedf0489e714fb9b5247eddbe6c1ea2",
  3919. "code": "isCondensateReturnAirtight",
  3920. "origCode": "isCondensateReturnAirtight",
  3921. "name": "蒸汽冷凝水回收装置是否密闭",
  3922. "aliasCode": "isCondensateReturnAirtight",
  3923. "aliasName": "蒸汽冷凝水回收装置是否密闭",
  3924. "classCode": "WSDHGB",
  3925. "category": "STATIC",
  3926. "type": "common",
  3927. "groupCode": "0",
  3928. "projectId": "0",
  3929. "firstTag": "技术参数",
  3930. "secondTag": "蒸汽冷凝水回收装置",
  3931. "priority": "M",
  3932. "dataType": "BOOLEAN",
  3933. "isMultiple": false,
  3934. "isRegion": false,
  3935. "dataSource": [
  3936. {
  3937. "code": "0",
  3938. "name": "开放式"
  3939. },
  3940. {
  3941. "code": "1",
  3942. "name": "密闭式"
  3943. }
  3944. ],
  3945. "subFlag": false,
  3946. "weakPoint": false
  3947. },
  3948. {
  3949. "id": "e424da68d31446c29cc54e1c92dc2c40",
  3950. "code": "maintainerWeb",
  3951. "origCode": "MaintainerWeb",
  3952. "name": "维修商网址",
  3953. "aliasCode": "MaintainerWeb",
  3954. "aliasName": "维修商网址",
  3955. "classCode": "WSDHGB",
  3956. "category": "STATIC",
  3957. "type": "common",
  3958. "groupCode": "0",
  3959. "projectId": "0",
  3960. "firstTag": "台账参数",
  3961. "secondTag": "运行维保",
  3962. "priority": "R",
  3963. "dataType": "STRING",
  3964. "isMultiple": false,
  3965. "isRegion": false,
  3966. "subFlag": false,
  3967. "weakPoint": false
  3968. },
  3969. {
  3970. "id": "b8a3cfc505414cd6a2f3311b293b8132",
  3971. "code": "tapWaterPH",
  3972. "origCode": "TapWaterPH",
  3973. "name": "冷水PH值",
  3974. "aliasCode": "TapWaterPH",
  3975. "aliasName": "冷水PH值",
  3976. "classCode": "WSDHGB",
  3977. "category": "SEQUENTIAL",
  3978. "type": "common",
  3979. "groupCode": "0",
  3980. "projectId": "0",
  3981. "firstTag": "运行参数",
  3982. "secondTag": "整机",
  3983. "priority": "R",
  3984. "dataType": "DOUBLE",
  3985. "isMultiple": false,
  3986. "isRegion": false,
  3987. "subFlag": false,
  3988. "weakPoint": false
  3989. },
  3990. {
  3991. "id": "799e25c70e8b47eaa7ff56f9c2dca699",
  3992. "code": "faultStatus",
  3993. "origCode": "FaultStatus",
  3994. "name": "故障状态",
  3995. "aliasCode": "FaultStatus",
  3996. "aliasName": "故障状态",
  3997. "classCode": "WSDHGB",
  3998. "category": "SEQUENTIAL",
  3999. "type": "common",
  4000. "groupCode": "0",
  4001. "projectId": "0",
  4002. "firstTag": "运行参数",
  4003. "priority": "S",
  4004. "dataType": "BOOLEAN",
  4005. "isMultiple": false,
  4006. "isRegion": false,
  4007. "dataSource": [
  4008. {
  4009. "code": "0",
  4010. "name": "正常"
  4011. },
  4012. {
  4013. "code": "1",
  4014. "name": "故障"
  4015. }
  4016. ],
  4017. "subFlag": false,
  4018. "weakPoint": false
  4019. },
  4020. {
  4021. "id": "494c2b3b43024b5686301f2b4dba00a7",
  4022. "code": "physicalEncoding",
  4023. "origCode": "PhysicalEncoding",
  4024. "name": "物理地址",
  4025. "aliasCode": "PhysicalEncoding",
  4026. "aliasName": "物理地址",
  4027. "classCode": "WSDHGB",
  4028. "category": "STATIC",
  4029. "type": "common",
  4030. "groupCode": "0",
  4031. "projectId": "0",
  4032. "firstTag": "通讯参数",
  4033. "secondTag": "通讯地址",
  4034. "priority": "S",
  4035. "dataType": "STRING",
  4036. "isMultiple": false,
  4037. "isRegion": false,
  4038. "note": "拨码,IP地址",
  4039. "subFlag": false,
  4040. "weakPoint": false
  4041. },
  4042. {
  4043. "id": "ab9e95a3f73242939dad83ca4a387499",
  4044. "code": "vaporValveOpeningSet",
  4045. "origCode": "VaporValveOpeningSet",
  4046. "name": "蒸汽阀开度设定",
  4047. "aliasCode": "VaporValveOpeningSet",
  4048. "aliasName": "蒸汽阀开度设定",
  4049. "classCode": "WSDHGB",
  4050. "category": "SEQUENTIAL",
  4051. "type": "common",
  4052. "groupCode": "0",
  4053. "projectId": "0",
  4054. "firstTag": "设定参数",
  4055. "priority": "R",
  4056. "unit": "%",
  4057. "dataType": "DOUBLE",
  4058. "isMultiple": false,
  4059. "isRegion": false,
  4060. "note": "蒸汽锅炉",
  4061. "subFlag": false,
  4062. "weakPoint": false
  4063. },
  4064. {
  4065. "id": "995ad000ea804375ac185ebe9b847934",
  4066. "code": "manufacturer",
  4067. "origCode": "Manufacturer",
  4068. "name": "生产厂家名称",
  4069. "aliasCode": "Manufacturer",
  4070. "aliasName": "生产厂家名称",
  4071. "classCode": "WSDHGB",
  4072. "category": "STATIC",
  4073. "type": "common",
  4074. "groupCode": "0",
  4075. "projectId": "0",
  4076. "firstTag": "台账参数",
  4077. "secondTag": "生产厂家",
  4078. "priority": "M",
  4079. "dataType": "STRING",
  4080. "isMultiple": false,
  4081. "isRegion": false,
  4082. "subFlag": false,
  4083. "weakPoint": false
  4084. },
  4085. {
  4086. "id": "60279320054f44ebb252761902244140",
  4087. "code": "rFID",
  4088. "origCode": "RFID",
  4089. "name": "RFID标识",
  4090. "aliasCode": "RFID",
  4091. "aliasName": "RFID标识",
  4092. "classCode": "WSDHGB",
  4093. "category": "STATIC",
  4094. "type": "common",
  4095. "groupCode": "0",
  4096. "projectId": "0",
  4097. "firstTag": "基本参数",
  4098. "priority": "M",
  4099. "dataType": "STRING",
  4100. "isMultiple": false,
  4101. "isRegion": false,
  4102. "subFlag": false,
  4103. "weakPoint": false
  4104. },
  4105. {
  4106. "id": "8084d790010740beba0e5d5a8ee0efaf",
  4107. "code": "height",
  4108. "origCode": "Height",
  4109. "name": "高",
  4110. "aliasCode": "Height",
  4111. "aliasName": "高",
  4112. "classCode": "WSDHGB",
  4113. "category": "STATIC",
  4114. "type": "common",
  4115. "groupCode": "0",
  4116. "projectId": "0",
  4117. "firstTag": "台账参数",
  4118. "secondTag": "现场安装",
  4119. "priority": "M",
  4120. "unit": "m",
  4121. "dataType": "DOUBLE",
  4122. "isMultiple": false,
  4123. "isRegion": false,
  4124. "subFlag": false,
  4125. "weakPoint": false
  4126. },
  4127. {
  4128. "id": "26a4e7f1634c4e5a970e88afb9b0bef4",
  4129. "code": "warranterPhone",
  4130. "origCode": "WarranterPhone",
  4131. "name": "质保单位联系电话",
  4132. "aliasCode": "WarranterPhone",
  4133. "aliasName": "质保单位联系电话",
  4134. "classCode": "WSDHGB",
  4135. "category": "STATIC",
  4136. "type": "common",
  4137. "groupCode": "0",
  4138. "projectId": "0",
  4139. "firstTag": "台账参数",
  4140. "secondTag": "运行维保",
  4141. "priority": "M",
  4142. "dataType": "STRING",
  4143. "isMultiple": false,
  4144. "isRegion": false,
  4145. "subFlag": false,
  4146. "weakPoint": false
  4147. },
  4148. {
  4149. "id": "efa69d8a446c4d948f1d5a9d7b5a96b2",
  4150. "code": "maintainerPhone",
  4151. "origCode": "MaintainerPhone",
  4152. "name": "维修商联系电话",
  4153. "aliasCode": "MaintainerPhone",
  4154. "aliasName": "维修商联系电话",
  4155. "classCode": "WSDHGB",
  4156. "category": "STATIC",
  4157. "type": "common",
  4158. "groupCode": "0",
  4159. "projectId": "0",
  4160. "firstTag": "台账参数",
  4161. "secondTag": "运行维保",
  4162. "priority": "M",
  4163. "dataType": "STRING",
  4164. "isMultiple": false,
  4165. "isRegion": false,
  4166. "subFlag": false,
  4167. "weakPoint": false
  4168. },
  4169. {
  4170. "id": "1931b811e157431fb800eb4a22ee3f63",
  4171. "code": "hotWaterInTemp",
  4172. "origCode": "HotWaterInTemp",
  4173. "name": "热水回水温度",
  4174. "aliasCode": "HotWaterInTemp",
  4175. "aliasName": "热水回水温度",
  4176. "classCode": "WSDHGB",
  4177. "category": "SEQUENTIAL",
  4178. "type": "common",
  4179. "groupCode": "0",
  4180. "projectId": "0",
  4181. "firstTag": "运行参数",
  4182. "secondTag": "整机",
  4183. "priority": "S",
  4184. "unit": "℃",
  4185. "dataType": "DOUBLE",
  4186. "isMultiple": false,
  4187. "isRegion": false,
  4188. "note": "热水锅炉",
  4189. "subFlag": false,
  4190. "weakPoint": false
  4191. },
  4192. {
  4193. "id": "bada88d364dc43d898c8d129b15c3447",
  4194. "code": "equipOffSet",
  4195. "origCode": "EquipOffSet",
  4196. "name": "设备关设定",
  4197. "aliasCode": "EquipOffSet",
  4198. "aliasName": "设备关设定",
  4199. "classCode": "WSDHGB",
  4200. "category": "GRADATION",
  4201. "type": "common",
  4202. "groupCode": "0",
  4203. "projectId": "0",
  4204. "firstTag": "设定参数",
  4205. "priority": "S",
  4206. "dataType": "BOOLEAN",
  4207. "isMultiple": false,
  4208. "isRegion": false,
  4209. "dataSource": [
  4210. {
  4211. "code": "0",
  4212. "name": "正常"
  4213. },
  4214. {
  4215. "code": "1",
  4216. "name": "关闭"
  4217. }
  4218. ],
  4219. "subFlag": false,
  4220. "weakPoint": false
  4221. },
  4222. {
  4223. "id": "0a90c311a1e74d81abc260fa5a0c0d92",
  4224. "code": "serviceLife",
  4225. "origCode": "ServiceLife",
  4226. "name": "使用寿命",
  4227. "aliasCode": "ServiceLife",
  4228. "aliasName": "使用寿命",
  4229. "classCode": "WSDHGB",
  4230. "category": "STATIC",
  4231. "type": "common",
  4232. "groupCode": "0",
  4233. "projectId": "0",
  4234. "firstTag": "台账参数",
  4235. "secondTag": "运行维保",
  4236. "priority": "R",
  4237. "unit": "年",
  4238. "dataType": "DOUBLE",
  4239. "isMultiple": false,
  4240. "isRegion": false,
  4241. "note": "同使用年限",
  4242. "subFlag": false,
  4243. "weakPoint": false
  4244. },
  4245. {
  4246. "id": "df2c692780284a039e024af9b168e58e",
  4247. "code": "recoveryHeatExchangerType",
  4248. "origCode": "RecoveryHeatExchangerType",
  4249. "name": "烟气余热回收换热器形式",
  4250. "aliasCode": "RecoveryHeatExchangerType",
  4251. "aliasName": "烟气余热回收换热器形式",
  4252. "classCode": "WSDHGB",
  4253. "category": "STATIC",
  4254. "type": "common",
  4255. "groupCode": "0",
  4256. "projectId": "0",
  4257. "firstTag": "技术参数",
  4258. "secondTag": "烟气余热回收装置",
  4259. "priority": "R",
  4260. "dataType": "ENUM",
  4261. "isMultiple": false,
  4262. "isRegion": false,
  4263. "dataSource": [
  4264. {
  4265. "code": "1",
  4266. "name": "管式"
  4267. },
  4268. {
  4269. "code": "2",
  4270. "name": "圆筒辐射式"
  4271. },
  4272. {
  4273. "code": "3",
  4274. "name": "铸铁块状"
  4275. },
  4276. {
  4277. "code": "99",
  4278. "name": "其他"
  4279. }
  4280. ],
  4281. "subFlag": false,
  4282. "weakPoint": false
  4283. },
  4284. {
  4285. "id": "e0d9561fbc094b07b339e7826a06f740",
  4286. "code": "insurerFax",
  4287. "origCode": "InsurerFax",
  4288. "name": "保险公司传真",
  4289. "aliasCode": "InsurerFax",
  4290. "aliasName": "保险公司传真",
  4291. "classCode": "WSDHGB",
  4292. "category": "STATIC",
  4293. "type": "common",
  4294. "groupCode": "0",
  4295. "projectId": "0",
  4296. "firstTag": "台账参数",
  4297. "secondTag": "保险文件",
  4298. "priority": "R",
  4299. "dataType": "STRING",
  4300. "isMultiple": false,
  4301. "isRegion": false,
  4302. "subFlag": false,
  4303. "weakPoint": false
  4304. },
  4305. {
  4306. "id": "d2b30c7ebf4244e8a84a434dd9a4a458",
  4307. "code": "hotWaterValveSwitch",
  4308. "origCode": "HotWaterValveSwitch",
  4309. "name": "热水阀开关",
  4310. "aliasCode": "HotWaterValveSwitch",
  4311. "aliasName": "热水阀开关",
  4312. "classCode": "WSDHGB",
  4313. "category": "SEQUENTIAL",
  4314. "type": "common",
  4315. "groupCode": "0",
  4316. "projectId": "0",
  4317. "firstTag": "运行参数",
  4318. "secondTag": "整机",
  4319. "priority": "R",
  4320. "dataType": "BOOLEAN",
  4321. "isMultiple": false,
  4322. "isRegion": false,
  4323. "dataSource": [
  4324. {
  4325. "code": "0",
  4326. "name": "关闭"
  4327. },
  4328. {
  4329. "code": "1",
  4330. "name": "开启"
  4331. }
  4332. ],
  4333. "note": "热水锅炉",
  4334. "subFlag": false,
  4335. "weakPoint": false
  4336. },
  4337. {
  4338. "id": "a4da0dfaa3a4417584b869f7979eae0b",
  4339. "code": "condensateReturnMaxWorkPress",
  4340. "origCode": "CondensateReturnMaxWorkPress",
  4341. "name": "蒸汽冷凝水回收最高工作压力",
  4342. "aliasCode": "CondensateReturnMaxWorkPress",
  4343. "aliasName": "蒸汽冷凝水回收最高工作压力",
  4344. "classCode": "WSDHGB",
  4345. "category": "STATIC",
  4346. "type": "common",
  4347. "groupCode": "0",
  4348. "projectId": "0",
  4349. "firstTag": "技术参数",
  4350. "secondTag": "蒸汽冷凝水回收装置",
  4351. "priority": "R",
  4352. "unit": "MPa",
  4353. "dataType": "DOUBLE",
  4354. "isMultiple": false,
  4355. "isRegion": false,
  4356. "subFlag": false,
  4357. "weakPoint": false
  4358. }
  4359. ]