AI.json 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667
  1. {
  2. "Id": "e8f73754-d395-4527-8e5d-a467a42223e8",
  3. "UpdateTime": "2021-01-25T17:54:28.3025495+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. "DisplayStyle": "OnlyShowSelectedItem",
  1004. "FontName": "宋体",
  1005. "FontSize": 10.5,
  1006. "FontStyles": [],
  1007. "FontColor": {
  1008. "A": 255,
  1009. "R": 0,
  1010. "G": 0,
  1011. "B": 0
  1012. },
  1013. "Background": {
  1014. "A": 255,
  1015. "R": 255,
  1016. "G": 255,
  1017. "B": 255
  1018. },
  1019. "LineLength": 9,
  1020. "LineWidth": 90.91,
  1021. "TextWrap": false,
  1022. "Id": "135ec3fe-1a2b-46dd-98d7-cfbee06e2d66",
  1023. "Index": 1,
  1024. "Tag": {
  1025. "Id": "9a3baa61-a91d-4399-a3f4-df29117d2d59",
  1026. "Name": "PatientApplicationDepartment",
  1027. "IsDefault": true,
  1028. "ElementTagType": "General"
  1029. },
  1030. "MeasureTag": null,
  1031. "HorizontalAlignment": "Stretch",
  1032. "VerticalAlignment": "Center",
  1033. "Margin": {
  1034. "Left": 0.0,
  1035. "Top": 0.0,
  1036. "Right": 0.0,
  1037. "Bottom": 0.0
  1038. },
  1039. "ElementType": {
  1040. "Name": "SingleSelected"
  1041. }
  1042. }
  1043. ],
  1044. "Id": "055568cd-6da1-4e2b-a4b1-1da1a1aca808",
  1045. "Index": 0,
  1046. "Tag": null,
  1047. "MeasureTag": null,
  1048. "HorizontalAlignment": "Stretch",
  1049. "VerticalAlignment": "Stretch",
  1050. "Margin": {
  1051. "Left": 0.0,
  1052. "Top": 0.0,
  1053. "Right": 0.0,
  1054. "Bottom": 0.0
  1055. },
  1056. "ElementType": {
  1057. "Name": "Paragraph"
  1058. }
  1059. }
  1060. ],
  1061. "Background": {
  1062. "A": 255,
  1063. "R": 255,
  1064. "G": 255,
  1065. "B": 255
  1066. },
  1067. "WidthType": "FixedValue",
  1068. "HeightType": "MinValue",
  1069. "Borders": {
  1070. "Left": {
  1071. "BorderStyle": "None",
  1072. "Color": {
  1073. "A": 255,
  1074. "R": 0,
  1075. "G": 0,
  1076. "B": 0
  1077. },
  1078. "Thickness": 1.0
  1079. },
  1080. "Top": {
  1081. "BorderStyle": "None",
  1082. "Color": {
  1083. "A": 255,
  1084. "R": 0,
  1085. "G": 0,
  1086. "B": 0
  1087. },
  1088. "Thickness": 1.0
  1089. },
  1090. "Right": {
  1091. "BorderStyle": "None",
  1092. "Color": {
  1093. "A": 255,
  1094. "R": 0,
  1095. "G": 0,
  1096. "B": 0
  1097. },
  1098. "Thickness": 1.0
  1099. },
  1100. "Bottom": {
  1101. "BorderStyle": "None",
  1102. "Color": {
  1103. "A": 255,
  1104. "R": 0,
  1105. "G": 0,
  1106. "B": 0
  1107. },
  1108. "Thickness": 1.0
  1109. }
  1110. },
  1111. "Id": "0c50f679-5521-492d-a612-eb137908ac0a",
  1112. "Index": 0,
  1113. "Tag": null,
  1114. "MeasureTag": null,
  1115. "HorizontalAlignment": "Stretch",
  1116. "VerticalAlignment": "Stretch",
  1117. "Margin": {
  1118. "Left": 0.0,
  1119. "Top": 0.0,
  1120. "Right": 0.0,
  1121. "Bottom": 0.0
  1122. },
  1123. "ElementType": {
  1124. "Name": "RTCell"
  1125. }
  1126. },
  1127. {
  1128. "Row": 1,
  1129. "Column": 1,
  1130. "RowSpan": 1,
  1131. "ColumnSpan": 1
  1132. },
  1133. {
  1134. "Blocks": [
  1135. {
  1136. "LineSpace": 0.0,
  1137. "Elements": [
  1138. {
  1139. "Text": "病人ID:",
  1140. "FontName": "宋体",
  1141. "FontSize": 10.5,
  1142. "FontStyles": [],
  1143. "FontColor": {
  1144. "A": 255,
  1145. "R": 0,
  1146. "G": 0,
  1147. "B": 0
  1148. },
  1149. "Background": {
  1150. "A": 255,
  1151. "R": 255,
  1152. "G": 255,
  1153. "B": 255
  1154. },
  1155. "LineLength": 5,
  1156. "LineWidth": 0.0,
  1157. "TextWrap": false,
  1158. "Id": "00871429-03fc-49cc-881f-e0c80d6225f2",
  1159. "Index": 0,
  1160. "Tag": null,
  1161. "MeasureTag": null,
  1162. "HorizontalAlignment": "Stretch",
  1163. "VerticalAlignment": "Center",
  1164. "Margin": {
  1165. "Left": 0.0,
  1166. "Top": 0.0,
  1167. "Right": 0.0,
  1168. "Bottom": 0.0
  1169. },
  1170. "ElementType": {
  1171. "Name": "StaticText"
  1172. }
  1173. },
  1174. {
  1175. "IsReadOnly": false,
  1176. "FontName": "宋体",
  1177. "FontSize": 10.5,
  1178. "FontStyles": [],
  1179. "FontColor": {
  1180. "A": 255,
  1181. "R": 0,
  1182. "G": 0,
  1183. "B": 0
  1184. },
  1185. "Background": {
  1186. "A": 255,
  1187. "R": 255,
  1188. "G": 255,
  1189. "B": 255
  1190. },
  1191. "LineLength": 9,
  1192. "LineWidth": 90.91,
  1193. "TextWrap": false,
  1194. "Id": "384adcda-7209-4ee8-b4fa-94dd27c3899f",
  1195. "Index": 1,
  1196. "Tag": {
  1197. "Id": "90bbaa61-a91d-4399-a3f4-df29117d2d59",
  1198. "Name": "PatientId",
  1199. "IsDefault": true,
  1200. "ElementTagType": "General"
  1201. },
  1202. "MeasureTag": null,
  1203. "HorizontalAlignment": "Stretch",
  1204. "VerticalAlignment": "Center",
  1205. "Margin": {
  1206. "Left": 0.0,
  1207. "Top": 0.0,
  1208. "Right": 0.0,
  1209. "Bottom": 0.0
  1210. },
  1211. "ElementType": {
  1212. "Name": "InputText"
  1213. }
  1214. }
  1215. ],
  1216. "Id": "1f7d513f-a1c2-4b78-ae6e-71e885caa861",
  1217. "Index": 0,
  1218. "Tag": null,
  1219. "MeasureTag": null,
  1220. "HorizontalAlignment": "Stretch",
  1221. "VerticalAlignment": "Stretch",
  1222. "Margin": {
  1223. "Left": 0.0,
  1224. "Top": 0.0,
  1225. "Right": 0.0,
  1226. "Bottom": 0.0
  1227. },
  1228. "ElementType": {
  1229. "Name": "Paragraph"
  1230. }
  1231. }
  1232. ],
  1233. "Background": {
  1234. "A": 255,
  1235. "R": 255,
  1236. "G": 255,
  1237. "B": 255
  1238. },
  1239. "WidthType": "FixedValue",
  1240. "HeightType": "MinValue",
  1241. "Borders": {
  1242. "Left": {
  1243. "BorderStyle": "None",
  1244. "Color": {
  1245. "A": 255,
  1246. "R": 0,
  1247. "G": 0,
  1248. "B": 0
  1249. },
  1250. "Thickness": 1.0
  1251. },
  1252. "Top": {
  1253. "BorderStyle": "None",
  1254. "Color": {
  1255. "A": 255,
  1256. "R": 0,
  1257. "G": 0,
  1258. "B": 0
  1259. },
  1260. "Thickness": 1.0
  1261. },
  1262. "Right": {
  1263. "BorderStyle": "None",
  1264. "Color": {
  1265. "A": 255,
  1266. "R": 0,
  1267. "G": 0,
  1268. "B": 0
  1269. },
  1270. "Thickness": 1.0
  1271. },
  1272. "Bottom": {
  1273. "BorderStyle": "None",
  1274. "Color": {
  1275. "A": 255,
  1276. "R": 0,
  1277. "G": 0,
  1278. "B": 0
  1279. },
  1280. "Thickness": 1.0
  1281. }
  1282. },
  1283. "Id": "93595074-4bf7-460e-95e4-b4eb9200108b",
  1284. "Index": 0,
  1285. "Tag": null,
  1286. "MeasureTag": null,
  1287. "HorizontalAlignment": "Stretch",
  1288. "VerticalAlignment": "Stretch",
  1289. "Margin": {
  1290. "Left": 0.0,
  1291. "Top": 0.0,
  1292. "Right": 0.0,
  1293. "Bottom": 0.0
  1294. },
  1295. "ElementType": {
  1296. "Name": "RTCell"
  1297. }
  1298. },
  1299. {
  1300. "Row": 1,
  1301. "Column": 2,
  1302. "RowSpan": 1,
  1303. "ColumnSpan": 1
  1304. },
  1305. {
  1306. "Blocks": [
  1307. {
  1308. "LineSpace": 0.0,
  1309. "Elements": [
  1310. {
  1311. "Text": "检查部位:",
  1312. "FontName": "宋体",
  1313. "FontSize": 10.5,
  1314. "FontStyles": [],
  1315. "FontColor": {
  1316. "A": 255,
  1317. "R": 0,
  1318. "G": 0,
  1319. "B": 0
  1320. },
  1321. "Background": {
  1322. "A": 255,
  1323. "R": 255,
  1324. "G": 255,
  1325. "B": 255
  1326. },
  1327. "LineLength": 5,
  1328. "LineWidth": 0.0,
  1329. "TextWrap": false,
  1330. "Id": "cfbeec23-2da4-4b4f-8ff6-914cefa6c8bd",
  1331. "Index": 0,
  1332. "Tag": null,
  1333. "MeasureTag": null,
  1334. "HorizontalAlignment": "Stretch",
  1335. "VerticalAlignment": "Center",
  1336. "Margin": {
  1337. "Left": 0.0,
  1338. "Top": 0.0,
  1339. "Right": 0.0,
  1340. "Bottom": 0.0
  1341. },
  1342. "ElementType": {
  1343. "Name": "StaticText"
  1344. }
  1345. },
  1346. {
  1347. "IsReadOnly": false,
  1348. "Items": [
  1349. "胎儿",
  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": "5091769f-95f7-4775-b9b0-968b80057705",
  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. "LineSpace": 0.0,
  1887. "Elements": [],
  1888. "Id": "0e1c9fc9-931a-4863-8475-c7b39791cc62",
  1889. "Index": 11,
  1890. "Tag": null,
  1891. "MeasureTag": null,
  1892. "HorizontalAlignment": "Stretch",
  1893. "VerticalAlignment": "Stretch",
  1894. "Margin": {
  1895. "Left": 0.0,
  1896. "Top": 0.0,
  1897. "Right": 0.0,
  1898. "Bottom": 0.0
  1899. },
  1900. "ElementType": {
  1901. "Name": "Paragraph"
  1902. }
  1903. },
  1904. {
  1905. "LineSpace": 0.0,
  1906. "Elements": [],
  1907. "Id": "5986ea86-8662-42d2-a639-3c2216c63d9d",
  1908. "Index": 12,
  1909. "Tag": null,
  1910. "MeasureTag": null,
  1911. "HorizontalAlignment": "Stretch",
  1912. "VerticalAlignment": "Stretch",
  1913. "Margin": {
  1914. "Left": 0.0,
  1915. "Top": 0.0,
  1916. "Right": 0.0,
  1917. "Bottom": 0.0
  1918. },
  1919. "ElementType": {
  1920. "Name": "Paragraph"
  1921. }
  1922. },
  1923. {
  1924. "LineSpace": 0.0,
  1925. "Elements": [],
  1926. "Id": "1683e91f-0194-4d6c-b625-055a03c06de7",
  1927. "Index": 13,
  1928. "Tag": null,
  1929. "MeasureTag": null,
  1930. "HorizontalAlignment": "Stretch",
  1931. "VerticalAlignment": "Stretch",
  1932. "Margin": {
  1933. "Left": 0.0,
  1934. "Top": 0.0,
  1935. "Right": 0.0,
  1936. "Bottom": 0.0
  1937. },
  1938. "ElementType": {
  1939. "Name": "Paragraph"
  1940. }
  1941. },
  1942. {
  1943. "LineSpace": 0.0,
  1944. "Elements": [],
  1945. "Id": "780cb4b0-144c-4cc1-ac10-31ca8551f2b9",
  1946. "Index": 14,
  1947. "Tag": null,
  1948. "MeasureTag": null,
  1949. "HorizontalAlignment": "Stretch",
  1950. "VerticalAlignment": "Stretch",
  1951. "Margin": {
  1952. "Left": 0.0,
  1953. "Top": 0.0,
  1954. "Right": 0.0,
  1955. "Bottom": 0.0
  1956. },
  1957. "ElementType": {
  1958. "Name": "Paragraph"
  1959. }
  1960. },
  1961. {
  1962. "LineSpace": 0.0,
  1963. "Elements": [],
  1964. "Id": "64da31c9-7bd2-40e3-9949-226e8edf626e",
  1965. "Index": 15,
  1966. "Tag": null,
  1967. "MeasureTag": null,
  1968. "HorizontalAlignment": "Stretch",
  1969. "VerticalAlignment": "Stretch",
  1970. "Margin": {
  1971. "Left": 0.0,
  1972. "Top": 0.0,
  1973. "Right": 0.0,
  1974. "Bottom": 0.0
  1975. },
  1976. "ElementType": {
  1977. "Name": "Paragraph"
  1978. }
  1979. },
  1980. {
  1981. "LineSpace": 0.0,
  1982. "Elements": [],
  1983. "Id": "61ac1bc3-3b57-4fae-b41c-02774d54cc2f",
  1984. "Index": 16,
  1985. "Tag": null,
  1986. "MeasureTag": null,
  1987. "HorizontalAlignment": "Stretch",
  1988. "VerticalAlignment": "Stretch",
  1989. "Margin": {
  1990. "Left": 0.0,
  1991. "Top": 0.0,
  1992. "Right": 0.0,
  1993. "Bottom": 0.0
  1994. },
  1995. "ElementType": {
  1996. "Name": "Paragraph"
  1997. }
  1998. }
  1999. ],
  2000. "Header": [],
  2001. "Footer": [
  2002. {
  2003. "AutoHide": false,
  2004. "IsAverageColumnWidth": false,
  2005. "AllowBreakAcrossPages": true,
  2006. "ColumnDefinitions": [
  2007. {
  2008. "Width": 159.538530183727
  2009. },
  2010. {
  2011. "Width": 159.538530183727
  2012. },
  2013. {
  2014. "Width": 159.538530183727
  2015. }
  2016. ],
  2017. "RowDefinitions": [
  2018. {
  2019. "Height": 18.0,
  2020. "Type": "MinValue",
  2021. "MinHeight": 18.0
  2022. }
  2023. ],
  2024. "Cells": [
  2025. {
  2026. "Row": 0,
  2027. "Column": 0,
  2028. "RowSpan": 1,
  2029. "ColumnSpan": 1
  2030. },
  2031. {
  2032. "Blocks": [
  2033. {
  2034. "LineSpace": 0.0,
  2035. "Elements": [
  2036. {
  2037. "Text": "报告时间:",
  2038. "FontName": "宋体",
  2039. "FontSize": 10.5,
  2040. "FontStyles": [],
  2041. "FontColor": {
  2042. "A": 255,
  2043. "R": 0,
  2044. "G": 0,
  2045. "B": 0
  2046. },
  2047. "Background": {
  2048. "A": 255,
  2049. "R": 255,
  2050. "G": 255,
  2051. "B": 255
  2052. },
  2053. "LineLength": 5,
  2054. "LineWidth": 0.0,
  2055. "TextWrap": false,
  2056. "Id": "cbee785e-a79f-4a28-9104-baa1863779d1",
  2057. "Index": 0,
  2058. "Tag": null,
  2059. "MeasureTag": null,
  2060. "HorizontalAlignment": "Stretch",
  2061. "VerticalAlignment": "Center",
  2062. "Margin": {
  2063. "Left": 0.0,
  2064. "Top": 0.0,
  2065. "Right": 0.0,
  2066. "Bottom": 0.0
  2067. },
  2068. "ElementType": {
  2069. "Name": "StaticText"
  2070. }
  2071. },
  2072. {
  2073. "IsReadOnly": true,
  2074. "DateTimeFormat": "yyyy-MM-dd",
  2075. "IsRealTime": true,
  2076. "ShowEnabled": true,
  2077. "FontName": "宋体",
  2078. "FontSize": 10.5,
  2079. "FontStyles": [],
  2080. "FontColor": {
  2081. "A": 255,
  2082. "R": 0,
  2083. "G": 0,
  2084. "B": 0
  2085. },
  2086. "Background": {
  2087. "A": 255,
  2088. "R": 255,
  2089. "G": 255,
  2090. "B": 255
  2091. },
  2092. "LineLength": 5,
  2093. "LineWidth": 0.0,
  2094. "TextWrap": false,
  2095. "Id": "2b84f8c0-5678-43cb-93ec-2e758504895b",
  2096. "Index": 1,
  2097. "Tag": {
  2098. "Id": "4abbaa61-a91d-4399-a3f4-df29117d2d59",
  2099. "Name": "ReportTime",
  2100. "IsDefault": true,
  2101. "ElementTagType": "General"
  2102. },
  2103. "MeasureTag": null,
  2104. "HorizontalAlignment": "Stretch",
  2105. "VerticalAlignment": "Center",
  2106. "Margin": {
  2107. "Left": 0.0,
  2108. "Top": 0.0,
  2109. "Right": 0.0,
  2110. "Bottom": 0.0
  2111. },
  2112. "ElementType": {
  2113. "Name": "DateTime"
  2114. }
  2115. }
  2116. ],
  2117. "Id": "7e20eb05-7298-4a02-bef8-a66d540b68fe",
  2118. "Index": 0,
  2119. "Tag": null,
  2120. "MeasureTag": null,
  2121. "HorizontalAlignment": "Stretch",
  2122. "VerticalAlignment": "Stretch",
  2123. "Margin": {
  2124. "Left": 0.0,
  2125. "Top": 0.0,
  2126. "Right": 0.0,
  2127. "Bottom": 0.0
  2128. },
  2129. "ElementType": {
  2130. "Name": "Paragraph"
  2131. }
  2132. }
  2133. ],
  2134. "Background": {
  2135. "A": 0,
  2136. "R": 255,
  2137. "G": 255,
  2138. "B": 255
  2139. },
  2140. "WidthType": "FixedValue",
  2141. "HeightType": "MinValue",
  2142. "Borders": {
  2143. "Left": {
  2144. "BorderStyle": "None",
  2145. "Color": {
  2146. "A": 255,
  2147. "R": 0,
  2148. "G": 0,
  2149. "B": 0
  2150. },
  2151. "Thickness": 1.0
  2152. },
  2153. "Top": {
  2154. "BorderStyle": "None",
  2155. "Color": {
  2156. "A": 255,
  2157. "R": 0,
  2158. "G": 0,
  2159. "B": 0
  2160. },
  2161. "Thickness": 1.0
  2162. },
  2163. "Right": {
  2164. "BorderStyle": "None",
  2165. "Color": {
  2166. "A": 255,
  2167. "R": 0,
  2168. "G": 0,
  2169. "B": 0
  2170. },
  2171. "Thickness": 1.0
  2172. },
  2173. "Bottom": {
  2174. "BorderStyle": "None",
  2175. "Color": {
  2176. "A": 255,
  2177. "R": 0,
  2178. "G": 0,
  2179. "B": 0
  2180. },
  2181. "Thickness": 1.0
  2182. }
  2183. },
  2184. "Id": "06c010f0-bfc0-40ec-9c9a-675b2424062c",
  2185. "Index": 0,
  2186. "Tag": null,
  2187. "MeasureTag": null,
  2188. "HorizontalAlignment": "Stretch",
  2189. "VerticalAlignment": "Stretch",
  2190. "Margin": {
  2191. "Left": 0.0,
  2192. "Top": 0.0,
  2193. "Right": 0.0,
  2194. "Bottom": 0.0
  2195. },
  2196. "ElementType": {
  2197. "Name": "RTCell"
  2198. }
  2199. },
  2200. {
  2201. "Row": 0,
  2202. "Column": 1,
  2203. "RowSpan": 1,
  2204. "ColumnSpan": 1
  2205. },
  2206. {
  2207. "Blocks": [
  2208. {
  2209. "LineSpace": 0.0,
  2210. "Elements": [
  2211. {
  2212. "Text": "检查医师:",
  2213. "FontName": "宋体",
  2214. "FontSize": 10.5,
  2215. "FontStyles": [],
  2216. "FontColor": {
  2217. "A": 255,
  2218. "R": 0,
  2219. "G": 0,
  2220. "B": 0
  2221. },
  2222. "Background": {
  2223. "A": 255,
  2224. "R": 255,
  2225. "G": 255,
  2226. "B": 255
  2227. },
  2228. "LineLength": 5,
  2229. "LineWidth": 0.0,
  2230. "TextWrap": false,
  2231. "Id": "78c27b5e-0f63-4361-8385-1c9ad4e522e7",
  2232. "Index": 0,
  2233. "Tag": null,
  2234. "MeasureTag": null,
  2235. "HorizontalAlignment": "Stretch",
  2236. "VerticalAlignment": "Center",
  2237. "Margin": {
  2238. "Left": 0.0,
  2239. "Top": 0.0,
  2240. "Right": 0.0,
  2241. "Bottom": 0.0
  2242. },
  2243. "ElementType": {
  2244. "Name": "StaticText"
  2245. }
  2246. },
  2247. {
  2248. "IsReadOnly": false,
  2249. "FontName": "宋体",
  2250. "FontSize": 10.5,
  2251. "FontStyles": [],
  2252. "FontColor": {
  2253. "A": 255,
  2254. "R": 0,
  2255. "G": 0,
  2256. "B": 0
  2257. },
  2258. "Background": {
  2259. "A": 255,
  2260. "R": 255,
  2261. "G": 255,
  2262. "B": 255
  2263. },
  2264. "LineLength": 9,
  2265. "LineWidth": 90.91,
  2266. "TextWrap": false,
  2267. "Id": "f39400a4-ca8d-489c-940d-393d445e3e2c",
  2268. "Index": 1,
  2269. "Tag": {
  2270. "Id": "6abbaa61-a91d-4399-a3f4-df29117d2d59",
  2271. "Name": "InspectionPhysician",
  2272. "IsDefault": true,
  2273. "ElementTagType": "General"
  2274. },
  2275. "MeasureTag": null,
  2276. "HorizontalAlignment": "Stretch",
  2277. "VerticalAlignment": "Center",
  2278. "Margin": {
  2279. "Left": 0.0,
  2280. "Top": 0.0,
  2281. "Right": 0.0,
  2282. "Bottom": 0.0
  2283. },
  2284. "ElementType": {
  2285. "Name": "InputText"
  2286. }
  2287. }
  2288. ],
  2289. "Id": "9ceed2e0-7c05-4af2-8018-16b9c3c92a40",
  2290. "Index": 0,
  2291. "Tag": null,
  2292. "MeasureTag": null,
  2293. "HorizontalAlignment": "Stretch",
  2294. "VerticalAlignment": "Stretch",
  2295. "Margin": {
  2296. "Left": 0.0,
  2297. "Top": 0.0,
  2298. "Right": 0.0,
  2299. "Bottom": 0.0
  2300. },
  2301. "ElementType": {
  2302. "Name": "Paragraph"
  2303. }
  2304. }
  2305. ],
  2306. "Background": {
  2307. "A": 0,
  2308. "R": 255,
  2309. "G": 255,
  2310. "B": 255
  2311. },
  2312. "WidthType": "FixedValue",
  2313. "HeightType": "MinValue",
  2314. "Borders": {
  2315. "Left": {
  2316. "BorderStyle": "None",
  2317. "Color": {
  2318. "A": 255,
  2319. "R": 0,
  2320. "G": 0,
  2321. "B": 0
  2322. },
  2323. "Thickness": 1.0
  2324. },
  2325. "Top": {
  2326. "BorderStyle": "None",
  2327. "Color": {
  2328. "A": 255,
  2329. "R": 0,
  2330. "G": 0,
  2331. "B": 0
  2332. },
  2333. "Thickness": 1.0
  2334. },
  2335. "Right": {
  2336. "BorderStyle": "None",
  2337. "Color": {
  2338. "A": 255,
  2339. "R": 0,
  2340. "G": 0,
  2341. "B": 0
  2342. },
  2343. "Thickness": 1.0
  2344. },
  2345. "Bottom": {
  2346. "BorderStyle": "None",
  2347. "Color": {
  2348. "A": 255,
  2349. "R": 0,
  2350. "G": 0,
  2351. "B": 0
  2352. },
  2353. "Thickness": 1.0
  2354. }
  2355. },
  2356. "Id": "8692a082-dd7d-48e6-ab0a-29e4afeefc5b",
  2357. "Index": 0,
  2358. "Tag": null,
  2359. "MeasureTag": null,
  2360. "HorizontalAlignment": "Stretch",
  2361. "VerticalAlignment": "Stretch",
  2362. "Margin": {
  2363. "Left": 0.0,
  2364. "Top": 0.0,
  2365. "Right": 0.0,
  2366. "Bottom": 0.0
  2367. },
  2368. "ElementType": {
  2369. "Name": "RTCell"
  2370. }
  2371. },
  2372. {
  2373. "Row": 0,
  2374. "Column": 2,
  2375. "RowSpan": 1,
  2376. "ColumnSpan": 1
  2377. },
  2378. {
  2379. "Blocks": [
  2380. {
  2381. "LineSpace": 0.0,
  2382. "Elements": [
  2383. {
  2384. "Text": "报告医师:",
  2385. "FontName": "宋体",
  2386. "FontSize": 10.5,
  2387. "FontStyles": [],
  2388. "FontColor": {
  2389. "A": 255,
  2390. "R": 0,
  2391. "G": 0,
  2392. "B": 0
  2393. },
  2394. "Background": {
  2395. "A": 255,
  2396. "R": 255,
  2397. "G": 255,
  2398. "B": 255
  2399. },
  2400. "LineLength": 5,
  2401. "LineWidth": 0.0,
  2402. "TextWrap": false,
  2403. "Id": "205b7c9c-3077-455a-98bf-38d150f9fc76",
  2404. "Index": 0,
  2405. "Tag": null,
  2406. "MeasureTag": null,
  2407. "HorizontalAlignment": "Stretch",
  2408. "VerticalAlignment": "Center",
  2409. "Margin": {
  2410. "Left": 0.0,
  2411. "Top": 0.0,
  2412. "Right": 0.0,
  2413. "Bottom": 0.0
  2414. },
  2415. "ElementType": {
  2416. "Name": "StaticText"
  2417. }
  2418. },
  2419. {
  2420. "IsReadOnly": true,
  2421. "FontName": "宋体",
  2422. "FontSize": 10.5,
  2423. "FontStyles": [],
  2424. "FontColor": {
  2425. "A": 255,
  2426. "R": 0,
  2427. "G": 0,
  2428. "B": 0
  2429. },
  2430. "Background": {
  2431. "A": 255,
  2432. "R": 255,
  2433. "G": 255,
  2434. "B": 255
  2435. },
  2436. "LineLength": 9,
  2437. "LineWidth": 90.91,
  2438. "TextWrap": false,
  2439. "Id": "f582fe5c-2808-47f8-92e4-820812e23d54",
  2440. "Index": 1,
  2441. "Tag": {
  2442. "Id": "5abbaa61-a91d-4399-a3f4-df29117d2d59",
  2443. "Name": "ReportPhysician",
  2444. "IsDefault": true,
  2445. "ElementTagType": "General"
  2446. },
  2447. "MeasureTag": null,
  2448. "HorizontalAlignment": "Stretch",
  2449. "VerticalAlignment": "Center",
  2450. "Margin": {
  2451. "Left": 0.0,
  2452. "Top": 0.0,
  2453. "Right": 0.0,
  2454. "Bottom": 0.0
  2455. },
  2456. "ElementType": {
  2457. "Name": "InputText"
  2458. }
  2459. }
  2460. ],
  2461. "Id": "0c0d4f4d-8ed0-4a42-981a-215266a7c4e5",
  2462. "Index": 0,
  2463. "Tag": null,
  2464. "MeasureTag": null,
  2465. "HorizontalAlignment": "Stretch",
  2466. "VerticalAlignment": "Stretch",
  2467. "Margin": {
  2468. "Left": 0.0,
  2469. "Top": 0.0,
  2470. "Right": 0.0,
  2471. "Bottom": 0.0
  2472. },
  2473. "ElementType": {
  2474. "Name": "Paragraph"
  2475. }
  2476. }
  2477. ],
  2478. "Background": {
  2479. "A": 0,
  2480. "R": 255,
  2481. "G": 255,
  2482. "B": 255
  2483. },
  2484. "WidthType": "FixedValue",
  2485. "HeightType": "MinValue",
  2486. "Borders": {
  2487. "Left": {
  2488. "BorderStyle": "None",
  2489. "Color": {
  2490. "A": 255,
  2491. "R": 0,
  2492. "G": 0,
  2493. "B": 0
  2494. },
  2495. "Thickness": 1.0
  2496. },
  2497. "Top": {
  2498. "BorderStyle": "None",
  2499. "Color": {
  2500. "A": 255,
  2501. "R": 0,
  2502. "G": 0,
  2503. "B": 0
  2504. },
  2505. "Thickness": 1.0
  2506. },
  2507. "Right": {
  2508. "BorderStyle": "None",
  2509. "Color": {
  2510. "A": 255,
  2511. "R": 0,
  2512. "G": 0,
  2513. "B": 0
  2514. },
  2515. "Thickness": 1.0
  2516. },
  2517. "Bottom": {
  2518. "BorderStyle": "None",
  2519. "Color": {
  2520. "A": 255,
  2521. "R": 0,
  2522. "G": 0,
  2523. "B": 0
  2524. },
  2525. "Thickness": 1.0
  2526. }
  2527. },
  2528. "Id": "6bf9ab5b-d7c5-4fbc-bf91-94728df5d552",
  2529. "Index": 0,
  2530. "Tag": null,
  2531. "MeasureTag": null,
  2532. "HorizontalAlignment": "Stretch",
  2533. "VerticalAlignment": "Stretch",
  2534. "Margin": {
  2535. "Left": 0.0,
  2536. "Top": 0.0,
  2537. "Right": 0.0,
  2538. "Bottom": 0.0
  2539. },
  2540. "ElementType": {
  2541. "Name": "RTCell"
  2542. }
  2543. }
  2544. ],
  2545. "Id": "8fab96da-2602-42df-9326-32e94bd0c2b9",
  2546. "Index": 0,
  2547. "Tag": null,
  2548. "MeasureTag": null,
  2549. "HorizontalAlignment": "Left",
  2550. "VerticalAlignment": "Stretch",
  2551. "Margin": {
  2552. "Left": 0.0,
  2553. "Top": 0.0,
  2554. "Right": 0.0,
  2555. "Bottom": 0.0
  2556. },
  2557. "ElementType": {
  2558. "Name": "RTTable"
  2559. }
  2560. },
  2561. {
  2562. "LineSpace": 0.0,
  2563. "Elements": [
  2564. {
  2565. "Width": 478.61559055118107,
  2566. "BorderStyle": "Solid",
  2567. "Stroke": {
  2568. "A": 255,
  2569. "R": 0,
  2570. "G": 0,
  2571. "B": 0
  2572. },
  2573. "Thickness": 1.0,
  2574. "Id": "4213efa6-b3de-46d6-aaa5-19bc798fcda7",
  2575. "Index": 0,
  2576. "Tag": null,
  2577. "MeasureTag": null,
  2578. "HorizontalAlignment": "Stretch",
  2579. "VerticalAlignment": "Stretch",
  2580. "Margin": {
  2581. "Left": 0.0,
  2582. "Top": 0.0,
  2583. "Right": 0.0,
  2584. "Bottom": 0.0
  2585. },
  2586. "ElementType": {
  2587. "Name": "Line"
  2588. }
  2589. }
  2590. ],
  2591. "Id": "3dbc86cf-1eb9-47c8-9b4d-86ba8739eae9",
  2592. "Index": 1,
  2593. "Tag": null,
  2594. "MeasureTag": null,
  2595. "HorizontalAlignment": "Stretch",
  2596. "VerticalAlignment": "Top",
  2597. "Margin": {
  2598. "Left": 0.0,
  2599. "Top": 0.0,
  2600. "Right": 0.0,
  2601. "Bottom": 0.0
  2602. },
  2603. "ElementType": {
  2604. "Name": "Paragraph"
  2605. }
  2606. },
  2607. {
  2608. "LineSpace": 0.0,
  2609. "Elements": [
  2610. {
  2611. "Text": "此咨询单仅供参考,不作证明材料",
  2612. "FontName": "宋体",
  2613. "FontSize": 10.5,
  2614. "FontStyles": [],
  2615. "FontColor": {
  2616. "A": 255,
  2617. "R": 0,
  2618. "G": 0,
  2619. "B": 0
  2620. },
  2621. "Background": {
  2622. "A": 255,
  2623. "R": 255,
  2624. "G": 255,
  2625. "B": 255
  2626. },
  2627. "LineLength": 15,
  2628. "LineWidth": 0.0,
  2629. "TextWrap": false,
  2630. "Id": "3237c3c0-ac80-414b-a588-65e0181b3807",
  2631. "Index": 0,
  2632. "Tag": null,
  2633. "MeasureTag": null,
  2634. "HorizontalAlignment": "Stretch",
  2635. "VerticalAlignment": "Center",
  2636. "Margin": {
  2637. "Left": 0.0,
  2638. "Top": 0.0,
  2639. "Right": 0.0,
  2640. "Bottom": 0.0
  2641. },
  2642. "ElementType": {
  2643. "Name": "StaticText"
  2644. }
  2645. }
  2646. ],
  2647. "Id": "de3031d7-0e15-40d3-ab42-74b36876e8ee",
  2648. "Index": 2,
  2649. "Tag": null,
  2650. "MeasureTag": null,
  2651. "HorizontalAlignment": "Stretch",
  2652. "VerticalAlignment": "Stretch",
  2653. "Margin": {
  2654. "Left": 0.0,
  2655. "Top": 0.0,
  2656. "Right": 0.0,
  2657. "Bottom": 0.0
  2658. },
  2659. "ElementType": {
  2660. "Name": "Paragraph"
  2661. }
  2662. }
  2663. ],
  2664. "BaseFontSize": 9.0,
  2665. "InvertColor": false,
  2666. "Version": "1.1_1.7.21.19487"
  2667. }