mainSuit.js 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120
  1. module.exports = {
  2. mainMoudle:[
  3. {
  4. "id": 1,
  5. "name": "主诉模板",
  6. "moduleDetailDTOList": [
  7. {
  8. "id": 7,
  9. "name": "主诉通用特征描述",
  10. "tagName": "主诉通用特征描述",
  11. "type": 1,
  12. "controlType": 0,
  13. "subType": 0,
  14. "tagType": "2",
  15. "labelPrefix": "",
  16. "labelSuffix": "",
  17. "minValue": null,
  18. "maxValue": null,
  19. "position": null,
  20. "showAdd": 0,
  21. "formPosition": null,
  22. "textGenerate": 0,
  23. "symptomType": null,
  24. "exclusionType": null,
  25. "judgeType": null,
  26. "copyType": "0",
  27. "questionDetailList": [],
  28. "questionMapping": [
  29. {
  30. "id": 14,
  31. "name": "",
  32. "tagName": "主诉通用特征描述-上中下",
  33. "type": 1,
  34. "controlType": 2,
  35. "subType": 0,
  36. "tagType": "1",
  37. "labelPrefix": "",
  38. "labelSuffix": "",
  39. "minValue": null,
  40. "maxValue": null,
  41. "position": 0,
  42. "showAdd": 0,
  43. "formPosition": 0,
  44. "textGenerate": 0,
  45. "symptomType": 0,
  46. "exclusionType": 0,
  47. "judgeType": null,
  48. "copyType": "0",
  49. "questionDetailList": [
  50. {
  51. "id": 11,
  52. "name": "上",
  53. "labelPrefix": "",
  54. "labelSuffix": "",
  55. "questionId": 14,
  56. "orderNo": 1,
  57. "code": null,
  58. "defaultSelect": "0",
  59. "remark": null
  60. },
  61. {
  62. "id": 12,
  63. "name": "中",
  64. "labelPrefix": "",
  65. "labelSuffix": "",
  66. "questionId": 14,
  67. "orderNo": 2,
  68. "code": null,
  69. "defaultSelect": "0",
  70. "remark": null
  71. },
  72. {
  73. "id": 13,
  74. "name": "下",
  75. "labelPrefix": "",
  76. "labelSuffix": "",
  77. "questionId": 14,
  78. "orderNo": 3,
  79. "code": null,
  80. "defaultSelect": "0",
  81. "remark": null
  82. }
  83. ],
  84. "questionMapping": [],
  85. "remark": null
  86. },
  87. {
  88. "id": 15,
  89. "name": "",
  90. "tagName": "主诉通用特征描述-前后",
  91. "type": 1,
  92. "controlType": 2,
  93. "subType": 0,
  94. "tagType": "1",
  95. "labelPrefix": "",
  96. "labelSuffix": "",
  97. "minValue": null,
  98. "maxValue": null,
  99. "position": 0,
  100. "showAdd": 0,
  101. "formPosition": 0,
  102. "textGenerate": 0,
  103. "symptomType": 0,
  104. "exclusionType": 0,
  105. "judgeType": null,
  106. "copyType": "0",
  107. "questionDetailList": [
  108. {
  109. "id": 14,
  110. "name": "前",
  111. "labelPrefix": "",
  112. "labelSuffix": "",
  113. "questionId": 15,
  114. "orderNo": 1,
  115. "code": null,
  116. "defaultSelect": "0",
  117. "remark": null
  118. },
  119. {
  120. "id": 15,
  121. "name": "后",
  122. "labelPrefix": "",
  123. "labelSuffix": "",
  124. "questionId": 15,
  125. "orderNo": 2,
  126. "code": null,
  127. "defaultSelect": "0",
  128. "remark": null
  129. }
  130. ],
  131. "questionMapping": [],
  132. "remark": null
  133. },
  134. {
  135. "id": 16,
  136. "name": "",
  137. "tagName": "主诉通用特征描述-左右",
  138. "type": 1,
  139. "controlType": 2,
  140. "subType": 0,
  141. "tagType": "1",
  142. "labelPrefix": "",
  143. "labelSuffix": "",
  144. "minValue": null,
  145. "maxValue": null,
  146. "position": 0,
  147. "showAdd": 0,
  148. "formPosition": 0,
  149. "textGenerate": 0,
  150. "symptomType": 0,
  151. "exclusionType": 0,
  152. "judgeType": null,
  153. "copyType": "0",
  154. "questionDetailList": [
  155. {
  156. "id": 16,
  157. "name": "左",
  158. "labelPrefix": "",
  159. "labelSuffix": "",
  160. "questionId": 16,
  161. "orderNo": 1,
  162. "code": null,
  163. "defaultSelect": "0",
  164. "remark": null
  165. },
  166. {
  167. "id": 17,
  168. "name": "右",
  169. "labelPrefix": "",
  170. "labelSuffix": "",
  171. "questionId": 16,
  172. "orderNo": 2,
  173. "code": null,
  174. "defaultSelect": "0",
  175. "remark": null
  176. }
  177. ],
  178. "questionMapping": [],
  179. "remark": null
  180. },
  181. {
  182. "id": 18,
  183. "name": "",
  184. "tagName": "主诉通用特征描述-特性",
  185. "type": 1,
  186. "controlType": 2,
  187. "subType": 0,
  188. "tagType": "1",
  189. "labelPrefix": "",
  190. "labelSuffix": "",
  191. "minValue": null,
  192. "maxValue": null,
  193. "position": 0,
  194. "showAdd": 0,
  195. "formPosition": 0,
  196. "textGenerate": 0,
  197. "symptomType": 0,
  198. "exclusionType": 0,
  199. "judgeType": null,
  200. "copyType": "0",
  201. "questionDetailList": [
  202. {
  203. "id": 6,
  204. "name": "反复",
  205. "labelPrefix": "",
  206. "labelSuffix": "",
  207. "questionId": 18,
  208. "orderNo": 1,
  209. "code": null,
  210. "defaultSelect": "0",
  211. "remark": null
  212. },
  213. {
  214. "id": 7,
  215. "name": "突发",
  216. "labelPrefix": "",
  217. "labelSuffix": "",
  218. "questionId": 18,
  219. "orderNo": 2,
  220. "code": null,
  221. "defaultSelect": "0",
  222. "remark": null
  223. },
  224. {
  225. "id": 8,
  226. "name": "持续",
  227. "labelPrefix": "",
  228. "labelSuffix": "",
  229. "questionId": 18,
  230. "orderNo": 3,
  231. "code": null,
  232. "defaultSelect": "0",
  233. "remark": null
  234. },
  235. {
  236. "id": 9,
  237. "name": "间断",
  238. "labelPrefix": "",
  239. "labelSuffix": "",
  240. "questionId": 18,
  241. "orderNo": 4,
  242. "code": null,
  243. "defaultSelect": "0",
  244. "remark": null
  245. }
  246. ],
  247. "questionMapping": [],
  248. "remark": null
  249. },
  250. {
  251. "id": 17,
  252. "name": "",
  253. "tagName": "主诉通用特征描述-加重再发",
  254. "type": 1,
  255. "controlType": 2,
  256. "subType": 0,
  257. "tagType": "1",
  258. "labelPrefix": "",
  259. "labelSuffix": "",
  260. "minValue": null,
  261. "maxValue": null,
  262. "position": 0,
  263. "showAdd": 0,
  264. "formPosition": 0,
  265. "textGenerate": 0,
  266. "symptomType": 0,
  267. "exclusionType": 0,
  268. "judgeType": null,
  269. "copyType": "0",
  270. "questionDetailList": [
  271. {
  272. "id": 19,
  273. "name": "加重",
  274. "labelPrefix": "",
  275. "labelSuffix": "",
  276. "questionId": 17,
  277. "orderNo": 1,
  278. "code": null,
  279. "defaultSelect": "0",
  280. "remark": null
  281. },
  282. {
  283. "id": 18,
  284. "name": "再发",
  285. "labelPrefix": "",
  286. "labelSuffix": "",
  287. "questionId": 17,
  288. "orderNo": 2,
  289. "code": null,
  290. "defaultSelect": "0",
  291. "remark": null
  292. }
  293. ],
  294. "questionMapping": [],
  295. "remark": null
  296. }
  297. ],
  298. "remark": null,
  299. "moduleId": 1,
  300. "questionId": 7,
  301. "flag": "",
  302. "relationModule": null
  303. },
  304. {
  305. "id": 8,
  306. "name": "添加症状",
  307. "tagName": "添加症状",
  308. "type": 1,
  309. "controlType": 0,
  310. "subType": 0,
  311. "tagType": "2",
  312. "labelPrefix": "",
  313. "labelSuffix": "",
  314. "minValue": null,
  315. "maxValue": null,
  316. "position": null,
  317. "showAdd": 0,
  318. "formPosition": null,
  319. "textGenerate": 0,
  320. "symptomType": null,
  321. "exclusionType": null,
  322. "judgeType": null,
  323. "copyType": "1",
  324. "questionDetailList": [],
  325. "questionMapping": [
  326. {
  327. "id": 9,
  328. "name": "",
  329. "tagName": "主诉-伴",
  330. "type": 1,
  331. "controlType": 4,
  332. "subType": 0,
  333. "tagType": "1",
  334. "labelPrefix": "",
  335. "labelSuffix": "",
  336. "minValue": null,
  337. "maxValue": null,
  338. "position": 0,
  339. "showAdd": 0,
  340. "formPosition": 0,
  341. "textGenerate": 0,
  342. "symptomType": 0,
  343. "exclusionType": 0,
  344. "judgeType": null,
  345. "copyType": "0",
  346. "questionDetailList": [
  347. {
  348. "id": 10,
  349. "name": "伴",
  350. "labelPrefix": "",
  351. "labelSuffix": "",
  352. "questionId": 9,
  353. "orderNo": 1,
  354. "code": 1,
  355. "defaultSelect": "0",
  356. "remark": null
  357. }
  358. ],
  359. "questionMapping": [],
  360. "remark": null
  361. },
  362. {
  363. "id": 10,
  364. "name": "",
  365. "tagName": "主诉-推送",
  366. "type": 1,
  367. "controlType": 99,
  368. "subType": 0,
  369. "tagType": "1",
  370. "labelPrefix": "",
  371. "labelSuffix": "",
  372. "minValue": null,
  373. "maxValue": null,
  374. "position": 0,
  375. "showAdd": 0,
  376. "formPosition": 0,
  377. "textGenerate": 0,
  378. "symptomType": 0,
  379. "exclusionType": 0,
  380. "judgeType": null,
  381. "copyType": "0",
  382. "questionDetailList": [],
  383. "questionMapping": [],
  384. "remark": null
  385. }
  386. ],
  387. "remark": null,
  388. "moduleId": 1,
  389. "questionId": 8,
  390. "flag": "1",
  391. "relationModule": null
  392. },
  393. {
  394. "id": 11,
  395. "name": "",
  396. "tagName": "主诉时间",
  397. "type": 1,
  398. "controlType": 0,
  399. "subType": 0,
  400. "tagType": "3",
  401. "labelPrefix": "",
  402. "labelSuffix": "",
  403. "minValue": null,
  404. "maxValue": null,
  405. "position": null,
  406. "showAdd": 0,
  407. "formPosition": null,
  408. "textGenerate": 0,
  409. "symptomType": null,
  410. "exclusionType": null,
  411. "judgeType": null,
  412. "copyType": "0",
  413. "questionDetailList": [],
  414. "questionMapping": [
  415. {
  416. "id": 20,
  417. "name": "(填写)",
  418. "tagName": "主诉时间-输入框",
  419. "type": 1,
  420. "controlType": 7,
  421. "subType": 0,
  422. "tagType": "1",
  423. "labelPrefix": "",
  424. "labelSuffix": "",
  425. "minValue": null,
  426. "maxValue": null,
  427. "position": 0,
  428. "showAdd": 0,
  429. "formPosition": 0,
  430. "textGenerate": 0,
  431. "symptomType": 0,
  432. "exclusionType": 0,
  433. "judgeType": null,
  434. "copyType": "0",
  435. "questionDetailList": [],
  436. "questionMapping": [],
  437. "remark": null
  438. },
  439. {
  440. "id": 56,
  441. "name": "单位",
  442. "tagName": "主诉时间-单位",
  443. "type": 1,
  444. "controlType": 1,
  445. "subType": 0,
  446. "tagType": "1",
  447. "labelPrefix": "",
  448. "labelSuffix": "",
  449. "minValue": null,
  450. "maxValue": null,
  451. "position": 0,
  452. "showAdd": 0,
  453. "formPosition": 0,
  454. "textGenerate": 0,
  455. "symptomType": 0,
  456. "exclusionType": 0,
  457. "judgeType": null,
  458. "copyType": "0",
  459. "questionDetailList": [
  460. {
  461. "id": 70,
  462. "name": "天",
  463. "labelPrefix": "",
  464. "labelSuffix": "",
  465. "questionId": 56,
  466. "orderNo": 1,
  467. "code": null,
  468. "defaultSelect": "0",
  469. "remark": null
  470. },
  471. {
  472. "id": 71,
  473. "name": "小时",
  474. "labelPrefix": "",
  475. "labelSuffix": "",
  476. "questionId": 56,
  477. "orderNo": 2,
  478. "code": null,
  479. "defaultSelect": "0",
  480. "remark": null
  481. },
  482. {
  483. "id": 72,
  484. "name": "月",
  485. "labelPrefix": "",
  486. "labelSuffix": "",
  487. "questionId": 56,
  488. "orderNo": 3,
  489. "code": null,
  490. "defaultSelect": "0",
  491. "remark": null
  492. },
  493. {
  494. "id": 73,
  495. "name": "年",
  496. "labelPrefix": "",
  497. "labelSuffix": "",
  498. "questionId": 56,
  499. "orderNo": 4,
  500. "code": null,
  501. "defaultSelect": "0",
  502. "remark": null
  503. }
  504. ],
  505. "questionMapping": [],
  506. "remark": null
  507. }
  508. ],
  509. "remark": null,
  510. "moduleId": 1,
  511. "questionId": 11,
  512. "flag": "",
  513. "relationModule": null
  514. },
  515. {
  516. "id": 12,
  517. "name": "添加病情变化",
  518. "tagName": "主诉-添加病情变化",
  519. "type": 1,
  520. "controlType": 0,
  521. "subType": 0,
  522. "tagType": "4",
  523. "labelPrefix": "",
  524. "labelSuffix": "",
  525. "minValue": null,
  526. "maxValue": null,
  527. "position": null,
  528. "showAdd": 0,
  529. "formPosition": null,
  530. "textGenerate": 0,
  531. "symptomType": null,
  532. "exclusionType": null,
  533. "judgeType": null,
  534. "copyType": "1",
  535. "questionDetailList": [],
  536. "questionMapping": [
  537. {
  538. "id": 7,
  539. "name": "主诉通用特征描述",
  540. "tagName": "主诉通用特征描述",
  541. "type": 1,
  542. "controlType": 0,
  543. "subType": 0,
  544. "tagType": "2",
  545. "labelPrefix": "",
  546. "labelSuffix": "",
  547. "minValue": null,
  548. "maxValue": null,
  549. "position": 1,
  550. "showAdd": 0,
  551. "formPosition": 0,
  552. "textGenerate": 0,
  553. "symptomType": 0,
  554. "exclusionType": 0,
  555. "judgeType": null,
  556. "copyType": "0",
  557. "questionDetailList": [],
  558. "questionMapping": [
  559. {
  560. "id": 14,
  561. "name": "",
  562. "tagName": "主诉通用特征描述-上中下",
  563. "type": 1,
  564. "controlType": 2,
  565. "subType": 0,
  566. "tagType": "1",
  567. "labelPrefix": "",
  568. "labelSuffix": "",
  569. "minValue": null,
  570. "maxValue": null,
  571. "position": 0,
  572. "showAdd": 0,
  573. "formPosition": 0,
  574. "textGenerate": 0,
  575. "symptomType": 0,
  576. "exclusionType": 0,
  577. "judgeType": null,
  578. "copyType": "0",
  579. "questionDetailList": [
  580. {
  581. "id": 11,
  582. "name": "上",
  583. "labelPrefix": "",
  584. "labelSuffix": "",
  585. "questionId": 14,
  586. "orderNo": 1,
  587. "code": null,
  588. "defaultSelect": "0",
  589. "remark": null
  590. },
  591. {
  592. "id": 12,
  593. "name": "中",
  594. "labelPrefix": "",
  595. "labelSuffix": "",
  596. "questionId": 14,
  597. "orderNo": 2,
  598. "code": null,
  599. "defaultSelect": "0",
  600. "remark": null
  601. },
  602. {
  603. "id": 13,
  604. "name": "下",
  605. "labelPrefix": "",
  606. "labelSuffix": "",
  607. "questionId": 14,
  608. "orderNo": 3,
  609. "code": null,
  610. "defaultSelect": "0",
  611. "remark": null
  612. }
  613. ],
  614. "questionMapping": [],
  615. "remark": null
  616. },
  617. {
  618. "id": 15,
  619. "name": "",
  620. "tagName": "主诉通用特征描述-前后",
  621. "type": 1,
  622. "controlType": 2,
  623. "subType": 0,
  624. "tagType": "1",
  625. "labelPrefix": "",
  626. "labelSuffix": "",
  627. "minValue": null,
  628. "maxValue": null,
  629. "position": 0,
  630. "showAdd": 0,
  631. "formPosition": 0,
  632. "textGenerate": 0,
  633. "symptomType": 0,
  634. "exclusionType": 0,
  635. "judgeType": null,
  636. "copyType": "0",
  637. "questionDetailList": [
  638. {
  639. "id": 14,
  640. "name": "前",
  641. "labelPrefix": "",
  642. "labelSuffix": "",
  643. "questionId": 15,
  644. "orderNo": 1,
  645. "code": null,
  646. "defaultSelect": "0",
  647. "remark": null
  648. },
  649. {
  650. "id": 15,
  651. "name": "后",
  652. "labelPrefix": "",
  653. "labelSuffix": "",
  654. "questionId": 15,
  655. "orderNo": 2,
  656. "code": null,
  657. "defaultSelect": "0",
  658. "remark": null
  659. }
  660. ],
  661. "questionMapping": [],
  662. "remark": null
  663. },
  664. {
  665. "id": 16,
  666. "name": "",
  667. "tagName": "主诉通用特征描述-左右",
  668. "type": 1,
  669. "controlType": 2,
  670. "subType": 0,
  671. "tagType": "1",
  672. "labelPrefix": "",
  673. "labelSuffix": "",
  674. "minValue": null,
  675. "maxValue": null,
  676. "position": 0,
  677. "showAdd": 0,
  678. "formPosition": 0,
  679. "textGenerate": 0,
  680. "symptomType": 0,
  681. "exclusionType": 0,
  682. "judgeType": null,
  683. "copyType": "0",
  684. "questionDetailList": [
  685. {
  686. "id": 16,
  687. "name": "左",
  688. "labelPrefix": "",
  689. "labelSuffix": "",
  690. "questionId": 16,
  691. "orderNo": 1,
  692. "code": null,
  693. "defaultSelect": "0",
  694. "remark": null
  695. },
  696. {
  697. "id": 17,
  698. "name": "右",
  699. "labelPrefix": "",
  700. "labelSuffix": "",
  701. "questionId": 16,
  702. "orderNo": 2,
  703. "code": null,
  704. "defaultSelect": "0",
  705. "remark": null
  706. }
  707. ],
  708. "questionMapping": [],
  709. "remark": null
  710. },
  711. {
  712. "id": 18,
  713. "name": "",
  714. "tagName": "主诉通用特征描述-特性",
  715. "type": 1,
  716. "controlType": 2,
  717. "subType": 0,
  718. "tagType": "1",
  719. "labelPrefix": "",
  720. "labelSuffix": "",
  721. "minValue": null,
  722. "maxValue": null,
  723. "position": 0,
  724. "showAdd": 0,
  725. "formPosition": 0,
  726. "textGenerate": 0,
  727. "symptomType": 0,
  728. "exclusionType": 0,
  729. "judgeType": null,
  730. "copyType": "0",
  731. "questionDetailList": [
  732. {
  733. "id": 6,
  734. "name": "反复",
  735. "labelPrefix": "",
  736. "labelSuffix": "",
  737. "questionId": 18,
  738. "orderNo": 1,
  739. "code": null,
  740. "defaultSelect": "0",
  741. "remark": null
  742. },
  743. {
  744. "id": 7,
  745. "name": "突发",
  746. "labelPrefix": "",
  747. "labelSuffix": "",
  748. "questionId": 18,
  749. "orderNo": 2,
  750. "code": null,
  751. "defaultSelect": "0",
  752. "remark": null
  753. },
  754. {
  755. "id": 8,
  756. "name": "持续",
  757. "labelPrefix": "",
  758. "labelSuffix": "",
  759. "questionId": 18,
  760. "orderNo": 3,
  761. "code": null,
  762. "defaultSelect": "0",
  763. "remark": null
  764. },
  765. {
  766. "id": 9,
  767. "name": "间断",
  768. "labelPrefix": "",
  769. "labelSuffix": "",
  770. "questionId": 18,
  771. "orderNo": 4,
  772. "code": null,
  773. "defaultSelect": "0",
  774. "remark": null
  775. }
  776. ],
  777. "questionMapping": [],
  778. "remark": null
  779. },
  780. {
  781. "id": 17,
  782. "name": "",
  783. "tagName": "主诉通用特征描述-加重再发",
  784. "type": 1,
  785. "controlType": 2,
  786. "subType": 0,
  787. "tagType": "1",
  788. "labelPrefix": "",
  789. "labelSuffix": "",
  790. "minValue": null,
  791. "maxValue": null,
  792. "position": 0,
  793. "showAdd": 0,
  794. "formPosition": 0,
  795. "textGenerate": 0,
  796. "symptomType": 0,
  797. "exclusionType": 0,
  798. "judgeType": null,
  799. "copyType": "0",
  800. "questionDetailList": [
  801. {
  802. "id": 19,
  803. "name": "加重",
  804. "labelPrefix": "",
  805. "labelSuffix": "",
  806. "questionId": 17,
  807. "orderNo": 1,
  808. "code": null,
  809. "defaultSelect": "0",
  810. "remark": null
  811. },
  812. {
  813. "id": 18,
  814. "name": "再发",
  815. "labelPrefix": "",
  816. "labelSuffix": "",
  817. "questionId": 17,
  818. "orderNo": 2,
  819. "code": null,
  820. "defaultSelect": "0",
  821. "remark": null
  822. }
  823. ],
  824. "questionMapping": [],
  825. "remark": null
  826. }
  827. ],
  828. "remark": null
  829. },
  830. {
  831. "id": 8,
  832. "name": "添加症状",
  833. "tagName": "添加症状",
  834. "type": 1,
  835. "controlType": 0,
  836. "subType": 0,
  837. "tagType": "2",
  838. "labelPrefix": "",
  839. "labelSuffix": "",
  840. "minValue": null,
  841. "maxValue": null,
  842. "position": 1,
  843. "showAdd": 0,
  844. "formPosition": 0,
  845. "textGenerate": 0,
  846. "symptomType": 0,
  847. "exclusionType": 0,
  848. "judgeType": null,
  849. "copyType": "1",
  850. "questionDetailList": [],
  851. "questionMapping": [
  852. {
  853. "id": 9,
  854. "name": "",
  855. "tagName": "主诉-伴",
  856. "type": 1,
  857. "controlType": 4,
  858. "subType": 0,
  859. "tagType": "1",
  860. "labelPrefix": "",
  861. "labelSuffix": "",
  862. "minValue": null,
  863. "maxValue": null,
  864. "position": 0,
  865. "showAdd": 0,
  866. "formPosition": 0,
  867. "textGenerate": 0,
  868. "symptomType": 0,
  869. "exclusionType": 0,
  870. "judgeType": null,
  871. "copyType": "0",
  872. "questionDetailList": [
  873. {
  874. "id": 10,
  875. "name": "伴",
  876. "labelPrefix": "",
  877. "labelSuffix": "",
  878. "questionId": 9,
  879. "orderNo": 1,
  880. "code": 1,
  881. "defaultSelect": "0",
  882. "remark": null
  883. }
  884. ],
  885. "questionMapping": [],
  886. "remark": null
  887. },
  888. {
  889. "id": 10,
  890. "name": "",
  891. "tagName": "主诉-推送",
  892. "type": 1,
  893. "controlType": 99,
  894. "subType": 0,
  895. "tagType": "1",
  896. "labelPrefix": "",
  897. "labelSuffix": "",
  898. "minValue": null,
  899. "maxValue": null,
  900. "position": 0,
  901. "showAdd": 0,
  902. "formPosition": 0,
  903. "textGenerate": 0,
  904. "symptomType": 0,
  905. "exclusionType": 0,
  906. "judgeType": null,
  907. "copyType": "0",
  908. "questionDetailList": [],
  909. "questionMapping": [],
  910. "remark": null
  911. }
  912. ],
  913. "remark": null
  914. },
  915. {
  916. "id": 11,
  917. "name": "",
  918. "tagName": "主诉时间",
  919. "type": 1,
  920. "controlType": 0,
  921. "subType": 0,
  922. "tagType": "3",
  923. "labelPrefix": "",
  924. "labelSuffix": "",
  925. "minValue": null,
  926. "maxValue": null,
  927. "position": 1,
  928. "showAdd": 0,
  929. "formPosition": 0,
  930. "textGenerate": 0,
  931. "symptomType": 0,
  932. "exclusionType": 0,
  933. "judgeType": null,
  934. "copyType": "0",
  935. "questionDetailList": [],
  936. "questionMapping": [
  937. {
  938. "id": 20,
  939. "name": "(填写)",
  940. "tagName": "主诉时间-输入框",
  941. "type": 1,
  942. "controlType": 7,
  943. "subType": 0,
  944. "tagType": "1",
  945. "labelPrefix": "",
  946. "labelSuffix": "",
  947. "minValue": null,
  948. "maxValue": null,
  949. "position": 0,
  950. "showAdd": 0,
  951. "formPosition": 0,
  952. "textGenerate": 0,
  953. "symptomType": 0,
  954. "exclusionType": 0,
  955. "judgeType": null,
  956. "copyType": "0",
  957. "questionDetailList": [],
  958. "questionMapping": [],
  959. "remark": null
  960. },
  961. {
  962. "id": 56,
  963. "name": "单位",
  964. "tagName": "主诉时间-单位",
  965. "type": 1,
  966. "controlType": 1,
  967. "subType": 0,
  968. "tagType": "1",
  969. "labelPrefix": "",
  970. "labelSuffix": "",
  971. "minValue": null,
  972. "maxValue": null,
  973. "position": 0,
  974. "showAdd": 0,
  975. "formPosition": 0,
  976. "textGenerate": 0,
  977. "symptomType": 0,
  978. "exclusionType": 0,
  979. "judgeType": null,
  980. "copyType": "0",
  981. "questionDetailList": [
  982. {
  983. "id": 70,
  984. "name": "天",
  985. "labelPrefix": "",
  986. "labelSuffix": "",
  987. "questionId": 56,
  988. "orderNo": 1,
  989. "code": null,
  990. "defaultSelect": "0",
  991. "remark": null
  992. },
  993. {
  994. "id": 71,
  995. "name": "小时",
  996. "labelPrefix": "",
  997. "labelSuffix": "",
  998. "questionId": 56,
  999. "orderNo": 2,
  1000. "code": null,
  1001. "defaultSelect": "0",
  1002. "remark": null
  1003. },
  1004. {
  1005. "id": 72,
  1006. "name": "月",
  1007. "labelPrefix": "",
  1008. "labelSuffix": "",
  1009. "questionId": 56,
  1010. "orderNo": 3,
  1011. "code": null,
  1012. "defaultSelect": "0",
  1013. "remark": null
  1014. },
  1015. {
  1016. "id": 73,
  1017. "name": "年",
  1018. "labelPrefix": "",
  1019. "labelSuffix": "",
  1020. "questionId": 56,
  1021. "orderNo": 4,
  1022. "code": null,
  1023. "defaultSelect": "0",
  1024. "remark": null
  1025. }
  1026. ],
  1027. "questionMapping": [],
  1028. "remark": null
  1029. }
  1030. ],
  1031. "remark": null
  1032. }
  1033. ],
  1034. "remark": null,
  1035. "moduleId": 1,
  1036. "questionId": 12,
  1037. "flag": "",
  1038. "relationModule": null
  1039. }
  1040. ],
  1041. "remark": null
  1042. },
  1043. {
  1044. "id": 2,
  1045. "name": "现病史模板",
  1046. "moduleDetailDTOList": [
  1047. {
  1048. "id": 11,
  1049. "name": "",
  1050. "tagName": "主诉时间",
  1051. "type": 1,
  1052. "controlType": 0,
  1053. "subType": 0,
  1054. "tagType": "3",
  1055. "labelPrefix": "",
  1056. "labelSuffix": "",
  1057. "minValue": null,
  1058. "maxValue": null,
  1059. "position": null,
  1060. "showAdd": 0,
  1061. "formPosition": null,
  1062. "textGenerate": 0,
  1063. "symptomType": null,
  1064. "exclusionType": null,
  1065. "judgeType": null,
  1066. "copyType": "0",
  1067. "questionDetailList": [],
  1068. "questionMapping": [
  1069. {
  1070. "id": 20,
  1071. "name": "(填写)",
  1072. "tagName": "主诉时间-输入框",
  1073. "type": 1,
  1074. "controlType": 7,
  1075. "subType": 0,
  1076. "tagType": "1",
  1077. "labelPrefix": "",
  1078. "labelSuffix": "",
  1079. "minValue": null,
  1080. "maxValue": null,
  1081. "position": 0,
  1082. "showAdd": 0,
  1083. "formPosition": 0,
  1084. "textGenerate": 0,
  1085. "symptomType": 0,
  1086. "exclusionType": 0,
  1087. "judgeType": null,
  1088. "copyType": "0",
  1089. "questionDetailList": [],
  1090. "questionMapping": [],
  1091. "remark": null
  1092. },
  1093. {
  1094. "id": 56,
  1095. "name": "单位",
  1096. "tagName": "主诉时间-单位",
  1097. "type": 1,
  1098. "controlType": 1,
  1099. "subType": 0,
  1100. "tagType": "1",
  1101. "labelPrefix": "",
  1102. "labelSuffix": "",
  1103. "minValue": null,
  1104. "maxValue": null,
  1105. "position": 0,
  1106. "showAdd": 0,
  1107. "formPosition": 0,
  1108. "textGenerate": 0,
  1109. "symptomType": 0,
  1110. "exclusionType": 0,
  1111. "judgeType": null,
  1112. "copyType": "0",
  1113. "questionDetailList": [
  1114. {
  1115. "id": 70,
  1116. "name": "天",
  1117. "labelPrefix": "",
  1118. "labelSuffix": "",
  1119. "questionId": 56,
  1120. "orderNo": 1,
  1121. "code": null,
  1122. "defaultSelect": "0",
  1123. "remark": null
  1124. },
  1125. {
  1126. "id": 71,
  1127. "name": "小时",
  1128. "labelPrefix": "",
  1129. "labelSuffix": "",
  1130. "questionId": 56,
  1131. "orderNo": 2,
  1132. "code": null,
  1133. "defaultSelect": "0",
  1134. "remark": null
  1135. },
  1136. {
  1137. "id": 72,
  1138. "name": "月",
  1139. "labelPrefix": "",
  1140. "labelSuffix": "",
  1141. "questionId": 56,
  1142. "orderNo": 3,
  1143. "code": null,
  1144. "defaultSelect": "0",
  1145. "remark": null
  1146. },
  1147. {
  1148. "id": 73,
  1149. "name": "年",
  1150. "labelPrefix": "",
  1151. "labelSuffix": "",
  1152. "questionId": 56,
  1153. "orderNo": 4,
  1154. "code": null,
  1155. "defaultSelect": "0",
  1156. "remark": null
  1157. }
  1158. ],
  1159. "questionMapping": [],
  1160. "remark": null
  1161. }
  1162. ],
  1163. "remark": null,
  1164. "moduleId": 2,
  1165. "questionId": 11,
  1166. "flag": "",
  1167. "relationModule": null
  1168. },
  1169. {
  1170. "id": 57,
  1171. "name": "诱因",
  1172. "tagName": "诱因",
  1173. "type": 1,
  1174. "controlType": 1,
  1175. "subType": 0,
  1176. "tagType": "1",
  1177. "labelPrefix": "",
  1178. "labelSuffix": "",
  1179. "minValue": null,
  1180. "maxValue": null,
  1181. "position": null,
  1182. "showAdd": 0,
  1183. "formPosition": null,
  1184. "textGenerate": 0,
  1185. "symptomType": null,
  1186. "exclusionType": null,
  1187. "judgeType": null,
  1188. "copyType": "0",
  1189. "questionDetailList": [
  1190. {
  1191. "id": 74,
  1192. "name": "无明显诱因下",
  1193. "labelPrefix": "",
  1194. "labelSuffix": "",
  1195. "questionId": 57,
  1196. "orderNo": 1,
  1197. "code": null,
  1198. "defaultSelect": "0",
  1199. "remark": null
  1200. },
  1201. {
  1202. "id": 75,
  1203. "name": "因淋雨后",
  1204. "labelPrefix": "",
  1205. "labelSuffix": "",
  1206. "questionId": 57,
  1207. "orderNo": 2,
  1208. "code": null,
  1209. "defaultSelect": "0",
  1210. "remark": null
  1211. },
  1212. {
  1213. "id": 76,
  1214. "name": "因受凉后",
  1215. "labelPrefix": "",
  1216. "labelSuffix": "",
  1217. "questionId": 57,
  1218. "orderNo": 3,
  1219. "code": null,
  1220. "defaultSelect": "0",
  1221. "remark": null
  1222. },
  1223. {
  1224. "id": 77,
  1225. "name": "接触类似病人后出现",
  1226. "labelPrefix": "",
  1227. "labelSuffix": "",
  1228. "questionId": 57,
  1229. "orderNo": 4,
  1230. "code": null,
  1231. "defaultSelect": "0",
  1232. "remark": null
  1233. },
  1234. {
  1235. "id": 78,
  1236. "name": "接触刺激性气体后",
  1237. "labelPrefix": "",
  1238. "labelSuffix": "",
  1239. "questionId": 57,
  1240. "orderNo": 5,
  1241. "code": null,
  1242. "defaultSelect": "0",
  1243. "remark": null
  1244. },
  1245. {
  1246. "id": 79,
  1247. "name": "运动劳累后",
  1248. "labelPrefix": "",
  1249. "labelSuffix": "",
  1250. "questionId": 57,
  1251. "orderNo": 6,
  1252. "code": null,
  1253. "defaultSelect": "0",
  1254. "remark": null
  1255. },
  1256. {
  1257. "id": 80,
  1258. "name": "于季节变化时",
  1259. "labelPrefix": "",
  1260. "labelSuffix": "",
  1261. "questionId": 57,
  1262. "orderNo": 7,
  1263. "code": null,
  1264. "defaultSelect": "0",
  1265. "remark": null
  1266. }
  1267. ],
  1268. "questionMapping": [],
  1269. "remark": null,
  1270. "moduleId": 2,
  1271. "questionId": 57,
  1272. "flag": "",
  1273. "relationModule": null
  1274. },
  1275. {
  1276. "id": 7,
  1277. "name": "主诉通用特征描述",
  1278. "tagName": "主诉通用特征描述",
  1279. "type": 1,
  1280. "controlType": 0,
  1281. "subType": 0,
  1282. "tagType": "2",
  1283. "labelPrefix": "",
  1284. "labelSuffix": "",
  1285. "minValue": null,
  1286. "maxValue": null,
  1287. "position": null,
  1288. "showAdd": 0,
  1289. "formPosition": null,
  1290. "textGenerate": 0,
  1291. "symptomType": null,
  1292. "exclusionType": null,
  1293. "judgeType": null,
  1294. "copyType": "0",
  1295. "questionDetailList": [],
  1296. "questionMapping": [
  1297. {
  1298. "id": 14,
  1299. "name": "",
  1300. "tagName": "主诉通用特征描述-上中下",
  1301. "type": 1,
  1302. "controlType": 2,
  1303. "subType": 0,
  1304. "tagType": "1",
  1305. "labelPrefix": "",
  1306. "labelSuffix": "",
  1307. "minValue": null,
  1308. "maxValue": null,
  1309. "position": 0,
  1310. "showAdd": 0,
  1311. "formPosition": 0,
  1312. "textGenerate": 0,
  1313. "symptomType": 0,
  1314. "exclusionType": 0,
  1315. "judgeType": null,
  1316. "copyType": "0",
  1317. "questionDetailList": [
  1318. {
  1319. "id": 11,
  1320. "name": "上",
  1321. "labelPrefix": "",
  1322. "labelSuffix": "",
  1323. "questionId": 14,
  1324. "orderNo": 1,
  1325. "code": null,
  1326. "defaultSelect": "0",
  1327. "remark": null
  1328. },
  1329. {
  1330. "id": 12,
  1331. "name": "中",
  1332. "labelPrefix": "",
  1333. "labelSuffix": "",
  1334. "questionId": 14,
  1335. "orderNo": 2,
  1336. "code": null,
  1337. "defaultSelect": "0",
  1338. "remark": null
  1339. },
  1340. {
  1341. "id": 13,
  1342. "name": "下",
  1343. "labelPrefix": "",
  1344. "labelSuffix": "",
  1345. "questionId": 14,
  1346. "orderNo": 3,
  1347. "code": null,
  1348. "defaultSelect": "0",
  1349. "remark": null
  1350. }
  1351. ],
  1352. "questionMapping": [],
  1353. "remark": null
  1354. },
  1355. {
  1356. "id": 15,
  1357. "name": "",
  1358. "tagName": "主诉通用特征描述-前后",
  1359. "type": 1,
  1360. "controlType": 2,
  1361. "subType": 0,
  1362. "tagType": "1",
  1363. "labelPrefix": "",
  1364. "labelSuffix": "",
  1365. "minValue": null,
  1366. "maxValue": null,
  1367. "position": 0,
  1368. "showAdd": 0,
  1369. "formPosition": 0,
  1370. "textGenerate": 0,
  1371. "symptomType": 0,
  1372. "exclusionType": 0,
  1373. "judgeType": null,
  1374. "copyType": "0",
  1375. "questionDetailList": [
  1376. {
  1377. "id": 14,
  1378. "name": "前",
  1379. "labelPrefix": "",
  1380. "labelSuffix": "",
  1381. "questionId": 15,
  1382. "orderNo": 1,
  1383. "code": null,
  1384. "defaultSelect": "0",
  1385. "remark": null
  1386. },
  1387. {
  1388. "id": 15,
  1389. "name": "后",
  1390. "labelPrefix": "",
  1391. "labelSuffix": "",
  1392. "questionId": 15,
  1393. "orderNo": 2,
  1394. "code": null,
  1395. "defaultSelect": "0",
  1396. "remark": null
  1397. }
  1398. ],
  1399. "questionMapping": [],
  1400. "remark": null
  1401. },
  1402. {
  1403. "id": 16,
  1404. "name": "",
  1405. "tagName": "主诉通用特征描述-左右",
  1406. "type": 1,
  1407. "controlType": 2,
  1408. "subType": 0,
  1409. "tagType": "1",
  1410. "labelPrefix": "",
  1411. "labelSuffix": "",
  1412. "minValue": null,
  1413. "maxValue": null,
  1414. "position": 0,
  1415. "showAdd": 0,
  1416. "formPosition": 0,
  1417. "textGenerate": 0,
  1418. "symptomType": 0,
  1419. "exclusionType": 0,
  1420. "judgeType": null,
  1421. "copyType": "0",
  1422. "questionDetailList": [
  1423. {
  1424. "id": 16,
  1425. "name": "左",
  1426. "labelPrefix": "",
  1427. "labelSuffix": "",
  1428. "questionId": 16,
  1429. "orderNo": 1,
  1430. "code": null,
  1431. "defaultSelect": "0",
  1432. "remark": null
  1433. },
  1434. {
  1435. "id": 17,
  1436. "name": "右",
  1437. "labelPrefix": "",
  1438. "labelSuffix": "",
  1439. "questionId": 16,
  1440. "orderNo": 2,
  1441. "code": null,
  1442. "defaultSelect": "0",
  1443. "remark": null
  1444. }
  1445. ],
  1446. "questionMapping": [],
  1447. "remark": null
  1448. },
  1449. {
  1450. "id": 18,
  1451. "name": "",
  1452. "tagName": "主诉通用特征描述-特性",
  1453. "type": 1,
  1454. "controlType": 2,
  1455. "subType": 0,
  1456. "tagType": "1",
  1457. "labelPrefix": "",
  1458. "labelSuffix": "",
  1459. "minValue": null,
  1460. "maxValue": null,
  1461. "position": 0,
  1462. "showAdd": 0,
  1463. "formPosition": 0,
  1464. "textGenerate": 0,
  1465. "symptomType": 0,
  1466. "exclusionType": 0,
  1467. "judgeType": null,
  1468. "copyType": "0",
  1469. "questionDetailList": [
  1470. {
  1471. "id": 6,
  1472. "name": "反复",
  1473. "labelPrefix": "",
  1474. "labelSuffix": "",
  1475. "questionId": 18,
  1476. "orderNo": 1,
  1477. "code": null,
  1478. "defaultSelect": "0",
  1479. "remark": null
  1480. },
  1481. {
  1482. "id": 7,
  1483. "name": "突发",
  1484. "labelPrefix": "",
  1485. "labelSuffix": "",
  1486. "questionId": 18,
  1487. "orderNo": 2,
  1488. "code": null,
  1489. "defaultSelect": "0",
  1490. "remark": null
  1491. },
  1492. {
  1493. "id": 8,
  1494. "name": "持续",
  1495. "labelPrefix": "",
  1496. "labelSuffix": "",
  1497. "questionId": 18,
  1498. "orderNo": 3,
  1499. "code": null,
  1500. "defaultSelect": "0",
  1501. "remark": null
  1502. },
  1503. {
  1504. "id": 9,
  1505. "name": "间断",
  1506. "labelPrefix": "",
  1507. "labelSuffix": "",
  1508. "questionId": 18,
  1509. "orderNo": 4,
  1510. "code": null,
  1511. "defaultSelect": "0",
  1512. "remark": null
  1513. }
  1514. ],
  1515. "questionMapping": [],
  1516. "remark": null
  1517. },
  1518. {
  1519. "id": 17,
  1520. "name": "",
  1521. "tagName": "主诉通用特征描述-加重再发",
  1522. "type": 1,
  1523. "controlType": 2,
  1524. "subType": 0,
  1525. "tagType": "1",
  1526. "labelPrefix": "",
  1527. "labelSuffix": "",
  1528. "minValue": null,
  1529. "maxValue": null,
  1530. "position": 0,
  1531. "showAdd": 0,
  1532. "formPosition": 0,
  1533. "textGenerate": 0,
  1534. "symptomType": 0,
  1535. "exclusionType": 0,
  1536. "judgeType": null,
  1537. "copyType": "0",
  1538. "questionDetailList": [
  1539. {
  1540. "id": 19,
  1541. "name": "加重",
  1542. "labelPrefix": "",
  1543. "labelSuffix": "",
  1544. "questionId": 17,
  1545. "orderNo": 1,
  1546. "code": null,
  1547. "defaultSelect": "0",
  1548. "remark": null
  1549. },
  1550. {
  1551. "id": 18,
  1552. "name": "再发",
  1553. "labelPrefix": "",
  1554. "labelSuffix": "",
  1555. "questionId": 17,
  1556. "orderNo": 2,
  1557. "code": null,
  1558. "defaultSelect": "0",
  1559. "remark": null
  1560. }
  1561. ],
  1562. "questionMapping": [],
  1563. "remark": null
  1564. }
  1565. ],
  1566. "remark": null,
  1567. "moduleId": 2,
  1568. "questionId": 7,
  1569. "flag": "",
  1570. "relationModule": null
  1571. },
  1572. {
  1573. "id": 8,
  1574. "name": "添加症状",
  1575. "tagName": "添加症状",
  1576. "type": 1,
  1577. "controlType": 0,
  1578. "subType": 0,
  1579. "tagType": "2",
  1580. "labelPrefix": "",
  1581. "labelSuffix": "",
  1582. "minValue": null,
  1583. "maxValue": null,
  1584. "position": null,
  1585. "showAdd": 0,
  1586. "formPosition": null,
  1587. "textGenerate": 0,
  1588. "symptomType": null,
  1589. "exclusionType": null,
  1590. "judgeType": null,
  1591. "copyType": "1",
  1592. "questionDetailList": [],
  1593. "questionMapping": [
  1594. {
  1595. "id": 9,
  1596. "name": "",
  1597. "tagName": "主诉-伴",
  1598. "type": 1,
  1599. "controlType": 4,
  1600. "subType": 0,
  1601. "tagType": "1",
  1602. "labelPrefix": "",
  1603. "labelSuffix": "",
  1604. "minValue": null,
  1605. "maxValue": null,
  1606. "position": 0,
  1607. "showAdd": 0,
  1608. "formPosition": 0,
  1609. "textGenerate": 0,
  1610. "symptomType": 0,
  1611. "exclusionType": 0,
  1612. "judgeType": null,
  1613. "copyType": "0",
  1614. "questionDetailList": [
  1615. {
  1616. "id": 10,
  1617. "name": "伴",
  1618. "labelPrefix": "",
  1619. "labelSuffix": "",
  1620. "questionId": 9,
  1621. "orderNo": 1,
  1622. "code": 1,
  1623. "defaultSelect": "0",
  1624. "remark": null
  1625. }
  1626. ],
  1627. "questionMapping": [],
  1628. "remark": null
  1629. },
  1630. {
  1631. "id": 10,
  1632. "name": "",
  1633. "tagName": "主诉-推送",
  1634. "type": 1,
  1635. "controlType": 99,
  1636. "subType": 0,
  1637. "tagType": "1",
  1638. "labelPrefix": "",
  1639. "labelSuffix": "",
  1640. "minValue": null,
  1641. "maxValue": null,
  1642. "position": 0,
  1643. "showAdd": 0,
  1644. "formPosition": 0,
  1645. "textGenerate": 0,
  1646. "symptomType": 0,
  1647. "exclusionType": 0,
  1648. "judgeType": null,
  1649. "copyType": "0",
  1650. "questionDetailList": [],
  1651. "questionMapping": [],
  1652. "remark": null
  1653. }
  1654. ],
  1655. "remark": null,
  1656. "moduleId": 2,
  1657. "questionId": 8,
  1658. "flag": "2",
  1659. "relationModule": null
  1660. },
  1661. {
  1662. "id": 21,
  1663. "name": "其他症状",
  1664. "tagName": "其他症状",
  1665. "type": 1,
  1666. "controlType": 0,
  1667. "subType": 0,
  1668. "tagType": "2",
  1669. "labelPrefix": "",
  1670. "labelSuffix": "",
  1671. "minValue": null,
  1672. "maxValue": null,
  1673. "position": null,
  1674. "showAdd": 0,
  1675. "formPosition": null,
  1676. "textGenerate": 2,
  1677. "symptomType": null,
  1678. "exclusionType": null,
  1679. "judgeType": null,
  1680. "copyType": "1",
  1681. "questionDetailList": [],
  1682. "questionMapping": [
  1683. {
  1684. "id": 22,
  1685. "name": "",
  1686. "tagName": "其他症状-伴无",
  1687. "type": 1,
  1688. "controlType": 2,
  1689. "subType": 0,
  1690. "tagType": "1",
  1691. "labelPrefix": "",
  1692. "labelSuffix": "",
  1693. "minValue": null,
  1694. "maxValue": null,
  1695. "position": 0,
  1696. "showAdd": 0,
  1697. "formPosition": 0,
  1698. "textGenerate": 0,
  1699. "symptomType": 0,
  1700. "exclusionType": 0,
  1701. "judgeType": null,
  1702. "copyType": "0",
  1703. "questionDetailList": [
  1704. {
  1705. "id": 20,
  1706. "name": "伴",
  1707. "labelPrefix": "",
  1708. "labelSuffix": "",
  1709. "questionId": 22,
  1710. "orderNo": 1,
  1711. "code": 1,
  1712. "defaultSelect": "0",
  1713. "remark": null
  1714. },
  1715. {
  1716. "id": 21,
  1717. "name": "无",
  1718. "labelPrefix": "",
  1719. "labelSuffix": "",
  1720. "questionId": 22,
  1721. "orderNo": 2,
  1722. "code": 2,
  1723. "defaultSelect": "0",
  1724. "remark": null
  1725. }
  1726. ],
  1727. "questionMapping": [],
  1728. "remark": null
  1729. },
  1730. {
  1731. "id": 10,
  1732. "name": "",
  1733. "tagName": "主诉-推送",
  1734. "type": 1,
  1735. "controlType": 99,
  1736. "subType": 0,
  1737. "tagType": "1",
  1738. "labelPrefix": "",
  1739. "labelSuffix": "",
  1740. "minValue": null,
  1741. "maxValue": null,
  1742. "position": 0,
  1743. "showAdd": 0,
  1744. "formPosition": 0,
  1745. "textGenerate": 0,
  1746. "symptomType": 0,
  1747. "exclusionType": 0,
  1748. "judgeType": null,
  1749. "copyType": "0",
  1750. "questionDetailList": [],
  1751. "questionMapping": [],
  1752. "remark": null
  1753. }
  1754. ],
  1755. "remark": null,
  1756. "moduleId": 2,
  1757. "questionId": 21,
  1758. "flag": "",
  1759. "relationModule": null
  1760. },
  1761. {
  1762. "id": 23,
  1763. "name": "有无治疗",
  1764. "tagName": "有无治疗",
  1765. "type": 1,
  1766. "controlType": 0,
  1767. "subType": 0,
  1768. "tagType": "5",
  1769. "labelPrefix": "",
  1770. "labelSuffix": "",
  1771. "minValue": null,
  1772. "maxValue": null,
  1773. "position": null,
  1774. "showAdd": 0,
  1775. "formPosition": null,
  1776. "textGenerate": 0,
  1777. "symptomType": null,
  1778. "exclusionType": null,
  1779. "judgeType": null,
  1780. "copyType": "0",
  1781. "questionDetailList": [],
  1782. "questionMapping": [
  1783. {
  1784. "id": 24,
  1785. "name": "",
  1786. "tagName": "有无治疗-未经诊疗",
  1787. "type": 1,
  1788. "controlType": 1,
  1789. "subType": 0,
  1790. "tagType": "1",
  1791. "labelPrefix": "",
  1792. "labelSuffix": "",
  1793. "minValue": null,
  1794. "maxValue": null,
  1795. "position": 0,
  1796. "showAdd": 0,
  1797. "formPosition": 0,
  1798. "textGenerate": 0,
  1799. "symptomType": 0,
  1800. "exclusionType": 0,
  1801. "judgeType": null,
  1802. "copyType": "0",
  1803. "questionDetailList": [
  1804. {
  1805. "id": 89,
  1806. "name": "未经诊疗",
  1807. "labelPrefix": "",
  1808. "labelSuffix": "",
  1809. "questionId": 24,
  1810. "orderNo": 1,
  1811. "code": null,
  1812. "defaultSelect": "0",
  1813. "remark": null
  1814. }
  1815. ],
  1816. "questionMapping": [],
  1817. "remark": null
  1818. },
  1819. {
  1820. "id": 25,
  1821. "name": "(填写)",
  1822. "tagName": "有无治疗-使用()后好转",
  1823. "type": 1,
  1824. "controlType": 6,
  1825. "subType": 0,
  1826. "tagType": "1",
  1827. "labelPrefix": "使用",
  1828. "labelSuffix": "后好转",
  1829. "minValue": null,
  1830. "maxValue": null,
  1831. "position": 0,
  1832. "showAdd": 0,
  1833. "formPosition": 0,
  1834. "textGenerate": 0,
  1835. "symptomType": 0,
  1836. "exclusionType": 0,
  1837. "judgeType": null,
  1838. "copyType": "0",
  1839. "questionDetailList": [],
  1840. "questionMapping": [],
  1841. "remark": null
  1842. },
  1843. {
  1844. "id": 26,
  1845. "name": "(填写)",
  1846. "tagName": "有无治疗-使用()后未见明显好转",
  1847. "type": 1,
  1848. "controlType": 6,
  1849. "subType": 0,
  1850. "tagType": "1",
  1851. "labelPrefix": "使用",
  1852. "labelSuffix": "后未见明显好转",
  1853. "minValue": null,
  1854. "maxValue": null,
  1855. "position": 0,
  1856. "showAdd": 0,
  1857. "formPosition": 0,
  1858. "textGenerate": 0,
  1859. "symptomType": 0,
  1860. "exclusionType": 0,
  1861. "judgeType": null,
  1862. "copyType": "0",
  1863. "questionDetailList": [],
  1864. "questionMapping": [],
  1865. "remark": null
  1866. }
  1867. ],
  1868. "remark": null,
  1869. "moduleId": 2,
  1870. "questionId": 23,
  1871. "flag": "",
  1872. "relationModule": null
  1873. },
  1874. {
  1875. "id": 14,
  1876. "name": null,
  1877. "tagName": null,
  1878. "type": null,
  1879. "controlType": null,
  1880. "subType": null,
  1881. "tagType": null,
  1882. "labelPrefix": "",
  1883. "labelSuffix": "。",
  1884. "minValue": null,
  1885. "maxValue": null,
  1886. "position": null,
  1887. "showAdd": null,
  1888. "formPosition": null,
  1889. "textGenerate": null,
  1890. "symptomType": null,
  1891. "exclusionType": null,
  1892. "judgeType": null,
  1893. "copyType": null,
  1894. "questionDetailList": [],
  1895. "questionMapping": [],
  1896. "remark": "病程变化",
  1897. "moduleId": 2,
  1898. "questionId": null,
  1899. "flag": "3",
  1900. "relationModule": 3
  1901. },
  1902. {
  1903. "id": 32,
  1904. "name": "精神状态",
  1905. "tagName": "精神状态",
  1906. "type": 1,
  1907. "controlType": 1,
  1908. "subType": 0,
  1909. "tagType": "1",
  1910. "labelPrefix": "",
  1911. "labelSuffix": "",
  1912. "minValue": null,
  1913. "maxValue": null,
  1914. "position": null,
  1915. "showAdd": 0,
  1916. "formPosition": null,
  1917. "textGenerate": 0,
  1918. "symptomType": null,
  1919. "exclusionType": null,
  1920. "judgeType": null,
  1921. "copyType": "0",
  1922. "questionDetailList": [
  1923. {
  1924. "id": 30,
  1925. "name": "精神佳",
  1926. "labelPrefix": "",
  1927. "labelSuffix": "",
  1928. "questionId": 32,
  1929. "orderNo": 1,
  1930. "code": null,
  1931. "defaultSelect": "0",
  1932. "remark": null
  1933. },
  1934. {
  1935. "id": 31,
  1936. "name": "精神差",
  1937. "labelPrefix": "",
  1938. "labelSuffix": "",
  1939. "questionId": 32,
  1940. "orderNo": 2,
  1941. "code": null,
  1942. "defaultSelect": "0",
  1943. "remark": null
  1944. }
  1945. ],
  1946. "questionMapping": [],
  1947. "remark": null,
  1948. "moduleId": 2,
  1949. "questionId": 32,
  1950. "flag": "",
  1951. "relationModule": null
  1952. },
  1953. {
  1954. "id": 60,
  1955. "name": "意识情况",
  1956. "tagName": "意识情况",
  1957. "type": 1,
  1958. "controlType": 1,
  1959. "subType": 0,
  1960. "tagType": "1",
  1961. "labelPrefix": "",
  1962. "labelSuffix": "",
  1963. "minValue": null,
  1964. "maxValue": null,
  1965. "position": null,
  1966. "showAdd": 0,
  1967. "formPosition": null,
  1968. "textGenerate": 0,
  1969. "symptomType": null,
  1970. "exclusionType": null,
  1971. "judgeType": null,
  1972. "copyType": "0",
  1973. "questionDetailList": [
  1974. {
  1975. "id": 81,
  1976. "name": "意识模糊",
  1977. "labelPrefix": "",
  1978. "labelSuffix": "",
  1979. "questionId": 60,
  1980. "orderNo": 1,
  1981. "code": null,
  1982. "defaultSelect": "0",
  1983. "remark": null
  1984. }
  1985. ],
  1986. "questionMapping": [],
  1987. "remark": null,
  1988. "moduleId": 2,
  1989. "questionId": 60,
  1990. "flag": "",
  1991. "relationModule": null
  1992. },
  1993. {
  1994. "id": 61,
  1995. "name": "食欲",
  1996. "tagName": "食欲",
  1997. "type": 1,
  1998. "controlType": 1,
  1999. "subType": 0,
  2000. "tagType": "1",
  2001. "labelPrefix": "",
  2002. "labelSuffix": "",
  2003. "minValue": null,
  2004. "maxValue": null,
  2005. "position": null,
  2006. "showAdd": 0,
  2007. "formPosition": null,
  2008. "textGenerate": 0,
  2009. "symptomType": null,
  2010. "exclusionType": null,
  2011. "judgeType": null,
  2012. "copyType": "0",
  2013. "questionDetailList": [
  2014. {
  2015. "id": 82,
  2016. "name": "食欲欠佳",
  2017. "labelPrefix": "",
  2018. "labelSuffix": "",
  2019. "questionId": 61,
  2020. "orderNo": 1,
  2021. "code": null,
  2022. "defaultSelect": "0",
  2023. "remark": null
  2024. }
  2025. ],
  2026. "questionMapping": [],
  2027. "remark": null,
  2028. "moduleId": 2,
  2029. "questionId": 61,
  2030. "flag": "",
  2031. "relationModule": null
  2032. },
  2033. {
  2034. "id": 62,
  2035. "name": "睡眠",
  2036. "tagName": "睡眠",
  2037. "type": 1,
  2038. "controlType": 1,
  2039. "subType": 0,
  2040. "tagType": "1",
  2041. "labelPrefix": "",
  2042. "labelSuffix": "",
  2043. "minValue": null,
  2044. "maxValue": null,
  2045. "position": null,
  2046. "showAdd": 0,
  2047. "formPosition": null,
  2048. "textGenerate": 0,
  2049. "symptomType": null,
  2050. "exclusionType": null,
  2051. "judgeType": null,
  2052. "copyType": "0",
  2053. "questionDetailList": [
  2054. {
  2055. "id": 83,
  2056. "name": "睡眠质量欠佳",
  2057. "labelPrefix": "",
  2058. "labelSuffix": "",
  2059. "questionId": 62,
  2060. "orderNo": 1,
  2061. "code": null,
  2062. "defaultSelect": "0",
  2063. "remark": null
  2064. }
  2065. ],
  2066. "questionMapping": [],
  2067. "remark": null,
  2068. "moduleId": 2,
  2069. "questionId": 62,
  2070. "flag": "",
  2071. "relationModule": null
  2072. },
  2073. {
  2074. "id": 63,
  2075. "name": "二便情况",
  2076. "tagName": "二便情况",
  2077. "type": 1,
  2078. "controlType": 1,
  2079. "subType": 0,
  2080. "tagType": "1",
  2081. "labelPrefix": "",
  2082. "labelSuffix": "",
  2083. "minValue": null,
  2084. "maxValue": null,
  2085. "position": null,
  2086. "showAdd": 0,
  2087. "formPosition": null,
  2088. "textGenerate": 0,
  2089. "symptomType": null,
  2090. "exclusionType": null,
  2091. "judgeType": null,
  2092. "copyType": "0",
  2093. "questionDetailList": [
  2094. {
  2095. "id": 84,
  2096. "name": "黑便",
  2097. "labelPrefix": "",
  2098. "labelSuffix": "",
  2099. "questionId": 63,
  2100. "orderNo": 1,
  2101. "code": null,
  2102. "defaultSelect": "0",
  2103. "remark": null
  2104. }
  2105. ],
  2106. "questionMapping": [],
  2107. "remark": null,
  2108. "moduleId": 2,
  2109. "questionId": 63,
  2110. "flag": "",
  2111. "relationModule": null
  2112. },
  2113. {
  2114. "id": 64,
  2115. "name": "体重情况",
  2116. "tagName": "体重情况",
  2117. "type": 1,
  2118. "controlType": 1,
  2119. "subType": 0,
  2120. "tagType": "1",
  2121. "labelPrefix": "",
  2122. "labelSuffix": "",
  2123. "minValue": null,
  2124. "maxValue": null,
  2125. "position": null,
  2126. "showAdd": 0,
  2127. "formPosition": null,
  2128. "textGenerate": 0,
  2129. "symptomType": null,
  2130. "exclusionType": null,
  2131. "judgeType": null,
  2132. "copyType": "0",
  2133. "questionDetailList": [
  2134. {
  2135. "id": 87,
  2136. "name": "体重减轻",
  2137. "labelPrefix": "",
  2138. "labelSuffix": "",
  2139. "questionId": 64,
  2140. "orderNo": 1,
  2141. "code": null,
  2142. "defaultSelect": "0",
  2143. "remark": null
  2144. }
  2145. ],
  2146. "questionMapping": [],
  2147. "remark": null,
  2148. "moduleId": 2,
  2149. "questionId": 64,
  2150. "flag": "",
  2151. "relationModule": null
  2152. }
  2153. ],
  2154. "remark": null
  2155. },
  2156. {
  2157. "id": 3,
  2158. "name": "病程变化模板",
  2159. "moduleDetailDTOList": [
  2160. {
  2161. "id": 67,
  2162. "name": "添加其他症状",
  2163. "tagName": "添加其他症状",
  2164. "type": 1,
  2165. "controlType": 0,
  2166. "subType": 0,
  2167. "tagType": "2",
  2168. "labelPrefix": "",
  2169. "labelSuffix": "",
  2170. "minValue": null,
  2171. "maxValue": null,
  2172. "position": null,
  2173. "showAdd": 0,
  2174. "formPosition": null,
  2175. "textGenerate": 0,
  2176. "symptomType": null,
  2177. "exclusionType": null,
  2178. "judgeType": null,
  2179. "copyType": "0",
  2180. "questionDetailList": [],
  2181. "questionMapping": [
  2182. {
  2183. "id": 68,
  2184. "name": "",
  2185. "tagName": "添加其他症状-推送",
  2186. "type": 1,
  2187. "controlType": 99,
  2188. "subType": 0,
  2189. "tagType": "1",
  2190. "labelPrefix": "",
  2191. "labelSuffix": "",
  2192. "minValue": null,
  2193. "maxValue": null,
  2194. "position": 0,
  2195. "showAdd": 0,
  2196. "formPosition": 0,
  2197. "textGenerate": 0,
  2198. "symptomType": 0,
  2199. "exclusionType": 0,
  2200. "judgeType": null,
  2201. "copyType": "0",
  2202. "questionDetailList": [],
  2203. "questionMapping": [],
  2204. "remark": null
  2205. }
  2206. ],
  2207. "remark": null,
  2208. "moduleId": 3,
  2209. "questionId": 67,
  2210. "flag": "",
  2211. "relationModule": null
  2212. },
  2213. {
  2214. "id": 23,
  2215. "name": "有无治疗",
  2216. "tagName": "有无治疗",
  2217. "type": 1,
  2218. "controlType": 0,
  2219. "subType": 0,
  2220. "tagType": "5",
  2221. "labelPrefix": "",
  2222. "labelSuffix": "",
  2223. "minValue": null,
  2224. "maxValue": null,
  2225. "position": null,
  2226. "showAdd": 0,
  2227. "formPosition": null,
  2228. "textGenerate": 0,
  2229. "symptomType": null,
  2230. "exclusionType": null,
  2231. "judgeType": null,
  2232. "copyType": "0",
  2233. "questionDetailList": [],
  2234. "questionMapping": [
  2235. {
  2236. "id": 24,
  2237. "name": "",
  2238. "tagName": "有无治疗-未经诊疗",
  2239. "type": 1,
  2240. "controlType": 1,
  2241. "subType": 0,
  2242. "tagType": "1",
  2243. "labelPrefix": "",
  2244. "labelSuffix": "",
  2245. "minValue": null,
  2246. "maxValue": null,
  2247. "position": 0,
  2248. "showAdd": 0,
  2249. "formPosition": 0,
  2250. "textGenerate": 0,
  2251. "symptomType": 0,
  2252. "exclusionType": 0,
  2253. "judgeType": null,
  2254. "copyType": "0",
  2255. "questionDetailList": [
  2256. {
  2257. "id": 89,
  2258. "name": "未经诊疗",
  2259. "labelPrefix": "",
  2260. "labelSuffix": "",
  2261. "questionId": 24,
  2262. "orderNo": 1,
  2263. "code": null,
  2264. "defaultSelect": "0",
  2265. "remark": null
  2266. }
  2267. ],
  2268. "questionMapping": [],
  2269. "remark": null
  2270. },
  2271. {
  2272. "id": 25,
  2273. "name": "(填写)",
  2274. "tagName": "有无治疗-使用()后好转",
  2275. "type": 1,
  2276. "controlType": 6,
  2277. "subType": 0,
  2278. "tagType": "1",
  2279. "labelPrefix": "使用",
  2280. "labelSuffix": "后好转",
  2281. "minValue": null,
  2282. "maxValue": null,
  2283. "position": 0,
  2284. "showAdd": 0,
  2285. "formPosition": 0,
  2286. "textGenerate": 0,
  2287. "symptomType": 0,
  2288. "exclusionType": 0,
  2289. "judgeType": null,
  2290. "copyType": "0",
  2291. "questionDetailList": [],
  2292. "questionMapping": [],
  2293. "remark": null
  2294. },
  2295. {
  2296. "id": 26,
  2297. "name": "(填写)",
  2298. "tagName": "有无治疗-使用()后未见明显好转",
  2299. "type": 1,
  2300. "controlType": 6,
  2301. "subType": 0,
  2302. "tagType": "1",
  2303. "labelPrefix": "使用",
  2304. "labelSuffix": "后未见明显好转",
  2305. "minValue": null,
  2306. "maxValue": null,
  2307. "position": 0,
  2308. "showAdd": 0,
  2309. "formPosition": 0,
  2310. "textGenerate": 0,
  2311. "symptomType": 0,
  2312. "exclusionType": 0,
  2313. "judgeType": null,
  2314. "copyType": "0",
  2315. "questionDetailList": [],
  2316. "questionMapping": [],
  2317. "remark": null
  2318. }
  2319. ],
  2320. "remark": null,
  2321. "moduleId": 3,
  2322. "questionId": 23,
  2323. "flag": "",
  2324. "relationModule": null
  2325. },
  2326. {
  2327. "id": 11,
  2328. "name": "",
  2329. "tagName": "主诉时间",
  2330. "type": 1,
  2331. "controlType": 0,
  2332. "subType": 0,
  2333. "tagType": "3",
  2334. "labelPrefix": "",
  2335. "labelSuffix": "",
  2336. "minValue": null,
  2337. "maxValue": null,
  2338. "position": null,
  2339. "showAdd": 0,
  2340. "formPosition": null,
  2341. "textGenerate": 0,
  2342. "symptomType": null,
  2343. "exclusionType": null,
  2344. "judgeType": null,
  2345. "copyType": "0",
  2346. "questionDetailList": [],
  2347. "questionMapping": [
  2348. {
  2349. "id": 20,
  2350. "name": "(填写)",
  2351. "tagName": "主诉时间-输入框",
  2352. "type": 1,
  2353. "controlType": 7,
  2354. "subType": 0,
  2355. "tagType": "1",
  2356. "labelPrefix": "",
  2357. "labelSuffix": "",
  2358. "minValue": null,
  2359. "maxValue": null,
  2360. "position": 0,
  2361. "showAdd": 0,
  2362. "formPosition": 0,
  2363. "textGenerate": 0,
  2364. "symptomType": 0,
  2365. "exclusionType": 0,
  2366. "judgeType": null,
  2367. "copyType": "0",
  2368. "questionDetailList": [],
  2369. "questionMapping": [],
  2370. "remark": null
  2371. },
  2372. {
  2373. "id": 56,
  2374. "name": "单位",
  2375. "tagName": "主诉时间-单位",
  2376. "type": 1,
  2377. "controlType": 1,
  2378. "subType": 0,
  2379. "tagType": "1",
  2380. "labelPrefix": "",
  2381. "labelSuffix": "",
  2382. "minValue": null,
  2383. "maxValue": null,
  2384. "position": 0,
  2385. "showAdd": 0,
  2386. "formPosition": 0,
  2387. "textGenerate": 0,
  2388. "symptomType": 0,
  2389. "exclusionType": 0,
  2390. "judgeType": null,
  2391. "copyType": "0",
  2392. "questionDetailList": [
  2393. {
  2394. "id": 70,
  2395. "name": "天",
  2396. "labelPrefix": "",
  2397. "labelSuffix": "",
  2398. "questionId": 56,
  2399. "orderNo": 1,
  2400. "code": null,
  2401. "defaultSelect": "0",
  2402. "remark": null
  2403. },
  2404. {
  2405. "id": 71,
  2406. "name": "小时",
  2407. "labelPrefix": "",
  2408. "labelSuffix": "",
  2409. "questionId": 56,
  2410. "orderNo": 2,
  2411. "code": null,
  2412. "defaultSelect": "0",
  2413. "remark": null
  2414. },
  2415. {
  2416. "id": 72,
  2417. "name": "月",
  2418. "labelPrefix": "",
  2419. "labelSuffix": "",
  2420. "questionId": 56,
  2421. "orderNo": 3,
  2422. "code": null,
  2423. "defaultSelect": "0",
  2424. "remark": null
  2425. },
  2426. {
  2427. "id": 73,
  2428. "name": "年",
  2429. "labelPrefix": "",
  2430. "labelSuffix": "",
  2431. "questionId": 56,
  2432. "orderNo": 4,
  2433. "code": null,
  2434. "defaultSelect": "0",
  2435. "remark": null
  2436. }
  2437. ],
  2438. "questionMapping": [],
  2439. "remark": null
  2440. }
  2441. ],
  2442. "remark": null,
  2443. "moduleId": 3,
  2444. "questionId": 11,
  2445. "flag": "",
  2446. "relationModule": null
  2447. },
  2448. {
  2449. "id": 57,
  2450. "name": "诱因",
  2451. "tagName": "诱因",
  2452. "type": 1,
  2453. "controlType": 1,
  2454. "subType": 0,
  2455. "tagType": "1",
  2456. "labelPrefix": "",
  2457. "labelSuffix": "",
  2458. "minValue": null,
  2459. "maxValue": null,
  2460. "position": null,
  2461. "showAdd": 0,
  2462. "formPosition": null,
  2463. "textGenerate": 0,
  2464. "symptomType": null,
  2465. "exclusionType": null,
  2466. "judgeType": null,
  2467. "copyType": "0",
  2468. "questionDetailList": [
  2469. {
  2470. "id": 74,
  2471. "name": "无明显诱因下",
  2472. "labelPrefix": "",
  2473. "labelSuffix": "",
  2474. "questionId": 57,
  2475. "orderNo": 1,
  2476. "code": null,
  2477. "defaultSelect": "0",
  2478. "remark": null
  2479. },
  2480. {
  2481. "id": 75,
  2482. "name": "因淋雨后",
  2483. "labelPrefix": "",
  2484. "labelSuffix": "",
  2485. "questionId": 57,
  2486. "orderNo": 2,
  2487. "code": null,
  2488. "defaultSelect": "0",
  2489. "remark": null
  2490. },
  2491. {
  2492. "id": 76,
  2493. "name": "因受凉后",
  2494. "labelPrefix": "",
  2495. "labelSuffix": "",
  2496. "questionId": 57,
  2497. "orderNo": 3,
  2498. "code": null,
  2499. "defaultSelect": "0",
  2500. "remark": null
  2501. },
  2502. {
  2503. "id": 77,
  2504. "name": "接触类似病人后出现",
  2505. "labelPrefix": "",
  2506. "labelSuffix": "",
  2507. "questionId": 57,
  2508. "orderNo": 4,
  2509. "code": null,
  2510. "defaultSelect": "0",
  2511. "remark": null
  2512. },
  2513. {
  2514. "id": 78,
  2515. "name": "接触刺激性气体后",
  2516. "labelPrefix": "",
  2517. "labelSuffix": "",
  2518. "questionId": 57,
  2519. "orderNo": 5,
  2520. "code": null,
  2521. "defaultSelect": "0",
  2522. "remark": null
  2523. },
  2524. {
  2525. "id": 79,
  2526. "name": "运动劳累后",
  2527. "labelPrefix": "",
  2528. "labelSuffix": "",
  2529. "questionId": 57,
  2530. "orderNo": 6,
  2531. "code": null,
  2532. "defaultSelect": "0",
  2533. "remark": null
  2534. },
  2535. {
  2536. "id": 80,
  2537. "name": "于季节变化时",
  2538. "labelPrefix": "",
  2539. "labelSuffix": "",
  2540. "questionId": 57,
  2541. "orderNo": 7,
  2542. "code": null,
  2543. "defaultSelect": "0",
  2544. "remark": null
  2545. }
  2546. ],
  2547. "questionMapping": [],
  2548. "remark": null,
  2549. "moduleId": 3,
  2550. "questionId": 57,
  2551. "flag": "",
  2552. "relationModule": null
  2553. },
  2554. {
  2555. "id": 66,
  2556. "name": "上诉",
  2557. "tagName": "上诉",
  2558. "type": 1,
  2559. "controlType": 1,
  2560. "subType": 0,
  2561. "tagType": "1",
  2562. "labelPrefix": "",
  2563. "labelSuffix": "",
  2564. "minValue": null,
  2565. "maxValue": null,
  2566. "position": null,
  2567. "showAdd": 0,
  2568. "formPosition": null,
  2569. "textGenerate": 0,
  2570. "symptomType": null,
  2571. "exclusionType": null,
  2572. "judgeType": null,
  2573. "copyType": "0",
  2574. "questionDetailList": [
  2575. {
  2576. "id": 88,
  2577. "name": "上述症状加重",
  2578. "labelPrefix": "",
  2579. "labelSuffix": "",
  2580. "questionId": 66,
  2581. "orderNo": 1,
  2582. "code": null,
  2583. "defaultSelect": "0",
  2584. "remark": null
  2585. }
  2586. ],
  2587. "questionMapping": [],
  2588. "remark": null,
  2589. "moduleId": 3,
  2590. "questionId": 66,
  2591. "flag": "",
  2592. "relationModule": null
  2593. }
  2594. ],
  2595. "remark": null
  2596. },
  2597. {
  2598. "id": 4,
  2599. "name": "其他史模板",
  2600. "moduleDetailDTOList": [
  2601. {
  2602. "id": 45,
  2603. "name": "既往史",
  2604. "tagName": "既往史",
  2605. "type": 3,
  2606. "controlType": 0,
  2607. "subType": 0,
  2608. "tagType": "6",
  2609. "labelPrefix": "",
  2610. "labelSuffix": "",
  2611. "minValue": null,
  2612. "maxValue": null,
  2613. "position": null,
  2614. "showAdd": 0,
  2615. "formPosition": null,
  2616. "textGenerate": 0,
  2617. "symptomType": null,
  2618. "exclusionType": null,
  2619. "judgeType": null,
  2620. "copyType": "1",
  2621. "questionDetailList": [],
  2622. "questionMapping": [
  2623. {
  2624. "id": 51,
  2625. "name": "",
  2626. "tagName": "既往史无殊",
  2627. "type": 3,
  2628. "controlType": 1,
  2629. "subType": 0,
  2630. "tagType": "1",
  2631. "labelPrefix": "",
  2632. "labelSuffix": "",
  2633. "minValue": null,
  2634. "maxValue": null,
  2635. "position": 0,
  2636. "showAdd": 0,
  2637. "formPosition": 1,
  2638. "textGenerate": 0,
  2639. "symptomType": 0,
  2640. "exclusionType": 1,
  2641. "judgeType": null,
  2642. "copyType": "0",
  2643. "questionDetailList": [
  2644. {
  2645. "id": 64,
  2646. "name": "既往史无殊",
  2647. "labelPrefix": "",
  2648. "labelSuffix": "",
  2649. "questionId": 51,
  2650. "orderNo": 1,
  2651. "code": null,
  2652. "defaultSelect": "0",
  2653. "remark": null
  2654. }
  2655. ],
  2656. "questionMapping": [],
  2657. "remark": null
  2658. },
  2659. {
  2660. "id": 52,
  2661. "name": "",
  2662. "tagName": "既往史-无",
  2663. "type": 3,
  2664. "controlType": 1,
  2665. "subType": 0,
  2666. "tagType": "1",
  2667. "labelPrefix": "",
  2668. "labelSuffix": "",
  2669. "minValue": null,
  2670. "maxValue": null,
  2671. "position": 0,
  2672. "showAdd": 0,
  2673. "formPosition": 0,
  2674. "textGenerate": 0,
  2675. "symptomType": 0,
  2676. "exclusionType": 0,
  2677. "judgeType": null,
  2678. "copyType": "0",
  2679. "questionDetailList": [
  2680. {
  2681. "id": 63,
  2682. "name": "无",
  2683. "labelPrefix": "",
  2684. "labelSuffix": "",
  2685. "questionId": 52,
  2686. "orderNo": 1,
  2687. "code": 2,
  2688. "defaultSelect": "0",
  2689. "remark": null
  2690. }
  2691. ],
  2692. "questionMapping": [],
  2693. "remark": null
  2694. },
  2695. {
  2696. "id": 71,
  2697. "name": "",
  2698. "tagName": "既往史-疾病",
  2699. "type": 3,
  2700. "controlType": 0,
  2701. "subType": 0,
  2702. "tagType": "1",
  2703. "labelPrefix": "",
  2704. "labelSuffix": "",
  2705. "minValue": null,
  2706. "maxValue": null,
  2707. "position": 0,
  2708. "showAdd": 0,
  2709. "formPosition": 0,
  2710. "textGenerate": 0,
  2711. "symptomType": 0,
  2712. "exclusionType": 0,
  2713. "judgeType": null,
  2714. "copyType": "0",
  2715. "questionDetailList": [],
  2716. "questionMapping": [
  2717. {
  2718. "id": 46,
  2719. "name": "高血压",
  2720. "tagName": "高血压",
  2721. "type": 3,
  2722. "controlType": 0,
  2723. "subType": 0,
  2724. "tagType": "3",
  2725. "labelPrefix": "",
  2726. "labelSuffix": "",
  2727. "minValue": null,
  2728. "maxValue": null,
  2729. "position": 0,
  2730. "showAdd": 0,
  2731. "formPosition": 0,
  2732. "textGenerate": 0,
  2733. "symptomType": 0,
  2734. "exclusionType": 0,
  2735. "judgeType": null,
  2736. "copyType": "0",
  2737. "questionDetailList": [],
  2738. "questionMapping": [],
  2739. "remark": null
  2740. }
  2741. ],
  2742. "remark": null
  2743. }
  2744. ],
  2745. "remark": null,
  2746. "moduleId": 4,
  2747. "questionId": 45,
  2748. "flag": "",
  2749. "relationModule": null
  2750. },
  2751. {
  2752. "id": 53,
  2753. "name": "过敏史",
  2754. "tagName": "过敏史",
  2755. "type": 3,
  2756. "controlType": 0,
  2757. "subType": 0,
  2758. "tagType": "2",
  2759. "labelPrefix": "",
  2760. "labelSuffix": "",
  2761. "minValue": null,
  2762. "maxValue": null,
  2763. "position": null,
  2764. "showAdd": 0,
  2765. "formPosition": null,
  2766. "textGenerate": 0,
  2767. "symptomType": null,
  2768. "exclusionType": null,
  2769. "judgeType": null,
  2770. "copyType": "0",
  2771. "questionDetailList": [],
  2772. "questionMapping": [
  2773. {
  2774. "id": 54,
  2775. "name": "",
  2776. "tagName": "过敏史-过敏史无殊",
  2777. "type": 3,
  2778. "controlType": 1,
  2779. "subType": 0,
  2780. "tagType": "1",
  2781. "labelPrefix": "",
  2782. "labelSuffix": "",
  2783. "minValue": null,
  2784. "maxValue": null,
  2785. "position": 1,
  2786. "showAdd": 0,
  2787. "formPosition": 0,
  2788. "textGenerate": 0,
  2789. "symptomType": 0,
  2790. "exclusionType": 1,
  2791. "judgeType": null,
  2792. "copyType": "0",
  2793. "questionDetailList": [
  2794. {
  2795. "id": 65,
  2796. "name": "过敏史无殊",
  2797. "labelPrefix": "",
  2798. "labelSuffix": "",
  2799. "questionId": 54,
  2800. "orderNo": 1,
  2801. "code": null,
  2802. "defaultSelect": "0",
  2803. "remark": null
  2804. }
  2805. ],
  2806. "questionMapping": [],
  2807. "remark": null
  2808. },
  2809. {
  2810. "id": 55,
  2811. "name": "",
  2812. "tagName": "过敏史-具体项",
  2813. "type": 3,
  2814. "controlType": 2,
  2815. "subType": 0,
  2816. "tagType": "1",
  2817. "labelPrefix": "",
  2818. "labelSuffix": "",
  2819. "minValue": null,
  2820. "maxValue": null,
  2821. "position": 0,
  2822. "showAdd": 0,
  2823. "formPosition": 0,
  2824. "textGenerate": 0,
  2825. "symptomType": 0,
  2826. "exclusionType": 0,
  2827. "judgeType": null,
  2828. "copyType": "0",
  2829. "questionDetailList": [
  2830. {
  2831. "id": 66,
  2832. "name": "有“青霉素”过敏",
  2833. "labelPrefix": "",
  2834. "labelSuffix": "",
  2835. "questionId": 55,
  2836. "orderNo": 0,
  2837. "code": null,
  2838. "defaultSelect": "0",
  2839. "remark": null
  2840. },
  2841. {
  2842. "id": 67,
  2843. "name": "有“磺胺类”过敏",
  2844. "labelPrefix": "",
  2845. "labelSuffix": "",
  2846. "questionId": 55,
  2847. "orderNo": 0,
  2848. "code": null,
  2849. "defaultSelect": "0",
  2850. "remark": null
  2851. },
  2852. {
  2853. "id": 68,
  2854. "name": "有“蚕豆”过敏",
  2855. "labelPrefix": "",
  2856. "labelSuffix": "",
  2857. "questionId": 55,
  2858. "orderNo": 0,
  2859. "code": null,
  2860. "defaultSelect": "0",
  2861. "remark": null
  2862. },
  2863. {
  2864. "id": 69,
  2865. "name": "有“#(填写)#”过敏",
  2866. "labelPrefix": "",
  2867. "labelSuffix": "",
  2868. "questionId": 55,
  2869. "orderNo": 0,
  2870. "code": null,
  2871. "defaultSelect": "0",
  2872. "remark": null
  2873. }
  2874. ],
  2875. "questionMapping": [],
  2876. "remark": null
  2877. }
  2878. ],
  2879. "remark": null,
  2880. "moduleId": 4,
  2881. "questionId": 53,
  2882. "flag": "",
  2883. "relationModule": null
  2884. },
  2885. {
  2886. "id": 75,
  2887. "name": "个人史",
  2888. "tagName": "个人史",
  2889. "type": 3,
  2890. "controlType": 0,
  2891. "subType": 0,
  2892. "tagType": "2",
  2893. "labelPrefix": "",
  2894. "labelSuffix": "",
  2895. "minValue": null,
  2896. "maxValue": null,
  2897. "position": null,
  2898. "showAdd": 0,
  2899. "formPosition": null,
  2900. "textGenerate": 0,
  2901. "symptomType": null,
  2902. "exclusionType": null,
  2903. "judgeType": null,
  2904. "copyType": "0",
  2905. "questionDetailList": [],
  2906. "questionMapping": [
  2907. {
  2908. "id": 76,
  2909. "name": "",
  2910. "tagName": "个人史无殊",
  2911. "type": 3,
  2912. "controlType": 2,
  2913. "subType": 0,
  2914. "tagType": "1",
  2915. "labelPrefix": "",
  2916. "labelSuffix": "",
  2917. "minValue": null,
  2918. "maxValue": null,
  2919. "position": 0,
  2920. "showAdd": 0,
  2921. "formPosition": 1,
  2922. "textGenerate": 0,
  2923. "symptomType": 0,
  2924. "exclusionType": 1,
  2925. "judgeType": null,
  2926. "copyType": "0",
  2927. "questionDetailList": [],
  2928. "questionMapping": [],
  2929. "remark": null
  2930. },
  2931. {
  2932. "id": 77,
  2933. "name": "",
  2934. "tagName": "无烟酒嗜好",
  2935. "type": 3,
  2936. "controlType": 2,
  2937. "subType": 0,
  2938. "tagType": "1",
  2939. "labelPrefix": "",
  2940. "labelSuffix": "",
  2941. "minValue": null,
  2942. "maxValue": null,
  2943. "position": 0,
  2944. "showAdd": 0,
  2945. "formPosition": 0,
  2946. "textGenerate": 0,
  2947. "symptomType": 0,
  2948. "exclusionType": 0,
  2949. "judgeType": null,
  2950. "copyType": "0",
  2951. "questionDetailList": [
  2952. {
  2953. "id": 90,
  2954. "name": "无烟酒嗜好",
  2955. "labelPrefix": "",
  2956. "labelSuffix": "",
  2957. "questionId": 77,
  2958. "orderNo": 1,
  2959. "code": null,
  2960. "defaultSelect": "0",
  2961. "remark": null
  2962. },
  2963. {
  2964. "id": 91,
  2965. "name": "无饮酒嗜好",
  2966. "labelPrefix": "",
  2967. "labelSuffix": "",
  2968. "questionId": 77,
  2969. "orderNo": 2,
  2970. "code": null,
  2971. "defaultSelect": "0",
  2972. "remark": null
  2973. },
  2974. {
  2975. "id": 92,
  2976. "name": "无吸烟嗜好",
  2977. "labelPrefix": "",
  2978. "labelSuffix": "",
  2979. "questionId": 77,
  2980. "orderNo": 3,
  2981. "code": null,
  2982. "defaultSelect": "0",
  2983. "remark": null
  2984. }
  2985. ],
  2986. "questionMapping": [],
  2987. "remark": null
  2988. },
  2989. {
  2990. "id": 78,
  2991. "name": "",
  2992. "tagName": "有烟酒习惯",
  2993. "type": 3,
  2994. "controlType": 2,
  2995. "subType": 0,
  2996. "tagType": "1",
  2997. "labelPrefix": "",
  2998. "labelSuffix": "",
  2999. "minValue": null,
  3000. "maxValue": null,
  3001. "position": 0,
  3002. "showAdd": 0,
  3003. "formPosition": 0,
  3004. "textGenerate": 0,
  3005. "symptomType": 0,
  3006. "exclusionType": 0,
  3007. "judgeType": null,
  3008. "copyType": "0",
  3009. "questionDetailList": [
  3010. {
  3011. "id": 93,
  3012. "name": "有饮酒习惯",
  3013. "labelPrefix": "",
  3014. "labelSuffix": "",
  3015. "questionId": 78,
  3016. "orderNo": 1,
  3017. "code": null,
  3018. "defaultSelect": "0",
  3019. "remark": null
  3020. },
  3021. {
  3022. "id": 94,
  3023. "name": "有吸烟习惯",
  3024. "labelPrefix": "",
  3025. "labelSuffix": "",
  3026. "questionId": 78,
  3027. "orderNo": 2,
  3028. "code": null,
  3029. "defaultSelect": "0",
  3030. "remark": null
  3031. },
  3032. {
  3033. "id": 95,
  3034. "name": "饮酒,每天约#()#ml,已饮#()#年",
  3035. "labelPrefix": "",
  3036. "labelSuffix": "",
  3037. "questionId": 78,
  3038. "orderNo": 3,
  3039. "code": null,
  3040. "defaultSelect": "0",
  3041. "remark": null
  3042. },
  3043. {
  3044. "id": 96,
  3045. "name": "吸烟,每天约#()#支,已吸#()#年",
  3046. "labelPrefix": "",
  3047. "labelSuffix": "",
  3048. "questionId": 78,
  3049. "orderNo": 4,
  3050. "code": null,
  3051. "defaultSelect": "0",
  3052. "remark": null
  3053. }
  3054. ],
  3055. "questionMapping": [],
  3056. "remark": null
  3057. }
  3058. ],
  3059. "remark": null,
  3060. "moduleId": 4,
  3061. "questionId": 75,
  3062. "flag": "",
  3063. "relationModule": null
  3064. },
  3065. {
  3066. "id": 79,
  3067. "name": "月经史",
  3068. "tagName": "月经史",
  3069. "type": 3,
  3070. "controlType": 0,
  3071. "subType": 0,
  3072. "tagType": "6",
  3073. "labelPrefix": "",
  3074. "labelSuffix": "",
  3075. "minValue": null,
  3076. "maxValue": null,
  3077. "position": null,
  3078. "showAdd": 0,
  3079. "formPosition": null,
  3080. "textGenerate": 0,
  3081. "symptomType": null,
  3082. "exclusionType": null,
  3083. "judgeType": null,
  3084. "copyType": "0",
  3085. "questionDetailList": [],
  3086. "questionMapping": [],
  3087. "remark": null,
  3088. "moduleId": 4,
  3089. "questionId": 79,
  3090. "flag": "",
  3091. "relationModule": null
  3092. }
  3093. ],
  3094. "remark": null
  3095. }
  3096. ],
  3097. symptom:[//添加症状 模拟数据
  3098. {
  3099. "id": 106,
  3100. "name": "咳痰",
  3101. "tagName": "咳痰",
  3102. "type": 1,
  3103. "controlType": 0,
  3104. },
  3105. {
  3106. "id": 4,
  3107. "name": "发热",
  3108. "tagName": "发热",
  3109. "type": 1,
  3110. "controlType": 0,
  3111. },
  3112. {
  3113. "id": 1,
  3114. "name": "咳嗽",
  3115. "tagName": "咳嗽",
  3116. "type": 1,
  3117. "controlType": 0,
  3118. },
  3119. ]
  3120. }