default.json 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553
  1. {
  2. "Id": "2013ff22-1147-4d67-9fb3-d6ec1f28d39e",
  3. "UpdateTime": "2021-05-27T14:34:40.7222881+08:00",
  4. "IsCustom": false,
  5. "Author": "",
  6. "Name": "常规",
  7. "PagePadding": {
  8. "Left": 56.83,
  9. "Top": 56.83,
  10. "Right": 56.83,
  11. "Bottom": 56.83
  12. },
  13. "PageSize": {
  14. "Height": 841.88976377952747,
  15. "Width": 595.275590551181
  16. },
  17. "HeaderHeight": null,
  18. "FooterHeight": null,
  19. "HeaderDistance": 34.0,
  20. "FooterDistance": 34.0,
  21. "Tags": {},
  22. "CustomizeTranslation": {
  23. "Chinese": {},
  24. "English": {},
  25. "German": {},
  26. "Greek": {},
  27. "Malay": {},
  28. "Portuguese": {},
  29. "Romanian": {},
  30. "Spanish": {},
  31. "Swedish": {},
  32. "Norwegian": {},
  33. "Danish": {},
  34. "Finnish": {},
  35. "French": {},
  36. "Polish": {},
  37. "Russian": {},
  38. "Uighur": {},
  39. "Italian": {},
  40. "Czech": {},
  41. "Khmer": {},
  42. "Hungarian": {}
  43. },
  44. "CustomizeComments": [],
  45. "CustomizeReportComments": [],
  46. "CustomizeCalculations": [],
  47. "Blocks": [
  48. {
  49. "AutoHide": false,
  50. "IsAverageColumnWidth": false,
  51. "AllowBreakAcrossPages": true,
  52. "ColumnDefinitions": [
  53. {
  54. "Width": 477.0
  55. }
  56. ],
  57. "RowDefinitions": [
  58. {
  59. "Height": 31.875,
  60. "Type": "MinValue",
  61. "MinHeight": 18.0
  62. },
  63. {
  64. "Height": 23.11,
  65. "Type": "MinValue",
  66. "MinHeight": 18.0
  67. }
  68. ],
  69. "Cells": [
  70. {
  71. "Row": 0,
  72. "Column": 0,
  73. "RowSpan": 1,
  74. "ColumnSpan": 1
  75. },
  76. {
  77. "Blocks": [
  78. {
  79. "LineSpace": 0.0,
  80. "Elements": [
  81. {
  82. "IsReadOnly": false,
  83. "FontName": "宋体",
  84. "FontSize": 24.0,
  85. "FontStyles": [],
  86. "FontColor": {
  87. "A": 255,
  88. "R": 0,
  89. "G": 0,
  90. "B": 0
  91. },
  92. "Background": {
  93. "A": 255,
  94. "R": 255,
  95. "G": 255,
  96. "B": 255
  97. },
  98. "LineLength": 10,
  99. "LineWidth": 105.0,
  100. "TextWrap": false,
  101. "Id": "1790e450-19a6-4000-8895-3dda6a43aef9",
  102. "Index": 0,
  103. "Tag": {
  104. "Id": "7abbaa61-a91d-4399-a3f4-df29117d2d59",
  105. "Name": "HospitalName",
  106. "IsDefault": true,
  107. "ElementTagType": "General"
  108. },
  109. "MeasureTag": null,
  110. "HorizontalAlignment": "Stretch",
  111. "VerticalAlignment": "Center",
  112. "Margin": {
  113. "Left": 0.0,
  114. "Top": 0.0,
  115. "Right": 0.0,
  116. "Bottom": 0.0
  117. },
  118. "ElementType": {
  119. "Name": "InputText"
  120. }
  121. }
  122. ],
  123. "Id": "c760d81e-ff14-4dcb-8082-bec7fc93382b",
  124. "Index": 0,
  125. "Tag": null,
  126. "MeasureTag": null,
  127. "HorizontalAlignment": "Center",
  128. "VerticalAlignment": "Stretch",
  129. "Margin": {
  130. "Left": 0.0,
  131. "Top": 0.0,
  132. "Right": 0.0,
  133. "Bottom": 0.0
  134. },
  135. "ElementType": {
  136. "Name": "Paragraph"
  137. }
  138. }
  139. ],
  140. "Background": {
  141. "A": 255,
  142. "R": 255,
  143. "G": 255,
  144. "B": 255
  145. },
  146. "WidthType": "FixedValue",
  147. "HeightType": "MinValue",
  148. "Borders": {
  149. "Left": {
  150. "BorderStyle": "None",
  151. "Color": {
  152. "A": 255,
  153. "R": 0,
  154. "G": 0,
  155. "B": 0
  156. },
  157. "Thickness": 1.0
  158. },
  159. "Top": {
  160. "BorderStyle": "None",
  161. "Color": {
  162. "A": 255,
  163. "R": 0,
  164. "G": 0,
  165. "B": 0
  166. },
  167. "Thickness": 1.0
  168. },
  169. "Right": {
  170. "BorderStyle": "None",
  171. "Color": {
  172. "A": 255,
  173. "R": 0,
  174. "G": 0,
  175. "B": 0
  176. },
  177. "Thickness": 1.0
  178. },
  179. "Bottom": {
  180. "BorderStyle": "None",
  181. "Color": {
  182. "A": 255,
  183. "R": 0,
  184. "G": 0,
  185. "B": 0
  186. },
  187. "Thickness": 1.0
  188. }
  189. },
  190. "Id": "130a84bd-6adf-4497-8bc7-3be44439d04e",
  191. "Index": 0,
  192. "Tag": null,
  193. "MeasureTag": null,
  194. "HorizontalAlignment": "Stretch",
  195. "VerticalAlignment": "Center",
  196. "Margin": {
  197. "Left": 0.0,
  198. "Top": 0.0,
  199. "Right": 0.0,
  200. "Bottom": 0.0
  201. },
  202. "ElementType": {
  203. "Name": "RTCell"
  204. }
  205. },
  206. {
  207. "Row": 1,
  208. "Column": 0,
  209. "RowSpan": 1,
  210. "ColumnSpan": 1
  211. },
  212. {
  213. "Blocks": [
  214. {
  215. "LineSpace": 0.0,
  216. "Elements": [
  217. {
  218. "Text": "超声检查报告单",
  219. "FontName": "宋体",
  220. "FontSize": 15.0,
  221. "FontStyles": [],
  222. "FontColor": {
  223. "A": 255,
  224. "R": 0,
  225. "G": 0,
  226. "B": 0
  227. },
  228. "Background": {
  229. "A": 255,
  230. "R": 255,
  231. "G": 255,
  232. "B": 255
  233. },
  234. "LineLength": 7,
  235. "LineWidth": 0.0,
  236. "TextWrap": false,
  237. "Id": "ab3b3430-0063-4a35-9049-0489d2e784fd",
  238. "Index": 0,
  239. "Tag": null,
  240. "MeasureTag": null,
  241. "HorizontalAlignment": "Stretch",
  242. "VerticalAlignment": "Center",
  243. "Margin": {
  244. "Left": 0.0,
  245. "Top": 0.0,
  246. "Right": 0.0,
  247. "Bottom": 0.0
  248. },
  249. "ElementType": {
  250. "Name": "StaticText"
  251. }
  252. }
  253. ],
  254. "Id": "d80b3dcd-a7ab-4fea-a4fd-e2dc8cf7718a",
  255. "Index": 0,
  256. "Tag": null,
  257. "MeasureTag": null,
  258. "HorizontalAlignment": "Center",
  259. "VerticalAlignment": "Stretch",
  260. "Margin": {
  261. "Left": 0.0,
  262. "Top": 0.0,
  263. "Right": 0.0,
  264. "Bottom": 0.0
  265. },
  266. "ElementType": {
  267. "Name": "Paragraph"
  268. }
  269. }
  270. ],
  271. "Background": {
  272. "A": 255,
  273. "R": 255,
  274. "G": 255,
  275. "B": 255
  276. },
  277. "WidthType": "FixedValue",
  278. "HeightType": "MinValue",
  279. "Borders": {
  280. "Left": {
  281. "BorderStyle": "None",
  282. "Color": {
  283. "A": 255,
  284. "R": 0,
  285. "G": 0,
  286. "B": 0
  287. },
  288. "Thickness": 1.0
  289. },
  290. "Top": {
  291. "BorderStyle": "None",
  292. "Color": {
  293. "A": 255,
  294. "R": 0,
  295. "G": 0,
  296. "B": 0
  297. },
  298. "Thickness": 1.0
  299. },
  300. "Right": {
  301. "BorderStyle": "None",
  302. "Color": {
  303. "A": 255,
  304. "R": 0,
  305. "G": 0,
  306. "B": 0
  307. },
  308. "Thickness": 1.0
  309. },
  310. "Bottom": {
  311. "BorderStyle": "None",
  312. "Color": {
  313. "A": 255,
  314. "R": 0,
  315. "G": 0,
  316. "B": 0
  317. },
  318. "Thickness": 1.0
  319. }
  320. },
  321. "Id": "ab834a78-669a-49a2-a30c-2810b7e2e14d",
  322. "Index": 0,
  323. "Tag": null,
  324. "MeasureTag": null,
  325. "HorizontalAlignment": "Stretch",
  326. "VerticalAlignment": "Center",
  327. "Margin": {
  328. "Left": 0.0,
  329. "Top": 0.0,
  330. "Right": 0.0,
  331. "Bottom": 0.0
  332. },
  333. "ElementType": {
  334. "Name": "RTCell"
  335. }
  336. }
  337. ],
  338. "Id": "751a3122-4118-4e53-82a9-c6d15b6dbeed",
  339. "Index": 0,
  340. "Tag": null,
  341. "MeasureTag": null,
  342. "HorizontalAlignment": "Center",
  343. "VerticalAlignment": "Stretch",
  344. "Margin": {
  345. "Left": 0.0,
  346. "Top": 0.0,
  347. "Right": 0.0,
  348. "Bottom": 0.0
  349. },
  350. "ElementType": {
  351. "Name": "RTTable"
  352. }
  353. },
  354. {
  355. "LineSpace": 0.0,
  356. "Elements": [
  357. {
  358. "Width": 478.61559055118107,
  359. "BorderStyle": "Solid",
  360. "Stroke": {
  361. "A": 255,
  362. "R": 0,
  363. "G": 0,
  364. "B": 0
  365. },
  366. "Thickness": 1.0,
  367. "Id": "d723cd84-6ec4-466d-970c-983d5fe52592",
  368. "Index": 0,
  369. "Tag": null,
  370. "MeasureTag": null,
  371. "HorizontalAlignment": "Stretch",
  372. "VerticalAlignment": "Stretch",
  373. "Margin": {
  374. "Left": 0.0,
  375. "Top": 0.0,
  376. "Right": 0.0,
  377. "Bottom": 0.0
  378. },
  379. "ElementType": {
  380. "Name": "Line"
  381. }
  382. }
  383. ],
  384. "Id": "17c4e774-4eb9-4853-9638-179716f58d80",
  385. "Index": 1,
  386. "Tag": null,
  387. "MeasureTag": null,
  388. "HorizontalAlignment": "Stretch",
  389. "VerticalAlignment": "Stretch",
  390. "Margin": {
  391. "Left": 0.0,
  392. "Top": 0.0,
  393. "Right": 0.0,
  394. "Bottom": 0.0
  395. },
  396. "ElementType": {
  397. "Name": "Paragraph"
  398. }
  399. },
  400. {
  401. "AutoHide": false,
  402. "IsAverageColumnWidth": false,
  403. "AllowBreakAcrossPages": true,
  404. "ColumnDefinitions": [
  405. {
  406. "Width": 159.5
  407. },
  408. {
  409. "Width": 157.49999999999997
  410. },
  411. {
  412. "Width": 159.49999999999997
  413. }
  414. ],
  415. "RowDefinitions": [
  416. {
  417. "Height": 21.0,
  418. "Type": "MinValue",
  419. "MinHeight": 18.0
  420. },
  421. {
  422. "Height": 21.0,
  423. "Type": "MinValue",
  424. "MinHeight": 18.0
  425. }
  426. ],
  427. "Cells": [
  428. {
  429. "Row": 0,
  430. "Column": 0,
  431. "RowSpan": 1,
  432. "ColumnSpan": 1
  433. },
  434. {
  435. "Blocks": [
  436. {
  437. "LineSpace": 0.0,
  438. "Elements": [
  439. {
  440. "Text": "姓 名:",
  441. "FontName": "宋体",
  442. "FontSize": 10.5,
  443. "FontStyles": [],
  444. "FontColor": {
  445. "A": 255,
  446. "R": 0,
  447. "G": 0,
  448. "B": 0
  449. },
  450. "Background": {
  451. "A": 255,
  452. "R": 255,
  453. "G": 255,
  454. "B": 255
  455. },
  456. "LineLength": 7,
  457. "LineWidth": 0.0,
  458. "TextWrap": false,
  459. "Id": "d8b059ef-e16e-4d7c-9751-383c70f3a849",
  460. "Index": 0,
  461. "Tag": null,
  462. "MeasureTag": null,
  463. "HorizontalAlignment": "Stretch",
  464. "VerticalAlignment": "Center",
  465. "Margin": {
  466. "Left": 0.0,
  467. "Top": 0.0,
  468. "Right": 0.0,
  469. "Bottom": 0.0
  470. },
  471. "ElementType": {
  472. "Name": "StaticText"
  473. }
  474. },
  475. {
  476. "IsReadOnly": false,
  477. "FontName": "宋体",
  478. "FontSize": 10.5,
  479. "FontStyles": [],
  480. "FontColor": {
  481. "A": 255,
  482. "R": 0,
  483. "G": 0,
  484. "B": 0
  485. },
  486. "Background": {
  487. "A": 255,
  488. "R": 255,
  489. "G": 255,
  490. "B": 255
  491. },
  492. "LineLength": 9,
  493. "LineWidth": 90.91,
  494. "TextWrap": false,
  495. "Id": "97ec1395-3e8d-4ca9-a36a-0baace5646da",
  496. "Index": 1,
  497. "Tag": {
  498. "Id": "91bbaa61-a91d-4399-a3f4-df29117d2d59",
  499. "Name": "PatientName",
  500. "IsDefault": true,
  501. "ElementTagType": "General"
  502. },
  503. "MeasureTag": null,
  504. "HorizontalAlignment": "Stretch",
  505. "VerticalAlignment": "Center",
  506. "Margin": {
  507. "Left": 0.0,
  508. "Top": 0.0,
  509. "Right": 0.0,
  510. "Bottom": 0.0
  511. },
  512. "ElementType": {
  513. "Name": "InputText"
  514. }
  515. }
  516. ],
  517. "Id": "24d66f5a-66c5-43cb-b6f1-5d969d301811",
  518. "Index": 0,
  519. "Tag": null,
  520. "MeasureTag": null,
  521. "HorizontalAlignment": "Stretch",
  522. "VerticalAlignment": "Stretch",
  523. "Margin": {
  524. "Left": 0.0,
  525. "Top": 0.0,
  526. "Right": 0.0,
  527. "Bottom": 0.0
  528. },
  529. "ElementType": {
  530. "Name": "Paragraph"
  531. }
  532. }
  533. ],
  534. "Background": {
  535. "A": 255,
  536. "R": 255,
  537. "G": 255,
  538. "B": 255
  539. },
  540. "WidthType": "FixedValue",
  541. "HeightType": "MinValue",
  542. "Borders": {
  543. "Left": {
  544. "BorderStyle": "None",
  545. "Color": {
  546. "A": 255,
  547. "R": 0,
  548. "G": 0,
  549. "B": 0
  550. },
  551. "Thickness": 1.0
  552. },
  553. "Top": {
  554. "BorderStyle": "None",
  555. "Color": {
  556. "A": 255,
  557. "R": 0,
  558. "G": 0,
  559. "B": 0
  560. },
  561. "Thickness": 1.0
  562. },
  563. "Right": {
  564. "BorderStyle": "None",
  565. "Color": {
  566. "A": 255,
  567. "R": 0,
  568. "G": 0,
  569. "B": 0
  570. },
  571. "Thickness": 1.0
  572. },
  573. "Bottom": {
  574. "BorderStyle": "None",
  575. "Color": {
  576. "A": 255,
  577. "R": 0,
  578. "G": 0,
  579. "B": 0
  580. },
  581. "Thickness": 1.0
  582. }
  583. },
  584. "Id": "711880db-7210-4f0a-8b50-4e8f663ca0a4",
  585. "Index": 0,
  586. "Tag": null,
  587. "MeasureTag": null,
  588. "HorizontalAlignment": "Stretch",
  589. "VerticalAlignment": "Stretch",
  590. "Margin": {
  591. "Left": 0.0,
  592. "Top": 0.0,
  593. "Right": 0.0,
  594. "Bottom": 0.0
  595. },
  596. "ElementType": {
  597. "Name": "RTCell"
  598. }
  599. },
  600. {
  601. "Row": 0,
  602. "Column": 1,
  603. "RowSpan": 1,
  604. "ColumnSpan": 1
  605. },
  606. {
  607. "Blocks": [
  608. {
  609. "LineSpace": 0.0,
  610. "Elements": [
  611. {
  612. "Text": "性 别:",
  613. "FontName": "宋体",
  614. "FontSize": 10.5,
  615. "FontStyles": [],
  616. "FontColor": {
  617. "A": 255,
  618. "R": 0,
  619. "G": 0,
  620. "B": 0
  621. },
  622. "Background": {
  623. "A": 255,
  624. "R": 255,
  625. "G": 255,
  626. "B": 255
  627. },
  628. "LineLength": 5,
  629. "LineWidth": 0.0,
  630. "TextWrap": false,
  631. "Id": "44010909-8ea4-4514-89eb-a873f99848fa",
  632. "Index": 0,
  633. "Tag": null,
  634. "MeasureTag": null,
  635. "HorizontalAlignment": "Stretch",
  636. "VerticalAlignment": "Center",
  637. "Margin": {
  638. "Left": 0.0,
  639. "Top": 0.0,
  640. "Right": 0.0,
  641. "Bottom": 0.0
  642. },
  643. "ElementType": {
  644. "Name": "StaticText"
  645. }
  646. },
  647. {
  648. "IsReadOnly": false,
  649. "Items": [
  650. "未选择",
  651. "男",
  652. "女"
  653. ],
  654. "DisplayStyle": "OnlyShowSelectedItem",
  655. "FontName": "宋体",
  656. "FontSize": 10.5,
  657. "FontStyles": [],
  658. "FontColor": {
  659. "A": 255,
  660. "R": 0,
  661. "G": 0,
  662. "B": 0
  663. },
  664. "Background": {
  665. "A": 255,
  666. "R": 255,
  667. "G": 255,
  668. "B": 255
  669. },
  670. "LineLength": 9,
  671. "LineWidth": 90.91,
  672. "TextWrap": false,
  673. "Id": "f2e65e15-1a55-47ca-9e6c-42f9e8659daf",
  674. "Index": 1,
  675. "Tag": {
  676. "Id": "93bbaa61-a91d-4399-a3f4-df29117d2d59",
  677. "Name": "PatientGender",
  678. "IsDefault": true,
  679. "ElementTagType": "General"
  680. },
  681. "MeasureTag": null,
  682. "HorizontalAlignment": "Stretch",
  683. "VerticalAlignment": "Center",
  684. "Margin": {
  685. "Left": 0.0,
  686. "Top": 0.0,
  687. "Right": 0.0,
  688. "Bottom": 0.0
  689. },
  690. "ElementType": {
  691. "Name": "SingleSelected"
  692. }
  693. }
  694. ],
  695. "Id": "472f3f26-a2b7-4654-bc1f-e3a8e25fd7ff",
  696. "Index": 0,
  697. "Tag": null,
  698. "MeasureTag": null,
  699. "HorizontalAlignment": "Stretch",
  700. "VerticalAlignment": "Stretch",
  701. "Margin": {
  702. "Left": 0.0,
  703. "Top": 0.0,
  704. "Right": 0.0,
  705. "Bottom": 0.0
  706. },
  707. "ElementType": {
  708. "Name": "Paragraph"
  709. }
  710. }
  711. ],
  712. "Background": {
  713. "A": 255,
  714. "R": 255,
  715. "G": 255,
  716. "B": 255
  717. },
  718. "WidthType": "FixedValue",
  719. "HeightType": "MinValue",
  720. "Borders": {
  721. "Left": {
  722. "BorderStyle": "None",
  723. "Color": {
  724. "A": 255,
  725. "R": 0,
  726. "G": 0,
  727. "B": 0
  728. },
  729. "Thickness": 1.0
  730. },
  731. "Top": {
  732. "BorderStyle": "None",
  733. "Color": {
  734. "A": 255,
  735. "R": 0,
  736. "G": 0,
  737. "B": 0
  738. },
  739. "Thickness": 1.0
  740. },
  741. "Right": {
  742. "BorderStyle": "None",
  743. "Color": {
  744. "A": 255,
  745. "R": 0,
  746. "G": 0,
  747. "B": 0
  748. },
  749. "Thickness": 1.0
  750. },
  751. "Bottom": {
  752. "BorderStyle": "None",
  753. "Color": {
  754. "A": 255,
  755. "R": 0,
  756. "G": 0,
  757. "B": 0
  758. },
  759. "Thickness": 1.0
  760. }
  761. },
  762. "Id": "41741482-283e-469b-bd19-9c1cc1d81432",
  763. "Index": 0,
  764. "Tag": null,
  765. "MeasureTag": null,
  766. "HorizontalAlignment": "Stretch",
  767. "VerticalAlignment": "Stretch",
  768. "Margin": {
  769. "Left": 0.0,
  770. "Top": 0.0,
  771. "Right": 0.0,
  772. "Bottom": 0.0
  773. },
  774. "ElementType": {
  775. "Name": "RTCell"
  776. }
  777. },
  778. {
  779. "Row": 0,
  780. "Column": 2,
  781. "RowSpan": 1,
  782. "ColumnSpan": 1
  783. },
  784. {
  785. "Blocks": [
  786. {
  787. "LineSpace": 0.0,
  788. "Elements": [
  789. {
  790. "Text": "年 龄:",
  791. "FontName": "宋体",
  792. "FontSize": 10.5,
  793. "FontStyles": [],
  794. "FontColor": {
  795. "A": 255,
  796. "R": 0,
  797. "G": 0,
  798. "B": 0
  799. },
  800. "Background": {
  801. "A": 255,
  802. "R": 255,
  803. "G": 255,
  804. "B": 255
  805. },
  806. "LineLength": 7,
  807. "LineWidth": 0.0,
  808. "TextWrap": false,
  809. "Id": "f7c983a0-9f3f-493b-87fa-a330659d1887",
  810. "Index": 0,
  811. "Tag": null,
  812. "MeasureTag": null,
  813. "HorizontalAlignment": "Stretch",
  814. "VerticalAlignment": "Center",
  815. "Margin": {
  816. "Left": 0.0,
  817. "Top": 0.0,
  818. "Right": 0.0,
  819. "Bottom": 0.0
  820. },
  821. "ElementType": {
  822. "Name": "StaticText"
  823. }
  824. },
  825. {
  826. "IsReadOnly": false,
  827. "FontName": "宋体",
  828. "FontSize": 10.5,
  829. "FontStyles": [],
  830. "FontColor": {
  831. "A": 255,
  832. "R": 0,
  833. "G": 0,
  834. "B": 0
  835. },
  836. "Background": {
  837. "A": 255,
  838. "R": 255,
  839. "G": 255,
  840. "B": 255
  841. },
  842. "LineLength": 9,
  843. "LineWidth": 90.91,
  844. "TextWrap": false,
  845. "Id": "b84a9cbb-1b06-49b4-b8c5-6b2a57e24a58",
  846. "Index": 1,
  847. "Tag": {
  848. "Id": "92bbaa61-a91d-4399-a3f4-df29117d2d59",
  849. "Name": "PatientAge",
  850. "IsDefault": true,
  851. "ElementTagType": "General"
  852. },
  853. "MeasureTag": null,
  854. "HorizontalAlignment": "Stretch",
  855. "VerticalAlignment": "Center",
  856. "Margin": {
  857. "Left": 0.0,
  858. "Top": 0.0,
  859. "Right": 0.0,
  860. "Bottom": 0.0
  861. },
  862. "ElementType": {
  863. "Name": "InputText"
  864. }
  865. }
  866. ],
  867. "Id": "28f6a71f-7453-44b3-b58b-ec4cd36a430f",
  868. "Index": 0,
  869. "Tag": null,
  870. "MeasureTag": null,
  871. "HorizontalAlignment": "Stretch",
  872. "VerticalAlignment": "Stretch",
  873. "Margin": {
  874. "Left": 0.0,
  875. "Top": 0.0,
  876. "Right": 0.0,
  877. "Bottom": 0.0
  878. },
  879. "ElementType": {
  880. "Name": "Paragraph"
  881. }
  882. }
  883. ],
  884. "Background": {
  885. "A": 255,
  886. "R": 255,
  887. "G": 255,
  888. "B": 255
  889. },
  890. "WidthType": "FixedValue",
  891. "HeightType": "MinValue",
  892. "Borders": {
  893. "Left": {
  894. "BorderStyle": "None",
  895. "Color": {
  896. "A": 255,
  897. "R": 0,
  898. "G": 0,
  899. "B": 0
  900. },
  901. "Thickness": 1.0
  902. },
  903. "Top": {
  904. "BorderStyle": "None",
  905. "Color": {
  906. "A": 255,
  907. "R": 0,
  908. "G": 0,
  909. "B": 0
  910. },
  911. "Thickness": 1.0
  912. },
  913. "Right": {
  914. "BorderStyle": "None",
  915. "Color": {
  916. "A": 255,
  917. "R": 0,
  918. "G": 0,
  919. "B": 0
  920. },
  921. "Thickness": 1.0
  922. },
  923. "Bottom": {
  924. "BorderStyle": "None",
  925. "Color": {
  926. "A": 255,
  927. "R": 0,
  928. "G": 0,
  929. "B": 0
  930. },
  931. "Thickness": 1.0
  932. }
  933. },
  934. "Id": "03c02be3-a13e-4552-9166-0e9e28799b58",
  935. "Index": 0,
  936. "Tag": null,
  937. "MeasureTag": null,
  938. "HorizontalAlignment": "Stretch",
  939. "VerticalAlignment": "Stretch",
  940. "Margin": {
  941. "Left": 0.0,
  942. "Top": 0.0,
  943. "Right": 0.0,
  944. "Bottom": 0.0
  945. },
  946. "ElementType": {
  947. "Name": "RTCell"
  948. }
  949. },
  950. {
  951. "Row": 1,
  952. "Column": 0,
  953. "RowSpan": 1,
  954. "ColumnSpan": 1
  955. },
  956. {
  957. "Blocks": [
  958. {
  959. "LineSpace": 0.0,
  960. "Elements": [
  961. {
  962. "Text": "申请科室:",
  963. "FontName": "宋体",
  964. "FontSize": 10.5,
  965. "FontStyles": [],
  966. "FontColor": {
  967. "A": 255,
  968. "R": 0,
  969. "G": 0,
  970. "B": 0
  971. },
  972. "Background": {
  973. "A": 255,
  974. "R": 255,
  975. "G": 255,
  976. "B": 255
  977. },
  978. "LineLength": 5,
  979. "LineWidth": 0.0,
  980. "TextWrap": false,
  981. "Id": "a037f6e1-9523-4271-aab2-3da65556963d",
  982. "Index": 0,
  983. "Tag": null,
  984. "MeasureTag": null,
  985. "HorizontalAlignment": "Stretch",
  986. "VerticalAlignment": "Center",
  987. "Margin": {
  988. "Left": 0.0,
  989. "Top": 0.0,
  990. "Right": 0.0,
  991. "Bottom": 0.0
  992. },
  993. "ElementType": {
  994. "Name": "StaticText"
  995. }
  996. },
  997. {
  998. "IsReadOnly": false,
  999. "Items": [
  1000. "产科",
  1001. "门诊",
  1002. "公共卫生科"
  1003. ],
  1004. "DisplayStyle": "OnlyShowSelectedItem",
  1005. "FontName": "宋体",
  1006. "FontSize": 10.5,
  1007. "FontStyles": [],
  1008. "FontColor": {
  1009. "A": 255,
  1010. "R": 0,
  1011. "G": 0,
  1012. "B": 0
  1013. },
  1014. "Background": {
  1015. "A": 255,
  1016. "R": 255,
  1017. "G": 255,
  1018. "B": 255
  1019. },
  1020. "LineLength": 9,
  1021. "LineWidth": 90.91,
  1022. "TextWrap": false,
  1023. "Id": "135ec3fe-1a2b-46dd-98d7-cfbee06e2d66",
  1024. "Index": 1,
  1025. "Tag": {
  1026. "Id": "9a3baa61-a91d-4399-a3f4-df29117d2d59",
  1027. "Name": "PatientApplicationDepartment",
  1028. "IsDefault": true,
  1029. "ElementTagType": "General"
  1030. },
  1031. "MeasureTag": null,
  1032. "HorizontalAlignment": "Stretch",
  1033. "VerticalAlignment": "Center",
  1034. "Margin": {
  1035. "Left": 0.0,
  1036. "Top": 0.0,
  1037. "Right": 0.0,
  1038. "Bottom": 0.0
  1039. },
  1040. "ElementType": {
  1041. "Name": "SingleSelected"
  1042. }
  1043. }
  1044. ],
  1045. "Id": "055568cd-6da1-4e2b-a4b1-1da1a1aca808",
  1046. "Index": 0,
  1047. "Tag": null,
  1048. "MeasureTag": null,
  1049. "HorizontalAlignment": "Stretch",
  1050. "VerticalAlignment": "Stretch",
  1051. "Margin": {
  1052. "Left": 0.0,
  1053. "Top": 0.0,
  1054. "Right": 0.0,
  1055. "Bottom": 0.0
  1056. },
  1057. "ElementType": {
  1058. "Name": "Paragraph"
  1059. }
  1060. }
  1061. ],
  1062. "Background": {
  1063. "A": 255,
  1064. "R": 255,
  1065. "G": 255,
  1066. "B": 255
  1067. },
  1068. "WidthType": "FixedValue",
  1069. "HeightType": "MinValue",
  1070. "Borders": {
  1071. "Left": {
  1072. "BorderStyle": "None",
  1073. "Color": {
  1074. "A": 255,
  1075. "R": 0,
  1076. "G": 0,
  1077. "B": 0
  1078. },
  1079. "Thickness": 1.0
  1080. },
  1081. "Top": {
  1082. "BorderStyle": "None",
  1083. "Color": {
  1084. "A": 255,
  1085. "R": 0,
  1086. "G": 0,
  1087. "B": 0
  1088. },
  1089. "Thickness": 1.0
  1090. },
  1091. "Right": {
  1092. "BorderStyle": "None",
  1093. "Color": {
  1094. "A": 255,
  1095. "R": 0,
  1096. "G": 0,
  1097. "B": 0
  1098. },
  1099. "Thickness": 1.0
  1100. },
  1101. "Bottom": {
  1102. "BorderStyle": "None",
  1103. "Color": {
  1104. "A": 255,
  1105. "R": 0,
  1106. "G": 0,
  1107. "B": 0
  1108. },
  1109. "Thickness": 1.0
  1110. }
  1111. },
  1112. "Id": "0c50f679-5521-492d-a612-eb137908ac0a",
  1113. "Index": 0,
  1114. "Tag": null,
  1115. "MeasureTag": null,
  1116. "HorizontalAlignment": "Stretch",
  1117. "VerticalAlignment": "Stretch",
  1118. "Margin": {
  1119. "Left": 0.0,
  1120. "Top": 0.0,
  1121. "Right": 0.0,
  1122. "Bottom": 0.0
  1123. },
  1124. "ElementType": {
  1125. "Name": "RTCell"
  1126. }
  1127. },
  1128. {
  1129. "Row": 1,
  1130. "Column": 1,
  1131. "RowSpan": 1,
  1132. "ColumnSpan": 1
  1133. },
  1134. {
  1135. "Blocks": [
  1136. {
  1137. "LineSpace": 0.0,
  1138. "Elements": [
  1139. {
  1140. "Text": "病人ID:",
  1141. "FontName": "宋体",
  1142. "FontSize": 10.5,
  1143. "FontStyles": [],
  1144. "FontColor": {
  1145. "A": 255,
  1146. "R": 0,
  1147. "G": 0,
  1148. "B": 0
  1149. },
  1150. "Background": {
  1151. "A": 255,
  1152. "R": 255,
  1153. "G": 255,
  1154. "B": 255
  1155. },
  1156. "LineLength": 5,
  1157. "LineWidth": 0.0,
  1158. "TextWrap": false,
  1159. "Id": "00871429-03fc-49cc-881f-e0c80d6225f2",
  1160. "Index": 0,
  1161. "Tag": null,
  1162. "MeasureTag": null,
  1163. "HorizontalAlignment": "Stretch",
  1164. "VerticalAlignment": "Center",
  1165. "Margin": {
  1166. "Left": 0.0,
  1167. "Top": 0.0,
  1168. "Right": 0.0,
  1169. "Bottom": 0.0
  1170. },
  1171. "ElementType": {
  1172. "Name": "StaticText"
  1173. }
  1174. },
  1175. {
  1176. "IsReadOnly": false,
  1177. "FontName": "宋体",
  1178. "FontSize": 10.5,
  1179. "FontStyles": [],
  1180. "FontColor": {
  1181. "A": 255,
  1182. "R": 0,
  1183. "G": 0,
  1184. "B": 0
  1185. },
  1186. "Background": {
  1187. "A": 255,
  1188. "R": 255,
  1189. "G": 255,
  1190. "B": 255
  1191. },
  1192. "LineLength": 9,
  1193. "LineWidth": 90.91,
  1194. "TextWrap": false,
  1195. "Id": "384adcda-7209-4ee8-b4fa-94dd27c3899f",
  1196. "Index": 1,
  1197. "Tag": {
  1198. "Id": "90bbaa61-a91d-4399-a3f4-df29117d2d59",
  1199. "Name": "PatientId",
  1200. "IsDefault": true,
  1201. "ElementTagType": "General"
  1202. },
  1203. "MeasureTag": null,
  1204. "HorizontalAlignment": "Stretch",
  1205. "VerticalAlignment": "Center",
  1206. "Margin": {
  1207. "Left": 0.0,
  1208. "Top": 0.0,
  1209. "Right": 0.0,
  1210. "Bottom": 0.0
  1211. },
  1212. "ElementType": {
  1213. "Name": "InputText"
  1214. }
  1215. }
  1216. ],
  1217. "Id": "1f7d513f-a1c2-4b78-ae6e-71e885caa861",
  1218. "Index": 0,
  1219. "Tag": null,
  1220. "MeasureTag": null,
  1221. "HorizontalAlignment": "Stretch",
  1222. "VerticalAlignment": "Stretch",
  1223. "Margin": {
  1224. "Left": 0.0,
  1225. "Top": 0.0,
  1226. "Right": 0.0,
  1227. "Bottom": 0.0
  1228. },
  1229. "ElementType": {
  1230. "Name": "Paragraph"
  1231. }
  1232. }
  1233. ],
  1234. "Background": {
  1235. "A": 255,
  1236. "R": 255,
  1237. "G": 255,
  1238. "B": 255
  1239. },
  1240. "WidthType": "FixedValue",
  1241. "HeightType": "MinValue",
  1242. "Borders": {
  1243. "Left": {
  1244. "BorderStyle": "None",
  1245. "Color": {
  1246. "A": 255,
  1247. "R": 0,
  1248. "G": 0,
  1249. "B": 0
  1250. },
  1251. "Thickness": 1.0
  1252. },
  1253. "Top": {
  1254. "BorderStyle": "None",
  1255. "Color": {
  1256. "A": 255,
  1257. "R": 0,
  1258. "G": 0,
  1259. "B": 0
  1260. },
  1261. "Thickness": 1.0
  1262. },
  1263. "Right": {
  1264. "BorderStyle": "None",
  1265. "Color": {
  1266. "A": 255,
  1267. "R": 0,
  1268. "G": 0,
  1269. "B": 0
  1270. },
  1271. "Thickness": 1.0
  1272. },
  1273. "Bottom": {
  1274. "BorderStyle": "None",
  1275. "Color": {
  1276. "A": 255,
  1277. "R": 0,
  1278. "G": 0,
  1279. "B": 0
  1280. },
  1281. "Thickness": 1.0
  1282. }
  1283. },
  1284. "Id": "93595074-4bf7-460e-95e4-b4eb9200108b",
  1285. "Index": 0,
  1286. "Tag": null,
  1287. "MeasureTag": null,
  1288. "HorizontalAlignment": "Stretch",
  1289. "VerticalAlignment": "Stretch",
  1290. "Margin": {
  1291. "Left": 0.0,
  1292. "Top": 0.0,
  1293. "Right": 0.0,
  1294. "Bottom": 0.0
  1295. },
  1296. "ElementType": {
  1297. "Name": "RTCell"
  1298. }
  1299. },
  1300. {
  1301. "Row": 1,
  1302. "Column": 2,
  1303. "RowSpan": 1,
  1304. "ColumnSpan": 1
  1305. },
  1306. {
  1307. "Blocks": [
  1308. {
  1309. "LineSpace": 0.0,
  1310. "Elements": [
  1311. {
  1312. "Text": "检查部位:",
  1313. "FontName": "宋体",
  1314. "FontSize": 10.5,
  1315. "FontStyles": [],
  1316. "FontColor": {
  1317. "A": 255,
  1318. "R": 0,
  1319. "G": 0,
  1320. "B": 0
  1321. },
  1322. "Background": {
  1323. "A": 255,
  1324. "R": 255,
  1325. "G": 255,
  1326. "B": 255
  1327. },
  1328. "LineLength": 5,
  1329. "LineWidth": 0.0,
  1330. "TextWrap": false,
  1331. "Id": "cfbeec23-2da4-4b4f-8ff6-914cefa6c8bd",
  1332. "Index": 0,
  1333. "Tag": null,
  1334. "MeasureTag": null,
  1335. "HorizontalAlignment": "Stretch",
  1336. "VerticalAlignment": "Center",
  1337. "Margin": {
  1338. "Left": 0.0,
  1339. "Top": 0.0,
  1340. "Right": 0.0,
  1341. "Bottom": 0.0
  1342. },
  1343. "ElementType": {
  1344. "Name": "StaticText"
  1345. }
  1346. },
  1347. {
  1348. "IsReadOnly": false,
  1349. "Items": [
  1350. "胎儿",
  1351. "子宫",
  1352. "附件",
  1353. "盆腔",
  1354. "肝脏",
  1355. "胆囊",
  1356. "胆管",
  1357. "胰腺",
  1358. "脾脏",
  1359. "双肾",
  1360. "输尿管",
  1361. "膀胱",
  1362. "前列腺",
  1363. "乳腺",
  1364. "肠系膜淋巴结",
  1365. "甲状腺",
  1366. "心脏",
  1367. "外周浅表"
  1368. ],
  1369. "DisplayStyle": "OnlyShowSelectedItem",
  1370. "FontName": "宋体",
  1371. "FontSize": 10.5,
  1372. "FontStyles": [],
  1373. "FontColor": {
  1374. "A": 255,
  1375. "R": 0,
  1376. "G": 0,
  1377. "B": 0
  1378. },
  1379. "Background": {
  1380. "A": 255,
  1381. "R": 255,
  1382. "G": 255,
  1383. "B": 255
  1384. },
  1385. "LineLength": 9,
  1386. "LineWidth": 90.91,
  1387. "TextWrap": false,
  1388. "Id": "457086a8-1129-4847-8e7a-761aae984afd",
  1389. "Index": 1,
  1390. "Tag": {
  1391. "Id": "9bbbaa61-a91d-4399-a3f4-df29117d2d59",
  1392. "Name": "PatientInspectionSite",
  1393. "IsDefault": true,
  1394. "ElementTagType": "General"
  1395. },
  1396. "MeasureTag": null,
  1397. "HorizontalAlignment": "Stretch",
  1398. "VerticalAlignment": "Center",
  1399. "Margin": {
  1400. "Left": 0.0,
  1401. "Top": 0.0,
  1402. "Right": 0.0,
  1403. "Bottom": 0.0
  1404. },
  1405. "ElementType": {
  1406. "Name": "MultiSelected"
  1407. }
  1408. }
  1409. ],
  1410. "Id": "a196aefa-5f66-46cc-a994-4ec6a3d988da",
  1411. "Index": 0,
  1412. "Tag": null,
  1413. "MeasureTag": null,
  1414. "HorizontalAlignment": "Stretch",
  1415. "VerticalAlignment": "Stretch",
  1416. "Margin": {
  1417. "Left": 0.0,
  1418. "Top": 0.0,
  1419. "Right": 0.0,
  1420. "Bottom": 0.0
  1421. },
  1422. "ElementType": {
  1423. "Name": "Paragraph"
  1424. }
  1425. }
  1426. ],
  1427. "Background": {
  1428. "A": 255,
  1429. "R": 255,
  1430. "G": 255,
  1431. "B": 255
  1432. },
  1433. "WidthType": "FixedValue",
  1434. "HeightType": "MinValue",
  1435. "Borders": {
  1436. "Left": {
  1437. "BorderStyle": "None",
  1438. "Color": {
  1439. "A": 255,
  1440. "R": 0,
  1441. "G": 0,
  1442. "B": 0
  1443. },
  1444. "Thickness": 1.0
  1445. },
  1446. "Top": {
  1447. "BorderStyle": "None",
  1448. "Color": {
  1449. "A": 255,
  1450. "R": 0,
  1451. "G": 0,
  1452. "B": 0
  1453. },
  1454. "Thickness": 1.0
  1455. },
  1456. "Right": {
  1457. "BorderStyle": "None",
  1458. "Color": {
  1459. "A": 255,
  1460. "R": 0,
  1461. "G": 0,
  1462. "B": 0
  1463. },
  1464. "Thickness": 1.0
  1465. },
  1466. "Bottom": {
  1467. "BorderStyle": "None",
  1468. "Color": {
  1469. "A": 255,
  1470. "R": 0,
  1471. "G": 0,
  1472. "B": 0
  1473. },
  1474. "Thickness": 1.0
  1475. }
  1476. },
  1477. "Id": "a4cd95ea-9fad-45d8-bf39-a653295715c3",
  1478. "Index": 0,
  1479. "Tag": null,
  1480. "MeasureTag": null,
  1481. "HorizontalAlignment": "Stretch",
  1482. "VerticalAlignment": "Stretch",
  1483. "Margin": {
  1484. "Left": 0.0,
  1485. "Top": 0.0,
  1486. "Right": 0.0,
  1487. "Bottom": 0.0
  1488. },
  1489. "ElementType": {
  1490. "Name": "RTCell"
  1491. }
  1492. }
  1493. ],
  1494. "Id": "9566ab39-7054-4b22-8cfe-797f5dca74dc",
  1495. "Index": 2,
  1496. "Tag": null,
  1497. "MeasureTag": null,
  1498. "HorizontalAlignment": "Left",
  1499. "VerticalAlignment": "Stretch",
  1500. "Margin": {
  1501. "Left": 0.0,
  1502. "Top": 0.0,
  1503. "Right": 0.0,
  1504. "Bottom": 0.0
  1505. },
  1506. "ElementType": {
  1507. "Name": "RTTable"
  1508. }
  1509. },
  1510. {
  1511. "LineSpace": 0.0,
  1512. "Elements": [
  1513. {
  1514. "Width": 478.61559055118107,
  1515. "BorderStyle": "Solid",
  1516. "Stroke": {
  1517. "A": 255,
  1518. "R": 0,
  1519. "G": 0,
  1520. "B": 0
  1521. },
  1522. "Thickness": 1.0,
  1523. "Id": "02818a86-08b2-411c-9e60-aaa0b4dd67e4",
  1524. "Index": 0,
  1525. "Tag": null,
  1526. "MeasureTag": null,
  1527. "HorizontalAlignment": "Stretch",
  1528. "VerticalAlignment": "Stretch",
  1529. "Margin": {
  1530. "Left": 0.0,
  1531. "Top": 0.0,
  1532. "Right": 0.0,
  1533. "Bottom": 0.0
  1534. },
  1535. "ElementType": {
  1536. "Name": "Line"
  1537. }
  1538. }
  1539. ],
  1540. "Id": "1478294c-83b5-482b-9544-eda2d62a40a0",
  1541. "Index": 3,
  1542. "Tag": null,
  1543. "MeasureTag": null,
  1544. "HorizontalAlignment": "Stretch",
  1545. "VerticalAlignment": "Stretch",
  1546. "Margin": {
  1547. "Left": 0.0,
  1548. "Top": 0.0,
  1549. "Right": 0.0,
  1550. "Bottom": 0.0
  1551. },
  1552. "ElementType": {
  1553. "Name": "Paragraph"
  1554. }
  1555. },
  1556. {
  1557. "Elements": [],
  1558. "ImageWidth": 238.64,
  1559. "ImageHeight": 151.99,
  1560. "HasImageBorder": false,
  1561. "Column": 2,
  1562. "IsReadOnly": false,
  1563. "TransparentBackground": false,
  1564. "HasGap": true,
  1565. "Id": "cc81bba9-8d32-4389-a18e-f64ac3890ec9",
  1566. "Index": 4,
  1567. "Tag": {
  1568. "Id": "9fbbaa61-a91d-4399-a3f4-df29117d2d59",
  1569. "Name": "ReportImages",
  1570. "IsDefault": true,
  1571. "ElementTagType": "General"
  1572. },
  1573. "MeasureTag": null,
  1574. "HorizontalAlignment": "Left",
  1575. "VerticalAlignment": "Stretch",
  1576. "Margin": {
  1577. "Left": 0.0,
  1578. "Top": 0.0,
  1579. "Right": 0.0,
  1580. "Bottom": 0.0
  1581. },
  1582. "ElementType": {
  1583. "Name": "ImageList"
  1584. }
  1585. },
  1586. {
  1587. "LineSpace": 0.0,
  1588. "Elements": [
  1589. {
  1590. "Width": 478.61559055118107,
  1591. "BorderStyle": "Solid",
  1592. "Stroke": {
  1593. "A": 255,
  1594. "R": 0,
  1595. "G": 0,
  1596. "B": 0
  1597. },
  1598. "Thickness": 1.0,
  1599. "Id": "ba0ee5f3-ec37-42bb-8397-17dcde14a783",
  1600. "Index": 0,
  1601. "Tag": null,
  1602. "MeasureTag": null,
  1603. "HorizontalAlignment": "Stretch",
  1604. "VerticalAlignment": "Stretch",
  1605. "Margin": {
  1606. "Left": 0.0,
  1607. "Top": 0.0,
  1608. "Right": 0.0,
  1609. "Bottom": 0.0
  1610. },
  1611. "ElementType": {
  1612. "Name": "Line"
  1613. }
  1614. }
  1615. ],
  1616. "Id": "8c230349-282b-45ea-9a82-fa7439359779",
  1617. "Index": 5,
  1618. "Tag": null,
  1619. "MeasureTag": null,
  1620. "HorizontalAlignment": "Stretch",
  1621. "VerticalAlignment": "Stretch",
  1622. "Margin": {
  1623. "Left": 0.0,
  1624. "Top": 0.0,
  1625. "Right": 0.0,
  1626. "Bottom": 0.0
  1627. },
  1628. "ElementType": {
  1629. "Name": "Paragraph"
  1630. }
  1631. },
  1632. {
  1633. "LineSpace": 0.0,
  1634. "Elements": [
  1635. {
  1636. "Text": "\r\n超声描述",
  1637. "FontName": "宋体",
  1638. "FontSize": 16.0,
  1639. "FontStyles": [],
  1640. "FontColor": {
  1641. "A": 255,
  1642. "R": 0,
  1643. "G": 0,
  1644. "B": 0
  1645. },
  1646. "Background": {
  1647. "A": 255,
  1648. "R": 255,
  1649. "G": 255,
  1650. "B": 255
  1651. },
  1652. "LineLength": 6,
  1653. "LineWidth": 0.0,
  1654. "TextWrap": false,
  1655. "Id": "8ff52703-d28f-4d2e-84af-7a1d9a1e671f",
  1656. "Index": 0,
  1657. "Tag": null,
  1658. "MeasureTag": null,
  1659. "HorizontalAlignment": "Stretch",
  1660. "VerticalAlignment": "Center",
  1661. "Margin": {
  1662. "Left": 0.0,
  1663. "Top": 0.0,
  1664. "Right": 0.0,
  1665. "Bottom": 0.0
  1666. },
  1667. "ElementType": {
  1668. "Name": "StaticText"
  1669. }
  1670. }
  1671. ],
  1672. "Id": "18d10ed0-f9d0-41bc-91bb-513b67495d2a",
  1673. "Index": 6,
  1674. "Tag": null,
  1675. "MeasureTag": null,
  1676. "HorizontalAlignment": "Stretch",
  1677. "VerticalAlignment": "Stretch",
  1678. "Margin": {
  1679. "Left": 0.0,
  1680. "Top": 0.0,
  1681. "Right": 0.0,
  1682. "Bottom": 0.0
  1683. },
  1684. "ElementType": {
  1685. "Name": "Paragraph"
  1686. }
  1687. },
  1688. {
  1689. "LineSpace": 0.0,
  1690. "Elements": [
  1691. {
  1692. "IsReadOnly": false,
  1693. "FontName": "宋体",
  1694. "FontSize": 10.5,
  1695. "FontStyles": [],
  1696. "FontColor": {
  1697. "A": 255,
  1698. "R": 0,
  1699. "G": 0,
  1700. "B": 0
  1701. },
  1702. "Background": {
  1703. "A": 255,
  1704. "R": 255,
  1705. "G": 255,
  1706. "B": 255
  1707. },
  1708. "LineLength": 46,
  1709. "LineWidth": 474.43,
  1710. "TextWrap": true,
  1711. "Id": "e9e4b446-2f64-479c-8e15-cdda067cd00b",
  1712. "Index": 0,
  1713. "Tag": {
  1714. "Id": "9dbbaa61-a91d-4399-a3f4-df29117d2d59",
  1715. "Name": "ReportDescription",
  1716. "IsDefault": true,
  1717. "ElementTagType": "DiagnosticEntry"
  1718. },
  1719. "MeasureTag": null,
  1720. "HorizontalAlignment": "Stretch",
  1721. "VerticalAlignment": "Center",
  1722. "Margin": {
  1723. "Left": 0.0,
  1724. "Top": 0.0,
  1725. "Right": 0.0,
  1726. "Bottom": 0.0
  1727. },
  1728. "ElementType": {
  1729. "Name": "InputText"
  1730. }
  1731. }
  1732. ],
  1733. "Id": "e132f6e4-9d0c-4876-a60a-727d4ac8c871",
  1734. "Index": 7,
  1735. "Tag": null,
  1736. "MeasureTag": null,
  1737. "HorizontalAlignment": "Stretch",
  1738. "VerticalAlignment": "Stretch",
  1739. "Margin": {
  1740. "Left": 0.0,
  1741. "Top": 0.0,
  1742. "Right": 0.0,
  1743. "Bottom": 0.0
  1744. },
  1745. "ElementType": {
  1746. "Name": "Paragraph"
  1747. }
  1748. },
  1749. {
  1750. "LineSpace": 0.0,
  1751. "Elements": [
  1752. {
  1753. "Text": "\r\n\r\n超声提示",
  1754. "FontName": "宋体",
  1755. "FontSize": 16.0,
  1756. "FontStyles": [],
  1757. "FontColor": {
  1758. "A": 255,
  1759. "R": 0,
  1760. "G": 0,
  1761. "B": 0
  1762. },
  1763. "Background": {
  1764. "A": 255,
  1765. "R": 255,
  1766. "G": 255,
  1767. "B": 255
  1768. },
  1769. "LineLength": 8,
  1770. "LineWidth": 0.0,
  1771. "TextWrap": false,
  1772. "Id": "6dabd9ea-f751-465f-a442-6a807ec601c3",
  1773. "Index": 0,
  1774. "Tag": null,
  1775. "MeasureTag": null,
  1776. "HorizontalAlignment": "Stretch",
  1777. "VerticalAlignment": "Center",
  1778. "Margin": {
  1779. "Left": 0.0,
  1780. "Top": 0.0,
  1781. "Right": 0.0,
  1782. "Bottom": 0.0
  1783. },
  1784. "ElementType": {
  1785. "Name": "StaticText"
  1786. }
  1787. }
  1788. ],
  1789. "Id": "1884e6ca-d244-4612-9b8e-92113f06452e",
  1790. "Index": 8,
  1791. "Tag": null,
  1792. "MeasureTag": null,
  1793. "HorizontalAlignment": "Stretch",
  1794. "VerticalAlignment": "Stretch",
  1795. "Margin": {
  1796. "Left": 0.0,
  1797. "Top": 0.0,
  1798. "Right": 0.0,
  1799. "Bottom": 0.0
  1800. },
  1801. "ElementType": {
  1802. "Name": "Paragraph"
  1803. }
  1804. },
  1805. {
  1806. "LineSpace": 0.0,
  1807. "Elements": [
  1808. {
  1809. "IsReadOnly": false,
  1810. "FontName": "宋体",
  1811. "FontSize": 10.5,
  1812. "FontStyles": [],
  1813. "FontColor": {
  1814. "A": 255,
  1815. "R": 0,
  1816. "G": 0,
  1817. "B": 0
  1818. },
  1819. "Background": {
  1820. "A": 255,
  1821. "R": 255,
  1822. "G": 255,
  1823. "B": 255
  1824. },
  1825. "LineLength": 46,
  1826. "LineWidth": 474.43,
  1827. "TextWrap": true,
  1828. "Id": "8b498af9-fbe4-4bfa-b3eb-2b02ebd785a1",
  1829. "Index": 0,
  1830. "Tag": {
  1831. "Id": "9ebbaa61-a91d-4399-a3f4-df29117d2d59",
  1832. "Name": "ReportSummary",
  1833. "IsDefault": true,
  1834. "ElementTagType": "DiagnosticEntry"
  1835. },
  1836. "MeasureTag": null,
  1837. "HorizontalAlignment": "Stretch",
  1838. "VerticalAlignment": "Center",
  1839. "Margin": {
  1840. "Left": 0.0,
  1841. "Top": 0.0,
  1842. "Right": 0.0,
  1843. "Bottom": 0.0
  1844. },
  1845. "ElementType": {
  1846. "Name": "InputText"
  1847. }
  1848. }
  1849. ],
  1850. "Id": "4b8fe5ef-e27b-411e-8f0a-64e9f01ddee1",
  1851. "Index": 9,
  1852. "Tag": null,
  1853. "MeasureTag": null,
  1854. "HorizontalAlignment": "Stretch",
  1855. "VerticalAlignment": "Stretch",
  1856. "Margin": {
  1857. "Left": 0.0,
  1858. "Top": 0.0,
  1859. "Right": 0.0,
  1860. "Bottom": 0.0
  1861. },
  1862. "ElementType": {
  1863. "Name": "Paragraph"
  1864. }
  1865. },
  1866. {
  1867. "LineSpace": 0.0,
  1868. "Elements": [],
  1869. "Id": "61ac1bc3-3b57-4fae-b41c-02774d54cc2f",
  1870. "Index": 10,
  1871. "Tag": null,
  1872. "MeasureTag": null,
  1873. "HorizontalAlignment": "Stretch",
  1874. "VerticalAlignment": "Stretch",
  1875. "Margin": {
  1876. "Left": 0.0,
  1877. "Top": 0.0,
  1878. "Right": 0.0,
  1879. "Bottom": 0.0
  1880. },
  1881. "ElementType": {
  1882. "Name": "Paragraph"
  1883. }
  1884. }
  1885. ],
  1886. "Header": [],
  1887. "Footer": [
  1888. {
  1889. "AutoHide": false,
  1890. "IsAverageColumnWidth": false,
  1891. "AllowBreakAcrossPages": true,
  1892. "ColumnDefinitions": [
  1893. {
  1894. "Width": 159.538530183727
  1895. },
  1896. {
  1897. "Width": 159.538530183727
  1898. },
  1899. {
  1900. "Width": 159.538530183727
  1901. }
  1902. ],
  1903. "RowDefinitions": [
  1904. {
  1905. "Height": 18.0,
  1906. "Type": "MinValue",
  1907. "MinHeight": 18.0
  1908. }
  1909. ],
  1910. "Cells": [
  1911. {
  1912. "Row": 0,
  1913. "Column": 0,
  1914. "RowSpan": 1,
  1915. "ColumnSpan": 1
  1916. },
  1917. {
  1918. "Blocks": [
  1919. {
  1920. "LineSpace": 0.0,
  1921. "Elements": [
  1922. {
  1923. "Text": "报告时间:",
  1924. "FontName": "宋体",
  1925. "FontSize": 10.5,
  1926. "FontStyles": [],
  1927. "FontColor": {
  1928. "A": 255,
  1929. "R": 0,
  1930. "G": 0,
  1931. "B": 0
  1932. },
  1933. "Background": {
  1934. "A": 255,
  1935. "R": 255,
  1936. "G": 255,
  1937. "B": 255
  1938. },
  1939. "LineLength": 5,
  1940. "LineWidth": 0.0,
  1941. "TextWrap": false,
  1942. "Id": "5e7897db-f179-41b1-8ec7-87f27fee7d16",
  1943. "Index": 0,
  1944. "Tag": null,
  1945. "MeasureTag": null,
  1946. "HorizontalAlignment": "Stretch",
  1947. "VerticalAlignment": "Center",
  1948. "Margin": {
  1949. "Left": 0.0,
  1950. "Top": 0.0,
  1951. "Right": 0.0,
  1952. "Bottom": 0.0
  1953. },
  1954. "ElementType": {
  1955. "Name": "StaticText"
  1956. }
  1957. },
  1958. {
  1959. "IsReadOnly": true,
  1960. "DateTimeFormat": "yyyy-MM-dd",
  1961. "IsRealTime": true,
  1962. "ShowEnabled": true,
  1963. "FontName": "宋体",
  1964. "FontSize": 10.5,
  1965. "FontStyles": [],
  1966. "FontColor": {
  1967. "A": 255,
  1968. "R": 0,
  1969. "G": 0,
  1970. "B": 0
  1971. },
  1972. "Background": {
  1973. "A": 255,
  1974. "R": 255,
  1975. "G": 255,
  1976. "B": 255
  1977. },
  1978. "LineLength": 5,
  1979. "LineWidth": 0.0,
  1980. "TextWrap": false,
  1981. "Id": "415df52f-3fef-46c5-a39f-c3e3090e79f2",
  1982. "Index": 1,
  1983. "Tag": {
  1984. "Id": "4abbaa61-a91d-4399-a3f4-df29117d2d59",
  1985. "Name": "ReportTime",
  1986. "IsDefault": true,
  1987. "ElementTagType": "General"
  1988. },
  1989. "MeasureTag": null,
  1990. "HorizontalAlignment": "Stretch",
  1991. "VerticalAlignment": "Center",
  1992. "Margin": {
  1993. "Left": 0.0,
  1994. "Top": 0.0,
  1995. "Right": 0.0,
  1996. "Bottom": 0.0
  1997. },
  1998. "ElementType": {
  1999. "Name": "DateTime"
  2000. }
  2001. }
  2002. ],
  2003. "Id": "570c172b-565d-4cdf-9fb1-bc0c2ffa6058",
  2004. "Index": 0,
  2005. "Tag": null,
  2006. "MeasureTag": null,
  2007. "HorizontalAlignment": "Stretch",
  2008. "VerticalAlignment": "Stretch",
  2009. "Margin": {
  2010. "Left": 0.0,
  2011. "Top": 0.0,
  2012. "Right": 0.0,
  2013. "Bottom": 0.0
  2014. },
  2015. "ElementType": {
  2016. "Name": "Paragraph"
  2017. }
  2018. }
  2019. ],
  2020. "Background": {
  2021. "A": 0,
  2022. "R": 255,
  2023. "G": 255,
  2024. "B": 255
  2025. },
  2026. "WidthType": "FixedValue",
  2027. "HeightType": "MinValue",
  2028. "Borders": {
  2029. "Left": {
  2030. "BorderStyle": "None",
  2031. "Color": {
  2032. "A": 255,
  2033. "R": 0,
  2034. "G": 0,
  2035. "B": 0
  2036. },
  2037. "Thickness": 1.0
  2038. },
  2039. "Top": {
  2040. "BorderStyle": "None",
  2041. "Color": {
  2042. "A": 255,
  2043. "R": 0,
  2044. "G": 0,
  2045. "B": 0
  2046. },
  2047. "Thickness": 1.0
  2048. },
  2049. "Right": {
  2050. "BorderStyle": "None",
  2051. "Color": {
  2052. "A": 255,
  2053. "R": 0,
  2054. "G": 0,
  2055. "B": 0
  2056. },
  2057. "Thickness": 1.0
  2058. },
  2059. "Bottom": {
  2060. "BorderStyle": "None",
  2061. "Color": {
  2062. "A": 255,
  2063. "R": 0,
  2064. "G": 0,
  2065. "B": 0
  2066. },
  2067. "Thickness": 1.0
  2068. }
  2069. },
  2070. "Id": "74acabd7-c9dd-4b33-a2e1-29bc68ad3213",
  2071. "Index": 0,
  2072. "Tag": null,
  2073. "MeasureTag": null,
  2074. "HorizontalAlignment": "Stretch",
  2075. "VerticalAlignment": "Stretch",
  2076. "Margin": {
  2077. "Left": 0.0,
  2078. "Top": 0.0,
  2079. "Right": 0.0,
  2080. "Bottom": 0.0
  2081. },
  2082. "ElementType": {
  2083. "Name": "RTCell"
  2084. }
  2085. },
  2086. {
  2087. "Row": 0,
  2088. "Column": 1,
  2089. "RowSpan": 1,
  2090. "ColumnSpan": 1
  2091. },
  2092. {
  2093. "Blocks": [
  2094. {
  2095. "LineSpace": 0.0,
  2096. "Elements": [
  2097. {
  2098. "Text": "检查医师:",
  2099. "FontName": "宋体",
  2100. "FontSize": 10.5,
  2101. "FontStyles": [],
  2102. "FontColor": {
  2103. "A": 255,
  2104. "R": 0,
  2105. "G": 0,
  2106. "B": 0
  2107. },
  2108. "Background": {
  2109. "A": 255,
  2110. "R": 255,
  2111. "G": 255,
  2112. "B": 255
  2113. },
  2114. "LineLength": 5,
  2115. "LineWidth": 0.0,
  2116. "TextWrap": false,
  2117. "Id": "c8c06849-5f7a-4f25-9648-20533ee38d10",
  2118. "Index": 0,
  2119. "Tag": null,
  2120. "MeasureTag": null,
  2121. "HorizontalAlignment": "Stretch",
  2122. "VerticalAlignment": "Center",
  2123. "Margin": {
  2124. "Left": 0.0,
  2125. "Top": 0.0,
  2126. "Right": 0.0,
  2127. "Bottom": 0.0
  2128. },
  2129. "ElementType": {
  2130. "Name": "StaticText"
  2131. }
  2132. },
  2133. {
  2134. "IsReadOnly": false,
  2135. "FontName": "宋体",
  2136. "FontSize": 10.5,
  2137. "FontStyles": [],
  2138. "FontColor": {
  2139. "A": 255,
  2140. "R": 0,
  2141. "G": 0,
  2142. "B": 0
  2143. },
  2144. "Background": {
  2145. "A": 255,
  2146. "R": 255,
  2147. "G": 255,
  2148. "B": 255
  2149. },
  2150. "LineLength": 9,
  2151. "LineWidth": 90.91,
  2152. "TextWrap": false,
  2153. "Id": "35fbecf3-7900-479d-8d97-2daf23150be6",
  2154. "Index": 1,
  2155. "Tag": {
  2156. "Id": "6abbaa61-a91d-4399-a3f4-df29117d2d59",
  2157. "Name": "InspectionPhysician",
  2158. "IsDefault": true,
  2159. "ElementTagType": "General"
  2160. },
  2161. "MeasureTag": null,
  2162. "HorizontalAlignment": "Stretch",
  2163. "VerticalAlignment": "Center",
  2164. "Margin": {
  2165. "Left": 0.0,
  2166. "Top": 0.0,
  2167. "Right": 0.0,
  2168. "Bottom": 0.0
  2169. },
  2170. "ElementType": {
  2171. "Name": "InputText"
  2172. }
  2173. }
  2174. ],
  2175. "Id": "060b7196-35a7-4665-a8e9-4178bb1281da",
  2176. "Index": 0,
  2177. "Tag": null,
  2178. "MeasureTag": null,
  2179. "HorizontalAlignment": "Stretch",
  2180. "VerticalAlignment": "Stretch",
  2181. "Margin": {
  2182. "Left": 0.0,
  2183. "Top": 0.0,
  2184. "Right": 0.0,
  2185. "Bottom": 0.0
  2186. },
  2187. "ElementType": {
  2188. "Name": "Paragraph"
  2189. }
  2190. }
  2191. ],
  2192. "Background": {
  2193. "A": 0,
  2194. "R": 255,
  2195. "G": 255,
  2196. "B": 255
  2197. },
  2198. "WidthType": "FixedValue",
  2199. "HeightType": "MinValue",
  2200. "Borders": {
  2201. "Left": {
  2202. "BorderStyle": "None",
  2203. "Color": {
  2204. "A": 255,
  2205. "R": 0,
  2206. "G": 0,
  2207. "B": 0
  2208. },
  2209. "Thickness": 1.0
  2210. },
  2211. "Top": {
  2212. "BorderStyle": "None",
  2213. "Color": {
  2214. "A": 255,
  2215. "R": 0,
  2216. "G": 0,
  2217. "B": 0
  2218. },
  2219. "Thickness": 1.0
  2220. },
  2221. "Right": {
  2222. "BorderStyle": "None",
  2223. "Color": {
  2224. "A": 255,
  2225. "R": 0,
  2226. "G": 0,
  2227. "B": 0
  2228. },
  2229. "Thickness": 1.0
  2230. },
  2231. "Bottom": {
  2232. "BorderStyle": "None",
  2233. "Color": {
  2234. "A": 255,
  2235. "R": 0,
  2236. "G": 0,
  2237. "B": 0
  2238. },
  2239. "Thickness": 1.0
  2240. }
  2241. },
  2242. "Id": "d1acf321-fd61-474b-a62d-d7d8f317cac2",
  2243. "Index": 0,
  2244. "Tag": null,
  2245. "MeasureTag": null,
  2246. "HorizontalAlignment": "Stretch",
  2247. "VerticalAlignment": "Stretch",
  2248. "Margin": {
  2249. "Left": 0.0,
  2250. "Top": 0.0,
  2251. "Right": 0.0,
  2252. "Bottom": 0.0
  2253. },
  2254. "ElementType": {
  2255. "Name": "RTCell"
  2256. }
  2257. },
  2258. {
  2259. "Row": 0,
  2260. "Column": 2,
  2261. "RowSpan": 1,
  2262. "ColumnSpan": 1
  2263. },
  2264. {
  2265. "Blocks": [
  2266. {
  2267. "LineSpace": 0.0,
  2268. "Elements": [
  2269. {
  2270. "Text": "报告医师:",
  2271. "FontName": "宋体",
  2272. "FontSize": 10.5,
  2273. "FontStyles": [],
  2274. "FontColor": {
  2275. "A": 255,
  2276. "R": 0,
  2277. "G": 0,
  2278. "B": 0
  2279. },
  2280. "Background": {
  2281. "A": 255,
  2282. "R": 255,
  2283. "G": 255,
  2284. "B": 255
  2285. },
  2286. "LineLength": 5,
  2287. "LineWidth": 0.0,
  2288. "TextWrap": false,
  2289. "Id": "e8c22148-13ea-4acb-a2f0-1879ab5221bd",
  2290. "Index": 0,
  2291. "Tag": null,
  2292. "MeasureTag": null,
  2293. "HorizontalAlignment": "Stretch",
  2294. "VerticalAlignment": "Center",
  2295. "Margin": {
  2296. "Left": 0.0,
  2297. "Top": 0.0,
  2298. "Right": 0.0,
  2299. "Bottom": 0.0
  2300. },
  2301. "ElementType": {
  2302. "Name": "StaticText"
  2303. }
  2304. },
  2305. {
  2306. "IsReadOnly": true,
  2307. "FontName": "宋体",
  2308. "FontSize": 10.5,
  2309. "FontStyles": [],
  2310. "FontColor": {
  2311. "A": 255,
  2312. "R": 0,
  2313. "G": 0,
  2314. "B": 0
  2315. },
  2316. "Background": {
  2317. "A": 255,
  2318. "R": 255,
  2319. "G": 255,
  2320. "B": 255
  2321. },
  2322. "LineLength": 9,
  2323. "LineWidth": 90.91,
  2324. "TextWrap": false,
  2325. "Id": "5c51bdd6-6a10-40d3-8bcf-5a6a952d8ec7",
  2326. "Index": 1,
  2327. "Tag": {
  2328. "Id": "5abbaa61-a91d-4399-a3f4-df29117d2d59",
  2329. "Name": "ReportPhysician",
  2330. "IsDefault": true,
  2331. "ElementTagType": "General"
  2332. },
  2333. "MeasureTag": null,
  2334. "HorizontalAlignment": "Stretch",
  2335. "VerticalAlignment": "Center",
  2336. "Margin": {
  2337. "Left": 0.0,
  2338. "Top": 0.0,
  2339. "Right": 0.0,
  2340. "Bottom": 0.0
  2341. },
  2342. "ElementType": {
  2343. "Name": "InputText"
  2344. }
  2345. }
  2346. ],
  2347. "Id": "9f777412-27ef-497f-8fdc-1b164eabc38e",
  2348. "Index": 0,
  2349. "Tag": null,
  2350. "MeasureTag": null,
  2351. "HorizontalAlignment": "Stretch",
  2352. "VerticalAlignment": "Stretch",
  2353. "Margin": {
  2354. "Left": 0.0,
  2355. "Top": 0.0,
  2356. "Right": 0.0,
  2357. "Bottom": 0.0
  2358. },
  2359. "ElementType": {
  2360. "Name": "Paragraph"
  2361. }
  2362. }
  2363. ],
  2364. "Background": {
  2365. "A": 0,
  2366. "R": 255,
  2367. "G": 255,
  2368. "B": 255
  2369. },
  2370. "WidthType": "FixedValue",
  2371. "HeightType": "MinValue",
  2372. "Borders": {
  2373. "Left": {
  2374. "BorderStyle": "None",
  2375. "Color": {
  2376. "A": 255,
  2377. "R": 0,
  2378. "G": 0,
  2379. "B": 0
  2380. },
  2381. "Thickness": 1.0
  2382. },
  2383. "Top": {
  2384. "BorderStyle": "None",
  2385. "Color": {
  2386. "A": 255,
  2387. "R": 0,
  2388. "G": 0,
  2389. "B": 0
  2390. },
  2391. "Thickness": 1.0
  2392. },
  2393. "Right": {
  2394. "BorderStyle": "None",
  2395. "Color": {
  2396. "A": 255,
  2397. "R": 0,
  2398. "G": 0,
  2399. "B": 0
  2400. },
  2401. "Thickness": 1.0
  2402. },
  2403. "Bottom": {
  2404. "BorderStyle": "None",
  2405. "Color": {
  2406. "A": 255,
  2407. "R": 0,
  2408. "G": 0,
  2409. "B": 0
  2410. },
  2411. "Thickness": 1.0
  2412. }
  2413. },
  2414. "Id": "7e04df27-82e9-4fdd-ba56-c540ae7943ce",
  2415. "Index": 0,
  2416. "Tag": null,
  2417. "MeasureTag": null,
  2418. "HorizontalAlignment": "Stretch",
  2419. "VerticalAlignment": "Stretch",
  2420. "Margin": {
  2421. "Left": 0.0,
  2422. "Top": 0.0,
  2423. "Right": 0.0,
  2424. "Bottom": 0.0
  2425. },
  2426. "ElementType": {
  2427. "Name": "RTCell"
  2428. }
  2429. }
  2430. ],
  2431. "Id": "776ceee6-5fad-4bd4-b7dc-170780285c09",
  2432. "Index": 0,
  2433. "Tag": null,
  2434. "MeasureTag": null,
  2435. "HorizontalAlignment": "Left",
  2436. "VerticalAlignment": "Stretch",
  2437. "Margin": {
  2438. "Left": 0.0,
  2439. "Top": 0.0,
  2440. "Right": 0.0,
  2441. "Bottom": 0.0
  2442. },
  2443. "ElementType": {
  2444. "Name": "RTTable"
  2445. }
  2446. },
  2447. {
  2448. "LineSpace": 0.0,
  2449. "Elements": [
  2450. {
  2451. "Width": 478.61559055118107,
  2452. "BorderStyle": "Solid",
  2453. "Stroke": {
  2454. "A": 255,
  2455. "R": 0,
  2456. "G": 0,
  2457. "B": 0
  2458. },
  2459. "Thickness": 1.0,
  2460. "Id": "21bec319-e085-47ab-863e-38a47afa07b0",
  2461. "Index": 0,
  2462. "Tag": null,
  2463. "MeasureTag": null,
  2464. "HorizontalAlignment": "Stretch",
  2465. "VerticalAlignment": "Stretch",
  2466. "Margin": {
  2467. "Left": 0.0,
  2468. "Top": 0.0,
  2469. "Right": 0.0,
  2470. "Bottom": 0.0
  2471. },
  2472. "ElementType": {
  2473. "Name": "Line"
  2474. }
  2475. }
  2476. ],
  2477. "Id": "3eb0697f-c9aa-44ec-b8ed-dbc570c31939",
  2478. "Index": 1,
  2479. "Tag": null,
  2480. "MeasureTag": null,
  2481. "HorizontalAlignment": "Stretch",
  2482. "VerticalAlignment": "Stretch",
  2483. "Margin": {
  2484. "Left": 0.0,
  2485. "Top": 0.0,
  2486. "Right": 0.0,
  2487. "Bottom": 0.0
  2488. },
  2489. "ElementType": {
  2490. "Name": "Paragraph"
  2491. }
  2492. },
  2493. {
  2494. "LineSpace": 0.0,
  2495. "Elements": [
  2496. {
  2497. "Text": "此报告仅供临床医生参考,不作证明材料",
  2498. "FontName": "宋体",
  2499. "FontSize": 10.5,
  2500. "FontStyles": [],
  2501. "FontColor": {
  2502. "A": 255,
  2503. "R": 0,
  2504. "G": 0,
  2505. "B": 0
  2506. },
  2507. "Background": {
  2508. "A": 255,
  2509. "R": 255,
  2510. "G": 255,
  2511. "B": 255
  2512. },
  2513. "LineLength": 18,
  2514. "LineWidth": 0.0,
  2515. "TextWrap": false,
  2516. "Id": "3237c3c0-ac80-414b-a588-65e0181b3807",
  2517. "Index": 0,
  2518. "Tag": null,
  2519. "MeasureTag": null,
  2520. "HorizontalAlignment": "Stretch",
  2521. "VerticalAlignment": "Center",
  2522. "Margin": {
  2523. "Left": 0.0,
  2524. "Top": 0.0,
  2525. "Right": 0.0,
  2526. "Bottom": 0.0
  2527. },
  2528. "ElementType": {
  2529. "Name": "StaticText"
  2530. }
  2531. }
  2532. ],
  2533. "Id": "de3031d7-0e15-40d3-ab42-74b36876e8ee",
  2534. "Index": 2,
  2535. "Tag": null,
  2536. "MeasureTag": null,
  2537. "HorizontalAlignment": "Stretch",
  2538. "VerticalAlignment": "Stretch",
  2539. "Margin": {
  2540. "Left": 0.0,
  2541. "Top": 0.0,
  2542. "Right": 0.0,
  2543. "Bottom": 0.0
  2544. },
  2545. "ElementType": {
  2546. "Name": "Paragraph"
  2547. }
  2548. }
  2549. ],
  2550. "BaseFontSize": 9.0,
  2551. "InvertColor": false,
  2552. "Version": "1.1_1.7.27.21460"
  2553. }