pet.json 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535
  1. {
  2. "Id": "627596fe-b317-4275-8b5b-85e6b0549c48",
  3. "UpdateTime": "2021-05-27T14:34:56.4541719+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": 33.375,
  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": 18,
  99. "LineWidth": 189.0,
  100. "TextWrap": false,
  101. "Id": "b2870a61-4d9c-4710-947f-f9743df09581",
  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": "859ae9c2-4257-4458-8eb0-4e47539cb991",
  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": "5f026791-d221-4489-a302-a47d5a94c2a8",
  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": "c7d64024-1bae-4c99-9c0f-5b20ed2e99f6",
  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": "267ce956-a4d3-4ce3-bfc5-ef1bbcf6291e",
  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": "36129de2-e66a-4193-bd7e-9715f4431ecb",
  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": "ace01f41-44f6-4187-8bdb-fa8936c4c4ee",
  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": "f5ad739d-ec93-4c83-99a0-c5f49eec49eb",
  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": "9d196a0d-030e-4d35-bd5d-1ad4502366df",
  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.0
  407. },
  408. {
  409. "Width": 157.99999999999997
  410. },
  411. {
  412. "Width": 159.0
  413. }
  414. ],
  415. "RowDefinitions": [
  416. {
  417. "Height": 21.0,
  418. "Type": "MinValue",
  419. "MinHeight": 18.0
  420. },
  421. {
  422. "Height": 22.5,
  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": "8b05bc5b-7712-4812-929c-d6ae4c8e83c2",
  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": 88.07,
  494. "TextWrap": false,
  495. "Id": "49c4ad30-f6b0-4b00-b86d-7aa31c4ce6b9",
  496. "Index": 1,
  497. "Tag": {
  498. "Id": "DB1202FB-51DF-4EB7-903A-2F6740CAD74B",
  499. "Name": "Owner",
  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": "1e890cd4-28bf-4749-8bab-d9e0b9e4ca7f",
  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": "7fa88937-e069-420a-8bf2-8f475a5a3d64",
  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": "8fce5b3b-2e20-4b79-bb3b-d77a9017a3b6",
  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. "FontName": "宋体",
  650. "FontSize": 10.5,
  651. "FontStyles": [],
  652. "FontColor": {
  653. "A": 255,
  654. "R": 0,
  655. "G": 0,
  656. "B": 0
  657. },
  658. "Background": {
  659. "A": 255,
  660. "R": 255,
  661. "G": 255,
  662. "B": 255
  663. },
  664. "LineLength": 9,
  665. "LineWidth": 88.07,
  666. "TextWrap": false,
  667. "Id": "880c3847-d8d2-4dcb-9c83-b3d3b6f2233b",
  668. "Index": 1,
  669. "Tag": {
  670. "Id": "91bbaa61-a91d-4399-a3f4-df29117d2d59",
  671. "Name": "PatientName",
  672. "IsDefault": true,
  673. "ElementTagType": "General"
  674. },
  675. "MeasureTag": null,
  676. "HorizontalAlignment": "Stretch",
  677. "VerticalAlignment": "Center",
  678. "Margin": {
  679. "Left": 0.0,
  680. "Top": 0.0,
  681. "Right": 0.0,
  682. "Bottom": 0.0
  683. },
  684. "ElementType": {
  685. "Name": "InputText"
  686. }
  687. }
  688. ],
  689. "Id": "21ef1746-0c75-41f4-84c4-5883383c7045",
  690. "Index": 0,
  691. "Tag": null,
  692. "MeasureTag": null,
  693. "HorizontalAlignment": "Stretch",
  694. "VerticalAlignment": "Stretch",
  695. "Margin": {
  696. "Left": 0.0,
  697. "Top": 0.0,
  698. "Right": 0.0,
  699. "Bottom": 0.0
  700. },
  701. "ElementType": {
  702. "Name": "Paragraph"
  703. }
  704. }
  705. ],
  706. "Background": {
  707. "A": 255,
  708. "R": 255,
  709. "G": 255,
  710. "B": 255
  711. },
  712. "WidthType": "FixedValue",
  713. "HeightType": "MinValue",
  714. "Borders": {
  715. "Left": {
  716. "BorderStyle": "None",
  717. "Color": {
  718. "A": 255,
  719. "R": 0,
  720. "G": 0,
  721. "B": 0
  722. },
  723. "Thickness": 1.0
  724. },
  725. "Top": {
  726. "BorderStyle": "None",
  727. "Color": {
  728. "A": 255,
  729. "R": 0,
  730. "G": 0,
  731. "B": 0
  732. },
  733. "Thickness": 1.0
  734. },
  735. "Right": {
  736. "BorderStyle": "None",
  737. "Color": {
  738. "A": 255,
  739. "R": 0,
  740. "G": 0,
  741. "B": 0
  742. },
  743. "Thickness": 1.0
  744. },
  745. "Bottom": {
  746. "BorderStyle": "None",
  747. "Color": {
  748. "A": 255,
  749. "R": 0,
  750. "G": 0,
  751. "B": 0
  752. },
  753. "Thickness": 1.0
  754. }
  755. },
  756. "Id": "517cf6f3-7209-4db4-a7dc-4357f986b555",
  757. "Index": 0,
  758. "Tag": null,
  759. "MeasureTag": null,
  760. "HorizontalAlignment": "Stretch",
  761. "VerticalAlignment": "Stretch",
  762. "Margin": {
  763. "Left": 0.0,
  764. "Top": 0.0,
  765. "Right": 0.0,
  766. "Bottom": 0.0
  767. },
  768. "ElementType": {
  769. "Name": "RTCell"
  770. }
  771. },
  772. {
  773. "Row": 0,
  774. "Column": 2,
  775. "RowSpan": 1,
  776. "ColumnSpan": 1
  777. },
  778. {
  779. "Blocks": [
  780. {
  781. "LineSpace": 0.0,
  782. "Elements": [
  783. {
  784. "Text": "性 别:",
  785. "FontName": "宋体",
  786. "FontSize": 10.5,
  787. "FontStyles": [],
  788. "FontColor": {
  789. "A": 255,
  790. "R": 0,
  791. "G": 0,
  792. "B": 0
  793. },
  794. "Background": {
  795. "A": 255,
  796. "R": 255,
  797. "G": 255,
  798. "B": 255
  799. },
  800. "LineLength": 7,
  801. "LineWidth": 0.0,
  802. "TextWrap": false,
  803. "Id": "29322f0e-7c38-4438-a033-6d8d91a81580",
  804. "Index": 0,
  805. "Tag": null,
  806. "MeasureTag": null,
  807. "HorizontalAlignment": "Stretch",
  808. "VerticalAlignment": "Center",
  809. "Margin": {
  810. "Left": 0.0,
  811. "Top": 0.0,
  812. "Right": 0.0,
  813. "Bottom": 0.0
  814. },
  815. "ElementType": {
  816. "Name": "StaticText"
  817. }
  818. },
  819. {
  820. "IsReadOnly": false,
  821. "Items": [
  822. "雄性",
  823. "雌性",
  824. "绝育",
  825. "去势"
  826. ],
  827. "DisplayStyle": "OnlyShowSelectedItem",
  828. "FontName": "宋体",
  829. "FontSize": 10.5,
  830. "FontStyles": [],
  831. "FontColor": {
  832. "A": 255,
  833. "R": 0,
  834. "G": 0,
  835. "B": 0
  836. },
  837. "Background": {
  838. "A": 255,
  839. "R": 255,
  840. "G": 255,
  841. "B": 255
  842. },
  843. "LineLength": 9,
  844. "LineWidth": 88.07,
  845. "TextWrap": false,
  846. "Id": "5534673f-ffc5-4cd7-b397-0f35b8808f97",
  847. "Index": 1,
  848. "Tag": {
  849. "Id": "93bbaa61-a91d-4399-a3f4-df29117d2d59",
  850. "Name": "PatientGender",
  851. "IsDefault": true,
  852. "ElementTagType": "General"
  853. },
  854. "MeasureTag": null,
  855. "HorizontalAlignment": "Stretch",
  856. "VerticalAlignment": "Center",
  857. "Margin": {
  858. "Left": 0.0,
  859. "Top": 0.0,
  860. "Right": 0.0,
  861. "Bottom": 0.0
  862. },
  863. "ElementType": {
  864. "Name": "SingleSelected"
  865. }
  866. }
  867. ],
  868. "Id": "737d70fb-8960-450b-87d6-93c195662861",
  869. "Index": 0,
  870. "Tag": null,
  871. "MeasureTag": null,
  872. "HorizontalAlignment": "Stretch",
  873. "VerticalAlignment": "Stretch",
  874. "Margin": {
  875. "Left": 0.0,
  876. "Top": 0.0,
  877. "Right": 0.0,
  878. "Bottom": 0.0
  879. },
  880. "ElementType": {
  881. "Name": "Paragraph"
  882. }
  883. }
  884. ],
  885. "Background": {
  886. "A": 255,
  887. "R": 255,
  888. "G": 255,
  889. "B": 255
  890. },
  891. "WidthType": "FixedValue",
  892. "HeightType": "MinValue",
  893. "Borders": {
  894. "Left": {
  895. "BorderStyle": "None",
  896. "Color": {
  897. "A": 255,
  898. "R": 0,
  899. "G": 0,
  900. "B": 0
  901. },
  902. "Thickness": 1.0
  903. },
  904. "Top": {
  905. "BorderStyle": "None",
  906. "Color": {
  907. "A": 255,
  908. "R": 0,
  909. "G": 0,
  910. "B": 0
  911. },
  912. "Thickness": 1.0
  913. },
  914. "Right": {
  915. "BorderStyle": "None",
  916. "Color": {
  917. "A": 255,
  918. "R": 0,
  919. "G": 0,
  920. "B": 0
  921. },
  922. "Thickness": 1.0
  923. },
  924. "Bottom": {
  925. "BorderStyle": "None",
  926. "Color": {
  927. "A": 255,
  928. "R": 0,
  929. "G": 0,
  930. "B": 0
  931. },
  932. "Thickness": 1.0
  933. }
  934. },
  935. "Id": "4fe0f59e-654a-46d0-81a7-d923c53a82e4",
  936. "Index": 0,
  937. "Tag": null,
  938. "MeasureTag": null,
  939. "HorizontalAlignment": "Stretch",
  940. "VerticalAlignment": "Stretch",
  941. "Margin": {
  942. "Left": 0.0,
  943. "Top": 0.0,
  944. "Right": 0.0,
  945. "Bottom": 0.0
  946. },
  947. "ElementType": {
  948. "Name": "RTCell"
  949. }
  950. },
  951. {
  952. "Row": 1,
  953. "Column": 0,
  954. "RowSpan": 1,
  955. "ColumnSpan": 1
  956. },
  957. {
  958. "Blocks": [
  959. {
  960. "LineSpace": 0.0,
  961. "Elements": [
  962. {
  963. "Text": "年 龄:",
  964. "FontName": "宋体",
  965. "FontSize": 10.5,
  966. "FontStyles": [],
  967. "FontColor": {
  968. "A": 255,
  969. "R": 0,
  970. "G": 0,
  971. "B": 0
  972. },
  973. "Background": {
  974. "A": 255,
  975. "R": 255,
  976. "G": 255,
  977. "B": 255
  978. },
  979. "LineLength": 7,
  980. "LineWidth": 0.0,
  981. "TextWrap": false,
  982. "Id": "89ae6a6a-e5ba-4811-bd85-1b090d903aeb",
  983. "Index": 0,
  984. "Tag": null,
  985. "MeasureTag": null,
  986. "HorizontalAlignment": "Stretch",
  987. "VerticalAlignment": "Center",
  988. "Margin": {
  989. "Left": 0.0,
  990. "Top": 0.0,
  991. "Right": 0.0,
  992. "Bottom": 0.0
  993. },
  994. "ElementType": {
  995. "Name": "StaticText"
  996. }
  997. },
  998. {
  999. "IsReadOnly": false,
  1000. "FontName": "宋体",
  1001. "FontSize": 10.5,
  1002. "FontStyles": [],
  1003. "FontColor": {
  1004. "A": 255,
  1005. "R": 0,
  1006. "G": 0,
  1007. "B": 0
  1008. },
  1009. "Background": {
  1010. "A": 255,
  1011. "R": 255,
  1012. "G": 255,
  1013. "B": 255
  1014. },
  1015. "LineLength": 9,
  1016. "LineWidth": 88.07,
  1017. "TextWrap": false,
  1018. "Id": "644600c0-7f5e-4ddf-82e5-94d1495f530a",
  1019. "Index": 1,
  1020. "Tag": {
  1021. "Id": "92bbaa61-a91d-4399-a3f4-df29117d2d59",
  1022. "Name": "PatientAge",
  1023. "IsDefault": true,
  1024. "ElementTagType": "General"
  1025. },
  1026. "MeasureTag": null,
  1027. "HorizontalAlignment": "Stretch",
  1028. "VerticalAlignment": "Center",
  1029. "Margin": {
  1030. "Left": 0.0,
  1031. "Top": 0.0,
  1032. "Right": 0.0,
  1033. "Bottom": 0.0
  1034. },
  1035. "ElementType": {
  1036. "Name": "InputText"
  1037. }
  1038. }
  1039. ],
  1040. "Id": "21d68762-ac10-4501-8f4d-fd0352c91b92",
  1041. "Index": 0,
  1042. "Tag": null,
  1043. "MeasureTag": null,
  1044. "HorizontalAlignment": "Stretch",
  1045. "VerticalAlignment": "Stretch",
  1046. "Margin": {
  1047. "Left": 0.0,
  1048. "Top": 0.0,
  1049. "Right": 0.0,
  1050. "Bottom": 0.0
  1051. },
  1052. "ElementType": {
  1053. "Name": "Paragraph"
  1054. }
  1055. }
  1056. ],
  1057. "Background": {
  1058. "A": 255,
  1059. "R": 255,
  1060. "G": 255,
  1061. "B": 255
  1062. },
  1063. "WidthType": "FixedValue",
  1064. "HeightType": "MinValue",
  1065. "Borders": {
  1066. "Left": {
  1067. "BorderStyle": "None",
  1068. "Color": {
  1069. "A": 255,
  1070. "R": 0,
  1071. "G": 0,
  1072. "B": 0
  1073. },
  1074. "Thickness": 1.0
  1075. },
  1076. "Top": {
  1077. "BorderStyle": "None",
  1078. "Color": {
  1079. "A": 255,
  1080. "R": 0,
  1081. "G": 0,
  1082. "B": 0
  1083. },
  1084. "Thickness": 1.0
  1085. },
  1086. "Right": {
  1087. "BorderStyle": "None",
  1088. "Color": {
  1089. "A": 255,
  1090. "R": 0,
  1091. "G": 0,
  1092. "B": 0
  1093. },
  1094. "Thickness": 1.0
  1095. },
  1096. "Bottom": {
  1097. "BorderStyle": "None",
  1098. "Color": {
  1099. "A": 255,
  1100. "R": 0,
  1101. "G": 0,
  1102. "B": 0
  1103. },
  1104. "Thickness": 1.0
  1105. }
  1106. },
  1107. "Id": "bd190f99-22d0-40c8-b727-a25481f581c7",
  1108. "Index": 0,
  1109. "Tag": null,
  1110. "MeasureTag": null,
  1111. "HorizontalAlignment": "Stretch",
  1112. "VerticalAlignment": "Stretch",
  1113. "Margin": {
  1114. "Left": 0.0,
  1115. "Top": 0.0,
  1116. "Right": 0.0,
  1117. "Bottom": 0.0
  1118. },
  1119. "ElementType": {
  1120. "Name": "RTCell"
  1121. }
  1122. },
  1123. {
  1124. "Row": 1,
  1125. "Column": 1,
  1126. "RowSpan": 1,
  1127. "ColumnSpan": 1
  1128. },
  1129. {
  1130. "Blocks": [
  1131. {
  1132. "LineSpace": 0.0,
  1133. "Elements": [
  1134. {
  1135. "Text": "动 物 ID:",
  1136. "FontName": "宋体",
  1137. "FontSize": 10.5,
  1138. "FontStyles": [],
  1139. "FontColor": {
  1140. "A": 255,
  1141. "R": 0,
  1142. "G": 0,
  1143. "B": 0
  1144. },
  1145. "Background": {
  1146. "A": 255,
  1147. "R": 255,
  1148. "G": 255,
  1149. "B": 255
  1150. },
  1151. "LineLength": 7,
  1152. "LineWidth": 0.0,
  1153. "TextWrap": false,
  1154. "Id": "a35d6c4e-54fb-4fb2-bafc-53c2ea9e5bfc",
  1155. "Index": 0,
  1156. "Tag": null,
  1157. "MeasureTag": null,
  1158. "HorizontalAlignment": "Stretch",
  1159. "VerticalAlignment": "Center",
  1160. "Margin": {
  1161. "Left": 0.0,
  1162. "Top": 0.0,
  1163. "Right": 0.0,
  1164. "Bottom": 0.0
  1165. },
  1166. "ElementType": {
  1167. "Name": "StaticText"
  1168. }
  1169. },
  1170. {
  1171. "IsReadOnly": false,
  1172. "FontName": "宋体",
  1173. "FontSize": 10.5,
  1174. "FontStyles": [],
  1175. "FontColor": {
  1176. "A": 255,
  1177. "R": 0,
  1178. "G": 0,
  1179. "B": 0
  1180. },
  1181. "Background": {
  1182. "A": 255,
  1183. "R": 255,
  1184. "G": 255,
  1185. "B": 255
  1186. },
  1187. "LineLength": 9,
  1188. "LineWidth": 88.07,
  1189. "TextWrap": false,
  1190. "Id": "4c06b52c-b854-41d7-9edb-31ea89169b44",
  1191. "Index": 1,
  1192. "Tag": {
  1193. "Id": "90bbaa61-a91d-4399-a3f4-df29117d2d59",
  1194. "Name": "PatientId",
  1195. "IsDefault": true,
  1196. "ElementTagType": "General"
  1197. },
  1198. "MeasureTag": null,
  1199. "HorizontalAlignment": "Stretch",
  1200. "VerticalAlignment": "Center",
  1201. "Margin": {
  1202. "Left": 0.0,
  1203. "Top": 0.0,
  1204. "Right": 0.0,
  1205. "Bottom": 0.0
  1206. },
  1207. "ElementType": {
  1208. "Name": "InputText"
  1209. }
  1210. }
  1211. ],
  1212. "Id": "38ab9826-97ea-4d6e-aa15-759da4573d92",
  1213. "Index": 0,
  1214. "Tag": null,
  1215. "MeasureTag": null,
  1216. "HorizontalAlignment": "Stretch",
  1217. "VerticalAlignment": "Stretch",
  1218. "Margin": {
  1219. "Left": 0.0,
  1220. "Top": 0.0,
  1221. "Right": 0.0,
  1222. "Bottom": 0.0
  1223. },
  1224. "ElementType": {
  1225. "Name": "Paragraph"
  1226. }
  1227. }
  1228. ],
  1229. "Background": {
  1230. "A": 255,
  1231. "R": 255,
  1232. "G": 255,
  1233. "B": 255
  1234. },
  1235. "WidthType": "FixedValue",
  1236. "HeightType": "MinValue",
  1237. "Borders": {
  1238. "Left": {
  1239. "BorderStyle": "None",
  1240. "Color": {
  1241. "A": 255,
  1242. "R": 0,
  1243. "G": 0,
  1244. "B": 0
  1245. },
  1246. "Thickness": 1.0
  1247. },
  1248. "Top": {
  1249. "BorderStyle": "None",
  1250. "Color": {
  1251. "A": 255,
  1252. "R": 0,
  1253. "G": 0,
  1254. "B": 0
  1255. },
  1256. "Thickness": 1.0
  1257. },
  1258. "Right": {
  1259. "BorderStyle": "None",
  1260. "Color": {
  1261. "A": 255,
  1262. "R": 0,
  1263. "G": 0,
  1264. "B": 0
  1265. },
  1266. "Thickness": 1.0
  1267. },
  1268. "Bottom": {
  1269. "BorderStyle": "None",
  1270. "Color": {
  1271. "A": 255,
  1272. "R": 0,
  1273. "G": 0,
  1274. "B": 0
  1275. },
  1276. "Thickness": 1.0
  1277. }
  1278. },
  1279. "Id": "d3557cb1-28e9-4d06-9ffc-2eb719ea7c96",
  1280. "Index": 0,
  1281. "Tag": null,
  1282. "MeasureTag": null,
  1283. "HorizontalAlignment": "Stretch",
  1284. "VerticalAlignment": "Stretch",
  1285. "Margin": {
  1286. "Left": 0.0,
  1287. "Top": 0.0,
  1288. "Right": 0.0,
  1289. "Bottom": 0.0
  1290. },
  1291. "ElementType": {
  1292. "Name": "RTCell"
  1293. }
  1294. },
  1295. {
  1296. "Row": 1,
  1297. "Column": 2,
  1298. "RowSpan": 1,
  1299. "ColumnSpan": 1
  1300. },
  1301. {
  1302. "Blocks": [
  1303. {
  1304. "LineSpace": 0.0,
  1305. "Elements": [
  1306. {
  1307. "Text": "种 类:",
  1308. "FontName": "宋体",
  1309. "FontSize": 10.5,
  1310. "FontStyles": [],
  1311. "FontColor": {
  1312. "A": 255,
  1313. "R": 0,
  1314. "G": 0,
  1315. "B": 0
  1316. },
  1317. "Background": {
  1318. "A": 255,
  1319. "R": 255,
  1320. "G": 255,
  1321. "B": 255
  1322. },
  1323. "LineLength": 7,
  1324. "LineWidth": 0.0,
  1325. "TextWrap": false,
  1326. "Id": "0d2bca9a-e24a-484b-ba9c-ebaeda5c0698",
  1327. "Index": 0,
  1328. "Tag": null,
  1329. "MeasureTag": null,
  1330. "HorizontalAlignment": "Stretch",
  1331. "VerticalAlignment": "Center",
  1332. "Margin": {
  1333. "Left": 0.0,
  1334. "Top": 0.0,
  1335. "Right": 0.0,
  1336. "Bottom": 0.0
  1337. },
  1338. "ElementType": {
  1339. "Name": "StaticText"
  1340. }
  1341. },
  1342. {
  1343. "IsReadOnly": false,
  1344. "Items": [
  1345. "牛类",
  1346. "犬类",
  1347. "猫类",
  1348. "羊类",
  1349. "猪类"
  1350. ],
  1351. "DisplayStyle": "OnlyShowSelectedItem",
  1352. "FontName": "宋体",
  1353. "FontSize": 10.5,
  1354. "FontStyles": [],
  1355. "FontColor": {
  1356. "A": 255,
  1357. "R": 0,
  1358. "G": 0,
  1359. "B": 0
  1360. },
  1361. "Background": {
  1362. "A": 255,
  1363. "R": 255,
  1364. "G": 255,
  1365. "B": 255
  1366. },
  1367. "LineLength": 9,
  1368. "LineWidth": 88.07,
  1369. "TextWrap": false,
  1370. "Id": "0e26ede8-49c7-4fa3-896c-181264cf5557",
  1371. "Index": 1,
  1372. "Tag": {
  1373. "Id": "FC5F7564-B63F-4185-8E1C-FC4BC5046332",
  1374. "Name": "Species",
  1375. "IsDefault": true,
  1376. "ElementTagType": "General"
  1377. },
  1378. "MeasureTag": null,
  1379. "HorizontalAlignment": "Stretch",
  1380. "VerticalAlignment": "Center",
  1381. "Margin": {
  1382. "Left": 0.0,
  1383. "Top": 0.0,
  1384. "Right": 0.0,
  1385. "Bottom": 0.0
  1386. },
  1387. "ElementType": {
  1388. "Name": "SingleSelected"
  1389. }
  1390. }
  1391. ],
  1392. "Id": "cfa39c76-7853-4cdf-a18b-53b0cc6f706d",
  1393. "Index": 0,
  1394. "Tag": null,
  1395. "MeasureTag": null,
  1396. "HorizontalAlignment": "Stretch",
  1397. "VerticalAlignment": "Stretch",
  1398. "Margin": {
  1399. "Left": 0.0,
  1400. "Top": 0.0,
  1401. "Right": 0.0,
  1402. "Bottom": 0.0
  1403. },
  1404. "ElementType": {
  1405. "Name": "Paragraph"
  1406. }
  1407. }
  1408. ],
  1409. "Background": {
  1410. "A": 255,
  1411. "R": 255,
  1412. "G": 255,
  1413. "B": 255
  1414. },
  1415. "WidthType": "FixedValue",
  1416. "HeightType": "MinValue",
  1417. "Borders": {
  1418. "Left": {
  1419. "BorderStyle": "None",
  1420. "Color": {
  1421. "A": 255,
  1422. "R": 0,
  1423. "G": 0,
  1424. "B": 0
  1425. },
  1426. "Thickness": 1.0
  1427. },
  1428. "Top": {
  1429. "BorderStyle": "None",
  1430. "Color": {
  1431. "A": 255,
  1432. "R": 0,
  1433. "G": 0,
  1434. "B": 0
  1435. },
  1436. "Thickness": 1.0
  1437. },
  1438. "Right": {
  1439. "BorderStyle": "None",
  1440. "Color": {
  1441. "A": 255,
  1442. "R": 0,
  1443. "G": 0,
  1444. "B": 0
  1445. },
  1446. "Thickness": 1.0
  1447. },
  1448. "Bottom": {
  1449. "BorderStyle": "None",
  1450. "Color": {
  1451. "A": 255,
  1452. "R": 0,
  1453. "G": 0,
  1454. "B": 0
  1455. },
  1456. "Thickness": 1.0
  1457. }
  1458. },
  1459. "Id": "8eb28d01-2226-4415-92a6-94ecc5b1bb00",
  1460. "Index": 0,
  1461. "Tag": null,
  1462. "MeasureTag": null,
  1463. "HorizontalAlignment": "Stretch",
  1464. "VerticalAlignment": "Stretch",
  1465. "Margin": {
  1466. "Left": 0.0,
  1467. "Top": 0.0,
  1468. "Right": 0.0,
  1469. "Bottom": 0.0
  1470. },
  1471. "ElementType": {
  1472. "Name": "RTCell"
  1473. }
  1474. }
  1475. ],
  1476. "Id": "54b715d5-1dbc-4588-97ad-d8deb080e29d",
  1477. "Index": 2,
  1478. "Tag": null,
  1479. "MeasureTag": null,
  1480. "HorizontalAlignment": "Left",
  1481. "VerticalAlignment": "Stretch",
  1482. "Margin": {
  1483. "Left": 0.0,
  1484. "Top": 0.0,
  1485. "Right": 0.0,
  1486. "Bottom": 0.0
  1487. },
  1488. "ElementType": {
  1489. "Name": "RTTable"
  1490. }
  1491. },
  1492. {
  1493. "LineSpace": 0.0,
  1494. "Elements": [
  1495. {
  1496. "Width": 478.61559055118107,
  1497. "BorderStyle": "Solid",
  1498. "Stroke": {
  1499. "A": 255,
  1500. "R": 0,
  1501. "G": 0,
  1502. "B": 0
  1503. },
  1504. "Thickness": 1.0,
  1505. "Id": "e6a4e114-eaf0-4a40-aae9-fd61a59be000",
  1506. "Index": 0,
  1507. "Tag": null,
  1508. "MeasureTag": null,
  1509. "HorizontalAlignment": "Stretch",
  1510. "VerticalAlignment": "Stretch",
  1511. "Margin": {
  1512. "Left": 0.0,
  1513. "Top": 0.0,
  1514. "Right": 0.0,
  1515. "Bottom": 0.0
  1516. },
  1517. "ElementType": {
  1518. "Name": "Line"
  1519. }
  1520. }
  1521. ],
  1522. "Id": "9a221356-ae66-4d18-9f47-993d3af21aea",
  1523. "Index": 3,
  1524. "Tag": null,
  1525. "MeasureTag": null,
  1526. "HorizontalAlignment": "Stretch",
  1527. "VerticalAlignment": "Stretch",
  1528. "Margin": {
  1529. "Left": 0.0,
  1530. "Top": 0.0,
  1531. "Right": 0.0,
  1532. "Bottom": 0.0
  1533. },
  1534. "ElementType": {
  1535. "Name": "Paragraph"
  1536. }
  1537. },
  1538. {
  1539. "Elements": [],
  1540. "ImageWidth": 238.64,
  1541. "ImageHeight": 151.99,
  1542. "HasImageBorder": false,
  1543. "Column": 2,
  1544. "IsReadOnly": false,
  1545. "TransparentBackground": false,
  1546. "HasGap": true,
  1547. "Id": "cc81bba9-8d32-4389-a18e-f64ac3890ec9",
  1548. "Index": 4,
  1549. "Tag": {
  1550. "Id": "9fbbaa61-a91d-4399-a3f4-df29117d2d59",
  1551. "Name": "ReportImages",
  1552. "IsDefault": true,
  1553. "ElementTagType": "General"
  1554. },
  1555. "MeasureTag": null,
  1556. "HorizontalAlignment": "Left",
  1557. "VerticalAlignment": "Stretch",
  1558. "Margin": {
  1559. "Left": 0.0,
  1560. "Top": 0.0,
  1561. "Right": 0.0,
  1562. "Bottom": 0.0
  1563. },
  1564. "ElementType": {
  1565. "Name": "ImageList"
  1566. }
  1567. },
  1568. {
  1569. "LineSpace": 0.0,
  1570. "Elements": [
  1571. {
  1572. "Width": 478.61559055118107,
  1573. "BorderStyle": "Solid",
  1574. "Stroke": {
  1575. "A": 255,
  1576. "R": 0,
  1577. "G": 0,
  1578. "B": 0
  1579. },
  1580. "Thickness": 1.0,
  1581. "Id": "ba0ee5f3-ec37-42bb-8397-17dcde14a783",
  1582. "Index": 0,
  1583. "Tag": null,
  1584. "MeasureTag": null,
  1585. "HorizontalAlignment": "Stretch",
  1586. "VerticalAlignment": "Stretch",
  1587. "Margin": {
  1588. "Left": 0.0,
  1589. "Top": 0.0,
  1590. "Right": 0.0,
  1591. "Bottom": 0.0
  1592. },
  1593. "ElementType": {
  1594. "Name": "Line"
  1595. }
  1596. }
  1597. ],
  1598. "Id": "8c230349-282b-45ea-9a82-fa7439359779",
  1599. "Index": 5,
  1600. "Tag": null,
  1601. "MeasureTag": null,
  1602. "HorizontalAlignment": "Stretch",
  1603. "VerticalAlignment": "Stretch",
  1604. "Margin": {
  1605. "Left": 0.0,
  1606. "Top": 0.0,
  1607. "Right": 0.0,
  1608. "Bottom": 0.0
  1609. },
  1610. "ElementType": {
  1611. "Name": "Paragraph"
  1612. }
  1613. },
  1614. {
  1615. "LineSpace": 0.0,
  1616. "Elements": [
  1617. {
  1618. "Text": "\r\n超声描述",
  1619. "FontName": "宋体",
  1620. "FontSize": 16.0,
  1621. "FontStyles": [],
  1622. "FontColor": {
  1623. "A": 255,
  1624. "R": 0,
  1625. "G": 0,
  1626. "B": 0
  1627. },
  1628. "Background": {
  1629. "A": 255,
  1630. "R": 255,
  1631. "G": 255,
  1632. "B": 255
  1633. },
  1634. "LineLength": 6,
  1635. "LineWidth": 0.0,
  1636. "TextWrap": false,
  1637. "Id": "8ff52703-d28f-4d2e-84af-7a1d9a1e671f",
  1638. "Index": 0,
  1639. "Tag": null,
  1640. "MeasureTag": null,
  1641. "HorizontalAlignment": "Stretch",
  1642. "VerticalAlignment": "Center",
  1643. "Margin": {
  1644. "Left": 0.0,
  1645. "Top": 0.0,
  1646. "Right": 0.0,
  1647. "Bottom": 0.0
  1648. },
  1649. "ElementType": {
  1650. "Name": "StaticText"
  1651. }
  1652. }
  1653. ],
  1654. "Id": "18d10ed0-f9d0-41bc-91bb-513b67495d2a",
  1655. "Index": 6,
  1656. "Tag": null,
  1657. "MeasureTag": null,
  1658. "HorizontalAlignment": "Stretch",
  1659. "VerticalAlignment": "Stretch",
  1660. "Margin": {
  1661. "Left": 0.0,
  1662. "Top": 0.0,
  1663. "Right": 0.0,
  1664. "Bottom": 0.0
  1665. },
  1666. "ElementType": {
  1667. "Name": "Paragraph"
  1668. }
  1669. },
  1670. {
  1671. "LineSpace": 0.0,
  1672. "Elements": [
  1673. {
  1674. "IsReadOnly": false,
  1675. "FontName": "宋体",
  1676. "FontSize": 10.5,
  1677. "FontStyles": [],
  1678. "FontColor": {
  1679. "A": 255,
  1680. "R": 0,
  1681. "G": 0,
  1682. "B": 0
  1683. },
  1684. "Background": {
  1685. "A": 255,
  1686. "R": 255,
  1687. "G": 255,
  1688. "B": 255
  1689. },
  1690. "LineLength": 46,
  1691. "LineWidth": 474.43,
  1692. "TextWrap": true,
  1693. "Id": "e9e4b446-2f64-479c-8e15-cdda067cd00b",
  1694. "Index": 0,
  1695. "Tag": {
  1696. "Id": "9dbbaa61-a91d-4399-a3f4-df29117d2d59",
  1697. "Name": "ReportDescription",
  1698. "IsDefault": true,
  1699. "ElementTagType": "DiagnosticEntry"
  1700. },
  1701. "MeasureTag": null,
  1702. "HorizontalAlignment": "Stretch",
  1703. "VerticalAlignment": "Center",
  1704. "Margin": {
  1705. "Left": 0.0,
  1706. "Top": 0.0,
  1707. "Right": 0.0,
  1708. "Bottom": 0.0
  1709. },
  1710. "ElementType": {
  1711. "Name": "InputText"
  1712. }
  1713. }
  1714. ],
  1715. "Id": "e132f6e4-9d0c-4876-a60a-727d4ac8c871",
  1716. "Index": 7,
  1717. "Tag": null,
  1718. "MeasureTag": null,
  1719. "HorizontalAlignment": "Stretch",
  1720. "VerticalAlignment": "Stretch",
  1721. "Margin": {
  1722. "Left": 0.0,
  1723. "Top": 0.0,
  1724. "Right": 0.0,
  1725. "Bottom": 0.0
  1726. },
  1727. "ElementType": {
  1728. "Name": "Paragraph"
  1729. }
  1730. },
  1731. {
  1732. "LineSpace": 0.0,
  1733. "Elements": [
  1734. {
  1735. "Text": "\r\n\r\n超声提示",
  1736. "FontName": "宋体",
  1737. "FontSize": 16.0,
  1738. "FontStyles": [],
  1739. "FontColor": {
  1740. "A": 255,
  1741. "R": 0,
  1742. "G": 0,
  1743. "B": 0
  1744. },
  1745. "Background": {
  1746. "A": 255,
  1747. "R": 255,
  1748. "G": 255,
  1749. "B": 255
  1750. },
  1751. "LineLength": 8,
  1752. "LineWidth": 0.0,
  1753. "TextWrap": false,
  1754. "Id": "6dabd9ea-f751-465f-a442-6a807ec601c3",
  1755. "Index": 0,
  1756. "Tag": null,
  1757. "MeasureTag": null,
  1758. "HorizontalAlignment": "Stretch",
  1759. "VerticalAlignment": "Center",
  1760. "Margin": {
  1761. "Left": 0.0,
  1762. "Top": 0.0,
  1763. "Right": 0.0,
  1764. "Bottom": 0.0
  1765. },
  1766. "ElementType": {
  1767. "Name": "StaticText"
  1768. }
  1769. }
  1770. ],
  1771. "Id": "1884e6ca-d244-4612-9b8e-92113f06452e",
  1772. "Index": 8,
  1773. "Tag": null,
  1774. "MeasureTag": null,
  1775. "HorizontalAlignment": "Stretch",
  1776. "VerticalAlignment": "Stretch",
  1777. "Margin": {
  1778. "Left": 0.0,
  1779. "Top": 0.0,
  1780. "Right": 0.0,
  1781. "Bottom": 0.0
  1782. },
  1783. "ElementType": {
  1784. "Name": "Paragraph"
  1785. }
  1786. },
  1787. {
  1788. "LineSpace": 0.0,
  1789. "Elements": [
  1790. {
  1791. "IsReadOnly": false,
  1792. "FontName": "宋体",
  1793. "FontSize": 10.5,
  1794. "FontStyles": [],
  1795. "FontColor": {
  1796. "A": 255,
  1797. "R": 0,
  1798. "G": 0,
  1799. "B": 0
  1800. },
  1801. "Background": {
  1802. "A": 255,
  1803. "R": 255,
  1804. "G": 255,
  1805. "B": 255
  1806. },
  1807. "LineLength": 46,
  1808. "LineWidth": 474.43,
  1809. "TextWrap": true,
  1810. "Id": "8b498af9-fbe4-4bfa-b3eb-2b02ebd785a1",
  1811. "Index": 0,
  1812. "Tag": {
  1813. "Id": "9ebbaa61-a91d-4399-a3f4-df29117d2d59",
  1814. "Name": "ReportSummary",
  1815. "IsDefault": true,
  1816. "ElementTagType": "DiagnosticEntry"
  1817. },
  1818. "MeasureTag": null,
  1819. "HorizontalAlignment": "Stretch",
  1820. "VerticalAlignment": "Center",
  1821. "Margin": {
  1822. "Left": 0.0,
  1823. "Top": 0.0,
  1824. "Right": 0.0,
  1825. "Bottom": 0.0
  1826. },
  1827. "ElementType": {
  1828. "Name": "InputText"
  1829. }
  1830. }
  1831. ],
  1832. "Id": "4b8fe5ef-e27b-411e-8f0a-64e9f01ddee1",
  1833. "Index": 9,
  1834. "Tag": null,
  1835. "MeasureTag": null,
  1836. "HorizontalAlignment": "Stretch",
  1837. "VerticalAlignment": "Stretch",
  1838. "Margin": {
  1839. "Left": 0.0,
  1840. "Top": 0.0,
  1841. "Right": 0.0,
  1842. "Bottom": 0.0
  1843. },
  1844. "ElementType": {
  1845. "Name": "Paragraph"
  1846. }
  1847. },
  1848. {
  1849. "LineSpace": 0.0,
  1850. "Elements": [],
  1851. "Id": "3811eed3-2f66-4307-8ecf-1bb062305233",
  1852. "Index": 10,
  1853. "Tag": null,
  1854. "MeasureTag": null,
  1855. "HorizontalAlignment": "Stretch",
  1856. "VerticalAlignment": "Stretch",
  1857. "Margin": {
  1858. "Left": 0.0,
  1859. "Top": 0.0,
  1860. "Right": 0.0,
  1861. "Bottom": 0.0
  1862. },
  1863. "ElementType": {
  1864. "Name": "Paragraph"
  1865. }
  1866. }
  1867. ],
  1868. "Header": [],
  1869. "Footer": [
  1870. {
  1871. "AutoHide": false,
  1872. "IsAverageColumnWidth": false,
  1873. "AllowBreakAcrossPages": true,
  1874. "ColumnDefinitions": [
  1875. {
  1876. "Width": 159.538530183727
  1877. },
  1878. {
  1879. "Width": 159.538530183727
  1880. },
  1881. {
  1882. "Width": 159.538530183727
  1883. }
  1884. ],
  1885. "RowDefinitions": [
  1886. {
  1887. "Height": 18.0,
  1888. "Type": "MinValue",
  1889. "MinHeight": 18.0
  1890. }
  1891. ],
  1892. "Cells": [
  1893. {
  1894. "Row": 0,
  1895. "Column": 0,
  1896. "RowSpan": 1,
  1897. "ColumnSpan": 1
  1898. },
  1899. {
  1900. "Blocks": [
  1901. {
  1902. "LineSpace": 0.0,
  1903. "Elements": [
  1904. {
  1905. "Text": "报告时间:",
  1906. "FontName": "宋体",
  1907. "FontSize": 10.5,
  1908. "FontStyles": [],
  1909. "FontColor": {
  1910. "A": 255,
  1911. "R": 0,
  1912. "G": 0,
  1913. "B": 0
  1914. },
  1915. "Background": {
  1916. "A": 255,
  1917. "R": 255,
  1918. "G": 255,
  1919. "B": 255
  1920. },
  1921. "LineLength": 5,
  1922. "LineWidth": 0.0,
  1923. "TextWrap": false,
  1924. "Id": "cec26b9d-6e6f-4d0d-90ea-a72c018f4037",
  1925. "Index": 0,
  1926. "Tag": null,
  1927. "MeasureTag": null,
  1928. "HorizontalAlignment": "Stretch",
  1929. "VerticalAlignment": "Center",
  1930. "Margin": {
  1931. "Left": 0.0,
  1932. "Top": 0.0,
  1933. "Right": 0.0,
  1934. "Bottom": 0.0
  1935. },
  1936. "ElementType": {
  1937. "Name": "StaticText"
  1938. }
  1939. },
  1940. {
  1941. "IsReadOnly": true,
  1942. "DateTimeFormat": "yyyy-MM-dd",
  1943. "IsRealTime": true,
  1944. "ShowEnabled": true,
  1945. "FontName": "宋体",
  1946. "FontSize": 10.5,
  1947. "FontStyles": [],
  1948. "FontColor": {
  1949. "A": 255,
  1950. "R": 0,
  1951. "G": 0,
  1952. "B": 0
  1953. },
  1954. "Background": {
  1955. "A": 255,
  1956. "R": 255,
  1957. "G": 255,
  1958. "B": 255
  1959. },
  1960. "LineLength": 5,
  1961. "LineWidth": 0.0,
  1962. "TextWrap": false,
  1963. "Id": "679d8db3-aa5c-4101-abaa-2f1e02ce572e",
  1964. "Index": 1,
  1965. "Tag": {
  1966. "Id": "4abbaa61-a91d-4399-a3f4-df29117d2d59",
  1967. "Name": "ReportTime",
  1968. "IsDefault": true,
  1969. "ElementTagType": "General"
  1970. },
  1971. "MeasureTag": null,
  1972. "HorizontalAlignment": "Stretch",
  1973. "VerticalAlignment": "Center",
  1974. "Margin": {
  1975. "Left": 0.0,
  1976. "Top": 0.0,
  1977. "Right": 0.0,
  1978. "Bottom": 0.0
  1979. },
  1980. "ElementType": {
  1981. "Name": "DateTime"
  1982. }
  1983. }
  1984. ],
  1985. "Id": "aa56595d-2aab-45f8-a993-97e54b16f103",
  1986. "Index": 0,
  1987. "Tag": null,
  1988. "MeasureTag": null,
  1989. "HorizontalAlignment": "Stretch",
  1990. "VerticalAlignment": "Stretch",
  1991. "Margin": {
  1992. "Left": 0.0,
  1993. "Top": 0.0,
  1994. "Right": 0.0,
  1995. "Bottom": 0.0
  1996. },
  1997. "ElementType": {
  1998. "Name": "Paragraph"
  1999. }
  2000. }
  2001. ],
  2002. "Background": {
  2003. "A": 0,
  2004. "R": 255,
  2005. "G": 255,
  2006. "B": 255
  2007. },
  2008. "WidthType": "FixedValue",
  2009. "HeightType": "MinValue",
  2010. "Borders": {
  2011. "Left": {
  2012. "BorderStyle": "None",
  2013. "Color": {
  2014. "A": 255,
  2015. "R": 0,
  2016. "G": 0,
  2017. "B": 0
  2018. },
  2019. "Thickness": 1.0
  2020. },
  2021. "Top": {
  2022. "BorderStyle": "None",
  2023. "Color": {
  2024. "A": 255,
  2025. "R": 0,
  2026. "G": 0,
  2027. "B": 0
  2028. },
  2029. "Thickness": 1.0
  2030. },
  2031. "Right": {
  2032. "BorderStyle": "None",
  2033. "Color": {
  2034. "A": 255,
  2035. "R": 0,
  2036. "G": 0,
  2037. "B": 0
  2038. },
  2039. "Thickness": 1.0
  2040. },
  2041. "Bottom": {
  2042. "BorderStyle": "None",
  2043. "Color": {
  2044. "A": 255,
  2045. "R": 0,
  2046. "G": 0,
  2047. "B": 0
  2048. },
  2049. "Thickness": 1.0
  2050. }
  2051. },
  2052. "Id": "7dc22686-cbab-44ba-8f4c-2cde456a94fd",
  2053. "Index": 0,
  2054. "Tag": null,
  2055. "MeasureTag": null,
  2056. "HorizontalAlignment": "Stretch",
  2057. "VerticalAlignment": "Stretch",
  2058. "Margin": {
  2059. "Left": 0.0,
  2060. "Top": 0.0,
  2061. "Right": 0.0,
  2062. "Bottom": 0.0
  2063. },
  2064. "ElementType": {
  2065. "Name": "RTCell"
  2066. }
  2067. },
  2068. {
  2069. "Row": 0,
  2070. "Column": 1,
  2071. "RowSpan": 1,
  2072. "ColumnSpan": 1
  2073. },
  2074. {
  2075. "Blocks": [
  2076. {
  2077. "LineSpace": 0.0,
  2078. "Elements": [
  2079. {
  2080. "Text": "检查医师:",
  2081. "FontName": "宋体",
  2082. "FontSize": 10.5,
  2083. "FontStyles": [],
  2084. "FontColor": {
  2085. "A": 255,
  2086. "R": 0,
  2087. "G": 0,
  2088. "B": 0
  2089. },
  2090. "Background": {
  2091. "A": 255,
  2092. "R": 255,
  2093. "G": 255,
  2094. "B": 255
  2095. },
  2096. "LineLength": 5,
  2097. "LineWidth": 0.0,
  2098. "TextWrap": false,
  2099. "Id": "8114d60e-1668-4f2e-ad4b-84ba24f85613",
  2100. "Index": 0,
  2101. "Tag": null,
  2102. "MeasureTag": null,
  2103. "HorizontalAlignment": "Stretch",
  2104. "VerticalAlignment": "Center",
  2105. "Margin": {
  2106. "Left": 0.0,
  2107. "Top": 0.0,
  2108. "Right": 0.0,
  2109. "Bottom": 0.0
  2110. },
  2111. "ElementType": {
  2112. "Name": "StaticText"
  2113. }
  2114. },
  2115. {
  2116. "IsReadOnly": false,
  2117. "FontName": "宋体",
  2118. "FontSize": 10.5,
  2119. "FontStyles": [],
  2120. "FontColor": {
  2121. "A": 255,
  2122. "R": 0,
  2123. "G": 0,
  2124. "B": 0
  2125. },
  2126. "Background": {
  2127. "A": 255,
  2128. "R": 255,
  2129. "G": 255,
  2130. "B": 255
  2131. },
  2132. "LineLength": 9,
  2133. "LineWidth": 90.91,
  2134. "TextWrap": false,
  2135. "Id": "5c8960cd-028b-4157-8ccd-0fb827b055ca",
  2136. "Index": 1,
  2137. "Tag": {
  2138. "Id": "6abbaa61-a91d-4399-a3f4-df29117d2d59",
  2139. "Name": "InspectionPhysician",
  2140. "IsDefault": true,
  2141. "ElementTagType": "General"
  2142. },
  2143. "MeasureTag": null,
  2144. "HorizontalAlignment": "Stretch",
  2145. "VerticalAlignment": "Center",
  2146. "Margin": {
  2147. "Left": 0.0,
  2148. "Top": 0.0,
  2149. "Right": 0.0,
  2150. "Bottom": 0.0
  2151. },
  2152. "ElementType": {
  2153. "Name": "InputText"
  2154. }
  2155. }
  2156. ],
  2157. "Id": "e3791f63-0cd2-4f6d-bf6a-ab7304919991",
  2158. "Index": 0,
  2159. "Tag": null,
  2160. "MeasureTag": null,
  2161. "HorizontalAlignment": "Stretch",
  2162. "VerticalAlignment": "Stretch",
  2163. "Margin": {
  2164. "Left": 0.0,
  2165. "Top": 0.0,
  2166. "Right": 0.0,
  2167. "Bottom": 0.0
  2168. },
  2169. "ElementType": {
  2170. "Name": "Paragraph"
  2171. }
  2172. }
  2173. ],
  2174. "Background": {
  2175. "A": 0,
  2176. "R": 255,
  2177. "G": 255,
  2178. "B": 255
  2179. },
  2180. "WidthType": "FixedValue",
  2181. "HeightType": "MinValue",
  2182. "Borders": {
  2183. "Left": {
  2184. "BorderStyle": "None",
  2185. "Color": {
  2186. "A": 255,
  2187. "R": 0,
  2188. "G": 0,
  2189. "B": 0
  2190. },
  2191. "Thickness": 1.0
  2192. },
  2193. "Top": {
  2194. "BorderStyle": "None",
  2195. "Color": {
  2196. "A": 255,
  2197. "R": 0,
  2198. "G": 0,
  2199. "B": 0
  2200. },
  2201. "Thickness": 1.0
  2202. },
  2203. "Right": {
  2204. "BorderStyle": "None",
  2205. "Color": {
  2206. "A": 255,
  2207. "R": 0,
  2208. "G": 0,
  2209. "B": 0
  2210. },
  2211. "Thickness": 1.0
  2212. },
  2213. "Bottom": {
  2214. "BorderStyle": "None",
  2215. "Color": {
  2216. "A": 255,
  2217. "R": 0,
  2218. "G": 0,
  2219. "B": 0
  2220. },
  2221. "Thickness": 1.0
  2222. }
  2223. },
  2224. "Id": "3e84fc0e-8f2a-4c54-8540-2ccc157139a2",
  2225. "Index": 0,
  2226. "Tag": null,
  2227. "MeasureTag": null,
  2228. "HorizontalAlignment": "Stretch",
  2229. "VerticalAlignment": "Stretch",
  2230. "Margin": {
  2231. "Left": 0.0,
  2232. "Top": 0.0,
  2233. "Right": 0.0,
  2234. "Bottom": 0.0
  2235. },
  2236. "ElementType": {
  2237. "Name": "RTCell"
  2238. }
  2239. },
  2240. {
  2241. "Row": 0,
  2242. "Column": 2,
  2243. "RowSpan": 1,
  2244. "ColumnSpan": 1
  2245. },
  2246. {
  2247. "Blocks": [
  2248. {
  2249. "LineSpace": 0.0,
  2250. "Elements": [
  2251. {
  2252. "Text": "报告医师:",
  2253. "FontName": "宋体",
  2254. "FontSize": 10.5,
  2255. "FontStyles": [],
  2256. "FontColor": {
  2257. "A": 255,
  2258. "R": 0,
  2259. "G": 0,
  2260. "B": 0
  2261. },
  2262. "Background": {
  2263. "A": 255,
  2264. "R": 255,
  2265. "G": 255,
  2266. "B": 255
  2267. },
  2268. "LineLength": 5,
  2269. "LineWidth": 0.0,
  2270. "TextWrap": false,
  2271. "Id": "775135ff-eb1d-44f1-938b-b30419726c84",
  2272. "Index": 0,
  2273. "Tag": null,
  2274. "MeasureTag": null,
  2275. "HorizontalAlignment": "Stretch",
  2276. "VerticalAlignment": "Center",
  2277. "Margin": {
  2278. "Left": 0.0,
  2279. "Top": 0.0,
  2280. "Right": 0.0,
  2281. "Bottom": 0.0
  2282. },
  2283. "ElementType": {
  2284. "Name": "StaticText"
  2285. }
  2286. },
  2287. {
  2288. "IsReadOnly": true,
  2289. "FontName": "宋体",
  2290. "FontSize": 10.5,
  2291. "FontStyles": [],
  2292. "FontColor": {
  2293. "A": 255,
  2294. "R": 0,
  2295. "G": 0,
  2296. "B": 0
  2297. },
  2298. "Background": {
  2299. "A": 255,
  2300. "R": 255,
  2301. "G": 255,
  2302. "B": 255
  2303. },
  2304. "LineLength": 9,
  2305. "LineWidth": 90.91,
  2306. "TextWrap": false,
  2307. "Id": "f1a372bf-552f-4bd4-984b-d614e5f5e783",
  2308. "Index": 1,
  2309. "Tag": {
  2310. "Id": "5abbaa61-a91d-4399-a3f4-df29117d2d59",
  2311. "Name": "ReportPhysician",
  2312. "IsDefault": true,
  2313. "ElementTagType": "General"
  2314. },
  2315. "MeasureTag": null,
  2316. "HorizontalAlignment": "Stretch",
  2317. "VerticalAlignment": "Center",
  2318. "Margin": {
  2319. "Left": 0.0,
  2320. "Top": 0.0,
  2321. "Right": 0.0,
  2322. "Bottom": 0.0
  2323. },
  2324. "ElementType": {
  2325. "Name": "InputText"
  2326. }
  2327. }
  2328. ],
  2329. "Id": "f3876899-fd2b-4887-985a-f8266492fe66",
  2330. "Index": 0,
  2331. "Tag": null,
  2332. "MeasureTag": null,
  2333. "HorizontalAlignment": "Stretch",
  2334. "VerticalAlignment": "Stretch",
  2335. "Margin": {
  2336. "Left": 0.0,
  2337. "Top": 0.0,
  2338. "Right": 0.0,
  2339. "Bottom": 0.0
  2340. },
  2341. "ElementType": {
  2342. "Name": "Paragraph"
  2343. }
  2344. }
  2345. ],
  2346. "Background": {
  2347. "A": 0,
  2348. "R": 255,
  2349. "G": 255,
  2350. "B": 255
  2351. },
  2352. "WidthType": "FixedValue",
  2353. "HeightType": "MinValue",
  2354. "Borders": {
  2355. "Left": {
  2356. "BorderStyle": "None",
  2357. "Color": {
  2358. "A": 255,
  2359. "R": 0,
  2360. "G": 0,
  2361. "B": 0
  2362. },
  2363. "Thickness": 1.0
  2364. },
  2365. "Top": {
  2366. "BorderStyle": "None",
  2367. "Color": {
  2368. "A": 255,
  2369. "R": 0,
  2370. "G": 0,
  2371. "B": 0
  2372. },
  2373. "Thickness": 1.0
  2374. },
  2375. "Right": {
  2376. "BorderStyle": "None",
  2377. "Color": {
  2378. "A": 255,
  2379. "R": 0,
  2380. "G": 0,
  2381. "B": 0
  2382. },
  2383. "Thickness": 1.0
  2384. },
  2385. "Bottom": {
  2386. "BorderStyle": "None",
  2387. "Color": {
  2388. "A": 255,
  2389. "R": 0,
  2390. "G": 0,
  2391. "B": 0
  2392. },
  2393. "Thickness": 1.0
  2394. }
  2395. },
  2396. "Id": "83acdaee-2324-4cdb-b391-b23ab9a3d5ea",
  2397. "Index": 0,
  2398. "Tag": null,
  2399. "MeasureTag": null,
  2400. "HorizontalAlignment": "Stretch",
  2401. "VerticalAlignment": "Stretch",
  2402. "Margin": {
  2403. "Left": 0.0,
  2404. "Top": 0.0,
  2405. "Right": 0.0,
  2406. "Bottom": 0.0
  2407. },
  2408. "ElementType": {
  2409. "Name": "RTCell"
  2410. }
  2411. }
  2412. ],
  2413. "Id": "84b0aaf6-af13-430f-9048-6818552b124b",
  2414. "Index": 0,
  2415. "Tag": null,
  2416. "MeasureTag": null,
  2417. "HorizontalAlignment": "Left",
  2418. "VerticalAlignment": "Stretch",
  2419. "Margin": {
  2420. "Left": 0.0,
  2421. "Top": 0.0,
  2422. "Right": 0.0,
  2423. "Bottom": 0.0
  2424. },
  2425. "ElementType": {
  2426. "Name": "RTTable"
  2427. }
  2428. },
  2429. {
  2430. "LineSpace": 0.0,
  2431. "Elements": [
  2432. {
  2433. "Width": 478.61559055118107,
  2434. "BorderStyle": "Solid",
  2435. "Stroke": {
  2436. "A": 255,
  2437. "R": 0,
  2438. "G": 0,
  2439. "B": 0
  2440. },
  2441. "Thickness": 1.0,
  2442. "Id": "3fd4eace-77e7-43e4-82ef-b561945e2bb3",
  2443. "Index": 0,
  2444. "Tag": null,
  2445. "MeasureTag": null,
  2446. "HorizontalAlignment": "Stretch",
  2447. "VerticalAlignment": "Stretch",
  2448. "Margin": {
  2449. "Left": 0.0,
  2450. "Top": 0.0,
  2451. "Right": 0.0,
  2452. "Bottom": 0.0
  2453. },
  2454. "ElementType": {
  2455. "Name": "Line"
  2456. }
  2457. }
  2458. ],
  2459. "Id": "2fbbf659-d0ba-4e93-861b-cbe874c2ea10",
  2460. "Index": 1,
  2461. "Tag": null,
  2462. "MeasureTag": null,
  2463. "HorizontalAlignment": "Stretch",
  2464. "VerticalAlignment": "Stretch",
  2465. "Margin": {
  2466. "Left": 0.0,
  2467. "Top": 0.0,
  2468. "Right": 0.0,
  2469. "Bottom": 0.0
  2470. },
  2471. "ElementType": {
  2472. "Name": "Paragraph"
  2473. }
  2474. },
  2475. {
  2476. "LineSpace": 0.0,
  2477. "Elements": [
  2478. {
  2479. "Text": "此报告仅供临床医生参考,不作证明材料",
  2480. "FontName": "宋体",
  2481. "FontSize": 10.5,
  2482. "FontStyles": [],
  2483. "FontColor": {
  2484. "A": 255,
  2485. "R": 0,
  2486. "G": 0,
  2487. "B": 0
  2488. },
  2489. "Background": {
  2490. "A": 255,
  2491. "R": 255,
  2492. "G": 255,
  2493. "B": 255
  2494. },
  2495. "LineLength": 18,
  2496. "LineWidth": 0.0,
  2497. "TextWrap": false,
  2498. "Id": "1749ee04-89bd-4da0-b2db-69a630be9ad4",
  2499. "Index": 0,
  2500. "Tag": null,
  2501. "MeasureTag": null,
  2502. "HorizontalAlignment": "Stretch",
  2503. "VerticalAlignment": "Center",
  2504. "Margin": {
  2505. "Left": 0.0,
  2506. "Top": 0.0,
  2507. "Right": 0.0,
  2508. "Bottom": 0.0
  2509. },
  2510. "ElementType": {
  2511. "Name": "StaticText"
  2512. }
  2513. }
  2514. ],
  2515. "Id": "292d783f-3e1e-4785-a6d6-06a4d60042ae",
  2516. "Index": 2,
  2517. "Tag": null,
  2518. "MeasureTag": null,
  2519. "HorizontalAlignment": "Stretch",
  2520. "VerticalAlignment": "Stretch",
  2521. "Margin": {
  2522. "Left": 0.0,
  2523. "Top": 0.0,
  2524. "Right": 0.0,
  2525. "Bottom": 0.0
  2526. },
  2527. "ElementType": {
  2528. "Name": "Paragraph"
  2529. }
  2530. }
  2531. ],
  2532. "BaseFontSize": 9.0,
  2533. "InvertColor": false,
  2534. "Version": "1.1_1.7.27.21460"
  2535. }