RPAHR04324.xml 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <root xmlns="">
  3. <main>
  4. <acptinfo>
  5. <item>
  6. <pid>
  7. <![CDATA[80182]]>
  8. </pid>
  9. <hngnm>
  10. <![CDATA[김]]>
  11. </hngnm>
  12. <engnm>
  13. <![CDATA[KIM]]>
  14. </engnm>
  15. <pnm/>
  16. <pkgnm>
  17. <![CDATA[호주 이민 15세이상]]>
  18. </pkgnm>
  19. <sex>
  20. <![CDATA[M]]>
  21. </sex>
  22. <age>41</age>
  23. <cmpynm/>
  24. <rgstno1>
  25. <![CDATA[670314]]>
  26. </rgstno1>
  27. <rgstno2>
  28. <![CDATA[1213752]]>
  29. </rgstno2>
  30. <cmpycd/>
  31. <pkgcd>
  32. <![CDATA[VPCDAEA]]>
  33. </pkgcd>
  34. <schlgrde/>
  35. <clsid/>
  36. <stuid/>
  37. <healexamdetlflag>
  38. <![CDATA[G02]]>
  39. </healexamdetlflag>
  40. <rsrvdd>
  41. <![CDATA[20080821]]>
  42. </rsrvdd>
  43. <hopedd>
  44. <![CDATA[20080821]]>
  45. </hopedd>
  46. <rsrvno>1732044</rsrvno>
  47. <orddd>
  48. <![CDATA[20080821]]>
  49. </orddd>
  50. <cretno>
  51. <![CDATA[1]]>
  52. </cretno>
  53. <orddeptcd/>
  54. <plceflag/>
  55. <judgdd/>
  56. <judgdrid/>
  57. <reexamfg/>
  58. <statflag>
  59. <![CDATA[E]]>
  60. </statflag>
  61. <remcnts/>
  62. <ordtm/>
  63. <waitstarttm/>
  64. <inqrprntflag>
  65. <![CDATA[N]]>
  66. </inqrprntflag>
  67. </item>
  68. <inqrlst>
  69. <item>
  70. <inptflag>i</inptflag>
  71. <healexamflag/>
  72. <healexamdetlflag/>
  73. <pid/>
  74. <orddd/>
  75. <rsrvdd/>
  76. <rsrvno/>
  77. <inqrflag>T</inqrflag>
  78. <inqrcd>111</inqrcd>
  79. <inqrnm>22222</inqrnm>
  80. <answcd/>
  81. <answcnts/>
  82. <answflag>N</answflag>
  83. <remcnts/>
  84. </item>
  85. </inqrlst>
  86. <rsltlst>
  87. <item>
  88. <testroomnm>
  89. <![CDATA[폐기능 검사실(2)]]>
  90. </testroomnm>
  91. <reptprntgrupcd>
  92. <![CDATA[01]]>
  93. </reptprntgrupcd>
  94. <inptflag>
  95. <![CDATA[i]]>
  96. </inptflag>
  97. <healexamflag/>
  98. <healexamdetlflag/>
  99. <pid/>
  100. <orddd/>
  101. <rsrvdd/>
  102. <rsrvno/>
  103. <prcpdd>
  104. <![CDATA[20080821]]>
  105. </prcpdd>
  106. <execprcpuniqno>
  107. <![CDATA[227868]]>
  108. </execprcpuniqno>
  109. <testcd>
  110. <![CDATA[VHBD1]]>
  111. </testcd>
  112. <calcscorcd/>
  113. <testnm>
  114. <![CDATA[신장]]>
  115. </testnm>
  116. <testengnm>
  117. <![CDATA[Height]]>
  118. </testengnm>
  119. <testrsltcnts/>
  120. <outtestrsltcnts/>
  121. <rsltunit>
  122. <![CDATA[cm]]>
  123. </rsltunit>
  124. <rsltflag>
  125. <![CDATA[N]]>
  126. </rsltflag>
  127. <plceflag/>
  128. <judgmark/>
  129. <refh/>
  130. <refl/>
  131. <assorsltcnts/>
  132. <choicnt>
  133. <![CDATA[1]]>
  134. </choicnt>
  135. <stndval/>
  136. <judgcd/>
  137. <judgrsltcnts/>
  138. <testroomcd>
  139. <![CDATA[5]]>
  140. </testroomcd>
  141. <maxval/>
  142. <minval/>
  143. <printyn>
  144. <![CDATA[N]]>
  145. </printyn>
  146. </item>
  147. <item>
  148. <testroomnm>
  149. <![CDATA[폐기능 검사실(2)]]>
  150. </testroomnm>
  151. <reptprntgrupcd>
  152. <![CDATA[01]]>
  153. </reptprntgrupcd>
  154. <inptflag>
  155. <![CDATA[i]]>
  156. </inptflag>
  157. <healexamflag/>
  158. <healexamdetlflag/>
  159. <pid/>
  160. <orddd/>
  161. <rsrvdd/>
  162. <rsrvno/>
  163. <prcpdd>
  164. <![CDATA[20080821]]>
  165. </prcpdd>
  166. <execprcpuniqno>
  167. <![CDATA[227869]]>
  168. </execprcpuniqno>
  169. <testcd>
  170. <![CDATA[VHBD2]]>
  171. </testcd>
  172. <calcscorcd/>
  173. <testnm>
  174. <![CDATA[체중]]>
  175. </testnm>
  176. <testengnm>
  177. <![CDATA[Weight]]>
  178. </testengnm>
  179. <testrsltcnts/>
  180. <outtestrsltcnts/>
  181. <rsltunit>
  182. <![CDATA[kg]]>
  183. </rsltunit>
  184. <rsltflag>
  185. <![CDATA[N]]>
  186. </rsltflag>
  187. <plceflag/>
  188. <judgmark/>
  189. <refh/>
  190. <refl/>
  191. <assorsltcnts/>
  192. <choicnt>
  193. <![CDATA[1]]>
  194. </choicnt>
  195. <stndval/>
  196. <judgcd/>
  197. <judgrsltcnts/>
  198. <testroomcd>
  199. <![CDATA[5]]>
  200. </testroomcd>
  201. <maxval/>
  202. <minval/>
  203. <printyn>
  204. <![CDATA[N]]>
  205. </printyn>
  206. </item>
  207. <item>
  208. <testroomnm>
  209. <![CDATA[안압,안저 검사실]]>
  210. </testroomnm>
  211. <reptprntgrupcd>
  212. <![CDATA[02]]>
  213. </reptprntgrupcd>
  214. <inptflag>
  215. <![CDATA[i]]>
  216. </inptflag>
  217. <healexamflag/>
  218. <healexamdetlflag/>
  219. <pid/>
  220. <orddd/>
  221. <rsrvdd/>
  222. <rsrvno/>
  223. <prcpdd>
  224. <![CDATA[20080821]]>
  225. </prcpdd>
  226. <execprcpuniqno>
  227. <![CDATA[227875]]>
  228. </execprcpuniqno>
  229. <testcd>
  230. <![CDATA[VHEY1]]>
  231. </testcd>
  232. <calcscorcd/>
  233. <testnm>
  234. <![CDATA[시력(좌)]]>
  235. </testnm>
  236. <testengnm>
  237. <![CDATA[Vision(LT)]]>
  238. </testengnm>
  239. <testrsltcnts/>
  240. <outtestrsltcnts/>
  241. <rsltunit/>
  242. <rsltflag>
  243. <![CDATA[N]]>
  244. </rsltflag>
  245. <plceflag/>
  246. <judgmark/>
  247. <refh/>
  248. <refl/>
  249. <assorsltcnts/>
  250. <choicnt>
  251. <![CDATA[1]]>
  252. </choicnt>
  253. <stndval/>
  254. <judgcd/>
  255. <judgrsltcnts/>
  256. <testroomcd>
  257. <![CDATA[35]]>
  258. </testroomcd>
  259. <maxval/>
  260. <minval/>
  261. <printyn>
  262. <![CDATA[N]]>
  263. </printyn>
  264. </item>
  265. <item>
  266. <testroomnm>
  267. <![CDATA[안압ㆍ안저 검사실]]>
  268. </testroomnm>
  269. <reptprntgrupcd>
  270. <![CDATA[02]]>
  271. </reptprntgrupcd>
  272. <inptflag>
  273. <![CDATA[i]]>
  274. </inptflag>
  275. <healexamflag/>
  276. <healexamdetlflag/>
  277. <pid/>
  278. <orddd/>
  279. <rsrvdd/>
  280. <rsrvno/>
  281. <prcpdd>
  282. <![CDATA[20080821]]>
  283. </prcpdd>
  284. <execprcpuniqno>
  285. <![CDATA[227877]]>
  286. </execprcpuniqno>
  287. <testcd>
  288. <![CDATA[VHEY2]]>
  289. </testcd>
  290. <calcscorcd/>
  291. <testnm>
  292. <![CDATA[시력(우)]]>
  293. </testnm>
  294. <testengnm>
  295. <![CDATA[Vision(RT)]]>
  296. </testengnm>
  297. <testrsltcnts/>
  298. <outtestrsltcnts/>
  299. <rsltunit/>
  300. <rsltflag>
  301. <![CDATA[N]]>
  302. </rsltflag>
  303. <plceflag/>
  304. <judgmark/>
  305. <refh/>
  306. <refl/>
  307. <assorsltcnts/>
  308. <choicnt>
  309. <![CDATA[1]]>
  310. </choicnt>
  311. <stndval/>
  312. <judgcd/>
  313. <judgrsltcnts/>
  314. <testroomcd>
  315. <![CDATA[7]]>
  316. </testroomcd>
  317. <maxval/>
  318. <minval/>
  319. <printyn>
  320. <![CDATA[N]]>
  321. </printyn>
  322. </item>
  323. <item>
  324. <testroomnm>
  325. <![CDATA[안압ㆍ안저 검사실]]>
  326. </testroomnm>
  327. <reptprntgrupcd>
  328. <![CDATA[02]]>
  329. </reptprntgrupcd>
  330. <inptflag>
  331. <![CDATA[i]]>
  332. </inptflag>
  333. <healexamflag/>
  334. <healexamdetlflag/>
  335. <pid/>
  336. <orddd/>
  337. <rsrvdd/>
  338. <rsrvno/>
  339. <prcpdd>
  340. <![CDATA[20080821]]>
  341. </prcpdd>
  342. <execprcpuniqno>
  343. <![CDATA[227878]]>
  344. </execprcpuniqno>
  345. <testcd>
  346. <![CDATA[VHEY3]]>
  347. </testcd>
  348. <calcscorcd/>
  349. <testnm>
  350. <![CDATA[교정시력(좌)]]>
  351. </testnm>
  352. <testengnm>
  353. <![CDATA[correct Vision(LT)]]>
  354. </testengnm>
  355. <testrsltcnts/>
  356. <outtestrsltcnts/>
  357. <rsltunit/>
  358. <rsltflag>
  359. <![CDATA[N]]>
  360. </rsltflag>
  361. <plceflag/>
  362. <judgmark/>
  363. <refh/>
  364. <refl/>
  365. <assorsltcnts/>
  366. <choicnt>
  367. <![CDATA[1]]>
  368. </choicnt>
  369. <stndval>
  370. <![CDATA[0.8]]>
  371. </stndval>
  372. <judgcd/>
  373. <judgrsltcnts/>
  374. <testroomcd>
  375. <![CDATA[7]]>
  376. </testroomcd>
  377. <maxval/>
  378. <minval/>
  379. <printyn>
  380. <![CDATA[N]]>
  381. </printyn>
  382. </item>
  383. <item>
  384. <testroomnm>
  385. <![CDATA[안압ㆍ안저 검사실]]>
  386. </testroomnm>
  387. <reptprntgrupcd>
  388. <![CDATA[02]]>
  389. </reptprntgrupcd>
  390. <inptflag>
  391. <![CDATA[i]]>
  392. </inptflag>
  393. <healexamflag/>
  394. <healexamdetlflag/>
  395. <pid/>
  396. <orddd/>
  397. <rsrvdd/>
  398. <rsrvno/>
  399. <prcpdd>
  400. <![CDATA[20080821]]>
  401. </prcpdd>
  402. <execprcpuniqno>
  403. <![CDATA[227879]]>
  404. </execprcpuniqno>
  405. <testcd>
  406. <![CDATA[VHEY4]]>
  407. </testcd>
  408. <calcscorcd/>
  409. <testnm>
  410. <![CDATA[교정시력(우)]]>
  411. </testnm>
  412. <testengnm>
  413. <![CDATA[correct Vision(RT)]]>
  414. </testengnm>
  415. <testrsltcnts/>
  416. <outtestrsltcnts/>
  417. <rsltunit/>
  418. <rsltflag>
  419. <![CDATA[N]]>
  420. </rsltflag>
  421. <plceflag/>
  422. <judgmark/>
  423. <refh/>
  424. <refl/>
  425. <assorsltcnts/>
  426. <choicnt>
  427. <![CDATA[1]]>
  428. </choicnt>
  429. <stndval>
  430. <![CDATA[0.8]]>
  431. </stndval>
  432. <judgcd/>
  433. <judgrsltcnts/>
  434. <testroomcd>
  435. <![CDATA[7]]>
  436. </testroomcd>
  437. <maxval/>
  438. <minval/>
  439. <printyn>
  440. <![CDATA[N]]>
  441. </printyn>
  442. </item>
  443. <item>
  444. <testroomnm>
  445. <![CDATA[안압ㆍ안저 검사실]]>
  446. </testroomnm>
  447. <reptprntgrupcd>
  448. <![CDATA[02]]>
  449. </reptprntgrupcd>
  450. <inptflag>
  451. <![CDATA[i]]>
  452. </inptflag>
  453. <healexamflag/>
  454. <healexamdetlflag/>
  455. <pid/>
  456. <orddd/>
  457. <rsrvdd/>
  458. <rsrvno/>
  459. <prcpdd>
  460. <![CDATA[20080821]]>
  461. </prcpdd>
  462. <execprcpuniqno>
  463. <![CDATA[227876]]>
  464. </execprcpuniqno>
  465. <testcd>
  466. <![CDATA[VHEY17]]>
  467. </testcd>
  468. <calcscorcd/>
  469. <testnm>
  470. <![CDATA[색각]]>
  471. </testnm>
  472. <testengnm>
  473. <![CDATA[color Vision]]>
  474. </testengnm>
  475. <testrsltcnts/>
  476. <outtestrsltcnts/>
  477. <rsltunit/>
  478. <rsltflag>
  479. <![CDATA[O]]>
  480. </rsltflag>
  481. <plceflag/>
  482. <judgmark/>
  483. <refh/>
  484. <refl/>
  485. <assorsltcnts/>
  486. <choicnt>
  487. <![CDATA[1]]>
  488. </choicnt>
  489. <stndval>
  490. <![CDATA[정상]]>
  491. </stndval>
  492. <judgcd/>
  493. <judgrsltcnts/>
  494. <testroomcd>
  495. <![CDATA[7]]>
  496. </testroomcd>
  497. <maxval/>
  498. <minval/>
  499. <printyn>
  500. <![CDATA[N]]>
  501. </printyn>
  502. </item>
  503. <item>
  504. <testroomnm>
  505. <![CDATA[청력 검사실]]>
  506. </testroomnm>
  507. <reptprntgrupcd>
  508. <![CDATA[03]]>
  509. </reptprntgrupcd>
  510. <inptflag>
  511. <![CDATA[i]]>
  512. </inptflag>
  513. <healexamflag/>
  514. <healexamdetlflag/>
  515. <pid/>
  516. <orddd/>
  517. <rsrvdd/>
  518. <rsrvno/>
  519. <prcpdd>
  520. <![CDATA[20080821]]>
  521. </prcpdd>
  522. <execprcpuniqno>
  523. <![CDATA[227873]]>
  524. </execprcpuniqno>
  525. <testcd>
  526. <![CDATA[VHEA3]]>
  527. </testcd>
  528. <calcscorcd/>
  529. <testnm>
  530. <![CDATA[Audiogram(좌)]]>
  531. </testnm>
  532. <testengnm>
  533. <![CDATA[Audiogram(좌)]]>
  534. </testengnm>
  535. <testrsltcnts/>
  536. <outtestrsltcnts/>
  537. <rsltunit/>
  538. <rsltflag>
  539. <![CDATA[O]]>
  540. </rsltflag>
  541. <plceflag/>
  542. <judgmark/>
  543. <refh/>
  544. <refl/>
  545. <assorsltcnts/>
  546. <choicnt>
  547. <![CDATA[1]]>
  548. </choicnt>
  549. <stndval>
  550. <![CDATA[정상]]>
  551. </stndval>
  552. <judgcd/>
  553. <judgrsltcnts/>
  554. <testroomcd>
  555. <![CDATA[14]]>
  556. </testroomcd>
  557. <maxval/>
  558. <minval/>
  559. <printyn>
  560. <![CDATA[N]]>
  561. </printyn>
  562. </item>
  563. <item>
  564. <testroomnm>
  565. <![CDATA[청력 검사실]]>
  566. </testroomnm>
  567. <reptprntgrupcd>
  568. <![CDATA[03]]>
  569. </reptprntgrupcd>
  570. <inptflag>
  571. <![CDATA[i]]>
  572. </inptflag>
  573. <healexamflag/>
  574. <healexamdetlflag/>
  575. <pid/>
  576. <orddd/>
  577. <rsrvdd/>
  578. <rsrvno/>
  579. <prcpdd>
  580. <![CDATA[20080821]]>
  581. </prcpdd>
  582. <execprcpuniqno>
  583. <![CDATA[227874]]>
  584. </execprcpuniqno>
  585. <testcd>
  586. <![CDATA[VHEA4]]>
  587. </testcd>
  588. <calcscorcd/>
  589. <testnm>
  590. <![CDATA[Audiogram(우)]]>
  591. </testnm>
  592. <testengnm>
  593. <![CDATA[Audiogram(RT)]]>
  594. </testengnm>
  595. <testrsltcnts/>
  596. <outtestrsltcnts/>
  597. <rsltunit/>
  598. <rsltflag>
  599. <![CDATA[O]]>
  600. </rsltflag>
  601. <plceflag/>
  602. <judgmark/>
  603. <refh/>
  604. <refl/>
  605. <assorsltcnts/>
  606. <choicnt>
  607. <![CDATA[1]]>
  608. </choicnt>
  609. <stndval>
  610. <![CDATA[정상]]>
  611. </stndval>
  612. <judgcd/>
  613. <judgrsltcnts/>
  614. <testroomcd>
  615. <![CDATA[14]]>
  616. </testroomcd>
  617. <maxval/>
  618. <minval/>
  619. <printyn>
  620. <![CDATA[N]]>
  621. </printyn>
  622. </item>
  623. <item>
  624. <testroomnm>
  625. <![CDATA[심전도 검사실]]>
  626. </testroomnm>
  627. <reptprntgrupcd>
  628. <![CDATA[05]]>
  629. </reptprntgrupcd>
  630. <inptflag>
  631. <![CDATA[i]]>
  632. </inptflag>
  633. <healexamflag/>
  634. <healexamdetlflag/>
  635. <pid/>
  636. <orddd/>
  637. <rsrvdd/>
  638. <rsrvno/>
  639. <prcpdd>
  640. <![CDATA[20080821]]>
  641. </prcpdd>
  642. <execprcpuniqno>
  643. <![CDATA[227870]]>
  644. </execprcpuniqno>
  645. <testcd>
  646. <![CDATA[VHBP1]]>
  647. </testcd>
  648. <calcscorcd/>
  649. <testnm>
  650. <![CDATA[혈압(최고)]]>
  651. </testnm>
  652. <testengnm>
  653. <![CDATA[BP(Sistolic)]]>
  654. </testengnm>
  655. <testrsltcnts/>
  656. <outtestrsltcnts/>
  657. <rsltunit>
  658. <![CDATA[mmHg]]>
  659. </rsltunit>
  660. <rsltflag>
  661. <![CDATA[N]]>
  662. </rsltflag>
  663. <plceflag/>
  664. <judgmark/>
  665. <refh/>
  666. <refl/>
  667. <assorsltcnts/>
  668. <choicnt>
  669. <![CDATA[1]]>
  670. </choicnt>
  671. <stndval>
  672. <![CDATA[90~140]]>
  673. </stndval>
  674. <judgcd/>
  675. <judgrsltcnts/>
  676. <testroomcd>
  677. <![CDATA[13]]>
  678. </testroomcd>
  679. <maxval/>
  680. <minval/>
  681. <printyn>
  682. <![CDATA[N]]>
  683. </printyn>
  684. </item>
  685. <item>
  686. <testroomnm>
  687. <![CDATA[심전도 검사실]]>
  688. </testroomnm>
  689. <reptprntgrupcd>
  690. <![CDATA[05]]>
  691. </reptprntgrupcd>
  692. <inptflag>
  693. <![CDATA[i]]>
  694. </inptflag>
  695. <healexamflag/>
  696. <healexamdetlflag/>
  697. <pid/>
  698. <orddd/>
  699. <rsrvdd/>
  700. <rsrvno/>
  701. <prcpdd>
  702. <![CDATA[20080821]]>
  703. </prcpdd>
  704. <execprcpuniqno>
  705. <![CDATA[227871]]>
  706. </execprcpuniqno>
  707. <testcd>
  708. <![CDATA[VHBP2]]>
  709. </testcd>
  710. <calcscorcd/>
  711. <testnm>
  712. <![CDATA[혈압(최저)]]>
  713. </testnm>
  714. <testengnm>
  715. <![CDATA[BP(Diastolic)]]>
  716. </testengnm>
  717. <testrsltcnts/>
  718. <outtestrsltcnts/>
  719. <rsltunit>
  720. <![CDATA[mmHg]]>
  721. </rsltunit>
  722. <rsltflag>
  723. <![CDATA[N]]>
  724. </rsltflag>
  725. <plceflag/>
  726. <judgmark/>
  727. <refh/>
  728. <refl/>
  729. <assorsltcnts/>
  730. <choicnt>
  731. <![CDATA[1]]>
  732. </choicnt>
  733. <stndval>
  734. <![CDATA[60~80]]>
  735. </stndval>
  736. <judgcd/>
  737. <judgrsltcnts/>
  738. <testroomcd>
  739. <![CDATA[13]]>
  740. </testroomcd>
  741. <maxval/>
  742. <minval/>
  743. <printyn>
  744. <![CDATA[N]]>
  745. </printyn>
  746. </item>
  747. <item>
  748. <testroomnm>
  749. <![CDATA[심전도 검사실]]>
  750. </testroomnm>
  751. <reptprntgrupcd>
  752. <![CDATA[05]]>
  753. </reptprntgrupcd>
  754. <inptflag>
  755. <![CDATA[i]]>
  756. </inptflag>
  757. <healexamflag/>
  758. <healexamdetlflag/>
  759. <pid/>
  760. <orddd/>
  761. <rsrvdd/>
  762. <rsrvno/>
  763. <prcpdd>
  764. <![CDATA[20080821]]>
  765. </prcpdd>
  766. <execprcpuniqno>
  767. <![CDATA[227872]]>
  768. </execprcpuniqno>
  769. <testcd>
  770. <![CDATA[VHBP3]]>
  771. </testcd>
  772. <calcscorcd/>
  773. <testnm>
  774. <![CDATA[맥박]]>
  775. </testnm>
  776. <testengnm>
  777. <![CDATA[Pulse]]>
  778. </testengnm>
  779. <testrsltcnts/>
  780. <outtestrsltcnts/>
  781. <rsltunit/>
  782. <rsltflag>
  783. <![CDATA[N]]>
  784. </rsltflag>
  785. <plceflag/>
  786. <judgmark/>
  787. <refh/>
  788. <refl/>
  789. <assorsltcnts/>
  790. <choicnt>
  791. <![CDATA[1]]>
  792. </choicnt>
  793. <stndval>
  794. <![CDATA[60~100]]>
  795. </stndval>
  796. <judgcd/>
  797. <judgrsltcnts/>
  798. <testroomcd>
  799. <![CDATA[13]]>
  800. </testroomcd>
  801. <maxval/>
  802. <minval/>
  803. <printyn>
  804. <![CDATA[N]]>
  805. </printyn>
  806. </item>
  807. <item>
  808. <testroomnm>
  809. <![CDATA[채혈실]]>
  810. </testroomnm>
  811. <reptprntgrupcd>
  812. <![CDATA[07]]>
  813. </reptprntgrupcd>
  814. <inptflag>
  815. <![CDATA[i]]>
  816. </inptflag>
  817. <healexamflag/>
  818. <healexamdetlflag/>
  819. <pid/>
  820. <orddd/>
  821. <rsrvdd/>
  822. <rsrvno/>
  823. <prcpdd>
  824. <![CDATA[20080821]]>
  825. </prcpdd>
  826. <execprcpuniqno>
  827. <![CDATA[227864]]>
  828. </execprcpuniqno>
  829. <testcd>
  830. <![CDATA[LUR104]]>
  831. </testcd>
  832. <calcscorcd/>
  833. <testnm>
  834. <![CDATA[단백검사]]>
  835. </testnm>
  836. <testengnm>
  837. <![CDATA[Protein]]>
  838. </testengnm>
  839. <testrsltcnts/>
  840. <outtestrsltcnts/>
  841. <rsltunit/>
  842. <rsltflag>
  843. <![CDATA[N]]>
  844. </rsltflag>
  845. <plceflag/>
  846. <judgmark/>
  847. <refh/>
  848. <refl/>
  849. <assorsltcnts/>
  850. <choicnt>
  851. <![CDATA[1]]>
  852. </choicnt>
  853. <stndval/>
  854. <judgcd/>
  855. <judgrsltcnts/>
  856. <testroomcd>
  857. <![CDATA[3]]>
  858. </testroomcd>
  859. <maxval/>
  860. <minval/>
  861. <printyn>
  862. <![CDATA[N]]>
  863. </printyn>
  864. </item>
  865. <item>
  866. <testroomnm>
  867. <![CDATA[채혈실]]>
  868. </testroomnm>
  869. <reptprntgrupcd>
  870. <![CDATA[07]]>
  871. </reptprntgrupcd>
  872. <inptflag>
  873. <![CDATA[i]]>
  874. </inptflag>
  875. <healexamflag/>
  876. <healexamdetlflag/>
  877. <pid/>
  878. <orddd/>
  879. <rsrvdd/>
  880. <rsrvno/>
  881. <prcpdd>
  882. <![CDATA[20080821]]>
  883. </prcpdd>
  884. <execprcpuniqno>
  885. <![CDATA[227865]]>
  886. </execprcpuniqno>
  887. <testcd>
  888. <![CDATA[LUR105]]>
  889. </testcd>
  890. <calcscorcd/>
  891. <testnm>
  892. <![CDATA[당검사(정성)]]>
  893. </testnm>
  894. <testengnm>
  895. <![CDATA[Glucose]]>
  896. </testengnm>
  897. <testrsltcnts/>
  898. <outtestrsltcnts/>
  899. <rsltunit/>
  900. <rsltflag>
  901. <![CDATA[N]]>
  902. </rsltflag>
  903. <plceflag/>
  904. <judgmark/>
  905. <refh/>
  906. <refl/>
  907. <assorsltcnts/>
  908. <choicnt>
  909. <![CDATA[1]]>
  910. </choicnt>
  911. <stndval/>
  912. <judgcd/>
  913. <judgrsltcnts/>
  914. <testroomcd>
  915. <![CDATA[3]]>
  916. </testroomcd>
  917. <maxval/>
  918. <minval/>
  919. <printyn>
  920. <![CDATA[N]]>
  921. </printyn>
  922. </item>
  923. <item>
  924. <testroomnm>
  925. <![CDATA[채혈실]]>
  926. </testroomnm>
  927. <reptprntgrupcd>
  928. <![CDATA[07]]>
  929. </reptprntgrupcd>
  930. <inptflag>
  931. <![CDATA[i]]>
  932. </inptflag>
  933. <healexamflag/>
  934. <healexamdetlflag/>
  935. <pid/>
  936. <orddd/>
  937. <rsrvdd/>
  938. <rsrvno/>
  939. <prcpdd>
  940. <![CDATA[20080821]]>
  941. </prcpdd>
  942. <execprcpuniqno>
  943. <![CDATA[227866]]>
  944. </execprcpuniqno>
  945. <testcd>
  946. <![CDATA[LUR109]]>
  947. </testcd>
  948. <calcscorcd/>
  949. <testnm>
  950. <![CDATA[요잠혈검사]]>
  951. </testnm>
  952. <testengnm>
  953. <![CDATA[Occult Blood]]>
  954. </testengnm>
  955. <testrsltcnts/>
  956. <outtestrsltcnts/>
  957. <rsltunit/>
  958. <rsltflag>
  959. <![CDATA[N]]>
  960. </rsltflag>
  961. <plceflag/>
  962. <judgmark/>
  963. <refh/>
  964. <refl/>
  965. <assorsltcnts/>
  966. <choicnt>
  967. <![CDATA[1]]>
  968. </choicnt>
  969. <stndval/>
  970. <judgcd/>
  971. <judgrsltcnts/>
  972. <testroomcd>
  973. <![CDATA[3]]>
  974. </testroomcd>
  975. <maxval/>
  976. <minval/>
  977. <printyn>
  978. <![CDATA[N]]>
  979. </printyn>
  980. </item>
  981. <item>
  982. <testroomnm>
  983. <![CDATA[채혈실]]>
  984. </testroomnm>
  985. <reptprntgrupcd>
  986. <![CDATA[15]]>
  987. </reptprntgrupcd>
  988. <inptflag>
  989. <![CDATA[i]]>
  990. </inptflag>
  991. <healexamflag/>
  992. <healexamdetlflag/>
  993. <pid/>
  994. <orddd/>
  995. <rsrvdd/>
  996. <rsrvno/>
  997. <prcpdd>
  998. <![CDATA[20080821]]>
  999. </prcpdd>
  1000. <execprcpuniqno>
  1001. <![CDATA[227863]]>
  1002. </execprcpuniqno>
  1003. <testcd>
  1004. <![CDATA[LIR123]]>
  1005. </testcd>
  1006. <calcscorcd/>
  1007. <testnm>
  1008. <![CDATA[AIDS검사]]>
  1009. </testnm>
  1010. <testengnm>
  1011. <![CDATA[HIV Ab (High Quality)]]>
  1012. </testengnm>
  1013. <testrsltcnts/>
  1014. <outtestrsltcnts/>
  1015. <rsltunit/>
  1016. <rsltflag>
  1017. <![CDATA[O]]>
  1018. </rsltflag>
  1019. <plceflag/>
  1020. <judgmark/>
  1021. <refh/>
  1022. <refl/>
  1023. <assorsltcnts/>
  1024. <choicnt>
  1025. <![CDATA[1]]>
  1026. </choicnt>
  1027. <stndval/>
  1028. <judgcd/>
  1029. <judgrsltcnts/>
  1030. <testroomcd>
  1031. <![CDATA[3]]>
  1032. </testroomcd>
  1033. <maxval/>
  1034. <minval/>
  1035. <printyn>
  1036. <![CDATA[N]]>
  1037. </printyn>
  1038. </item>
  1039. <item>
  1040. <testroomnm>
  1041. <![CDATA[흉부X선 검사실]]>
  1042. </testroomnm>
  1043. <reptprntgrupcd>
  1044. <![CDATA[22]]>
  1045. </reptprntgrupcd>
  1046. <inptflag>
  1047. <![CDATA[i]]>
  1048. </inptflag>
  1049. <healexamflag/>
  1050. <healexamdetlflag/>
  1051. <pid/>
  1052. <orddd/>
  1053. <rsrvdd/>
  1054. <rsrvno/>
  1055. <prcpdd>
  1056. <![CDATA[20080821]]>
  1057. </prcpdd>
  1058. <execprcpuniqno>
  1059. <![CDATA[227867]]>
  1060. </execprcpuniqno>
  1061. <testcd>
  1062. <![CDATA[RGG210114G]]>
  1063. </testcd>
  1064. <calcscorcd/>
  1065. <testnm>
  1066. <![CDATA[흉부촬영PA]]>
  1067. </testnm>
  1068. <testengnm>
  1069. <![CDATA[Chest PA]]>
  1070. </testengnm>
  1071. <testrsltcnts/>
  1072. <outtestrsltcnts/>
  1073. <rsltunit/>
  1074. <rsltflag>
  1075. <![CDATA[T]]>
  1076. </rsltflag>
  1077. <plceflag/>
  1078. <judgmark/>
  1079. <refh/>
  1080. <refl/>
  1081. <assorsltcnts/>
  1082. <choicnt>
  1083. <![CDATA[1]]>
  1084. </choicnt>
  1085. <stndval/>
  1086. <judgcd/>
  1087. <judgrsltcnts/>
  1088. <testroomcd>
  1089. <![CDATA[10]]>
  1090. </testroomcd>
  1091. <maxval/>
  1092. <minval/>
  1093. <printyn>
  1094. <![CDATA[N]]>
  1095. </printyn>
  1096. </item>
  1097. <itemtext>
  1098. <inptflag>
  1099. <![CDATA[i]]>
  1100. </inptflag>
  1101. <healexamflag/>
  1102. <healexamdetlflag/>
  1103. <pid/>
  1104. <orddd/>
  1105. <rsrvdd/>
  1106. <rsrvno/>
  1107. <prcpdd>
  1108. <![CDATA[20080821]]>
  1109. </prcpdd>
  1110. <execprcpuniqno>
  1111. <![CDATA[227867]]>
  1112. </execprcpuniqno>
  1113. <testcd>
  1114. <![CDATA[RGG210114G]]>
  1115. </testcd>
  1116. <calcscorcd/>
  1117. <testnm>
  1118. <![CDATA[흉부촬영PA]]>
  1119. </testnm>
  1120. <testrsltcnts/>
  1121. <outtestrsltcnts/>
  1122. <rsltflag>
  1123. <![CDATA[T]]>
  1124. </rsltflag>
  1125. <assorsltcnts/>
  1126. <testroomcd>
  1127. <![CDATA[10]]>
  1128. </testroomcd>
  1129. </itemtext>
  1130. <letter>
  1131. <engnm>
  1132. <![CDATA[KIM]]>
  1133. </engnm>
  1134. <sex>
  1135. <![CDATA[M]]>
  1136. </sex>
  1137. <visano>
  1138. <![CDATA[2008000223]]>
  1139. </visano>
  1140. <age>
  1141. <![CDATA[41]]>
  1142. </age>
  1143. <lstdate>
  1144. <![CDATA[20080821]]>
  1145. </lstdate>
  1146. <subclass/>
  1147. <reqtests/>
  1148. <rsltreqtests/>
  1149. <specoption/>
  1150. <signdrcd/>
  1151. <signdrdeptcd/>
  1152. </letter>
  1153. <itemexmp>
  1154. <rsltcd>
  1155. <![CDATA[1]]>
  1156. </rsltcd>
  1157. <rsltnm>
  1158. <![CDATA[음성(-)]]>
  1159. </rsltnm>
  1160. <testcd>
  1161. <![CDATA[LUR109]]>
  1162. </testcd>
  1163. <judgexmpcd/>
  1164. <judgcd/>
  1165. <nrmlyn/>
  1166. </itemexmp>
  1167. <itemexmp>
  1168. <rsltcd>
  1169. <![CDATA[2]]>
  1170. </rsltcd>
  1171. <rsltnm>
  1172. <![CDATA[약양성(±)]]>
  1173. </rsltnm>
  1174. <testcd>
  1175. <![CDATA[LUR109]]>
  1176. </testcd>
  1177. <judgexmpcd/>
  1178. <judgcd/>
  1179. <nrmlyn/>
  1180. </itemexmp>
  1181. <itemexmp>
  1182. <rsltcd>
  1183. <![CDATA[1]]>
  1184. </rsltcd>
  1185. <rsltnm/>
  1186. <testcd>
  1187. <![CDATA[VHEA3]]>
  1188. </testcd>
  1189. <judgexmpcd/>
  1190. <judgcd/>
  1191. <nrmlyn/>
  1192. </itemexmp>
  1193. <itemexmp>
  1194. <rsltcd>
  1195. <![CDATA[2]]>
  1196. </rsltcd>
  1197. <rsltnm/>
  1198. <testcd>
  1199. <![CDATA[VHEA3]]>
  1200. </testcd>
  1201. <judgexmpcd/>
  1202. <judgcd/>
  1203. <nrmlyn/>
  1204. </itemexmp>
  1205. </rsltlst>
  1206. <print>
  1207. <item>
  1208. <prcpdd>
  1209. <![CDATA[2008/08/21 10:23:59 AM]]>
  1210. </prcpdd>
  1211. <testengnm>
  1212. <![CDATA[ Anti-Hbe]]>
  1213. </testengnm>
  1214. <testrsltcnts>
  1215. <![CDATA[124.00]]>
  1216. </testrsltcnts>
  1217. <refval/>
  1218. </item>
  1219. </print>
  1220. </acptinfo>
  1221. <tempinfo>
  1222. <rslttext>
  1223. <rsltcnts/>
  1224. <rslt_idx/>
  1225. <rslt_col/>
  1226. <rslt_testcd/>
  1227. <rsltexmpcnts>
  1228. <item/>
  1229. </rsltexmpcnts>
  1230. </rslttext>
  1231. <choilst>
  1232. <item3>
  1233. <sel/>
  1234. <rsltcd/>
  1235. <rsltnm/>
  1236. </item3>
  1237. </choilst>
  1238. <assorsltlst>
  1239. <itemasso>
  1240. <sel/>
  1241. <rsltcd/>
  1242. <rsltnm/>
  1243. </itemasso>
  1244. </assorsltlst>
  1245. <anslst>
  1246. <item>
  1247. <answcd/>
  1248. <answcnts/>
  1249. <answcnts/>
  1250. <reminptyn/>
  1251. </item>
  1252. </anslst>
  1253. <answcd/>
  1254. </tempinfo>
  1255. <doctorlst>
  1256. <item>
  1257. <signdreng>
  1258. <![CDATA[Young - Kyoon KIM, M.D. ]]>
  1259. </signdreng>
  1260. <seq>
  1261. <![CDATA[1]]>
  1262. </seq>
  1263. <signdrdepteng>
  1264. <![CDATA[Department of Internal Medicine]]>
  1265. </signdrdepteng>
  1266. <signdrdivieng>
  1267. <![CDATA[Division of Pulmonology]]>
  1268. </signdrdivieng>
  1269. <signdrposeng>
  1270. <![CDATA[Professor]]>
  1271. </signdrposeng>
  1272. </item>
  1273. <item>
  1274. <signdreng>
  1275. <![CDATA[Seung - Kew YOON, M.D. ]]>
  1276. </signdreng>
  1277. <seq>
  1278. <![CDATA[2]]>
  1279. </seq>
  1280. <signdrdepteng>
  1281. <![CDATA[Department of Internal Medicine]]>
  1282. </signdrdepteng>
  1283. <signdrdivieng>
  1284. <![CDATA[Division of Hepatogastroterology]]>
  1285. </signdrdivieng>
  1286. <signdrposeng>
  1287. <![CDATA[Professor]]>
  1288. </signdrposeng>
  1289. </item>
  1290. <item>
  1291. <signdreng>
  1292. <![CDATA[Jae - Ho LEE, M.D. ]]>
  1293. </signdreng>
  1294. <seq>
  1295. <![CDATA[3]]>
  1296. </seq>
  1297. <signdrdepteng>
  1298. <![CDATA[Department of Internal Medicine]]>
  1299. </signdrdepteng>
  1300. <signdrdivieng>
  1301. <![CDATA[Division of Nephrology]]>
  1302. </signdrdivieng>
  1303. <signdrposeng>
  1304. <![CDATA[Assistant Professor]]>
  1305. </signdrposeng>
  1306. </item>
  1307. <item>
  1308. <signdreng>
  1309. <![CDATA[Chul - Woo YANG, M.D.]]>
  1310. </signdreng>
  1311. <seq>
  1312. <![CDATA[4]]>
  1313. </seq>
  1314. <signdrdepteng>
  1315. <![CDATA[Department of Family Medicine]]>
  1316. </signdrdepteng>
  1317. <signdrdivieng/>
  1318. <signdrposeng>
  1319. <![CDATA[Professor]]>
  1320. </signdrposeng>
  1321. </item>
  1322. <item>
  1323. <signdreng>
  1324. <![CDATA[Chang - Jin CHOI, M.D. ]]>
  1325. </signdreng>
  1326. <seq>
  1327. <![CDATA[5]]>
  1328. </seq>
  1329. <signdrdepteng>
  1330. <![CDATA[Department of Family Medicine]]>
  1331. </signdrdepteng>
  1332. <signdrdivieng/>
  1333. <signdrposeng>
  1334. <![CDATA[Assistant Professor]]>
  1335. </signdrposeng>
  1336. </item>
  1337. </doctorlst>
  1338. <acptlst>
  1339. <item>
  1340. <pid>
  1341. <![CDATA[80182]]>
  1342. </pid>
  1343. <hngnm>
  1344. <![CDATA[김]]>
  1345. </hngnm>
  1346. <engnm>
  1347. <![CDATA[KIM]]>
  1348. </engnm>
  1349. <pnm/>
  1350. <pkgnm>
  1351. <![CDATA[호주 이민 15세이상]]>
  1352. </pkgnm>
  1353. <sex>
  1354. <![CDATA[M]]>
  1355. </sex>
  1356. <age>41</age>
  1357. <cmpynm/>
  1358. <rgstno1>
  1359. <![CDATA[670314]]>
  1360. </rgstno1>
  1361. <rgstno2>
  1362. <![CDATA[1213752]]>
  1363. </rgstno2>
  1364. <cmpycd/>
  1365. <pkgcd>
  1366. <![CDATA[VPCDAEA]]>
  1367. </pkgcd>
  1368. <schlgrde/>
  1369. <clsid/>
  1370. <stuid/>
  1371. <healexamdetlflag>
  1372. <![CDATA[G02]]>
  1373. </healexamdetlflag>
  1374. <rsrvdd>
  1375. <![CDATA[20080821]]>
  1376. </rsrvdd>
  1377. <rsrvno>1732044</rsrvno>
  1378. <orddd>
  1379. <![CDATA[20080821]]>
  1380. </orddd>
  1381. <cretno>
  1382. <![CDATA[1]]>
  1383. </cretno>
  1384. <orddeptcd/>
  1385. <plceflag/>
  1386. <judgdd/>
  1387. <judgdrid/>
  1388. <reexamfg/>
  1389. <statflag>
  1390. <![CDATA[E]]>
  1391. </statflag>
  1392. <remcnts/>
  1393. <ordtm/>
  1394. <waitstarttm/>
  1395. <inqrprntflag>
  1396. <![CDATA[N]]>
  1397. </inqrprntflag>
  1398. </item>
  1399. <count>
  1400. <patcnt>1</patcnt>
  1401. <pkgcnt>1</pkgcnt>
  1402. </count>
  1403. </acptlst>
  1404. </main>
  1405. <init>
  1406. <baseinfo>
  1407. <choiflaglst/>
  1408. <hedetlflaglst>
  1409. <A0070>
  1410. <cdid>G02</cdid>
  1411. <cdnm>
  1412. <![CDATA[비자건진]]>
  1413. </cdnm>
  1414. </A0070>
  1415. <A0070>
  1416. <cdid>G03</cdid>
  1417. <cdnm>
  1418. <![CDATA[특수건진]]>
  1419. </cdnm>
  1420. </A0070>
  1421. <A0070>
  1422. <cdid>G04</cdid>
  1423. <cdnm>
  1424. <![CDATA[혈액정밀]]>
  1425. </cdnm>
  1426. </A0070>
  1427. <A0070>
  1428. <cdid>G05</cdid>
  1429. <cdnm>
  1430. <![CDATA[채용건진]]>
  1431. </cdnm>
  1432. </A0070>
  1433. <A0070>
  1434. <cdid>G06</cdid>
  1435. <cdnm>
  1436. <![CDATA[학생건진]]>
  1437. </cdnm>
  1438. </A0070>
  1439. <A0070>
  1440. <cdid>G07</cdid>
  1441. <cdnm>
  1442. <![CDATA[기타]]>
  1443. </cdnm>
  1444. </A0070>
  1445. <A0070>
  1446. <cdid>G01</cdid>
  1447. <cdnm>
  1448. <![CDATA[공단(직장+성인병)]]>
  1449. </cdnm>
  1450. </A0070>
  1451. <A0070>
  1452. <cdid>G08</cdid>
  1453. <cdnm>
  1454. <![CDATA[공단(생애전환기)]]>
  1455. </cdnm>
  1456. </A0070>
  1457. <A0070>
  1458. <cdid>G09</cdid>
  1459. <cdnm>
  1460. <![CDATA[공단(암)]]>
  1461. </cdnm>
  1462. </A0070>
  1463. <A0070>
  1464. <cdid>G10</cdid>
  1465. <cdnm>
  1466. <![CDATA[공단(기타)]]>
  1467. </cdnm>
  1468. </A0070>
  1469. </hedetlflaglst>
  1470. <rslttypelst>
  1471. <A0066>
  1472. <cdid>N</cdid>
  1473. <cdnm>
  1474. <![CDATA[숫자형]]>
  1475. </cdnm>
  1476. </A0066>
  1477. <A0066>
  1478. <cdid>T</cdid>
  1479. <cdnm>
  1480. <![CDATA[서술형]]>
  1481. </cdnm>
  1482. </A0066>
  1483. <A0066>
  1484. <cdid>O</cdid>
  1485. <cdnm>
  1486. <![CDATA[선택형]]>
  1487. </cdnm>
  1488. </A0066>
  1489. </rslttypelst>
  1490. <plceflag>
  1491. <A0110>
  1492. <cdid>1</cdid>
  1493. <cdnm>
  1494. <![CDATA[출장]]>
  1495. </cdnm>
  1496. </A0110>
  1497. <A0110>
  1498. <cdid>2</cdid>
  1499. <cdnm>
  1500. <![CDATA[내원]]>
  1501. </cdnm>
  1502. </A0110>
  1503. </plceflag>
  1504. <pamcdlst>
  1505. <uncocdlst/>
  1506. <disccdlst/>
  1507. </pamcdlst>
  1508. <inqrflag>
  1509. <A0106>
  1510. <cdid>H</cdid>
  1511. <cdnm>
  1512. <![CDATA[건강건진문진]]>
  1513. </cdnm>
  1514. </A0106>
  1515. <A0106>
  1516. <cdid>O</cdid>
  1517. <cdnm>
  1518. <![CDATA[구강건진문진]]>
  1519. </cdnm>
  1520. </A0106>
  1521. <A0106>
  1522. <cdid>C</cdid>
  1523. <cdnm>
  1524. <![CDATA[암문진]]>
  1525. </cdnm>
  1526. </A0106>
  1527. <A0106>
  1528. <cdid>D</cdid>
  1529. <cdnm>
  1530. <![CDATA[영양상담문진]]>
  1531. </cdnm>
  1532. </A0106>
  1533. <A0106>
  1534. <cdid>T</cdid>
  1535. <cdnm>
  1536. <![CDATA[종합건진문진]]>
  1537. </cdnm>
  1538. </A0106>
  1539. <A0106>
  1540. <cdid>J</cdid>
  1541. <cdnm>
  1542. <![CDATA[생애(16)]]>
  1543. </cdnm>
  1544. </A0106>
  1545. <A0106>
  1546. <cdid>K</cdid>
  1547. <cdnm>
  1548. <![CDATA[생애(40)]]>
  1549. </cdnm>
  1550. </A0106>
  1551. <A0106>
  1552. <cdid>L</cdid>
  1553. <cdnm>
  1554. <![CDATA[생애(66)]]>
  1555. </cdnm>
  1556. </A0106>
  1557. </inqrflag>
  1558. <drlst>
  1559. <itemdr/>
  1560. </drlst>
  1561. <statlst>
  1562. <A0107>
  1563. <cdid>A</cdid>
  1564. <cdnm>
  1565. <![CDATA[가예약]]>
  1566. </cdnm>
  1567. </A0107>
  1568. <A0107>
  1569. <cdid>B</cdid>
  1570. <cdnm>
  1571. <![CDATA[예약보류]]>
  1572. </cdnm>
  1573. </A0107>
  1574. <A0107>
  1575. <cdid>C</cdid>
  1576. <cdnm>
  1577. <![CDATA[예약]]>
  1578. </cdnm>
  1579. </A0107>
  1580. <A0107>
  1581. <cdid>D</cdid>
  1582. <cdnm>
  1583. <![CDATA[예약취소]]>
  1584. </cdnm>
  1585. </A0107>
  1586. <A0107>
  1587. <cdid>E</cdid>
  1588. <cdnm>
  1589. <![CDATA[접수]]>
  1590. </cdnm>
  1591. </A0107>
  1592. <A0107>
  1593. <cdid>F</cdid>
  1594. <cdnm>
  1595. <![CDATA[접수취소]]>
  1596. </cdnm>
  1597. </A0107>
  1598. <A0107>
  1599. <cdid>G</cdid>
  1600. <cdnm>
  1601. <![CDATA[결과]]>
  1602. </cdnm>
  1603. </A0107>
  1604. <A0107>
  1605. <cdid>H</cdid>
  1606. <cdnm>
  1607. <![CDATA[판정대기]]>
  1608. </cdnm>
  1609. </A0107>
  1610. <A0107>
  1611. <cdid>I</cdid>
  1612. <cdnm>
  1613. <![CDATA[판정완료]]>
  1614. </cdnm>
  1615. </A0107>
  1616. </statlst>
  1617. <rptgroup/>
  1618. <comcodelst>
  1619. <item>
  1620. <cd>01</cd>
  1621. <nm>
  1622. <![CDATA[신체계측]]>
  1623. </nm>
  1624. </item>
  1625. <item>
  1626. <cd>02</cd>
  1627. <nm>
  1628. <![CDATA[안과검사]]>
  1629. </nm>
  1630. </item>
  1631. <item>
  1632. <cd>03</cd>
  1633. <nm>
  1634. <![CDATA[청력 및 고막검사]]>
  1635. </nm>
  1636. </item>
  1637. <item>
  1638. <cd>04</cd>
  1639. <nm>
  1640. <![CDATA[폐기능검사]]>
  1641. </nm>
  1642. </item>
  1643. <item>
  1644. <cd>05</cd>
  1645. <nm>
  1646. <![CDATA[혈압,심전도]]>
  1647. </nm>
  1648. </item>
  1649. <item>
  1650. <cd>06</cd>
  1651. <nm>
  1652. <![CDATA[혈액학검사]]>
  1653. </nm>
  1654. </item>
  1655. <item>
  1656. <cd>07</cd>
  1657. <nm>
  1658. <![CDATA[소변검사]]>
  1659. </nm>
  1660. </item>
  1661. <item>
  1662. <cd>08</cd>
  1663. <nm>
  1664. <![CDATA[당뇨 및 췌장검사]]>
  1665. </nm>
  1666. </item>
  1667. <item>
  1668. <cd>09</cd>
  1669. <nm>
  1670. <![CDATA[심혈관 기능검사]]>
  1671. </nm>
  1672. </item>
  1673. <item>
  1674. <cd>10</cd>
  1675. <nm>
  1676. <![CDATA[대사증후군]]>
  1677. </nm>
  1678. </item>
  1679. <item>
  1680. <cd>11</cd>
  1681. <nm>
  1682. <![CDATA[전해질검사]]>
  1683. </nm>
  1684. </item>
  1685. <item>
  1686. <cd>12</cd>
  1687. <nm>
  1688. <![CDATA[간 및 신장 기능검사]]>
  1689. </nm>
  1690. </item>
  1691. <item>
  1692. <cd>13</cd>
  1693. <nm>
  1694. <![CDATA[통풍 및 류마티스 검사]]>
  1695. </nm>
  1696. </item>
  1697. <item>
  1698. <cd>14</cd>
  1699. <nm>
  1700. <![CDATA[갑상선 기능검사]]>
  1701. </nm>
  1702. </item>
  1703. <item>
  1704. <cd>15</cd>
  1705. <nm>
  1706. <![CDATA[면역학검사]]>
  1707. </nm>
  1708. </item>
  1709. <item>
  1710. <cd>16</cd>
  1711. <nm>
  1712. <![CDATA[종양표지자검사]]>
  1713. </nm>
  1714. </item>
  1715. <item>
  1716. <cd>17</cd>
  1717. <nm>
  1718. <![CDATA[대변검사]]>
  1719. </nm>
  1720. </item>
  1721. <item>
  1722. <cd>18</cd>
  1723. <nm>
  1724. <![CDATA[홀몬검사]]>
  1725. </nm>
  1726. </item>
  1727. <item>
  1728. <cd>19</cd>
  1729. <nm>
  1730. <![CDATA[부인과검사]]>
  1731. </nm>
  1732. </item>
  1733. <item>
  1734. <cd>20</cd>
  1735. <nm>
  1736. <![CDATA[골대사검사]]>
  1737. </nm>
  1738. </item>
  1739. <item>
  1740. <cd>21</cd>
  1741. <nm>
  1742. <![CDATA[심장검사]]>
  1743. </nm>
  1744. </item>
  1745. <item>
  1746. <cd>22</cd>
  1747. <nm>
  1748. <![CDATA[흉부촬영]]>
  1749. </nm>
  1750. </item>
  1751. <item>
  1752. <cd>23</cd>
  1753. <nm>
  1754. <![CDATA[소화기검사]]>
  1755. </nm>
  1756. </item>
  1757. <item>
  1758. <cd>24</cd>
  1759. <nm>
  1760. <![CDATA[전산화단층촬영]]>
  1761. </nm>
  1762. </item>
  1763. <item>
  1764. <cd>25</cd>
  1765. <nm>
  1766. <![CDATA[자기공명영상]]>
  1767. </nm>
  1768. </item>
  1769. <item>
  1770. <cd>26</cd>
  1771. <nm>
  1772. <![CDATA[양전자 단층촬영]]>
  1773. </nm>
  1774. </item>
  1775. <item>
  1776. <cd>27</cd>
  1777. <nm>
  1778. <![CDATA[기타]]>
  1779. </nm>
  1780. </item>
  1781. <item>
  1782. <cd>28</cd>
  1783. <nm>
  1784. <![CDATA[종합소견]]>
  1785. </nm>
  1786. </item>
  1787. </comcodelst>
  1788. <comcodelst>
  1789. <item>
  1790. <cd>01</cd>
  1791. <nm>
  1792. <![CDATA[신체계측]]>
  1793. </nm>
  1794. </item>
  1795. <item>
  1796. <cd>02</cd>
  1797. <nm>
  1798. <![CDATA[안과검사]]>
  1799. </nm>
  1800. </item>
  1801. <item>
  1802. <cd>03</cd>
  1803. <nm>
  1804. <![CDATA[청력 및 고막검사]]>
  1805. </nm>
  1806. </item>
  1807. <item>
  1808. <cd>04</cd>
  1809. <nm>
  1810. <![CDATA[폐기능검사]]>
  1811. </nm>
  1812. </item>
  1813. <item>
  1814. <cd>05</cd>
  1815. <nm>
  1816. <![CDATA[혈압,심전도]]>
  1817. </nm>
  1818. </item>
  1819. <item>
  1820. <cd>06</cd>
  1821. <nm>
  1822. <![CDATA[혈액학검사]]>
  1823. </nm>
  1824. </item>
  1825. <item>
  1826. <cd>07</cd>
  1827. <nm>
  1828. <![CDATA[소변검사]]>
  1829. </nm>
  1830. </item>
  1831. <item>
  1832. <cd>08</cd>
  1833. <nm>
  1834. <![CDATA[당뇨 및 췌장검사]]>
  1835. </nm>
  1836. </item>
  1837. <item>
  1838. <cd>09</cd>
  1839. <nm>
  1840. <![CDATA[심혈관 기능검사]]>
  1841. </nm>
  1842. </item>
  1843. <item>
  1844. <cd>10</cd>
  1845. <nm>
  1846. <![CDATA[대사증후군]]>
  1847. </nm>
  1848. </item>
  1849. <item>
  1850. <cd>11</cd>
  1851. <nm>
  1852. <![CDATA[전해질검사]]>
  1853. </nm>
  1854. </item>
  1855. <item>
  1856. <cd>12</cd>
  1857. <nm>
  1858. <![CDATA[간 및 신장 기능검사]]>
  1859. </nm>
  1860. </item>
  1861. <item>
  1862. <cd>13</cd>
  1863. <nm>
  1864. <![CDATA[통풍 및 류마티스 검사]]>
  1865. </nm>
  1866. </item>
  1867. <item>
  1868. <cd>14</cd>
  1869. <nm>
  1870. <![CDATA[갑상선 기능검사]]>
  1871. </nm>
  1872. </item>
  1873. <item>
  1874. <cd>15</cd>
  1875. <nm>
  1876. <![CDATA[면역학검사]]>
  1877. </nm>
  1878. </item>
  1879. <item>
  1880. <cd>16</cd>
  1881. <nm>
  1882. <![CDATA[종양표지자검사]]>
  1883. </nm>
  1884. </item>
  1885. <item>
  1886. <cd>17</cd>
  1887. <nm>
  1888. <![CDATA[대변검사]]>
  1889. </nm>
  1890. </item>
  1891. <item>
  1892. <cd>18</cd>
  1893. <nm>
  1894. <![CDATA[홀몬검사]]>
  1895. </nm>
  1896. </item>
  1897. <item>
  1898. <cd>19</cd>
  1899. <nm>
  1900. <![CDATA[부인과검사]]>
  1901. </nm>
  1902. </item>
  1903. <item>
  1904. <cd>20</cd>
  1905. <nm>
  1906. <![CDATA[골대사검사]]>
  1907. </nm>
  1908. </item>
  1909. <item>
  1910. <cd>21</cd>
  1911. <nm>
  1912. <![CDATA[심장검사]]>
  1913. </nm>
  1914. </item>
  1915. <item>
  1916. <cd>22</cd>
  1917. <nm>
  1918. <![CDATA[흉부촬영]]>
  1919. </nm>
  1920. </item>
  1921. <item>
  1922. <cd>23</cd>
  1923. <nm>
  1924. <![CDATA[소화기검사]]>
  1925. </nm>
  1926. </item>
  1927. <item>
  1928. <cd>24</cd>
  1929. <nm>
  1930. <![CDATA[전산화단층촬영]]>
  1931. </nm>
  1932. </item>
  1933. <item>
  1934. <cd>25</cd>
  1935. <nm>
  1936. <![CDATA[자기공명영상]]>
  1937. </nm>
  1938. </item>
  1939. <item>
  1940. <cd>26</cd>
  1941. <nm>
  1942. <![CDATA[양전자 단층촬영]]>
  1943. </nm>
  1944. </item>
  1945. <item>
  1946. <cd>27</cd>
  1947. <nm>
  1948. <![CDATA[기타]]>
  1949. </nm>
  1950. </item>
  1951. <item>
  1952. <cd>28</cd>
  1953. <nm>
  1954. <![CDATA[종합소견]]>
  1955. </nm>
  1956. </item>
  1957. </comcodelst>
  1958. <addrinfo>
  1959. <CF1>(02)590-1777</CF1>
  1960. <CP1>(02)590-1114</CP1>
  1961. <CP2>(02)590-1115</CP2>
  1962. <E01>CATHOLIC MEDICAL CENTER</E01>
  1963. <E02>Kangnam St.Mary's Hospital</E02>
  1964. <E03>The catholic university of Korea</E03>
  1965. <E04>#505, Banpo-dong, Seocho-Gu,
  1966. Seoul 137-040, KOREA</E04>
  1967. <K01>가톨릭 의료센터</K01>
  1968. <K02>가톨릭 대학교 강남성모병원</K02>
  1969. <K03>가톨릭 대학교</K03>
  1970. <K04>137-040 서울특별시 서초구 반포동 505</K04>
  1971. <PV1>(02)590-1114</PV1>
  1972. <PV2>(02)590-1115</PV2>
  1973. <VF1>(02)590-1766</VF1>
  1974. </addrinfo>
  1975. </baseinfo>
  1976. <room>
  1977. <roomlst>
  1978. <itemroom>
  1979. <sel>N</sel>
  1980. <testroomcd>1</testroomcd>
  1981. <testroomnm>
  1982. <![CDATA[접수]]>
  1983. </testroomnm>
  1984. <cnt>0</cnt>
  1985. </itemroom>
  1986. <itemroom>
  1987. <sel>N</sel>
  1988. <testroomcd>10</testroomcd>
  1989. <testroomnm>
  1990. <![CDATA[흉부X선 검사실]]>
  1991. </testroomnm>
  1992. <cnt>0</cnt>
  1993. </itemroom>
  1994. <itemroom>
  1995. <sel>N</sel>
  1996. <testroomcd>11</testroomcd>
  1997. <testroomnm>
  1998. <![CDATA[위장X선 검사실]]>
  1999. </testroomnm>
  2000. <cnt>0</cnt>
  2001. </itemroom>
  2002. <itemroom>
  2003. <sel>N</sel>
  2004. <testroomcd>111</testroomcd>
  2005. <testroomnm>
  2006. <![CDATA[test]]>
  2007. </testroomnm>
  2008. <cnt>0</cnt>
  2009. </itemroom>
  2010. <itemroom>
  2011. <sel>N</sel>
  2012. <testroomcd>12</testroomcd>
  2013. <testroomnm>
  2014. <![CDATA[내시경 검사실]]>
  2015. </testroomnm>
  2016. <cnt>0</cnt>
  2017. </itemroom>
  2018. <itemroom>
  2019. <sel>N</sel>
  2020. <testroomcd>13</testroomcd>
  2021. <testroomnm>
  2022. <![CDATA[심전도 검사실]]>
  2023. </testroomnm>
  2024. <cnt>0</cnt>
  2025. </itemroom>
  2026. <itemroom>
  2027. <sel>N</sel>
  2028. <testroomcd>14</testroomcd>
  2029. <testroomnm>
  2030. <![CDATA[청력 검사실]]>
  2031. </testroomnm>
  2032. <cnt>0</cnt>
  2033. </itemroom>
  2034. <itemroom>
  2035. <sel>N</sel>
  2036. <testroomcd>15</testroomcd>
  2037. <testroomnm>
  2038. <![CDATA[심장초음파 검사실]]>
  2039. </testroomnm>
  2040. <cnt>0</cnt>
  2041. </itemroom>
  2042. <itemroom>
  2043. <sel>N</sel>
  2044. <testroomcd>16</testroomcd>
  2045. <testroomnm>
  2046. <![CDATA[심장초음파 검사실]]>
  2047. </testroomnm>
  2048. <cnt>0</cnt>
  2049. </itemroom>
  2050. <itemroom>
  2051. <sel>N</sel>
  2052. <testroomcd>17</testroomcd>
  2053. <testroomnm>
  2054. <![CDATA[유방X선 검사실]]>
  2055. </testroomnm>
  2056. <cnt>0</cnt>
  2057. </itemroom>
  2058. <itemroom>
  2059. <sel>N</sel>
  2060. <testroomcd>18</testroomcd>
  2061. <testroomnm>
  2062. <![CDATA[골밀도 검사실]]>
  2063. </testroomnm>
  2064. <cnt>0</cnt>
  2065. </itemroom>
  2066. <itemroom>
  2067. <sel>N</sel>
  2068. <testroomcd>19</testroomcd>
  2069. <testroomnm>
  2070. <![CDATA[MRI 검사실]]>
  2071. </testroomnm>
  2072. <cnt>0</cnt>
  2073. </itemroom>
  2074. <itemroom>
  2075. <sel>N</sel>
  2076. <testroomcd>2</testroomcd>
  2077. <testroomnm>
  2078. <![CDATA[문진]]>
  2079. </testroomnm>
  2080. <cnt>0</cnt>
  2081. </itemroom>
  2082. <itemroom>
  2083. <sel>N</sel>
  2084. <testroomcd>20</testroomcd>
  2085. <testroomnm>
  2086. <![CDATA[CT 검사실]]>
  2087. </testroomnm>
  2088. <cnt>0</cnt>
  2089. </itemroom>
  2090. <itemroom>
  2091. <sel>N</sel>
  2092. <testroomcd>21</testroomcd>
  2093. <testroomnm>
  2094. <![CDATA[복부X선 검사실]]>
  2095. </testroomnm>
  2096. <cnt>0</cnt>
  2097. </itemroom>
  2098. <itemroom>
  2099. <sel>N</sel>
  2100. <testroomcd>22</testroomcd>
  2101. <testroomnm>
  2102. <![CDATA[대장X선 검사실]]>
  2103. </testroomnm>
  2104. <cnt>0</cnt>
  2105. </itemroom>
  2106. <itemroom>
  2107. <sel>N</sel>
  2108. <testroomcd>23</testroomcd>
  2109. <testroomnm>
  2110. <![CDATA[기타 검사실]]>
  2111. </testroomnm>
  2112. <cnt>0</cnt>
  2113. </itemroom>
  2114. <itemroom>
  2115. <sel>N</sel>
  2116. <testroomcd>24</testroomcd>
  2117. <testroomnm>
  2118. <![CDATA[내시경 검사실]]>
  2119. </testroomnm>
  2120. <cnt>0</cnt>
  2121. </itemroom>
  2122. <itemroom>
  2123. <sel>N</sel>
  2124. <testroomcd>25</testroomcd>
  2125. <testroomnm>
  2126. <![CDATA[내시경실]]>
  2127. </testroomnm>
  2128. <cnt>0</cnt>
  2129. </itemroom>
  2130. <itemroom>
  2131. <sel>N</sel>
  2132. <testroomcd>26</testroomcd>
  2133. <testroomnm>
  2134. <![CDATA[캡슐소장내시경실]]>
  2135. </testroomnm>
  2136. <cnt>0</cnt>
  2137. </itemroom>
  2138. <itemroom>
  2139. <sel>N</sel>
  2140. <testroomcd>27</testroomcd>
  2141. <testroomnm>
  2142. <![CDATA[초음파 검사실(2)]]>
  2143. </testroomnm>
  2144. <cnt>0</cnt>
  2145. </itemroom>
  2146. <itemroom>
  2147. <sel>N</sel>
  2148. <testroomcd>28</testroomcd>
  2149. <testroomnm>
  2150. <![CDATA[초음파 검사실]]>
  2151. </testroomnm>
  2152. <cnt>0</cnt>
  2153. </itemroom>
  2154. <itemroom>
  2155. <sel>N</sel>
  2156. <testroomcd>28</testroomcd>
  2157. <testroomnm>
  2158. <![CDATA[초음파 검사실(3)]]>
  2159. </testroomnm>
  2160. <cnt>0</cnt>
  2161. </itemroom>
  2162. <itemroom>
  2163. <sel>N</sel>
  2164. <testroomcd>29</testroomcd>
  2165. <testroomnm>
  2166. <![CDATA[PET-CT실]]>
  2167. </testroomnm>
  2168. <cnt>0</cnt>
  2169. </itemroom>
  2170. <itemroom>
  2171. <sel>N</sel>
  2172. <testroomcd>3</testroomcd>
  2173. <testroomnm>
  2174. <![CDATA[채혈실]]>
  2175. </testroomnm>
  2176. <cnt>0</cnt>
  2177. </itemroom>
  2178. <itemroom>
  2179. <sel>N</sel>
  2180. <testroomcd>30</testroomcd>
  2181. <testroomnm>
  2182. <![CDATA[내시경 검사실 ]]>
  2183. </testroomnm>
  2184. <cnt>0</cnt>
  2185. </itemroom>
  2186. <itemroom>
  2187. <sel>N</sel>
  2188. <testroomcd>31</testroomcd>
  2189. <testroomnm>
  2190. <![CDATA[이비인후과외래]]>
  2191. </testroomnm>
  2192. <cnt>0</cnt>
  2193. </itemroom>
  2194. <itemroom>
  2195. <sel>N</sel>
  2196. <testroomcd>32</testroomcd>
  2197. <testroomnm>
  2198. <![CDATA[산부인과외래]]>
  2199. </testroomnm>
  2200. <cnt>0</cnt>
  2201. </itemroom>
  2202. <itemroom>
  2203. <sel>N</sel>
  2204. <testroomcd>33</testroomcd>
  2205. <testroomnm>
  2206. <![CDATA[핵의학실]]>
  2207. </testroomnm>
  2208. <cnt>0</cnt>
  2209. </itemroom>
  2210. <itemroom>
  2211. <sel>N</sel>
  2212. <testroomcd>34</testroomcd>
  2213. <testroomnm>
  2214. <![CDATA[폐기능 검사실(1)]]>
  2215. </testroomnm>
  2216. <cnt>0</cnt>
  2217. </itemroom>
  2218. <itemroom>
  2219. <sel>N</sel>
  2220. <testroomcd>35</testroomcd>
  2221. <testroomnm>
  2222. <![CDATA[안압,안저 검사실]]>
  2223. </testroomnm>
  2224. <cnt>0</cnt>
  2225. </itemroom>
  2226. <itemroom>
  2227. <sel>N</sel>
  2228. <testroomcd>4</testroomcd>
  2229. <testroomnm>
  2230. <![CDATA[채혈실]]>
  2231. </testroomnm>
  2232. <cnt>0</cnt>
  2233. </itemroom>
  2234. <itemroom>
  2235. <sel>N</sel>
  2236. <testroomcd>5</testroomcd>
  2237. <testroomnm>
  2238. <![CDATA[폐기능 검사실(2)]]>
  2239. </testroomnm>
  2240. <cnt>0</cnt>
  2241. </itemroom>
  2242. <itemroom>
  2243. <sel>N</sel>
  2244. <testroomcd>6</testroomcd>
  2245. <testroomnm>
  2246. <![CDATA[초음파 검사실(1)]]>
  2247. </testroomnm>
  2248. <cnt>0</cnt>
  2249. </itemroom>
  2250. <itemroom>
  2251. <sel>N</sel>
  2252. <testroomcd>7</testroomcd>
  2253. <testroomnm>
  2254. <![CDATA[안압ㆍ안저 검사실]]>
  2255. </testroomnm>
  2256. <cnt>0</cnt>
  2257. </itemroom>
  2258. <itemroom>
  2259. <sel>N</sel>
  2260. <testroomcd>8</testroomcd>
  2261. <testroomnm>
  2262. <![CDATA[치과 검사실]]>
  2263. </testroomnm>
  2264. <cnt>0</cnt>
  2265. </itemroom>
  2266. <itemroom>
  2267. <sel>N</sel>
  2268. <testroomcd>9</testroomcd>
  2269. <testroomnm>
  2270. <![CDATA[부인과 검사실]]>
  2271. </testroomnm>
  2272. <cnt>0</cnt>
  2273. </itemroom>
  2274. <itemroom>
  2275. <sel>N</sel>
  2276. <testroomcd>98</testroomcd>
  2277. <testroomnm>
  2278. <![CDATA[ㅁㅁ]]>
  2279. </testroomnm>
  2280. <cnt>0</cnt>
  2281. </itemroom>
  2282. <itemroom>
  2283. <sel>N</sel>
  2284. <testroomcd>98</testroomcd>
  2285. <testroomnm/>
  2286. <cnt>0</cnt>
  2287. </itemroom>
  2288. <itemroom>
  2289. <sel>N</sel>
  2290. <testroomcd>99</testroomcd>
  2291. <testroomnm>
  2292. <![CDATA[ㅁㅁㅁㅁ]]>
  2293. </testroomnm>
  2294. <cnt>0</cnt>
  2295. </itemroom>
  2296. <itemroom>
  2297. <sel>N</sel>
  2298. <testroomcd>A01</testroomcd>
  2299. <testroomnm>
  2300. <![CDATA[위내시경실]]>
  2301. </testroomnm>
  2302. <cnt>0</cnt>
  2303. </itemroom>
  2304. <itemroom>
  2305. <sel>N</sel>
  2306. <testroomcd/>
  2307. <testroomnm>
  2308. <![CDATA[-]]>
  2309. </testroomnm>
  2310. <cnt>0</cnt>
  2311. </itemroom>
  2312. </roomlst>
  2313. </room>
  2314. <send>
  2315. <srchhealexamdetlflag>G02</srchhealexamdetlflag>
  2316. <srchpid2/>
  2317. <srchpnm/>
  2318. <srchroomcd/>
  2319. <srchfromdd>20080821</srchfromdd>
  2320. <srchstatfg/>
  2321. </send>
  2322. <authlst>
  2323. <auth>
  2324. <basecd>
  2325. <![CDATA[AST]]>
  2326. </basecd>
  2327. <testroomcd>
  2328. <![CDATA[1]]>
  2329. </testroomcd>
  2330. </auth>
  2331. <auth>
  2332. <basecd>
  2333. <![CDATA[AST]]>
  2334. </basecd>
  2335. <testroomcd>
  2336. <![CDATA[10]]>
  2337. </testroomcd>
  2338. </auth>
  2339. <auth>
  2340. <basecd>
  2341. <![CDATA[AST]]>
  2342. </basecd>
  2343. <testroomcd>
  2344. <![CDATA[11]]>
  2345. </testroomcd>
  2346. </auth>
  2347. <auth>
  2348. <basecd>
  2349. <![CDATA[AST]]>
  2350. </basecd>
  2351. <testroomcd>
  2352. <![CDATA[111]]>
  2353. </testroomcd>
  2354. </auth>
  2355. <auth>
  2356. <basecd>
  2357. <![CDATA[AST]]>
  2358. </basecd>
  2359. <testroomcd>
  2360. <![CDATA[12]]>
  2361. </testroomcd>
  2362. </auth>
  2363. <auth>
  2364. <basecd>
  2365. <![CDATA[AST]]>
  2366. </basecd>
  2367. <testroomcd>
  2368. <![CDATA[13]]>
  2369. </testroomcd>
  2370. </auth>
  2371. <auth>
  2372. <basecd>
  2373. <![CDATA[AST]]>
  2374. </basecd>
  2375. <testroomcd>
  2376. <![CDATA[14]]>
  2377. </testroomcd>
  2378. </auth>
  2379. <auth>
  2380. <basecd>
  2381. <![CDATA[AST]]>
  2382. </basecd>
  2383. <testroomcd>
  2384. <![CDATA[15]]>
  2385. </testroomcd>
  2386. </auth>
  2387. <auth>
  2388. <basecd>
  2389. <![CDATA[AST]]>
  2390. </basecd>
  2391. <testroomcd>
  2392. <![CDATA[16]]>
  2393. </testroomcd>
  2394. </auth>
  2395. <auth>
  2396. <basecd>
  2397. <![CDATA[AST]]>
  2398. </basecd>
  2399. <testroomcd>
  2400. <![CDATA[17]]>
  2401. </testroomcd>
  2402. </auth>
  2403. <auth>
  2404. <basecd>
  2405. <![CDATA[AST]]>
  2406. </basecd>
  2407. <testroomcd>
  2408. <![CDATA[18]]>
  2409. </testroomcd>
  2410. </auth>
  2411. <auth>
  2412. <basecd>
  2413. <![CDATA[AST]]>
  2414. </basecd>
  2415. <testroomcd>
  2416. <![CDATA[19]]>
  2417. </testroomcd>
  2418. </auth>
  2419. <auth>
  2420. <basecd>
  2421. <![CDATA[AST]]>
  2422. </basecd>
  2423. <testroomcd>
  2424. <![CDATA[2]]>
  2425. </testroomcd>
  2426. </auth>
  2427. <auth>
  2428. <basecd>
  2429. <![CDATA[AST]]>
  2430. </basecd>
  2431. <testroomcd>
  2432. <![CDATA[20]]>
  2433. </testroomcd>
  2434. </auth>
  2435. <auth>
  2436. <basecd>
  2437. <![CDATA[AST]]>
  2438. </basecd>
  2439. <testroomcd>
  2440. <![CDATA[21]]>
  2441. </testroomcd>
  2442. </auth>
  2443. <auth>
  2444. <basecd>
  2445. <![CDATA[AST]]>
  2446. </basecd>
  2447. <testroomcd>
  2448. <![CDATA[22]]>
  2449. </testroomcd>
  2450. </auth>
  2451. <auth>
  2452. <basecd>
  2453. <![CDATA[AST]]>
  2454. </basecd>
  2455. <testroomcd>
  2456. <![CDATA[23]]>
  2457. </testroomcd>
  2458. </auth>
  2459. <auth>
  2460. <basecd>
  2461. <![CDATA[AST]]>
  2462. </basecd>
  2463. <testroomcd>
  2464. <![CDATA[24]]>
  2465. </testroomcd>
  2466. </auth>
  2467. <auth>
  2468. <basecd>
  2469. <![CDATA[AST]]>
  2470. </basecd>
  2471. <testroomcd>
  2472. <![CDATA[25]]>
  2473. </testroomcd>
  2474. </auth>
  2475. <auth>
  2476. <basecd>
  2477. <![CDATA[AST]]>
  2478. </basecd>
  2479. <testroomcd>
  2480. <![CDATA[26]]>
  2481. </testroomcd>
  2482. </auth>
  2483. <auth>
  2484. <basecd>
  2485. <![CDATA[AST]]>
  2486. </basecd>
  2487. <testroomcd>
  2488. <![CDATA[27]]>
  2489. </testroomcd>
  2490. </auth>
  2491. <auth>
  2492. <basecd>
  2493. <![CDATA[AST]]>
  2494. </basecd>
  2495. <testroomcd>
  2496. <![CDATA[28]]>
  2497. </testroomcd>
  2498. </auth>
  2499. <auth>
  2500. <basecd>
  2501. <![CDATA[AST]]>
  2502. </basecd>
  2503. <testroomcd>
  2504. <![CDATA[29]]>
  2505. </testroomcd>
  2506. </auth>
  2507. <auth>
  2508. <basecd>
  2509. <![CDATA[AST]]>
  2510. </basecd>
  2511. <testroomcd>
  2512. <![CDATA[3]]>
  2513. </testroomcd>
  2514. </auth>
  2515. <auth>
  2516. <basecd>
  2517. <![CDATA[AST]]>
  2518. </basecd>
  2519. <testroomcd>
  2520. <![CDATA[30]]>
  2521. </testroomcd>
  2522. </auth>
  2523. <auth>
  2524. <basecd>
  2525. <![CDATA[AST]]>
  2526. </basecd>
  2527. <testroomcd>
  2528. <![CDATA[31]]>
  2529. </testroomcd>
  2530. </auth>
  2531. <auth>
  2532. <basecd>
  2533. <![CDATA[AST]]>
  2534. </basecd>
  2535. <testroomcd>
  2536. <![CDATA[32]]>
  2537. </testroomcd>
  2538. </auth>
  2539. <auth>
  2540. <basecd>
  2541. <![CDATA[AST]]>
  2542. </basecd>
  2543. <testroomcd>
  2544. <![CDATA[33]]>
  2545. </testroomcd>
  2546. </auth>
  2547. <auth>
  2548. <basecd>
  2549. <![CDATA[AST]]>
  2550. </basecd>
  2551. <testroomcd>
  2552. <![CDATA[34]]>
  2553. </testroomcd>
  2554. </auth>
  2555. <auth>
  2556. <basecd>
  2557. <![CDATA[AST]]>
  2558. </basecd>
  2559. <testroomcd>
  2560. <![CDATA[35]]>
  2561. </testroomcd>
  2562. </auth>
  2563. <auth>
  2564. <basecd>
  2565. <![CDATA[AST]]>
  2566. </basecd>
  2567. <testroomcd>
  2568. <![CDATA[4]]>
  2569. </testroomcd>
  2570. </auth>
  2571. <auth>
  2572. <basecd>
  2573. <![CDATA[AST]]>
  2574. </basecd>
  2575. <testroomcd>
  2576. <![CDATA[5]]>
  2577. </testroomcd>
  2578. </auth>
  2579. <auth>
  2580. <basecd>
  2581. <![CDATA[AST]]>
  2582. </basecd>
  2583. <testroomcd>
  2584. <![CDATA[6]]>
  2585. </testroomcd>
  2586. </auth>
  2587. <auth>
  2588. <basecd>
  2589. <![CDATA[AST]]>
  2590. </basecd>
  2591. <testroomcd>
  2592. <![CDATA[7]]>
  2593. </testroomcd>
  2594. </auth>
  2595. <auth>
  2596. <basecd>
  2597. <![CDATA[AST]]>
  2598. </basecd>
  2599. <testroomcd>
  2600. <![CDATA[9]]>
  2601. </testroomcd>
  2602. </auth>
  2603. <auth>
  2604. <basecd>
  2605. <![CDATA[AST]]>
  2606. </basecd>
  2607. <testroomcd>
  2608. <![CDATA[A01]]>
  2609. </testroomcd>
  2610. </auth>
  2611. </authlst>
  2612. </init>
  2613. <hidden/>
  2614. <temp>
  2615. <item>
  2616. <signdrseq/>
  2617. <signdreng/>
  2618. <signdrposeng/>
  2619. <signdrdepteng/>
  2620. <signdrdivieng/>
  2621. <instnmeng/>
  2622. </item>
  2623. <popupmenu>
  2624. <grid01>
  2625. <item>
  2626. <name>그룹 선택</name>
  2627. <func>fAllCheck</func>
  2628. </item>
  2629. <item>
  2630. <name>그룹 선택 취소</name>
  2631. <func>fUnAllCheck</func>
  2632. </item>
  2633. </grid01>
  2634. </popupmenu>
  2635. </temp>
  2636. <properties>
  2637. <uid>
  2638. <myself>1219294059651</myself>
  2639. <opener/>
  2640. <children>
  2641. <SPZUR00100/>
  2642. <latest/>
  2643. </children>
  2644. </uid>
  2645. <domain/>
  2646. <title>검사결과관리[비자건진]</title>
  2647. <auth>11100000</auth>
  2648. <menu>
  2649. <menuparam>G</menuparam>
  2650. <menugroupcd>MG00180000|MA00000018|일반건진 (AST개발자)</menugroupcd>
  2651. <menuitemcd>MI00180049</menuitemcd>
  2652. <menuprestdeptcd/>
  2653. </menu>
  2654. <parameters>
  2655. <msg>
  2656. <msgvalue>검사결과정보 </msgvalue>
  2657. </msg>
  2658. <onready>
  2659. <onreadyvalue>true</onreadyvalue>
  2660. </onready>
  2661. </parameters>
  2662. <report>
  2663. <mainreport>
  2664. <params>
  2665. <userid>AST</userid>
  2666. <logoimgurl>http://dev999.cmcnu.or.kr:9081/himed/webapps/com/commonweb/images/error_logo001.gif</logoimgurl>
  2667. <url>RPAHR00540</url>
  2668. </params>
  2669. <props>
  2670. <rex_rptname>RPAHR00540</rex_rptname>
  2671. <rex_datatype>XMLSTR</rex_datatype>
  2672. <rex_submitid/>
  2673. <rex_userservice/>
  2674. <rex_data_xpath/>
  2675. <rex_xpath/>
  2676. <rex_xpath1/>
  2677. </props>
  2678. <options>
  2679. <rex_print>false</rex_print>
  2680. <rex_printdialog/>
  2681. <rex_printpaperbin/>
  2682. <rex_filetype/>
  2683. <rex_filename/>
  2684. <rex_filedialog/>
  2685. <rex_close>true</rex_close>
  2686. <rex_showbutton/>
  2687. <rex_printcount/>
  2688. <rex_zoomrate/>
  2689. <rex_printoption/>
  2690. </options>
  2691. </mainreport>
  2692. </report>
  2693. <error>
  2694. <type>info</type>
  2695. <code/>
  2696. <msg>
  2697. <![CDATA[1건이 조회되었습니다.]]>
  2698. </msg>
  2699. <description/>
  2700. </error>
  2701. </properties>
  2702. <send>
  2703. <srchhealexamdetlflag>G02</srchhealexamdetlflag>
  2704. <srchfromdd>20080821</srchfromdd>
  2705. <srchtodd/>
  2706. <srchcmpycd/>
  2707. <srchcmpynm/>
  2708. <srchpkgcd>VPCDAEA</srchpkgcd>
  2709. <srchpkgnm/>
  2710. <srchpid2/>
  2711. <srchpnm/>
  2712. <srchroomcd/>
  2713. <srchinstcd>012</srchinstcd>
  2714. <srchhealexamflag>G</srchhealexamflag>
  2715. <srchtestcd2/>
  2716. <srchrsltflag/>
  2717. <srchstyle/>
  2718. <save>
  2719. <healexamflag/>
  2720. <healexamdetlflag/>
  2721. <rsrvdd/>
  2722. <rsrvno/>
  2723. <pid/>
  2724. <orddd/>
  2725. <cretno/>
  2726. <pkgcd/>
  2727. <saverslt/>
  2728. <savetext/>
  2729. <saveinqr/>
  2730. <resultoftest/>
  2731. <specialoption/>
  2732. <requiretest/>
  2733. <subclass/>
  2734. <visano/>
  2735. <signdrseq/>
  2736. <signdrdept/>
  2737. <signdr/>
  2738. <signdrpos/>
  2739. <signdrdivi/>
  2740. <instnm/>
  2741. </save>
  2742. <srchorddd>20080821</srchorddd>
  2743. <srchcretno>1</srchcretno>
  2744. <srchrsrvdd>20080821</srchrsrvdd>
  2745. <srchrsrvno>1732044</srchrsrvno>
  2746. <srchpid>80182</srchpid>
  2747. <srchinqrflag>T</srchinqrflag>
  2748. <srchstatfg/>
  2749. <saveout>
  2750. <pid/>
  2751. <orddd/>
  2752. <cretno/>
  2753. <healexamflag/>
  2754. <rsrvdd/>
  2755. <rsrvno/>
  2756. <healexamdetlflag/>
  2757. <instcd/>
  2758. </saveout>
  2759. <iemr>
  2760. <pid/>
  2761. <orddeptcd/>
  2762. <indd/>
  2763. <docucd/>
  2764. <ioflag/>
  2765. <pagetot/>
  2766. <cmc_spcid/>
  2767. <cmc_orddate/>
  2768. <cmc_orderseqno/>
  2769. <treatno/>
  2770. </iemr>
  2771. <srchuserid/>
  2772. <srchdeptcd/>
  2773. <result>
  2774. <lab/>
  2775. <che/>
  2776. <nuc>nuc</nuc>
  2777. <mic/>
  2778. <eds/>
  2779. <style/>
  2780. </result>
  2781. <srchclscd/>
  2782. <srchetccd/>
  2783. </send>
  2784. </root>