입퇴원리스트.xml 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <root xmlns="">
  3. <main>
  4. <inpatinfo>
  5. <inpatlist>
  6. <pid>3006544</pid>
  7. <indd>20111004</indd>
  8. <cretno>2</cretno>
  9. <seqno>1</seqno>
  10. <instcd>053</instcd>
  11. <hngnm>이기록</hngnm>
  12. <fsexamflag>R</fsexamflag>
  13. <sa>M/31</sa>
  14. <hd>212</hd>
  15. <ad>20111004</ad>
  16. <pod/>
  17. <refer/>
  18. <replstat/>
  19. <orddeptcd>2010300000</orddeptcd>
  20. <deptnm>소화기내과</deptnm>
  21. <subdeptnm/>
  22. <medispclnm>권@오</medispclnm>
  23. <medispclid>93437</medispclid>
  24. <atdoctnm>-</atdoctnm>
  25. <diagnm>
  26. <![CDATA[Hepatoma]]>
  27. </diagnm>
  28. <opnm>
  29. <![CDATA[간의 고주파절제]]>
  30. </opnm>
  31. <cnst>N</cnst>
  32. <dayregular>N</dayregular>
  33. <lastprcpdd>20111104</lastprcpdd>
  34. <cpyn>N</cpyn>
  35. <insukind>11</insukind>
  36. <transfer/>
  37. <dschnoti>퇴원예고</dschnoti>
  38. <preworkup>N</preworkup>
  39. <hsctpreday>-</hsctpreday>
  40. <trsntype/>
  41. <hsctday>0</hsctday>
  42. <postcxday>0</postcxday>
  43. <memo/>
  44. <roomcd>2212</roomcd>
  45. <rrgstno1>800627</rrgstno1>
  46. <conctypenm/>
  47. <antidrugflag>N</antidrugflag>
  48. <ordtype>I</ordtype>
  49. <spclflag>N</spclflag>
  50. <color/>
  51. <repltype/>
  52. <coopteamcd>A15</coopteamcd>
  53. <specordtype/>
  54. <wardnm>202병동</wardnm>
  55. <opcnfmdd/>
  56. <diagnmopnm>
  57. <![CDATA[▷Hepatoma
  58. [OP]간의 고주파절제]]>
  59. </diagnmopnm>
  60. <had>211</had>
  61. <adx>외래</adx>
  62. <testrslt>
  63. <![CDATA[-]]>
  64. </testrslt>
  65. </inpatlist>
  66. <inpatlist>
  67. <pid>3006694</pid>
  68. <indd>20111027</indd>
  69. <cretno>1</cretno>
  70. <seqno>1</seqno>
  71. <instcd>053</instcd>
  72. <hngnm>김씨</hngnm>
  73. <fsexamflag>F</fsexamflag>
  74. <sa>F/33</sa>
  75. <hd>189</hd>
  76. <ad>20111027</ad>
  77. <pod/>
  78. <refer/>
  79. <replstat/>
  80. <orddeptcd>2010300000</orddeptcd>
  81. <deptnm>소화기내과</deptnm>
  82. <subdeptnm/>
  83. <medispclnm>김@</medispclnm>
  84. <medispclid>03074</medispclid>
  85. <atdoctnm>-</atdoctnm>
  86. <diagnm>
  87. <![CDATA[Kwashiorkor]]>
  88. </diagnm>
  89. <opnm/>
  90. <cnst>N</cnst>
  91. <dayregular>N</dayregular>
  92. <lastprcpdd>20120222</lastprcpdd>
  93. <cpyn>N</cpyn>
  94. <insukind>11</insukind>
  95. <transfer/>
  96. <dschnoti>퇴원예고</dschnoti>
  97. <preworkup>N</preworkup>
  98. <hsctpreday>-</hsctpreday>
  99. <trsntype/>
  100. <hsctday>0</hsctday>
  101. <postcxday>0</postcxday>
  102. <memo/>
  103. <roomcd>2213</roomcd>
  104. <rrgstno1>790304</rrgstno1>
  105. <conctypenm/>
  106. <antidrugflag>N</antidrugflag>
  107. <ordtype>I</ordtype>
  108. <spclflag>N</spclflag>
  109. <color/>
  110. <repltype/>
  111. <coopteamcd>-</coopteamcd>
  112. <specordtype/>
  113. <wardnm>202병동</wardnm>
  114. <opcnfmdd/>
  115. <diagnmopnm>
  116. <![CDATA[▷Kwashiorkor
  117. ]]>
  118. </diagnmopnm>
  119. <had>188</had>
  120. <adx/>
  121. <testrslt>
  122. <![CDATA[-]]>
  123. </testrslt>
  124. </inpatlist>
  125. <inpatlist>
  126. <pid>3007865</pid>
  127. <indd>20120320</indd>
  128. <cretno>1</cretno>
  129. <seqno>1</seqno>
  130. <instcd>053</instcd>
  131. <hngnm>박테스트</hngnm>
  132. <fsexamflag>F</fsexamflag>
  133. <sa>M/27</sa>
  134. <hd>44</hd>
  135. <ad>20120320</ad>
  136. <pod/>
  137. <refer/>
  138. <replstat/>
  139. <orddeptcd>2010300000</orddeptcd>
  140. <deptnm>소화기내과</deptnm>
  141. <subdeptnm/>
  142. <medispclnm>강명수</medispclnm>
  143. <medispclid>80497</medispclid>
  144. <atdoctnm>-</atdoctnm>
  145. <diagnm>
  146. <![CDATA[Acute nasopharyngitis[common cold]]]>
  147. </diagnm>
  148. <opnm>
  149. <![CDATA[기타 부갑상샘절제술]]>
  150. </opnm>
  151. <cnst>N</cnst>
  152. <dayregular>N</dayregular>
  153. <lastprcpdd>20120322</lastprcpdd>
  154. <cpyn>N</cpyn>
  155. <insukind>11</insukind>
  156. <transfer/>
  157. <dschnoti>-</dschnoti>
  158. <preworkup>N</preworkup>
  159. <hsctpreday>-</hsctpreday>
  160. <trsntype/>
  161. <hsctday>0</hsctday>
  162. <postcxday>0</postcxday>
  163. <memo/>
  164. <roomcd>2216</roomcd>
  165. <rrgstno1>841024</rrgstno1>
  166. <conctypenm/>
  167. <antidrugflag>N</antidrugflag>
  168. <ordtype>I</ordtype>
  169. <spclflag>N</spclflag>
  170. <color/>
  171. <repltype/>
  172. <coopteamcd>-</coopteamcd>
  173. <specordtype/>
  174. <wardnm>202병동</wardnm>
  175. <opcnfmdd/>
  176. <diagnmopnm>
  177. <![CDATA[▷Acute nasopharyngitis[common cold]
  178. [OP]기타 부갑상샘절제술]]>
  179. </diagnmopnm>
  180. <had>43</had>
  181. <adx/>
  182. <testrslt>
  183. <![CDATA[-]]>
  184. </testrslt>
  185. </inpatlist>
  186. <inpatlist>
  187. <pid>1531046</pid>
  188. <indd>20110628</indd>
  189. <cretno>1</cretno>
  190. <seqno>6</seqno>
  191. <instcd>053</instcd>
  192. <hngnm>배@연</hngnm>
  193. <fsexamflag>S</fsexamflag>
  194. <sa>F/75</sa>
  195. <hd>306</hd>
  196. <ad>20110628</ad>
  197. <pod/>
  198. <refer/>
  199. <replstat/>
  200. <orddeptcd>2010300000</orddeptcd>
  201. <deptnm>소화기내과</deptnm>
  202. <subdeptnm/>
  203. <medispclnm>김@국</medispclnm>
  204. <medispclid>93409</medispclid>
  205. <atdoctnm>천@수</atdoctnm>
  206. <diagnm>
  207. <![CDATA[Colon cancer]]>
  208. </diagnm>
  209. <opnm/>
  210. <cnst>N</cnst>
  211. <dayregular>N</dayregular>
  212. <lastprcpdd>20111027</lastprcpdd>
  213. <cpyn>N</cpyn>
  214. <insukind>11</insukind>
  215. <transfer/>
  216. <dschnoti>퇴원예고</dschnoti>
  217. <preworkup>N</preworkup>
  218. <hsctpreday>-</hsctpreday>
  219. <trsntype/>
  220. <hsctday>0</hsctday>
  221. <postcxday>0</postcxday>
  222. <memo/>
  223. <roomcd>2220</roomcd>
  224. <rrgstno1>370203</rrgstno1>
  225. <conctypenm/>
  226. <antidrugflag>N</antidrugflag>
  227. <ordtype>I</ordtype>
  228. <spclflag>N</spclflag>
  229. <color/>
  230. <repltype/>
  231. <coopteamcd>-</coopteamcd>
  232. <specordtype/>
  233. <wardnm>202병동</wardnm>
  234. <opcnfmdd/>
  235. <diagnmopnm>
  236. <![CDATA[▷Colon cancer
  237. ]]>
  238. </diagnmopnm>
  239. <had>309</had>
  240. <adx>외래</adx>
  241. <testrslt>
  242. <![CDATA[-]]>
  243. </testrslt>
  244. </inpatlist>
  245. <inpatlist>
  246. <pid>2299617</pid>
  247. <indd>20110630</indd>
  248. <cretno>2</cretno>
  249. <seqno>1</seqno>
  250. <instcd>053</instcd>
  251. <hngnm>심@희</hngnm>
  252. <fsexamflag>R</fsexamflag>
  253. <sa>F/57</sa>
  254. <hd>308</hd>
  255. <ad>20110630</ad>
  256. <pod/>
  257. <refer/>
  258. <replstat/>
  259. <orddeptcd>2010300000</orddeptcd>
  260. <deptnm>소화기내과</deptnm>
  261. <subdeptnm/>
  262. <medispclnm>정@규</medispclnm>
  263. <medispclid>98094</medispclid>
  264. <atdoctnm>천@수</atdoctnm>
  265. <diagnm>
  266. <![CDATA[Gastritis]]>
  267. </diagnm>
  268. <opnm/>
  269. <cnst>N</cnst>
  270. <dayregular>N</dayregular>
  271. <lastprcpdd>20111027</lastprcpdd>
  272. <cpyn>N</cpyn>
  273. <insukind>11</insukind>
  274. <transfer/>
  275. <dschnoti>퇴원예고</dschnoti>
  276. <preworkup>N</preworkup>
  277. <hsctpreday>-</hsctpreday>
  278. <trsntype/>
  279. <hsctday>0</hsctday>
  280. <postcxday>0</postcxday>
  281. <memo/>
  282. <roomcd>2220</roomcd>
  283. <rrgstno1>541205</rrgstno1>
  284. <conctypenm/>
  285. <antidrugflag>N</antidrugflag>
  286. <ordtype>I</ordtype>
  287. <spclflag>N</spclflag>
  288. <color/>
  289. <repltype/>
  290. <coopteamcd>-</coopteamcd>
  291. <specordtype/>
  292. <wardnm>202병동</wardnm>
  293. <opcnfmdd/>
  294. <diagnmopnm>
  295. <![CDATA[▷Gastritis
  296. ]]>
  297. </diagnmopnm>
  298. <had>307</had>
  299. <adx>외래</adx>
  300. <testrslt>
  301. <![CDATA[-]]>
  302. </testrslt>
  303. </inpatlist>
  304. <inpatlist>
  305. <pid>1311911</pid>
  306. <indd>20110627</indd>
  307. <cretno>1</cretno>
  308. <seqno>4</seqno>
  309. <instcd>053</instcd>
  310. <hngnm>심@자</hngnm>
  311. <fsexamflag>D</fsexamflag>
  312. <sa>F/70</sa>
  313. <hd>310</hd>
  314. <ad>20110627</ad>
  315. <pod/>
  316. <refer/>
  317. <replstat/>
  318. <orddeptcd>2010300000</orddeptcd>
  319. <deptnm>소화기내과</deptnm>
  320. <subdeptnm/>
  321. <medispclnm>김@국</medispclnm>
  322. <medispclid>93409</medispclid>
  323. <atdoctnm>천@수</atdoctnm>
  324. <diagnm>
  325. <![CDATA[Rectal ca]]>
  326. </diagnm>
  327. <opnm/>
  328. <cnst>N</cnst>
  329. <dayregular>N</dayregular>
  330. <lastprcpdd>20120426</lastprcpdd>
  331. <cpyn>N</cpyn>
  332. <insukind>11</insukind>
  333. <transfer/>
  334. <dschnoti>-</dschnoti>
  335. <preworkup>N</preworkup>
  336. <hsctpreday>-</hsctpreday>
  337. <trsntype/>
  338. <hsctday>0</hsctday>
  339. <postcxday>0</postcxday>
  340. <memo/>
  341. <roomcd>2220</roomcd>
  342. <rrgstno1>410923</rrgstno1>
  343. <conctypenm/>
  344. <antidrugflag>N</antidrugflag>
  345. <ordtype>I</ordtype>
  346. <spclflag>N</spclflag>
  347. <color/>
  348. <repltype/>
  349. <coopteamcd>-</coopteamcd>
  350. <specordtype/>
  351. <wardnm>202병동</wardnm>
  352. <opcnfmdd/>
  353. <diagnmopnm>
  354. <![CDATA[▷Rectal ca
  355. ]]>
  356. </diagnmopnm>
  357. <had>310</had>
  358. <adx/>
  359. <testrslt>
  360. <![CDATA[-]]>
  361. </testrslt>
  362. </inpatlist>
  363. <inpatlist>
  364. <pid>1804974</pid>
  365. <indd>20110624</indd>
  366. <cretno>1</cretno>
  367. <seqno>3</seqno>
  368. <instcd>053</instcd>
  369. <hngnm>남@원</hngnm>
  370. <fsexamflag>R</fsexamflag>
  371. <sa>F/82</sa>
  372. <hd>314</hd>
  373. <ad>20110624</ad>
  374. <pod/>
  375. <refer/>
  376. <replstat/>
  377. <orddeptcd>2010300000</orddeptcd>
  378. <deptnm>소화기내과</deptnm>
  379. <subdeptnm/>
  380. <medispclnm>김@국</medispclnm>
  381. <medispclid>93409</medispclid>
  382. <atdoctnm>천@수</atdoctnm>
  383. <diagnm>
  384. <![CDATA[Acute HIV infection syndrome]]>
  385. </diagnm>
  386. <opnm/>
  387. <cnst>N</cnst>
  388. <dayregular>N</dayregular>
  389. <lastprcpdd>20120316</lastprcpdd>
  390. <cpyn>N</cpyn>
  391. <insukind>21</insukind>
  392. <transfer/>
  393. <dschnoti>-</dschnoti>
  394. <preworkup>N</preworkup>
  395. <hsctpreday>-</hsctpreday>
  396. <trsntype/>
  397. <hsctday>0</hsctday>
  398. <postcxday>0</postcxday>
  399. <memo/>
  400. <roomcd>2221</roomcd>
  401. <rrgstno1>300308</rrgstno1>
  402. <conctypenm/>
  403. <antidrugflag>Y</antidrugflag>
  404. <ordtype>I</ordtype>
  405. <spclflag>Y</spclflag>
  406. <color/>
  407. <repltype/>
  408. <coopteamcd>-</coopteamcd>
  409. <specordtype/>
  410. <wardnm>202병동</wardnm>
  411. <opcnfmdd/>
  412. <diagnmopnm>
  413. <![CDATA[▷Acute HIV infection syndrome
  414. ]]>
  415. </diagnmopnm>
  416. <had>313</had>
  417. <adx>외래</adx>
  418. <testrslt>
  419. <![CDATA[-]]>
  420. </testrslt>
  421. </inpatlist>
  422. <inpatlist>
  423. <pid>2229010</pid>
  424. <indd>20110624</indd>
  425. <cretno>1</cretno>
  426. <seqno>3</seqno>
  427. <instcd>053</instcd>
  428. <hngnm>신@란</hngnm>
  429. <fsexamflag>D</fsexamflag>
  430. <sa>F/75</sa>
  431. <hd>314</hd>
  432. <ad>20110624</ad>
  433. <pod/>
  434. <refer/>
  435. <replstat/>
  436. <orddeptcd>2010300000</orddeptcd>
  437. <deptnm>소화기내과</deptnm>
  438. <subdeptnm/>
  439. <medispclnm>김@국</medispclnm>
  440. <medispclid>93409</medispclid>
  441. <atdoctnm>천@수</atdoctnm>
  442. <diagnm/>
  443. <opnm/>
  444. <cnst>N</cnst>
  445. <dayregular>N</dayregular>
  446. <lastprcpdd>20111103</lastprcpdd>
  447. <cpyn>Y</cpyn>
  448. <insukind>11</insukind>
  449. <transfer/>
  450. <dschnoti>-</dschnoti>
  451. <preworkup>N</preworkup>
  452. <hsctpreday>-</hsctpreday>
  453. <trsntype/>
  454. <hsctday>0</hsctday>
  455. <postcxday>0</postcxday>
  456. <memo/>
  457. <roomcd>2221</roomcd>
  458. <rrgstno1>370105</rrgstno1>
  459. <conctypenm/>
  460. <antidrugflag>N</antidrugflag>
  461. <ordtype>I</ordtype>
  462. <spclflag>N</spclflag>
  463. <color/>
  464. <repltype/>
  465. <coopteamcd>-</coopteamcd>
  466. <specordtype/>
  467. <wardnm>202병동</wardnm>
  468. <opcnfmdd/>
  469. <diagnmopnm/>
  470. <had>313</had>
  471. <adx/>
  472. <testrslt>
  473. <![CDATA[-]]>
  474. </testrslt>
  475. </inpatlist>
  476. <inpatlist>
  477. <pid>999223</pid>
  478. <indd>20110927</indd>
  479. <cretno>1</cretno>
  480. <seqno>1</seqno>
  481. <instcd>053</instcd>
  482. <hngnm>이@준</hngnm>
  483. <fsexamflag>R</fsexamflag>
  484. <sa>M/35</sa>
  485. <hd>219</hd>
  486. <ad>20110927</ad>
  487. <pod/>
  488. <refer/>
  489. <replstat/>
  490. <orddeptcd>2010300000</orddeptcd>
  491. <deptnm>소화기내과</deptnm>
  492. <subdeptnm/>
  493. <medispclnm>권@오</medispclnm>
  494. <medispclid>93437</medispclid>
  495. <atdoctnm>-</atdoctnm>
  496. <diagnm>
  497. <![CDATA[Abdominal obesity]]>
  498. </diagnm>
  499. <opnm/>
  500. <cnst>N</cnst>
  501. <dayregular>N</dayregular>
  502. <lastprcpdd>20120228</lastprcpdd>
  503. <cpyn>N</cpyn>
  504. <insukind>11</insukind>
  505. <transfer/>
  506. <dschnoti>퇴원예고</dschnoti>
  507. <preworkup>N</preworkup>
  508. <hsctpreday>-</hsctpreday>
  509. <trsntype/>
  510. <hsctday>0</hsctday>
  511. <postcxday>0</postcxday>
  512. <memo/>
  513. <roomcd>2222</roomcd>
  514. <rrgstno1>760825</rrgstno1>
  515. <conctypenm/>
  516. <antidrugflag>N</antidrugflag>
  517. <ordtype>I</ordtype>
  518. <spclflag>N</spclflag>
  519. <color/>
  520. <repltype/>
  521. <coopteamcd>-</coopteamcd>
  522. <specordtype/>
  523. <wardnm>202병동</wardnm>
  524. <opcnfmdd/>
  525. <diagnmopnm>
  526. <![CDATA[▷Abdominal obesity
  527. ]]>
  528. </diagnmopnm>
  529. <had>218</had>
  530. <adx>외래</adx>
  531. <testrslt>
  532. <![CDATA[-]]>
  533. </testrslt>
  534. </inpatlist>
  535. <inpatlist>
  536. <pid>1734804</pid>
  537. <indd>20110628</indd>
  538. <cretno>1</cretno>
  539. <seqno>4</seqno>
  540. <instcd>053</instcd>
  541. <hngnm>김@덕</hngnm>
  542. <fsexamflag>D</fsexamflag>
  543. <sa>M/76</sa>
  544. <hd>309</hd>
  545. <ad>20110628</ad>
  546. <pod/>
  547. <refer/>
  548. <replstat/>
  549. <orddeptcd>2010300000</orddeptcd>
  550. <deptnm>소화기내과</deptnm>
  551. <subdeptnm/>
  552. <medispclnm>정@규</medispclnm>
  553. <medispclid>98094</medispclid>
  554. <atdoctnm>천@수</atdoctnm>
  555. <diagnm>
  556. <![CDATA[Aplasia, (pure) red cell of infants]]>
  557. </diagnm>
  558. <opnm/>
  559. <cnst>N</cnst>
  560. <dayregular>N</dayregular>
  561. <lastprcpdd>20111103</lastprcpdd>
  562. <cpyn>N</cpyn>
  563. <insukind>11</insukind>
  564. <transfer/>
  565. <dschnoti>퇴원예고</dschnoti>
  566. <preworkup>N</preworkup>
  567. <hsctpreday>-</hsctpreday>
  568. <trsntype/>
  569. <hsctday>0</hsctday>
  570. <postcxday>0</postcxday>
  571. <memo/>
  572. <roomcd>2222</roomcd>
  573. <rrgstno1>360201</rrgstno1>
  574. <conctypenm/>
  575. <antidrugflag>N</antidrugflag>
  576. <ordtype>I</ordtype>
  577. <spclflag>N</spclflag>
  578. <color/>
  579. <repltype/>
  580. <coopteamcd>-</coopteamcd>
  581. <specordtype/>
  582. <wardnm>202병동</wardnm>
  583. <opcnfmdd/>
  584. <diagnmopnm>
  585. <![CDATA[▷Aplasia, (pure) red cell of infants
  586. ]]>
  587. </diagnmopnm>
  588. <had>309</had>
  589. <adx/>
  590. <testrslt>
  591. <![CDATA[-]]>
  592. </testrslt>
  593. </inpatlist>
  594. <inpatlist>
  595. <pid>2297403</pid>
  596. <indd>20110627</indd>
  597. <cretno>3</cretno>
  598. <seqno>1</seqno>
  599. <instcd>053</instcd>
  600. <hngnm>김@고</hngnm>
  601. <fsexamflag>R</fsexamflag>
  602. <sa>M/59</sa>
  603. <hd>311</hd>
  604. <ad>20110627</ad>
  605. <pod/>
  606. <refer/>
  607. <replstat/>
  608. <orddeptcd>2010300000</orddeptcd>
  609. <deptnm>소화기내과</deptnm>
  610. <subdeptnm/>
  611. <medispclnm>김@국</medispclnm>
  612. <medispclid>93409</medispclid>
  613. <atdoctnm>천@수</atdoctnm>
  614. <diagnm>
  615. <![CDATA[Esophageal cancer, unspecified]]>
  616. </diagnm>
  617. <opnm/>
  618. <cnst>N</cnst>
  619. <dayregular>N</dayregular>
  620. <lastprcpdd>20120424</lastprcpdd>
  621. <cpyn>N</cpyn>
  622. <insukind>11</insukind>
  623. <transfer/>
  624. <dschnoti>-</dschnoti>
  625. <preworkup>N</preworkup>
  626. <hsctpreday>-</hsctpreday>
  627. <trsntype/>
  628. <hsctday>0</hsctday>
  629. <postcxday>0</postcxday>
  630. <memo/>
  631. <roomcd>2222</roomcd>
  632. <rrgstno1>520929</rrgstno1>
  633. <conctypenm/>
  634. <antidrugflag>N</antidrugflag>
  635. <ordtype>I</ordtype>
  636. <spclflag>N</spclflag>
  637. <color/>
  638. <repltype/>
  639. <coopteamcd>-</coopteamcd>
  640. <specordtype/>
  641. <wardnm>202병동</wardnm>
  642. <opcnfmdd/>
  643. <diagnmopnm>
  644. <![CDATA[▷Esophageal cancer, unspecified
  645. ]]>
  646. </diagnmopnm>
  647. <had>310</had>
  648. <adx>외래</adx>
  649. <testrslt>
  650. <![CDATA[-]]>
  651. </testrslt>
  652. </inpatlist>
  653. <inpatlist>
  654. <pid>3006537</pid>
  655. <indd>20110922</indd>
  656. <cretno>2</cretno>
  657. <seqno>1</seqno>
  658. <instcd>053</instcd>
  659. <hngnm>송혜교</hngnm>
  660. <fsexamflag>R</fsexamflag>
  661. <sa>M/31</sa>
  662. <hd>224</hd>
  663. <ad>20110922</ad>
  664. <pod/>
  665. <refer/>
  666. <replstat/>
  667. <orddeptcd>2010300000</orddeptcd>
  668. <deptnm>소화기내과</deptnm>
  669. <subdeptnm/>
  670. <medispclnm>권@오</medispclnm>
  671. <medispclid>93437</medispclid>
  672. <atdoctnm>-</atdoctnm>
  673. <diagnm>
  674. <![CDATA[Acute hepatitis C]]>
  675. </diagnm>
  676. <opnm/>
  677. <cnst>N</cnst>
  678. <dayregular>N</dayregular>
  679. <lastprcpdd>20120210</lastprcpdd>
  680. <cpyn>N</cpyn>
  681. <insukind>11</insukind>
  682. <transfer/>
  683. <dschnoti>-</dschnoti>
  684. <preworkup>N</preworkup>
  685. <hsctpreday>-</hsctpreday>
  686. <trsntype/>
  687. <hsctday>0</hsctday>
  688. <postcxday>0</postcxday>
  689. <memo/>
  690. <roomcd>2223</roomcd>
  691. <rrgstno1>800627</rrgstno1>
  692. <conctypenm/>
  693. <antidrugflag>N</antidrugflag>
  694. <ordtype>I</ordtype>
  695. <spclflag>N</spclflag>
  696. <color/>
  697. <repltype/>
  698. <coopteamcd>-</coopteamcd>
  699. <specordtype/>
  700. <wardnm>202병동</wardnm>
  701. <opcnfmdd/>
  702. <diagnmopnm>
  703. <![CDATA[▷Acute hepatitis C
  704. ]]>
  705. </diagnmopnm>
  706. <had>223</had>
  707. <adx>외래</adx>
  708. <testrslt>
  709. <![CDATA[-]]>
  710. </testrslt>
  711. </inpatlist>
  712. <inpatlist>
  713. <pid>2168524</pid>
  714. <indd>20110627</indd>
  715. <cretno>3</cretno>
  716. <seqno>1</seqno>
  717. <instcd>053</instcd>
  718. <hngnm>김@규</hngnm>
  719. <fsexamflag>R</fsexamflag>
  720. <sa>M/52</sa>
  721. <hd>311</hd>
  722. <ad>20110627</ad>
  723. <pod/>
  724. <refer/>
  725. <replstat/>
  726. <orddeptcd>2010300000</orddeptcd>
  727. <deptnm>소화기내과</deptnm>
  728. <subdeptnm/>
  729. <medispclnm>김@국</medispclnm>
  730. <medispclid>93409</medispclid>
  731. <atdoctnm>천@수</atdoctnm>
  732. <diagnm>
  733. <![CDATA[Congenital viral hepatitis]]>
  734. </diagnm>
  735. <opnm/>
  736. <cnst>N</cnst>
  737. <dayregular>N</dayregular>
  738. <lastprcpdd>20111103</lastprcpdd>
  739. <cpyn>N</cpyn>
  740. <insukind>11</insukind>
  741. <transfer/>
  742. <dschnoti>-</dschnoti>
  743. <preworkup>N</preworkup>
  744. <hsctpreday>-</hsctpreday>
  745. <trsntype/>
  746. <hsctday>0</hsctday>
  747. <postcxday>0</postcxday>
  748. <memo/>
  749. <roomcd>2223</roomcd>
  750. <rrgstno1>600324</rrgstno1>
  751. <conctypenm/>
  752. <antidrugflag>N</antidrugflag>
  753. <ordtype>I</ordtype>
  754. <spclflag>N</spclflag>
  755. <color/>
  756. <repltype/>
  757. <coopteamcd>-</coopteamcd>
  758. <specordtype/>
  759. <wardnm>202병동</wardnm>
  760. <opcnfmdd/>
  761. <diagnmopnm>
  762. <![CDATA[▷Congenital viral hepatitis
  763. ]]>
  764. </diagnmopnm>
  765. <had>310</had>
  766. <adx/>
  767. <testrslt>
  768. <![CDATA[-]]>
  769. </testrslt>
  770. </inpatlist>
  771. <inpatlist>
  772. <pid>2272372</pid>
  773. <indd>20110619</indd>
  774. <cretno>1</cretno>
  775. <seqno>4</seqno>
  776. <instcd>053</instcd>
  777. <hngnm>백@식</hngnm>
  778. <fsexamflag>R</fsexamflag>
  779. <sa>M/71</sa>
  780. <hd>315</hd>
  781. <ad>20110619</ad>
  782. <pod/>
  783. <refer/>
  784. <replstat/>
  785. <orddeptcd>2010300000</orddeptcd>
  786. <deptnm>소화기내과</deptnm>
  787. <subdeptnm/>
  788. <medispclnm>정@규</medispclnm>
  789. <medispclid>98094</medispclid>
  790. <atdoctnm>천@수</atdoctnm>
  791. <diagnm/>
  792. <opnm/>
  793. <cnst>N</cnst>
  794. <dayregular>N</dayregular>
  795. <lastprcpdd>20111103</lastprcpdd>
  796. <cpyn>N</cpyn>
  797. <insukind>11</insukind>
  798. <transfer/>
  799. <dschnoti>-</dschnoti>
  800. <preworkup>N</preworkup>
  801. <hsctpreday>-</hsctpreday>
  802. <trsntype/>
  803. <hsctday>0</hsctday>
  804. <postcxday>0</postcxday>
  805. <memo/>
  806. <roomcd>2223</roomcd>
  807. <rrgstno1>400808</rrgstno1>
  808. <conctypenm/>
  809. <antidrugflag>N</antidrugflag>
  810. <ordtype>I</ordtype>
  811. <spclflag>N</spclflag>
  812. <color/>
  813. <repltype/>
  814. <coopteamcd>-</coopteamcd>
  815. <specordtype/>
  816. <wardnm>202병동</wardnm>
  817. <opcnfmdd/>
  818. <diagnmopnm/>
  819. <had>318</had>
  820. <adx/>
  821. <testrslt>
  822. <![CDATA[-]]>
  823. </testrslt>
  824. </inpatlist>
  825. <inpatlist>
  826. <pid>2243458</pid>
  827. <indd>20110612</indd>
  828. <cretno>1</cretno>
  829. <seqno>4</seqno>
  830. <instcd>053</instcd>
  831. <hngnm>임@식</hngnm>
  832. <fsexamflag>R</fsexamflag>
  833. <sa>M/65</sa>
  834. <hd>326</hd>
  835. <ad>20110612</ad>
  836. <pod/>
  837. <refer/>
  838. <replstat/>
  839. <orddeptcd>2010300000</orddeptcd>
  840. <deptnm>소화기내과</deptnm>
  841. <subdeptnm/>
  842. <medispclnm>정@규</medispclnm>
  843. <medispclid>98094</medispclid>
  844. <atdoctnm>천@수</atdoctnm>
  845. <diagnm>
  846. <![CDATA[Arthritis, rheumatic, subacute]]>
  847. </diagnm>
  848. <opnm/>
  849. <cnst>N</cnst>
  850. <dayregular>N</dayregular>
  851. <lastprcpdd>20111103</lastprcpdd>
  852. <cpyn>N</cpyn>
  853. <insukind>11</insukind>
  854. <transfer/>
  855. <dschnoti>-</dschnoti>
  856. <preworkup>N</preworkup>
  857. <hsctpreday>-</hsctpreday>
  858. <trsntype/>
  859. <hsctday>0</hsctday>
  860. <postcxday>0</postcxday>
  861. <memo/>
  862. <roomcd>2223</roomcd>
  863. <rrgstno1>470402</rrgstno1>
  864. <conctypenm/>
  865. <antidrugflag>N</antidrugflag>
  866. <ordtype>I</ordtype>
  867. <spclflag>N</spclflag>
  868. <color/>
  869. <repltype/>
  870. <coopteamcd>-</coopteamcd>
  871. <specordtype/>
  872. <wardnm>202병동</wardnm>
  873. <opcnfmdd/>
  874. <diagnmopnm>
  875. <![CDATA[▷Arthritis, rheumatic, subacute
  876. ]]>
  877. </diagnmopnm>
  878. <had>325</had>
  879. <adx>외래</adx>
  880. <testrslt>
  881. <![CDATA[-]]>
  882. </testrslt>
  883. </inpatlist>
  884. <inpatlist>
  885. <pid>3006663</pid>
  886. <indd>20111025</indd>
  887. <cretno>1</cretno>
  888. <seqno>2</seqno>
  889. <instcd>053</instcd>
  890. <hngnm>간호실습</hngnm>
  891. <fsexamflag>F</fsexamflag>
  892. <sa>F/22</sa>
  893. <hd>191</hd>
  894. <ad>20111025</ad>
  895. <pod/>
  896. <refer/>
  897. <replstat/>
  898. <orddeptcd>2010300000</orddeptcd>
  899. <deptnm>소화기내과</deptnm>
  900. <subdeptnm/>
  901. <medispclnm>김@</medispclnm>
  902. <medispclid>03074</medispclid>
  903. <atdoctnm>-</atdoctnm>
  904. <diagnm>
  905. <![CDATA[Commissure of lip cancer]]>
  906. </diagnm>
  907. <opnm/>
  908. <cnst>N</cnst>
  909. <dayregular>N</dayregular>
  910. <lastprcpdd>20111103</lastprcpdd>
  911. <cpyn>N</cpyn>
  912. <insukind>11</insukind>
  913. <transfer/>
  914. <dschnoti>-</dschnoti>
  915. <preworkup>N</preworkup>
  916. <hsctpreday>-</hsctpreday>
  917. <trsntype/>
  918. <hsctday>0</hsctday>
  919. <postcxday>0</postcxday>
  920. <memo/>
  921. <roomcd>2225</roomcd>
  922. <rrgstno1>900101</rrgstno1>
  923. <conctypenm/>
  924. <antidrugflag>N</antidrugflag>
  925. <ordtype>I</ordtype>
  926. <spclflag>Y</spclflag>
  927. <color/>
  928. <repltype/>
  929. <coopteamcd>-</coopteamcd>
  930. <specordtype/>
  931. <wardnm>202병동</wardnm>
  932. <opcnfmdd/>
  933. <diagnmopnm>
  934. <![CDATA[▷Commissure of lip cancer
  935. ]]>
  936. </diagnmopnm>
  937. <had>190</had>
  938. <adx/>
  939. <testrslt>
  940. <![CDATA[-]]>
  941. </testrslt>
  942. </inpatlist>
  943. <inpatlist>
  944. <pid>3006525</pid>
  945. <indd>20110914</indd>
  946. <cretno>1</cretno>
  947. <seqno>3</seqno>
  948. <instcd>053</instcd>
  949. <hngnm>김광성</hngnm>
  950. <fsexamflag>F</fsexamflag>
  951. <sa>M/31</sa>
  952. <hd>232</hd>
  953. <ad>20110914</ad>
  954. <pod/>
  955. <refer/>
  956. <replstat/>
  957. <orddeptcd>2010300000</orddeptcd>
  958. <deptnm>소화기내과</deptnm>
  959. <subdeptnm/>
  960. <medispclnm>권@오</medispclnm>
  961. <medispclid>93437</medispclid>
  962. <atdoctnm>-</atdoctnm>
  963. <diagnm>
  964. <![CDATA[Acute PNS]]>
  965. </diagnm>
  966. <opnm/>
  967. <cnst>N</cnst>
  968. <dayregular>N</dayregular>
  969. <lastprcpdd>20111027</lastprcpdd>
  970. <cpyn>N</cpyn>
  971. <insukind>11</insukind>
  972. <transfer/>
  973. <dschnoti>퇴원통보</dschnoti>
  974. <preworkup>N</preworkup>
  975. <hsctpreday>-</hsctpreday>
  976. <trsntype/>
  977. <hsctday>0</hsctday>
  978. <postcxday>0</postcxday>
  979. <memo/>
  980. <roomcd>2225</roomcd>
  981. <rrgstno1>800627</rrgstno1>
  982. <conctypenm/>
  983. <antidrugflag>N</antidrugflag>
  984. <ordtype>I</ordtype>
  985. <spclflag>N</spclflag>
  986. <color/>
  987. <repltype/>
  988. <coopteamcd>-</coopteamcd>
  989. <specordtype/>
  990. <wardnm>202병동</wardnm>
  991. <opcnfmdd/>
  992. <diagnmopnm>
  993. <![CDATA[▷Acute PNS
  994. ]]>
  995. </diagnmopnm>
  996. <had>231</had>
  997. <adx/>
  998. <testrslt>
  999. <![CDATA[-]]>
  1000. </testrslt>
  1001. </inpatlist>
  1002. <inpatlist>
  1003. <pid>1193196</pid>
  1004. <indd>20110628</indd>
  1005. <cretno>1</cretno>
  1006. <seqno>4</seqno>
  1007. <instcd>053</instcd>
  1008. <hngnm>이@균</hngnm>
  1009. <fsexamflag>S</fsexamflag>
  1010. <sa>M/21</sa>
  1011. <hd>310</hd>
  1012. <ad>20110628</ad>
  1013. <pod/>
  1014. <refer/>
  1015. <replstat/>
  1016. <orddeptcd>2010300000</orddeptcd>
  1017. <deptnm>소화기내과</deptnm>
  1018. <subdeptnm/>
  1019. <medispclnm>김@국</medispclnm>
  1020. <medispclid>93409</medispclid>
  1021. <atdoctnm>천@수</atdoctnm>
  1022. <diagnm>
  1023. <![CDATA[Burn,third degree, shoulder and upper limb except hand]]>
  1024. </diagnm>
  1025. <opnm/>
  1026. <cnst>N</cnst>
  1027. <dayregular>N</dayregular>
  1028. <lastprcpdd>20111104</lastprcpdd>
  1029. <cpyn>N</cpyn>
  1030. <insukind>11</insukind>
  1031. <transfer/>
  1032. <dschnoti>-</dschnoti>
  1033. <preworkup>N</preworkup>
  1034. <hsctpreday>-</hsctpreday>
  1035. <trsntype/>
  1036. <hsctday>0</hsctday>
  1037. <postcxday>0</postcxday>
  1038. <memo/>
  1039. <roomcd>2225</roomcd>
  1040. <rrgstno1>900824</rrgstno1>
  1041. <conctypenm/>
  1042. <antidrugflag>N</antidrugflag>
  1043. <ordtype>I</ordtype>
  1044. <spclflag>N</spclflag>
  1045. <color/>
  1046. <repltype/>
  1047. <coopteamcd>-</coopteamcd>
  1048. <specordtype/>
  1049. <wardnm>202병동</wardnm>
  1050. <opcnfmdd/>
  1051. <diagnmopnm>
  1052. <![CDATA[▷Burn,third degree, shoulder and upper limb except hand
  1053. ]]>
  1054. </diagnmopnm>
  1055. <had>309</had>
  1056. <adx>외래</adx>
  1057. <testrslt>
  1058. <![CDATA[-]]>
  1059. </testrslt>
  1060. </inpatlist>
  1061. <inpatlist>
  1062. <pid>3006683</pid>
  1063. <indd>20111026</indd>
  1064. <cretno>1</cretno>
  1065. <seqno>1</seqno>
  1066. <instcd>053</instcd>
  1067. <hngnm>황선익</hngnm>
  1068. <fsexamflag>D</fsexamflag>
  1069. <sa>F/37</sa>
  1070. <hd>190</hd>
  1071. <ad>20111026</ad>
  1072. <pod/>
  1073. <refer/>
  1074. <replstat/>
  1075. <orddeptcd>2010300000</orddeptcd>
  1076. <deptnm>소화기내과</deptnm>
  1077. <subdeptnm/>
  1078. <medispclnm>김@</medispclnm>
  1079. <medispclid>03074</medispclid>
  1080. <atdoctnm>-</atdoctnm>
  1081. <diagnm>
  1082. <![CDATA[Stomach adenoma]]>
  1083. </diagnm>
  1084. <opnm/>
  1085. <cnst>N</cnst>
  1086. <dayregular>N</dayregular>
  1087. <lastprcpdd>20111103</lastprcpdd>
  1088. <cpyn>N</cpyn>
  1089. <insukind>11</insukind>
  1090. <transfer/>
  1091. <dschnoti>-</dschnoti>
  1092. <preworkup>N</preworkup>
  1093. <hsctpreday>-</hsctpreday>
  1094. <trsntype/>
  1095. <hsctday>0</hsctday>
  1096. <postcxday>0</postcxday>
  1097. <memo/>
  1098. <roomcd>3377</roomcd>
  1099. <rrgstno1>740515</rrgstno1>
  1100. <conctypenm/>
  1101. <antidrugflag>N</antidrugflag>
  1102. <ordtype>I</ordtype>
  1103. <spclflag>N</spclflag>
  1104. <color/>
  1105. <repltype/>
  1106. <coopteamcd>-</coopteamcd>
  1107. <specordtype/>
  1108. <wardnm>303병동</wardnm>
  1109. <opcnfmdd/>
  1110. <diagnmopnm>
  1111. <![CDATA[▷Stomach adenoma
  1112. ]]>
  1113. </diagnmopnm>
  1114. <had>189</had>
  1115. <adx>외래</adx>
  1116. <testrslt>
  1117. <![CDATA[-]]>
  1118. </testrslt>
  1119. </inpatlist>
  1120. <inpatlist>
  1121. <pid>3007871</pid>
  1122. <indd>20120401</indd>
  1123. <cretno>1</cretno>
  1124. <seqno>1</seqno>
  1125. <instcd>053</instcd>
  1126. <hngnm>약주오</hngnm>
  1127. <fsexamflag>R</fsexamflag>
  1128. <sa>M/57</sa>
  1129. <hd>32</hd>
  1130. <ad>20120401</ad>
  1131. <pod/>
  1132. <refer/>
  1133. <replstat/>
  1134. <orddeptcd>2010300000</orddeptcd>
  1135. <deptnm>소화기내과</deptnm>
  1136. <subdeptnm/>
  1137. <medispclnm>강명수</medispclnm>
  1138. <medispclid>80497</medispclid>
  1139. <atdoctnm>-</atdoctnm>
  1140. <diagnm>
  1141. <![CDATA[Cbr. concussion ]]>
  1142. </diagnm>
  1143. <opnm/>
  1144. <cnst>N</cnst>
  1145. <dayregular>N</dayregular>
  1146. <lastprcpdd>20120401</lastprcpdd>
  1147. <cpyn>N</cpyn>
  1148. <insukind>11</insukind>
  1149. <transfer/>
  1150. <dschnoti>퇴원예고</dschnoti>
  1151. <preworkup>N</preworkup>
  1152. <hsctpreday>-</hsctpreday>
  1153. <trsntype/>
  1154. <hsctday>0</hsctday>
  1155. <postcxday>0</postcxday>
  1156. <memo/>
  1157. <roomcd>3501</roomcd>
  1158. <rrgstno1>550123</rrgstno1>
  1159. <conctypenm/>
  1160. <antidrugflag>N</antidrugflag>
  1161. <ordtype>I</ordtype>
  1162. <spclflag>N</spclflag>
  1163. <color/>
  1164. <repltype/>
  1165. <coopteamcd>-</coopteamcd>
  1166. <specordtype/>
  1167. <wardnm>305병동</wardnm>
  1168. <opcnfmdd/>
  1169. <diagnmopnm>
  1170. <![CDATA[▷Cbr. concussion
  1171. ]]>
  1172. </diagnmopnm>
  1173. <had>31</had>
  1174. <adx>외래</adx>
  1175. <testrslt>
  1176. <![CDATA[-]]>
  1177. </testrslt>
  1178. </inpatlist>
  1179. <inpatlist>
  1180. <pid>2089579</pid>
  1181. <indd>20110611</indd>
  1182. <cretno>1</cretno>
  1183. <seqno>1</seqno>
  1184. <instcd>053</instcd>
  1185. <hngnm>정@숙</hngnm>
  1186. <fsexamflag>R</fsexamflag>
  1187. <sa>F/68</sa>
  1188. <hd>327</hd>
  1189. <ad>20110611</ad>
  1190. <pod/>
  1191. <refer/>
  1192. <replstat/>
  1193. <orddeptcd>2010300000</orddeptcd>
  1194. <deptnm>소화기내과</deptnm>
  1195. <subdeptnm/>
  1196. <medispclnm>탁@영</medispclnm>
  1197. <medispclid>97123</medispclid>
  1198. <atdoctnm>최@주</atdoctnm>
  1199. <diagnm>
  1200. <![CDATA[Enteroviral vesicular stomatitis with exanthem]]>
  1201. </diagnm>
  1202. <opnm/>
  1203. <cnst>N</cnst>
  1204. <dayregular>N</dayregular>
  1205. <lastprcpdd>20120305</lastprcpdd>
  1206. <cpyn>N</cpyn>
  1207. <insukind>11</insukind>
  1208. <transfer/>
  1209. <dschnoti>-</dschnoti>
  1210. <preworkup>N</preworkup>
  1211. <hsctpreday>-</hsctpreday>
  1212. <trsntype/>
  1213. <hsctday>0</hsctday>
  1214. <postcxday>0</postcxday>
  1215. <memo/>
  1216. <roomcd>5635</roomcd>
  1217. <rrgstno1>431015</rrgstno1>
  1218. <conctypenm/>
  1219. <antidrugflag>N</antidrugflag>
  1220. <ordtype>I</ordtype>
  1221. <spclflag>N</spclflag>
  1222. <color/>
  1223. <repltype/>
  1224. <coopteamcd>-</coopteamcd>
  1225. <specordtype/>
  1226. <wardnm>506동병동</wardnm>
  1227. <opcnfmdd/>
  1228. <diagnmopnm>
  1229. <![CDATA[▷Enteroviral vesicular stomatitis with exanthem
  1230. ]]>
  1231. </diagnmopnm>
  1232. <had>326</had>
  1233. <adx/>
  1234. <testrslt>
  1235. <![CDATA[-]]>
  1236. </testrslt>
  1237. </inpatlist>
  1238. <inpatlist>
  1239. <pid>1878365</pid>
  1240. <indd>20110531</indd>
  1241. <cretno>1</cretno>
  1242. <seqno>1</seqno>
  1243. <instcd>053</instcd>
  1244. <hngnm>권@연</hngnm>
  1245. <fsexamflag>R</fsexamflag>
  1246. <sa>F/70</sa>
  1247. <hd>338</hd>
  1248. <ad>20110531</ad>
  1249. <pod/>
  1250. <refer/>
  1251. <replstat/>
  1252. <orddeptcd>2010300000</orddeptcd>
  1253. <deptnm>소화기내과</deptnm>
  1254. <subdeptnm/>
  1255. <medispclnm>탁@영</medispclnm>
  1256. <medispclid>97123</medispclid>
  1257. <atdoctnm>최@주</atdoctnm>
  1258. <diagnm/>
  1259. <opnm/>
  1260. <cnst>N</cnst>
  1261. <dayregular>N</dayregular>
  1262. <lastprcpdd>20111103</lastprcpdd>
  1263. <cpyn>N</cpyn>
  1264. <insukind>11</insukind>
  1265. <transfer/>
  1266. <dschnoti>-</dschnoti>
  1267. <preworkup>N</preworkup>
  1268. <hsctpreday>-</hsctpreday>
  1269. <trsntype/>
  1270. <hsctday>0</hsctday>
  1271. <postcxday>0</postcxday>
  1272. <memo/>
  1273. <roomcd>5636</roomcd>
  1274. <rrgstno1>420325</rrgstno1>
  1275. <conctypenm/>
  1276. <antidrugflag>N</antidrugflag>
  1277. <ordtype>I</ordtype>
  1278. <spclflag>N</spclflag>
  1279. <color/>
  1280. <repltype/>
  1281. <coopteamcd>-</coopteamcd>
  1282. <specordtype/>
  1283. <wardnm>506동병동</wardnm>
  1284. <opcnfmdd/>
  1285. <diagnmopnm/>
  1286. <had>337</had>
  1287. <adx>외래</adx>
  1288. <testrslt>
  1289. <![CDATA[-]]>
  1290. </testrslt>
  1291. </inpatlist>
  1292. <inpatlist>
  1293. <pid>2038647</pid>
  1294. <indd>20111014</indd>
  1295. <cretno>1</cretno>
  1296. <seqno>1</seqno>
  1297. <instcd>053</instcd>
  1298. <hngnm>박@수</hngnm>
  1299. <fsexamflag>D</fsexamflag>
  1300. <sa>M/82</sa>
  1301. <hd>202</hd>
  1302. <ad>20111014</ad>
  1303. <pod/>
  1304. <refer/>
  1305. <replstat/>
  1306. <orddeptcd>2010300000</orddeptcd>
  1307. <deptnm>소화기내과</deptnm>
  1308. <subdeptnm/>
  1309. <medispclnm>권@오</medispclnm>
  1310. <medispclid>93437</medispclid>
  1311. <atdoctnm>-</atdoctnm>
  1312. <diagnm>
  1313. <![CDATA[Pancreas ca]]>
  1314. </diagnm>
  1315. <opnm/>
  1316. <cnst>N</cnst>
  1317. <dayregular>N</dayregular>
  1318. <lastprcpdd>20111103</lastprcpdd>
  1319. <cpyn>N</cpyn>
  1320. <insukind>11</insukind>
  1321. <transfer/>
  1322. <dschnoti>-</dschnoti>
  1323. <preworkup>N</preworkup>
  1324. <hsctpreday>-</hsctpreday>
  1325. <trsntype/>
  1326. <hsctday>0</hsctday>
  1327. <postcxday>0</postcxday>
  1328. <memo/>
  1329. <roomcd>5653</roomcd>
  1330. <rrgstno1>300314</rrgstno1>
  1331. <conctypenm/>
  1332. <antidrugflag>N</antidrugflag>
  1333. <ordtype>I</ordtype>
  1334. <spclflag>N</spclflag>
  1335. <color/>
  1336. <repltype/>
  1337. <coopteamcd>-</coopteamcd>
  1338. <specordtype>B</specordtype>
  1339. <wardnm>506서병동</wardnm>
  1340. <opcnfmdd/>
  1341. <diagnmopnm>
  1342. <![CDATA[▷Pancreas ca
  1343. ]]>
  1344. </diagnmopnm>
  1345. <had>201</had>
  1346. <adx>외래</adx>
  1347. <testrslt>
  1348. <![CDATA[-]]>
  1349. </testrslt>
  1350. </inpatlist>
  1351. <inpatlist>
  1352. <pid>1632105</pid>
  1353. <indd>20110630</indd>
  1354. <cretno>2</cretno>
  1355. <seqno>4</seqno>
  1356. <instcd>053</instcd>
  1357. <hngnm>김@숙</hngnm>
  1358. <fsexamflag>D</fsexamflag>
  1359. <sa>F/65</sa>
  1360. <hd>307</hd>
  1361. <ad>20110630</ad>
  1362. <pod/>
  1363. <refer/>
  1364. <replstat/>
  1365. <orddeptcd>2010300000</orddeptcd>
  1366. <deptnm>소화기내과</deptnm>
  1367. <subdeptnm/>
  1368. <medispclnm>박@영</medispclnm>
  1369. <medispclid>99063</medispclid>
  1370. <atdoctnm>최@주</atdoctnm>
  1371. <diagnm>
  1372. <![CDATA[Other congenital malformations of stomach]]>
  1373. </diagnm>
  1374. <opnm/>
  1375. <cnst>N</cnst>
  1376. <dayregular>N</dayregular>
  1377. <lastprcpdd>20111103</lastprcpdd>
  1378. <cpyn>N</cpyn>
  1379. <insukind>11</insukind>
  1380. <transfer/>
  1381. <dschnoti>-</dschnoti>
  1382. <preworkup>N</preworkup>
  1383. <hsctpreday>-</hsctpreday>
  1384. <trsntype/>
  1385. <hsctday>0</hsctday>
  1386. <postcxday>0</postcxday>
  1387. <memo/>
  1388. <roomcd>5655</roomcd>
  1389. <rrgstno1>470218</rrgstno1>
  1390. <conctypenm/>
  1391. <antidrugflag>N</antidrugflag>
  1392. <ordtype>I</ordtype>
  1393. <spclflag>N</spclflag>
  1394. <color/>
  1395. <repltype/>
  1396. <coopteamcd>-</coopteamcd>
  1397. <specordtype/>
  1398. <wardnm>506서병동</wardnm>
  1399. <opcnfmdd/>
  1400. <diagnmopnm>
  1401. <![CDATA[▷Other congenital malformations of stomach
  1402. ]]>
  1403. </diagnmopnm>
  1404. <had>307</had>
  1405. <adx/>
  1406. <testrslt>
  1407. <![CDATA[-]]>
  1408. </testrslt>
  1409. </inpatlist>
  1410. <inpatlist>
  1411. <pid>2287618</pid>
  1412. <indd>20110628</indd>
  1413. <cretno>1</cretno>
  1414. <seqno>4</seqno>
  1415. <instcd>053</instcd>
  1416. <hngnm>현@자</hngnm>
  1417. <fsexamflag>D</fsexamflag>
  1418. <sa>F/60</sa>
  1419. <hd>309</hd>
  1420. <ad>20110628</ad>
  1421. <pod/>
  1422. <refer/>
  1423. <replstat/>
  1424. <orddeptcd>2010300000</orddeptcd>
  1425. <deptnm>소화기내과</deptnm>
  1426. <subdeptnm/>
  1427. <medispclnm>탁@영</medispclnm>
  1428. <medispclid>97123</medispclid>
  1429. <atdoctnm>최@주</atdoctnm>
  1430. <diagnm/>
  1431. <opnm/>
  1432. <cnst>N</cnst>
  1433. <dayregular>N</dayregular>
  1434. <lastprcpdd>20111103</lastprcpdd>
  1435. <cpyn>N</cpyn>
  1436. <insukind>11</insukind>
  1437. <transfer/>
  1438. <dschnoti>-</dschnoti>
  1439. <preworkup>N</preworkup>
  1440. <hsctpreday>-</hsctpreday>
  1441. <trsntype/>
  1442. <hsctday>0</hsctday>
  1443. <postcxday>0</postcxday>
  1444. <memo/>
  1445. <roomcd>5655</roomcd>
  1446. <rrgstno1>510812</rrgstno1>
  1447. <conctypenm/>
  1448. <antidrugflag>N</antidrugflag>
  1449. <ordtype>I</ordtype>
  1450. <spclflag>N</spclflag>
  1451. <color/>
  1452. <repltype/>
  1453. <coopteamcd>-</coopteamcd>
  1454. <specordtype/>
  1455. <wardnm>506서병동</wardnm>
  1456. <opcnfmdd/>
  1457. <diagnmopnm/>
  1458. <had>309</had>
  1459. <adx>외래</adx>
  1460. <testrslt>
  1461. <![CDATA[-]]>
  1462. </testrslt>
  1463. </inpatlist>
  1464. <inpatlist>
  1465. <pid>3006526</pid>
  1466. <indd>20110919</indd>
  1467. <cretno>2</cretno>
  1468. <seqno>1</seqno>
  1469. <instcd>053</instcd>
  1470. <hngnm>공진료</hngnm>
  1471. <fsexamflag>R</fsexamflag>
  1472. <sa>F/23</sa>
  1473. <hd>227</hd>
  1474. <ad>20110919</ad>
  1475. <pod/>
  1476. <refer/>
  1477. <replstat/>
  1478. <orddeptcd>2010300000</orddeptcd>
  1479. <deptnm>소화기내과</deptnm>
  1480. <subdeptnm/>
  1481. <medispclnm>권@오</medispclnm>
  1482. <medispclid>93437</medispclid>
  1483. <atdoctnm>-</atdoctnm>
  1484. <diagnm>
  1485. <![CDATA[Typhoid fever]]>
  1486. </diagnm>
  1487. <opnm/>
  1488. <cnst>N</cnst>
  1489. <dayregular>N</dayregular>
  1490. <lastprcpdd>20110919</lastprcpdd>
  1491. <cpyn>N</cpyn>
  1492. <insukind>11</insukind>
  1493. <transfer/>
  1494. <dschnoti>-</dschnoti>
  1495. <preworkup>N</preworkup>
  1496. <hsctpreday>-</hsctpreday>
  1497. <trsntype/>
  1498. <hsctday>0</hsctday>
  1499. <postcxday>0</postcxday>
  1500. <memo/>
  1501. <roomcd>5656</roomcd>
  1502. <rrgstno1>880523</rrgstno1>
  1503. <conctypenm/>
  1504. <antidrugflag>N</antidrugflag>
  1505. <ordtype>I</ordtype>
  1506. <spclflag>N</spclflag>
  1507. <color/>
  1508. <repltype/>
  1509. <coopteamcd>-</coopteamcd>
  1510. <specordtype/>
  1511. <wardnm>506서병동</wardnm>
  1512. <opcnfmdd/>
  1513. <diagnmopnm>
  1514. <![CDATA[▷Typhoid fever
  1515. ]]>
  1516. </diagnmopnm>
  1517. <had>226</had>
  1518. <adx>외래</adx>
  1519. <testrslt>
  1520. <![CDATA[-]]>
  1521. </testrslt>
  1522. </inpatlist>
  1523. <inpatlist>
  1524. <pid>1105019</pid>
  1525. <indd>20110718</indd>
  1526. <cretno>2</cretno>
  1527. <seqno>1</seqno>
  1528. <instcd>053</instcd>
  1529. <hngnm>진@길</hngnm>
  1530. <fsexamflag>F</fsexamflag>
  1531. <sa>M/35</sa>
  1532. <hd>290</hd>
  1533. <ad>20110718</ad>
  1534. <pod/>
  1535. <refer/>
  1536. <replstat/>
  1537. <orddeptcd>2010300000</orddeptcd>
  1538. <deptnm>소화기내과</deptnm>
  1539. <subdeptnm/>
  1540. <medispclnm>김@국</medispclnm>
  1541. <medispclid>93409</medispclid>
  1542. <atdoctnm>-</atdoctnm>
  1543. <diagnm/>
  1544. <opnm/>
  1545. <cnst>N</cnst>
  1546. <dayregular>N</dayregular>
  1547. <lastprcpdd/>
  1548. <cpyn>N</cpyn>
  1549. <insukind>51</insukind>
  1550. <transfer/>
  1551. <dschnoti>-</dschnoti>
  1552. <preworkup>N</preworkup>
  1553. <hsctpreday>-</hsctpreday>
  1554. <trsntype/>
  1555. <hsctday>0</hsctday>
  1556. <postcxday>0</postcxday>
  1557. <memo/>
  1558. <roomcd>5656</roomcd>
  1559. <rrgstno1>761113</rrgstno1>
  1560. <conctypenm/>
  1561. <antidrugflag>N</antidrugflag>
  1562. <ordtype>I</ordtype>
  1563. <spclflag>N</spclflag>
  1564. <color/>
  1565. <repltype/>
  1566. <coopteamcd>-</coopteamcd>
  1567. <specordtype/>
  1568. <wardnm>506서병동</wardnm>
  1569. <opcnfmdd/>
  1570. <diagnmopnm/>
  1571. <had>289</had>
  1572. <adx/>
  1573. <testrslt>
  1574. <![CDATA[-]]>
  1575. </testrslt>
  1576. </inpatlist>
  1577. <inpatlist>
  1578. <pid>1374464</pid>
  1579. <indd>20110627</indd>
  1580. <cretno>1</cretno>
  1581. <seqno>4</seqno>
  1582. <instcd>053</instcd>
  1583. <hngnm>김@헌</hngnm>
  1584. <fsexamflag>D</fsexamflag>
  1585. <sa>M/47</sa>
  1586. <hd>310</hd>
  1587. <ad>20110627</ad>
  1588. <pod/>
  1589. <refer/>
  1590. <replstat/>
  1591. <orddeptcd>2010300000</orddeptcd>
  1592. <deptnm>소화기내과</deptnm>
  1593. <subdeptnm/>
  1594. <medispclnm>박@영</medispclnm>
  1595. <medispclid>99063</medispclid>
  1596. <atdoctnm>황@엽</atdoctnm>
  1597. <diagnm/>
  1598. <opnm/>
  1599. <cnst>N</cnst>
  1600. <dayregular>N</dayregular>
  1601. <lastprcpdd>20111103</lastprcpdd>
  1602. <cpyn>N</cpyn>
  1603. <insukind>11</insukind>
  1604. <transfer/>
  1605. <dschnoti>-</dschnoti>
  1606. <preworkup>N</preworkup>
  1607. <hsctpreday>-</hsctpreday>
  1608. <trsntype/>
  1609. <hsctday>0</hsctday>
  1610. <postcxday>0</postcxday>
  1611. <memo/>
  1612. <roomcd>5656</roomcd>
  1613. <rrgstno1>650419</rrgstno1>
  1614. <conctypenm/>
  1615. <antidrugflag>N</antidrugflag>
  1616. <ordtype>I</ordtype>
  1617. <spclflag>N</spclflag>
  1618. <color/>
  1619. <repltype/>
  1620. <coopteamcd>-</coopteamcd>
  1621. <specordtype/>
  1622. <wardnm>506서병동</wardnm>
  1623. <opcnfmdd/>
  1624. <diagnmopnm/>
  1625. <had>310</had>
  1626. <adx/>
  1627. <testrslt>
  1628. <![CDATA[-]]>
  1629. </testrslt>
  1630. </inpatlist>
  1631. <inpatlist>
  1632. <pid>1732907</pid>
  1633. <indd>20110622</indd>
  1634. <cretno>1</cretno>
  1635. <seqno>3</seqno>
  1636. <instcd>053</instcd>
  1637. <hngnm>김@림</hngnm>
  1638. <fsexamflag>D</fsexamflag>
  1639. <sa>M/62</sa>
  1640. <hd>316</hd>
  1641. <ad>20110622</ad>
  1642. <pod/>
  1643. <refer/>
  1644. <replstat/>
  1645. <orddeptcd>2010300000</orddeptcd>
  1646. <deptnm>소화기내과</deptnm>
  1647. <subdeptnm/>
  1648. <medispclnm>박@영</medispclnm>
  1649. <medispclid>99063</medispclid>
  1650. <atdoctnm>최@주</atdoctnm>
  1651. <diagnm/>
  1652. <opnm/>
  1653. <cnst>N</cnst>
  1654. <dayregular>N</dayregular>
  1655. <lastprcpdd>20111103</lastprcpdd>
  1656. <cpyn>N</cpyn>
  1657. <insukind>11</insukind>
  1658. <transfer/>
  1659. <dschnoti>-</dschnoti>
  1660. <preworkup>N</preworkup>
  1661. <hsctpreday>-</hsctpreday>
  1662. <trsntype/>
  1663. <hsctday>0</hsctday>
  1664. <postcxday>0</postcxday>
  1665. <memo/>
  1666. <roomcd>5656</roomcd>
  1667. <rrgstno1>490722</rrgstno1>
  1668. <conctypenm/>
  1669. <antidrugflag>N</antidrugflag>
  1670. <ordtype>I</ordtype>
  1671. <spclflag>N</spclflag>
  1672. <color/>
  1673. <repltype/>
  1674. <coopteamcd>-</coopteamcd>
  1675. <specordtype/>
  1676. <wardnm>506서병동</wardnm>
  1677. <opcnfmdd/>
  1678. <diagnmopnm/>
  1679. <had>315</had>
  1680. <adx/>
  1681. <testrslt>
  1682. <![CDATA[-]]>
  1683. </testrslt>
  1684. </inpatlist>
  1685. <inpatlist>
  1686. <pid>2196701</pid>
  1687. <indd>20110622</indd>
  1688. <cretno>1</cretno>
  1689. <seqno>1</seqno>
  1690. <instcd>053</instcd>
  1691. <hngnm>김@익</hngnm>
  1692. <fsexamflag>R</fsexamflag>
  1693. <sa>M/70</sa>
  1694. <hd>316</hd>
  1695. <ad>20110622</ad>
  1696. <pod/>
  1697. <refer/>
  1698. <replstat/>
  1699. <orddeptcd>2010300000</orddeptcd>
  1700. <deptnm>소화기내과</deptnm>
  1701. <subdeptnm/>
  1702. <medispclnm>탁@영</medispclnm>
  1703. <medispclid>97123</medispclid>
  1704. <atdoctnm>황@엽</atdoctnm>
  1705. <diagnm/>
  1706. <opnm/>
  1707. <cnst>N</cnst>
  1708. <dayregular>N</dayregular>
  1709. <lastprcpdd>20111103</lastprcpdd>
  1710. <cpyn>N</cpyn>
  1711. <insukind>11</insukind>
  1712. <transfer/>
  1713. <dschnoti>-</dschnoti>
  1714. <preworkup>N</preworkup>
  1715. <hsctpreday>-</hsctpreday>
  1716. <trsntype/>
  1717. <hsctday>0</hsctday>
  1718. <postcxday>0</postcxday>
  1719. <memo/>
  1720. <roomcd>5656</roomcd>
  1721. <rrgstno1>420426</rrgstno1>
  1722. <conctypenm/>
  1723. <antidrugflag>N</antidrugflag>
  1724. <ordtype>I</ordtype>
  1725. <spclflag>N</spclflag>
  1726. <color/>
  1727. <repltype/>
  1728. <coopteamcd>-</coopteamcd>
  1729. <specordtype/>
  1730. <wardnm>506서병동</wardnm>
  1731. <opcnfmdd/>
  1732. <diagnmopnm/>
  1733. <had>315</had>
  1734. <adx/>
  1735. <testrslt>
  1736. <![CDATA[-]]>
  1737. </testrslt>
  1738. </inpatlist>
  1739. <inpatlist>
  1740. <pid>3006777</pid>
  1741. <indd>20111107</indd>
  1742. <cretno>1</cretno>
  1743. <seqno>1</seqno>
  1744. <instcd>053</instcd>
  1745. <hngnm>베이비</hngnm>
  1746. <fsexamflag>D</fsexamflag>
  1747. <sa>F/-</sa>
  1748. <hd>178</hd>
  1749. <ad>20111107</ad>
  1750. <pod/>
  1751. <refer/>
  1752. <replstat/>
  1753. <orddeptcd>2010300000</orddeptcd>
  1754. <deptnm>소화기내과</deptnm>
  1755. <subdeptnm/>
  1756. <medispclnm>김@국</medispclnm>
  1757. <medispclid>93409</medispclid>
  1758. <atdoctnm>-</atdoctnm>
  1759. <diagnm>
  1760. <![CDATA[AGC]]>
  1761. </diagnm>
  1762. <opnm/>
  1763. <cnst>N</cnst>
  1764. <dayregular>N</dayregular>
  1765. <lastprcpdd>20111107</lastprcpdd>
  1766. <cpyn>N</cpyn>
  1767. <insukind>11</insukind>
  1768. <transfer/>
  1769. <dschnoti>-</dschnoti>
  1770. <preworkup>N</preworkup>
  1771. <hsctpreday>-</hsctpreday>
  1772. <trsntype/>
  1773. <hsctday>0</hsctday>
  1774. <postcxday>0</postcxday>
  1775. <memo/>
  1776. <roomcd>5660</roomcd>
  1777. <rrgstno1>880725</rrgstno1>
  1778. <conctypenm/>
  1779. <antidrugflag>N</antidrugflag>
  1780. <ordtype>I</ordtype>
  1781. <spclflag>N</spclflag>
  1782. <color/>
  1783. <repltype/>
  1784. <coopteamcd>-</coopteamcd>
  1785. <specordtype/>
  1786. <wardnm>506서병동</wardnm>
  1787. <opcnfmdd/>
  1788. <diagnmopnm>
  1789. <![CDATA[▷AGC
  1790. ]]>
  1791. </diagnmopnm>
  1792. <had>177</had>
  1793. <adx>외래</adx>
  1794. <testrslt>
  1795. <![CDATA[-]]>
  1796. </testrslt>
  1797. </inpatlist>
  1798. <inpatlist>
  1799. <pid>9876543</pid>
  1800. <indd>20120321</indd>
  1801. <cretno>1</cretno>
  1802. <seqno>1</seqno>
  1803. <instcd>053</instcd>
  1804. <hngnm>방종테스트</hngnm>
  1805. <fsexamflag>F</fsexamflag>
  1806. <sa>M/20</sa>
  1807. <hd>43</hd>
  1808. <ad>20120321</ad>
  1809. <pod/>
  1810. <refer/>
  1811. <replstat/>
  1812. <orddeptcd>2010300000</orddeptcd>
  1813. <deptnm>소화기내과</deptnm>
  1814. <subdeptnm/>
  1815. <medispclnm>태재웅</medispclnm>
  1816. <medispclid>79548</medispclid>
  1817. <atdoctnm>-</atdoctnm>
  1818. <diagnm>
  1819. <![CDATA[Lx ca]]>
  1820. </diagnm>
  1821. <opnm/>
  1822. <cnst>N</cnst>
  1823. <dayregular>N</dayregular>
  1824. <lastprcpdd>20120409</lastprcpdd>
  1825. <cpyn>N</cpyn>
  1826. <insukind>11</insukind>
  1827. <transfer/>
  1828. <dschnoti>-</dschnoti>
  1829. <preworkup>N</preworkup>
  1830. <hsctpreday>-</hsctpreday>
  1831. <trsntype/>
  1832. <hsctday>0</hsctday>
  1833. <postcxday>0</postcxday>
  1834. <memo/>
  1835. <roomcd>5666</roomcd>
  1836. <rrgstno1>911111</rrgstno1>
  1837. <conctypenm/>
  1838. <antidrugflag>N</antidrugflag>
  1839. <ordtype>I</ordtype>
  1840. <spclflag>N</spclflag>
  1841. <color/>
  1842. <repltype/>
  1843. <coopteamcd>-</coopteamcd>
  1844. <specordtype/>
  1845. <wardnm>506서병동</wardnm>
  1846. <opcnfmdd/>
  1847. <diagnmopnm>
  1848. <![CDATA[▷Lx ca
  1849. ]]>
  1850. </diagnmopnm>
  1851. <had>42</had>
  1852. <adx/>
  1853. <testrslt>
  1854. <![CDATA[-]]>
  1855. </testrslt>
  1856. </inpatlist>
  1857. <inpatlist>
  1858. <pid>1497616</pid>
  1859. <indd>20111107</indd>
  1860. <cretno>1</cretno>
  1861. <seqno>1</seqno>
  1862. <instcd>053</instcd>
  1863. <hngnm>권@필</hngnm>
  1864. <fsexamflag>R</fsexamflag>
  1865. <sa>M/53</sa>
  1866. <hd>178</hd>
  1867. <ad>20111107</ad>
  1868. <pod/>
  1869. <refer/>
  1870. <replstat/>
  1871. <orddeptcd>2010300000</orddeptcd>
  1872. <deptnm>소화기내과</deptnm>
  1873. <subdeptnm/>
  1874. <medispclnm>김부성</medispclnm>
  1875. <medispclid>5592</medispclid>
  1876. <atdoctnm>-</atdoctnm>
  1877. <diagnm/>
  1878. <opnm/>
  1879. <cnst>N</cnst>
  1880. <dayregular>N</dayregular>
  1881. <lastprcpdd/>
  1882. <cpyn>N</cpyn>
  1883. <insukind>22</insukind>
  1884. <transfer/>
  1885. <dschnoti>-</dschnoti>
  1886. <preworkup>N</preworkup>
  1887. <hsctpreday>-</hsctpreday>
  1888. <trsntype/>
  1889. <hsctday>0</hsctday>
  1890. <postcxday>0</postcxday>
  1891. <memo/>
  1892. <roomcd>6680</roomcd>
  1893. <rrgstno1>580621</rrgstno1>
  1894. <conctypenm/>
  1895. <antidrugflag>N</antidrugflag>
  1896. <ordtype>I</ordtype>
  1897. <spclflag>N</spclflag>
  1898. <color/>
  1899. <repltype/>
  1900. <coopteamcd>-</coopteamcd>
  1901. <specordtype/>
  1902. <wardnm>606병동</wardnm>
  1903. <opcnfmdd/>
  1904. <diagnmopnm/>
  1905. <had>177</had>
  1906. <adx>외래</adx>
  1907. <testrslt>
  1908. <![CDATA[-]]>
  1909. </testrslt>
  1910. </inpatlist>
  1911. <inpatlist>
  1912. <pid>3006527</pid>
  1913. <indd>20110927</indd>
  1914. <cretno>1</cretno>
  1915. <seqno>1</seqno>
  1916. <instcd>053</instcd>
  1917. <hngnm>은수아빠</hngnm>
  1918. <fsexamflag>R</fsexamflag>
  1919. <sa>F/105</sa>
  1920. <hd>219</hd>
  1921. <ad>20110927</ad>
  1922. <pod/>
  1923. <refer/>
  1924. <replstat/>
  1925. <orddeptcd>2010300000</orddeptcd>
  1926. <deptnm>소화기내과</deptnm>
  1927. <subdeptnm/>
  1928. <medispclnm>권@오</medispclnm>
  1929. <medispclid>93437</medispclid>
  1930. <atdoctnm>-</atdoctnm>
  1931. <diagnm>
  1932. <![CDATA[Influenza virus identified encephalopathy due to influenza]]>
  1933. </diagnm>
  1934. <opnm>
  1935. <![CDATA[위의 수상 절제]]>
  1936. </opnm>
  1937. <cnst>N</cnst>
  1938. <dayregular>N</dayregular>
  1939. <lastprcpdd>20111103</lastprcpdd>
  1940. <cpyn>N</cpyn>
  1941. <insukind>11</insukind>
  1942. <transfer/>
  1943. <dschnoti>-</dschnoti>
  1944. <preworkup>N</preworkup>
  1945. <hsctpreday>-</hsctpreday>
  1946. <trsntype/>
  1947. <hsctday>0</hsctday>
  1948. <postcxday>0</postcxday>
  1949. <memo/>
  1950. <roomcd>6771</roomcd>
  1951. <rrgstno1>060619</rrgstno1>
  1952. <conctypenm/>
  1953. <antidrugflag>N</antidrugflag>
  1954. <ordtype>I</ordtype>
  1955. <spclflag>N</spclflag>
  1956. <color/>
  1957. <repltype/>
  1958. <coopteamcd>-</coopteamcd>
  1959. <specordtype/>
  1960. <wardnm>607병동</wardnm>
  1961. <opcnfmdd/>
  1962. <diagnmopnm>
  1963. <![CDATA[▷Influenza virus identified encephalopathy due to influenza
  1964. [OP]위의 수상 절제]]>
  1965. </diagnmopnm>
  1966. <had>218</had>
  1967. <adx>외래</adx>
  1968. <testrslt>
  1969. <![CDATA[-]]>
  1970. </testrslt>
  1971. </inpatlist>
  1972. <inpatlist>
  1973. <pid>3006541</pid>
  1974. <indd>20110927</indd>
  1975. <cretno>1</cretno>
  1976. <seqno>1</seqno>
  1977. <instcd>053</instcd>
  1978. <hngnm>손귀염</hngnm>
  1979. <fsexamflag>R</fsexamflag>
  1980. <sa>F/34</sa>
  1981. <hd>219</hd>
  1982. <ad>20110927</ad>
  1983. <pod/>
  1984. <refer/>
  1985. <replstat/>
  1986. <orddeptcd>2010300000</orddeptcd>
  1987. <deptnm>소화기내과</deptnm>
  1988. <subdeptnm/>
  1989. <medispclnm>권@오</medispclnm>
  1990. <medispclid>93437</medispclid>
  1991. <atdoctnm>-</atdoctnm>
  1992. <diagnm>
  1993. <![CDATA[Abdominal obesity]]>
  1994. </diagnm>
  1995. <opnm/>
  1996. <cnst>N</cnst>
  1997. <dayregular>N</dayregular>
  1998. <lastprcpdd>20111103</lastprcpdd>
  1999. <cpyn>Y</cpyn>
  2000. <insukind>11</insukind>
  2001. <transfer/>
  2002. <dschnoti>-</dschnoti>
  2003. <preworkup>N</preworkup>
  2004. <hsctpreday>-</hsctpreday>
  2005. <trsntype/>
  2006. <hsctday>0</hsctday>
  2007. <postcxday>0</postcxday>
  2008. <memo/>
  2009. <roomcd>6771</roomcd>
  2010. <rrgstno1>770925</rrgstno1>
  2011. <conctypenm/>
  2012. <antidrugflag>N</antidrugflag>
  2013. <ordtype>I</ordtype>
  2014. <spclflag>N</spclflag>
  2015. <color/>
  2016. <repltype/>
  2017. <coopteamcd>-</coopteamcd>
  2018. <specordtype/>
  2019. <wardnm>607병동</wardnm>
  2020. <opcnfmdd/>
  2021. <diagnmopnm>
  2022. <![CDATA[▷Abdominal obesity
  2023. ]]>
  2024. </diagnmopnm>
  2025. <had>218</had>
  2026. <adx>외래</adx>
  2027. <testrslt>
  2028. <![CDATA[-]]>
  2029. </testrslt>
  2030. </inpatlist>
  2031. <inpatlist>
  2032. <pid>3006533</pid>
  2033. <indd>20110920</indd>
  2034. <cretno>1</cretno>
  2035. <seqno>2</seqno>
  2036. <instcd>053</instcd>
  2037. <hngnm>소온응급</hngnm>
  2038. <fsexamflag>F</fsexamflag>
  2039. <sa>F/33</sa>
  2040. <hd>226</hd>
  2041. <ad>20110920</ad>
  2042. <pod/>
  2043. <refer/>
  2044. <replstat/>
  2045. <orddeptcd>2010300000</orddeptcd>
  2046. <deptnm>소화기내과</deptnm>
  2047. <subdeptnm/>
  2048. <medispclnm>권@오</medispclnm>
  2049. <medispclid>93437</medispclid>
  2050. <atdoctnm>-</atdoctnm>
  2051. <diagnm/>
  2052. <opnm/>
  2053. <cnst>N</cnst>
  2054. <dayregular>N</dayregular>
  2055. <lastprcpdd>20111104</lastprcpdd>
  2056. <cpyn>N</cpyn>
  2057. <insukind>11</insukind>
  2058. <transfer/>
  2059. <dschnoti>-</dschnoti>
  2060. <preworkup>N</preworkup>
  2061. <hsctpreday>-</hsctpreday>
  2062. <trsntype/>
  2063. <hsctday>0</hsctday>
  2064. <postcxday>0</postcxday>
  2065. <memo/>
  2066. <roomcd>6771</roomcd>
  2067. <rrgstno1>780526</rrgstno1>
  2068. <conctypenm/>
  2069. <antidrugflag>N</antidrugflag>
  2070. <ordtype>I</ordtype>
  2071. <spclflag>N</spclflag>
  2072. <color/>
  2073. <repltype/>
  2074. <coopteamcd>-</coopteamcd>
  2075. <specordtype/>
  2076. <wardnm>607병동</wardnm>
  2077. <opcnfmdd/>
  2078. <diagnmopnm/>
  2079. <had>225</had>
  2080. <adx/>
  2081. <testrslt>
  2082. <![CDATA[-]]>
  2083. </testrslt>
  2084. </inpatlist>
  2085. <inpatlist>
  2086. <pid>3006531</pid>
  2087. <indd>20110920</indd>
  2088. <cretno>1</cretno>
  2089. <seqno>2</seqno>
  2090. <instcd>053</instcd>
  2091. <hngnm>이응급</hngnm>
  2092. <fsexamflag>F</fsexamflag>
  2093. <sa>F/23</sa>
  2094. <hd>226</hd>
  2095. <ad>20110920</ad>
  2096. <pod/>
  2097. <refer/>
  2098. <replstat/>
  2099. <orddeptcd>2010300000</orddeptcd>
  2100. <deptnm>소화기내과</deptnm>
  2101. <subdeptnm/>
  2102. <medispclnm>권@오</medispclnm>
  2103. <medispclid>93437</medispclid>
  2104. <atdoctnm>-</atdoctnm>
  2105. <diagnm>
  2106. <![CDATA[Acute PNS]]>
  2107. </diagnm>
  2108. <opnm/>
  2109. <cnst>N</cnst>
  2110. <dayregular>N</dayregular>
  2111. <lastprcpdd>20111103</lastprcpdd>
  2112. <cpyn>N</cpyn>
  2113. <insukind>11</insukind>
  2114. <transfer/>
  2115. <dschnoti>-</dschnoti>
  2116. <preworkup>N</preworkup>
  2117. <hsctpreday>-</hsctpreday>
  2118. <trsntype/>
  2119. <hsctday>0</hsctday>
  2120. <postcxday>0</postcxday>
  2121. <memo/>
  2122. <roomcd>6771</roomcd>
  2123. <rrgstno1>880525</rrgstno1>
  2124. <conctypenm/>
  2125. <antidrugflag>N</antidrugflag>
  2126. <ordtype>I</ordtype>
  2127. <spclflag>N</spclflag>
  2128. <color/>
  2129. <repltype/>
  2130. <coopteamcd>-</coopteamcd>
  2131. <specordtype/>
  2132. <wardnm>607병동</wardnm>
  2133. <opcnfmdd/>
  2134. <diagnmopnm>
  2135. <![CDATA[▷Acute PNS
  2136. ]]>
  2137. </diagnmopnm>
  2138. <had>225</had>
  2139. <adx/>
  2140. <testrslt>
  2141. <![CDATA[-]]>
  2142. </testrslt>
  2143. </inpatlist>
  2144. <inpatlist>
  2145. <pid>3006524</pid>
  2146. <indd>20110901</indd>
  2147. <cretno>1</cretno>
  2148. <seqno>4</seqno>
  2149. <instcd>053</instcd>
  2150. <hngnm>손주접</hngnm>
  2151. <fsexamflag>R</fsexamflag>
  2152. <sa>M/22</sa>
  2153. <hd>231</hd>
  2154. <ad>20110901</ad>
  2155. <pod/>
  2156. <refer/>
  2157. <replstat/>
  2158. <orddeptcd>2010300000</orddeptcd>
  2159. <deptnm>소화기내과</deptnm>
  2160. <subdeptnm/>
  2161. <medispclnm>권@오</medispclnm>
  2162. <medispclid>93437</medispclid>
  2163. <atdoctnm>-</atdoctnm>
  2164. <diagnm/>
  2165. <opnm/>
  2166. <cnst>N</cnst>
  2167. <dayregular>N</dayregular>
  2168. <lastprcpdd>20111103</lastprcpdd>
  2169. <cpyn>N</cpyn>
  2170. <insukind>21</insukind>
  2171. <transfer/>
  2172. <dschnoti>-</dschnoti>
  2173. <preworkup>N</preworkup>
  2174. <hsctpreday>-</hsctpreday>
  2175. <trsntype/>
  2176. <hsctday>0</hsctday>
  2177. <postcxday>0</postcxday>
  2178. <memo>Y</memo>
  2179. <roomcd>6771</roomcd>
  2180. <rrgstno1>890525</rrgstno1>
  2181. <conctypenm/>
  2182. <antidrugflag>N</antidrugflag>
  2183. <ordtype>I</ordtype>
  2184. <spclflag>N</spclflag>
  2185. <color/>
  2186. <repltype/>
  2187. <coopteamcd>-</coopteamcd>
  2188. <specordtype/>
  2189. <wardnm>607병동</wardnm>
  2190. <opcnfmdd/>
  2191. <diagnmopnm/>
  2192. <had>244</had>
  2193. <adx>외래</adx>
  2194. <testrslt>
  2195. <![CDATA[-]]>
  2196. </testrslt>
  2197. </inpatlist>
  2198. <inpatlist>
  2199. <pid>2329302</pid>
  2200. <indd>20110630</indd>
  2201. <cretno>1</cretno>
  2202. <seqno>1</seqno>
  2203. <instcd>053</instcd>
  2204. <hngnm>김@도</hngnm>
  2205. <fsexamflag>R</fsexamflag>
  2206. <sa>M/73</sa>
  2207. <hd>308</hd>
  2208. <ad>20110630</ad>
  2209. <pod/>
  2210. <refer/>
  2211. <replstat/>
  2212. <orddeptcd>2010300000</orddeptcd>
  2213. <deptnm>소화기내과</deptnm>
  2214. <subdeptnm/>
  2215. <medispclnm>권@오</medispclnm>
  2216. <medispclid>93437</medispclid>
  2217. <atdoctnm>최@주</atdoctnm>
  2218. <diagnm>
  2219. <![CDATA[Other specified disease of stomach and duodenum]]>
  2220. </diagnm>
  2221. <opnm/>
  2222. <cnst>N</cnst>
  2223. <dayregular>N</dayregular>
  2224. <lastprcpdd>20120209</lastprcpdd>
  2225. <cpyn>N</cpyn>
  2226. <insukind>11</insukind>
  2227. <transfer/>
  2228. <dschnoti>-</dschnoti>
  2229. <preworkup>N</preworkup>
  2230. <hsctpreday>-</hsctpreday>
  2231. <trsntype/>
  2232. <hsctday>0</hsctday>
  2233. <postcxday>0</postcxday>
  2234. <memo/>
  2235. <roomcd>6771</roomcd>
  2236. <rrgstno1>390104</rrgstno1>
  2237. <conctypenm/>
  2238. <antidrugflag>N</antidrugflag>
  2239. <ordtype>I</ordtype>
  2240. <spclflag>N</spclflag>
  2241. <color/>
  2242. <repltype/>
  2243. <coopteamcd>-</coopteamcd>
  2244. <specordtype/>
  2245. <wardnm>607병동</wardnm>
  2246. <opcnfmdd/>
  2247. <diagnmopnm>
  2248. <![CDATA[▷Other specified disease of stomach and duodenum
  2249. ]]>
  2250. </diagnmopnm>
  2251. <had>307</had>
  2252. <adx/>
  2253. <testrslt>
  2254. <![CDATA[-]]>
  2255. </testrslt>
  2256. </inpatlist>
  2257. <inpatlist>
  2258. <pid>2246542</pid>
  2259. <indd>20110608</indd>
  2260. <cretno>2</cretno>
  2261. <seqno>2</seqno>
  2262. <instcd>053</instcd>
  2263. <hngnm>정@태</hngnm>
  2264. <fsexamflag>R</fsexamflag>
  2265. <sa>M/44</sa>
  2266. <hd>330</hd>
  2267. <ad>20110608</ad>
  2268. <pod/>
  2269. <refer/>
  2270. <replstat/>
  2271. <orddeptcd>2010300000</orddeptcd>
  2272. <deptnm>소화기내과</deptnm>
  2273. <subdeptnm/>
  2274. <medispclnm>탁@영</medispclnm>
  2275. <medispclid>97123</medispclid>
  2276. <atdoctnm>최@주</atdoctnm>
  2277. <diagnm/>
  2278. <opnm/>
  2279. <cnst>N</cnst>
  2280. <dayregular>N</dayregular>
  2281. <lastprcpdd>20111103</lastprcpdd>
  2282. <cpyn>N</cpyn>
  2283. <insukind>21</insukind>
  2284. <transfer/>
  2285. <dschnoti>-</dschnoti>
  2286. <preworkup>N</preworkup>
  2287. <hsctpreday>-</hsctpreday>
  2288. <trsntype/>
  2289. <hsctday>0</hsctday>
  2290. <postcxday>0</postcxday>
  2291. <memo/>
  2292. <roomcd>6771</roomcd>
  2293. <rrgstno1>670515</rrgstno1>
  2294. <conctypenm/>
  2295. <antidrugflag>N</antidrugflag>
  2296. <ordtype>I</ordtype>
  2297. <spclflag>N</spclflag>
  2298. <color/>
  2299. <repltype/>
  2300. <coopteamcd>-</coopteamcd>
  2301. <specordtype/>
  2302. <wardnm>607병동</wardnm>
  2303. <opcnfmdd/>
  2304. <diagnmopnm/>
  2305. <had>329</had>
  2306. <adx>외래</adx>
  2307. <testrslt>
  2308. <![CDATA[-]]>
  2309. </testrslt>
  2310. </inpatlist>
  2311. <inpatlist>
  2312. <pid>3006538</pid>
  2313. <indd>20110922</indd>
  2314. <cretno>2</cretno>
  2315. <seqno>1</seqno>
  2316. <instcd>053</instcd>
  2317. <hngnm>송지나</hngnm>
  2318. <fsexamflag>R</fsexamflag>
  2319. <sa>F/33</sa>
  2320. <hd>224</hd>
  2321. <ad>20110922</ad>
  2322. <pod/>
  2323. <refer/>
  2324. <replstat/>
  2325. <orddeptcd>2010300000</orddeptcd>
  2326. <deptnm>소화기내과</deptnm>
  2327. <subdeptnm/>
  2328. <medispclnm>권@오</medispclnm>
  2329. <medispclid>93437</medispclid>
  2330. <atdoctnm>-</atdoctnm>
  2331. <diagnm>
  2332. <![CDATA[Gastric cancer, cardia]]>
  2333. </diagnm>
  2334. <opnm/>
  2335. <cnst>N</cnst>
  2336. <dayregular>N</dayregular>
  2337. <lastprcpdd>20110923</lastprcpdd>
  2338. <cpyn>Y</cpyn>
  2339. <insukind>11</insukind>
  2340. <transfer/>
  2341. <dschnoti>-</dschnoti>
  2342. <preworkup>N</preworkup>
  2343. <hsctpreday>-</hsctpreday>
  2344. <trsntype/>
  2345. <hsctday>0</hsctday>
  2346. <postcxday>0</postcxday>
  2347. <memo/>
  2348. <roomcd>6772</roomcd>
  2349. <rrgstno1>781125</rrgstno1>
  2350. <conctypenm/>
  2351. <antidrugflag>N</antidrugflag>
  2352. <ordtype>I</ordtype>
  2353. <spclflag>N</spclflag>
  2354. <color/>
  2355. <repltype/>
  2356. <coopteamcd>-</coopteamcd>
  2357. <specordtype/>
  2358. <wardnm>607병동</wardnm>
  2359. <opcnfmdd/>
  2360. <diagnmopnm>
  2361. <![CDATA[▷Gastric cancer, cardia
  2362. ]]>
  2363. </diagnmopnm>
  2364. <had>223</had>
  2365. <adx>외래</adx>
  2366. <testrslt>
  2367. <![CDATA[-]]>
  2368. </testrslt>
  2369. </inpatlist>
  2370. <inpatlist>
  2371. <pid>1105003</pid>
  2372. <indd>20110718</indd>
  2373. <cretno>1</cretno>
  2374. <seqno>1</seqno>
  2375. <instcd>053</instcd>
  2376. <hngnm>최@은</hngnm>
  2377. <fsexamflag>F</fsexamflag>
  2378. <sa>F/36</sa>
  2379. <hd>290</hd>
  2380. <ad>20110718</ad>
  2381. <pod/>
  2382. <refer/>
  2383. <replstat/>
  2384. <orddeptcd>2010300000</orddeptcd>
  2385. <deptnm>소화기내과</deptnm>
  2386. <subdeptnm/>
  2387. <medispclnm>김@국</medispclnm>
  2388. <medispclid>93409</medispclid>
  2389. <atdoctnm>-</atdoctnm>
  2390. <diagnm/>
  2391. <opnm/>
  2392. <cnst>N</cnst>
  2393. <dayregular>N</dayregular>
  2394. <lastprcpdd/>
  2395. <cpyn>N</cpyn>
  2396. <insukind>51</insukind>
  2397. <transfer/>
  2398. <dschnoti>-</dschnoti>
  2399. <preworkup>N</preworkup>
  2400. <hsctpreday>-</hsctpreday>
  2401. <trsntype/>
  2402. <hsctday>0</hsctday>
  2403. <postcxday>0</postcxday>
  2404. <memo/>
  2405. <roomcd>6772</roomcd>
  2406. <rrgstno1>760114</rrgstno1>
  2407. <conctypenm/>
  2408. <antidrugflag>N</antidrugflag>
  2409. <ordtype>I</ordtype>
  2410. <spclflag>N</spclflag>
  2411. <color/>
  2412. <repltype/>
  2413. <coopteamcd>-</coopteamcd>
  2414. <specordtype/>
  2415. <wardnm>607병동</wardnm>
  2416. <opcnfmdd/>
  2417. <diagnmopnm/>
  2418. <had>289</had>
  2419. <adx/>
  2420. <testrslt>
  2421. <![CDATA[-]]>
  2422. </testrslt>
  2423. </inpatlist>
  2424. <inpatlist>
  2425. <pid>1679870</pid>
  2426. <indd>20110626</indd>
  2427. <cretno>1</cretno>
  2428. <seqno>5</seqno>
  2429. <instcd>053</instcd>
  2430. <hngnm>박@영</hngnm>
  2431. <fsexamflag>D</fsexamflag>
  2432. <sa>F/34</sa>
  2433. <hd>310</hd>
  2434. <ad>20110626</ad>
  2435. <pod/>
  2436. <refer/>
  2437. <replstat/>
  2438. <orddeptcd>2010300000</orddeptcd>
  2439. <deptnm>소화기내과</deptnm>
  2440. <subdeptnm/>
  2441. <medispclnm>권@오</medispclnm>
  2442. <medispclid>93437</medispclid>
  2443. <atdoctnm>황@엽</atdoctnm>
  2444. <diagnm/>
  2445. <opnm/>
  2446. <cnst>N</cnst>
  2447. <dayregular>N</dayregular>
  2448. <lastprcpdd>20111103</lastprcpdd>
  2449. <cpyn>N</cpyn>
  2450. <insukind>11</insukind>
  2451. <transfer/>
  2452. <dschnoti>-</dschnoti>
  2453. <preworkup>N</preworkup>
  2454. <hsctpreday>-</hsctpreday>
  2455. <trsntype/>
  2456. <hsctday>0</hsctday>
  2457. <postcxday>0</postcxday>
  2458. <memo/>
  2459. <roomcd>6772</roomcd>
  2460. <rrgstno1>780306</rrgstno1>
  2461. <conctypenm/>
  2462. <antidrugflag>N</antidrugflag>
  2463. <ordtype>I</ordtype>
  2464. <spclflag>N</spclflag>
  2465. <color/>
  2466. <repltype/>
  2467. <coopteamcd>-</coopteamcd>
  2468. <specordtype/>
  2469. <wardnm>607병동</wardnm>
  2470. <opcnfmdd/>
  2471. <diagnmopnm/>
  2472. <had>311</had>
  2473. <adx/>
  2474. <testrslt>
  2475. <![CDATA[-]]>
  2476. </testrslt>
  2477. </inpatlist>
  2478. <inpatlist>
  2479. <pid>1292633</pid>
  2480. <indd>20110620</indd>
  2481. <cretno>1</cretno>
  2482. <seqno>2</seqno>
  2483. <instcd>053</instcd>
  2484. <hngnm>강@순</hngnm>
  2485. <fsexamflag>R</fsexamflag>
  2486. <sa>F/82</sa>
  2487. <hd>318</hd>
  2488. <ad>20110620</ad>
  2489. <pod/>
  2490. <refer/>
  2491. <replstat/>
  2492. <orddeptcd>2010300000</orddeptcd>
  2493. <deptnm>소화기내과</deptnm>
  2494. <subdeptnm/>
  2495. <medispclnm>박@영</medispclnm>
  2496. <medispclid>99063</medispclid>
  2497. <atdoctnm>황@엽</atdoctnm>
  2498. <diagnm/>
  2499. <opnm/>
  2500. <cnst>N</cnst>
  2501. <dayregular>N</dayregular>
  2502. <lastprcpdd>20111103</lastprcpdd>
  2503. <cpyn>N</cpyn>
  2504. <insukind>11</insukind>
  2505. <transfer/>
  2506. <dschnoti>-</dschnoti>
  2507. <preworkup>N</preworkup>
  2508. <hsctpreday>-</hsctpreday>
  2509. <trsntype/>
  2510. <hsctday>0</hsctday>
  2511. <postcxday>0</postcxday>
  2512. <memo/>
  2513. <roomcd>6772</roomcd>
  2514. <rrgstno1>291226</rrgstno1>
  2515. <conctypenm/>
  2516. <antidrugflag>N</antidrugflag>
  2517. <ordtype>I</ordtype>
  2518. <spclflag>N</spclflag>
  2519. <color/>
  2520. <repltype/>
  2521. <coopteamcd>-</coopteamcd>
  2522. <specordtype/>
  2523. <wardnm>607병동</wardnm>
  2524. <opcnfmdd/>
  2525. <diagnmopnm/>
  2526. <had>317</had>
  2527. <adx/>
  2528. <testrslt>
  2529. <![CDATA[-]]>
  2530. </testrslt>
  2531. </inpatlist>
  2532. <inpatlist>
  2533. <pid>1384942</pid>
  2534. <indd>20110630</indd>
  2535. <cretno>1</cretno>
  2536. <seqno>4</seqno>
  2537. <instcd>053</instcd>
  2538. <hngnm>임@부</hngnm>
  2539. <fsexamflag>D</fsexamflag>
  2540. <sa>F/69</sa>
  2541. <hd>308</hd>
  2542. <ad>20110630</ad>
  2543. <pod/>
  2544. <refer/>
  2545. <replstat/>
  2546. <orddeptcd>2010300000</orddeptcd>
  2547. <deptnm>소화기내과</deptnm>
  2548. <subdeptnm/>
  2549. <medispclnm>박@영</medispclnm>
  2550. <medispclid>99063</medispclid>
  2551. <atdoctnm>최@주</atdoctnm>
  2552. <diagnm/>
  2553. <opnm/>
  2554. <cnst>N</cnst>
  2555. <dayregular>N</dayregular>
  2556. <lastprcpdd>20111103</lastprcpdd>
  2557. <cpyn>N</cpyn>
  2558. <insukind>11</insukind>
  2559. <transfer/>
  2560. <dschnoti>-</dschnoti>
  2561. <preworkup>N</preworkup>
  2562. <hsctpreday>-</hsctpreday>
  2563. <trsntype/>
  2564. <hsctday>0</hsctday>
  2565. <postcxday>0</postcxday>
  2566. <memo/>
  2567. <roomcd>6773</roomcd>
  2568. <rrgstno1>430326</rrgstno1>
  2569. <conctypenm/>
  2570. <antidrugflag>N</antidrugflag>
  2571. <ordtype>I</ordtype>
  2572. <spclflag>N</spclflag>
  2573. <color/>
  2574. <repltype/>
  2575. <coopteamcd>-</coopteamcd>
  2576. <specordtype/>
  2577. <wardnm>607병동</wardnm>
  2578. <opcnfmdd/>
  2579. <diagnmopnm/>
  2580. <had>307</had>
  2581. <adx/>
  2582. <testrslt>
  2583. <![CDATA[-]]>
  2584. </testrslt>
  2585. </inpatlist>
  2586. <inpatlist>
  2587. <pid>1702821</pid>
  2588. <indd>20110619</indd>
  2589. <cretno>1</cretno>
  2590. <seqno>4</seqno>
  2591. <instcd>053</instcd>
  2592. <hngnm>이@렬</hngnm>
  2593. <fsexamflag>D</fsexamflag>
  2594. <sa>F/77</sa>
  2595. <hd>318</hd>
  2596. <ad>20110619</ad>
  2597. <pod/>
  2598. <refer/>
  2599. <replstat/>
  2600. <orddeptcd>2010300000</orddeptcd>
  2601. <deptnm>소화기내과</deptnm>
  2602. <subdeptnm/>
  2603. <medispclnm>정@규</medispclnm>
  2604. <medispclid>98094</medispclid>
  2605. <atdoctnm>황@엽</atdoctnm>
  2606. <diagnm/>
  2607. <opnm/>
  2608. <cnst>N</cnst>
  2609. <dayregular>N</dayregular>
  2610. <lastprcpdd>20111103</lastprcpdd>
  2611. <cpyn>N</cpyn>
  2612. <insukind>11</insukind>
  2613. <transfer/>
  2614. <dschnoti>-</dschnoti>
  2615. <preworkup>N</preworkup>
  2616. <hsctpreday>-</hsctpreday>
  2617. <trsntype/>
  2618. <hsctday>0</hsctday>
  2619. <postcxday>0</postcxday>
  2620. <memo/>
  2621. <roomcd>6773</roomcd>
  2622. <rrgstno1>341229</rrgstno1>
  2623. <conctypenm/>
  2624. <antidrugflag>N</antidrugflag>
  2625. <ordtype>I</ordtype>
  2626. <spclflag>N</spclflag>
  2627. <color/>
  2628. <repltype/>
  2629. <coopteamcd>-</coopteamcd>
  2630. <specordtype/>
  2631. <wardnm>607병동</wardnm>
  2632. <opcnfmdd/>
  2633. <diagnmopnm/>
  2634. <had>318</had>
  2635. <adx/>
  2636. <testrslt>
  2637. <![CDATA[-]]>
  2638. </testrslt>
  2639. </inpatlist>
  2640. <inpatlist>
  2641. <pid>3006553</pid>
  2642. <indd>20111005</indd>
  2643. <cretno>2</cretno>
  2644. <seqno>1</seqno>
  2645. <instcd>053</instcd>
  2646. <hngnm>김초진</hngnm>
  2647. <fsexamflag>R</fsexamflag>
  2648. <sa>M/31</sa>
  2649. <hd>211</hd>
  2650. <ad>20111005</ad>
  2651. <pod/>
  2652. <refer/>
  2653. <replstat/>
  2654. <orddeptcd>2010300000</orddeptcd>
  2655. <deptnm>소화기내과</deptnm>
  2656. <subdeptnm/>
  2657. <medispclnm>권@오</medispclnm>
  2658. <medispclid>93437</medispclid>
  2659. <atdoctnm>-</atdoctnm>
  2660. <diagnm>
  2661. <![CDATA[Acute gastric ulcer with both hemorrhage and perforation]]>
  2662. </diagnm>
  2663. <opnm/>
  2664. <cnst>N</cnst>
  2665. <dayregular>N</dayregular>
  2666. <lastprcpdd>20111103</lastprcpdd>
  2667. <cpyn>N</cpyn>
  2668. <insukind>11</insukind>
  2669. <transfer/>
  2670. <dschnoti>-</dschnoti>
  2671. <preworkup>N</preworkup>
  2672. <hsctpreday>-</hsctpreday>
  2673. <trsntype/>
  2674. <hsctday>0</hsctday>
  2675. <postcxday>0</postcxday>
  2676. <memo/>
  2677. <roomcd>6777</roomcd>
  2678. <rrgstno1>800627</rrgstno1>
  2679. <conctypenm/>
  2680. <antidrugflag>N</antidrugflag>
  2681. <ordtype>I</ordtype>
  2682. <spclflag>N</spclflag>
  2683. <color/>
  2684. <repltype/>
  2685. <coopteamcd>-</coopteamcd>
  2686. <specordtype/>
  2687. <wardnm>607병동</wardnm>
  2688. <opcnfmdd/>
  2689. <diagnmopnm>
  2690. <![CDATA[▷Acute gastric ulcer with both hemorrhage and perforation
  2691. ]]>
  2692. </diagnmopnm>
  2693. <had>210</had>
  2694. <adx>외래</adx>
  2695. <testrslt>
  2696. <![CDATA[-]]>
  2697. </testrslt>
  2698. </inpatlist>
  2699. <inpatlist>
  2700. <pid>3006536</pid>
  2701. <indd>20110922</indd>
  2702. <cretno>2</cretno>
  2703. <seqno>1</seqno>
  2704. <instcd>053</instcd>
  2705. <hngnm>김삼순</hngnm>
  2706. <fsexamflag>R</fsexamflag>
  2707. <sa>M/31</sa>
  2708. <hd>224</hd>
  2709. <ad>20110922</ad>
  2710. <pod/>
  2711. <refer/>
  2712. <replstat/>
  2713. <orddeptcd>2010300000</orddeptcd>
  2714. <deptnm>소화기내과</deptnm>
  2715. <subdeptnm/>
  2716. <medispclnm>권@오</medispclnm>
  2717. <medispclid>93437</medispclid>
  2718. <atdoctnm>-</atdoctnm>
  2719. <diagnm>
  2720. <![CDATA[Gastric cancer, cardia]]>
  2721. </diagnm>
  2722. <opnm/>
  2723. <cnst>N</cnst>
  2724. <dayregular>N</dayregular>
  2725. <lastprcpdd>20110922</lastprcpdd>
  2726. <cpyn>Y</cpyn>
  2727. <insukind>11</insukind>
  2728. <transfer/>
  2729. <dschnoti>-</dschnoti>
  2730. <preworkup>N</preworkup>
  2731. <hsctpreday>-</hsctpreday>
  2732. <trsntype/>
  2733. <hsctday>0</hsctday>
  2734. <postcxday>0</postcxday>
  2735. <memo/>
  2736. <roomcd>6777</roomcd>
  2737. <rrgstno1>800627</rrgstno1>
  2738. <conctypenm/>
  2739. <antidrugflag>N</antidrugflag>
  2740. <ordtype>I</ordtype>
  2741. <spclflag>N</spclflag>
  2742. <color/>
  2743. <repltype/>
  2744. <coopteamcd>-</coopteamcd>
  2745. <specordtype/>
  2746. <wardnm>607병동</wardnm>
  2747. <opcnfmdd/>
  2748. <diagnmopnm>
  2749. <![CDATA[▷Gastric cancer, cardia
  2750. ]]>
  2751. </diagnmopnm>
  2752. <had>223</had>
  2753. <adx/>
  2754. <testrslt>
  2755. <![CDATA[-]]>
  2756. </testrslt>
  2757. </inpatlist>
  2758. <inpatlist>
  2759. <pid>2144172</pid>
  2760. <indd>20110629</indd>
  2761. <cretno>1</cretno>
  2762. <seqno>5</seqno>
  2763. <instcd>053</instcd>
  2764. <hngnm>김@환</hngnm>
  2765. <fsexamflag>D</fsexamflag>
  2766. <sa>M/48</sa>
  2767. <hd>308</hd>
  2768. <ad>20110629</ad>
  2769. <pod/>
  2770. <refer/>
  2771. <replstat/>
  2772. <orddeptcd>2010300000</orddeptcd>
  2773. <deptnm>소화기내과</deptnm>
  2774. <subdeptnm/>
  2775. <medispclnm>권@오</medispclnm>
  2776. <medispclid>93437</medispclid>
  2777. <atdoctnm>황@엽</atdoctnm>
  2778. <diagnm/>
  2779. <opnm/>
  2780. <cnst>N</cnst>
  2781. <dayregular>N</dayregular>
  2782. <lastprcpdd>20111103</lastprcpdd>
  2783. <cpyn>N</cpyn>
  2784. <insukind>11</insukind>
  2785. <transfer/>
  2786. <dschnoti>-</dschnoti>
  2787. <preworkup>N</preworkup>
  2788. <hsctpreday>-</hsctpreday>
  2789. <trsntype/>
  2790. <hsctday>0</hsctday>
  2791. <postcxday>0</postcxday>
  2792. <memo/>
  2793. <roomcd>6777</roomcd>
  2794. <rrgstno1>630818</rrgstno1>
  2795. <conctypenm/>
  2796. <antidrugflag>N</antidrugflag>
  2797. <ordtype>I</ordtype>
  2798. <spclflag>N</spclflag>
  2799. <color/>
  2800. <repltype/>
  2801. <coopteamcd>-</coopteamcd>
  2802. <specordtype/>
  2803. <wardnm>607병동</wardnm>
  2804. <opcnfmdd/>
  2805. <diagnmopnm/>
  2806. <had>308</had>
  2807. <adx/>
  2808. <testrslt>
  2809. <![CDATA[-]]>
  2810. </testrslt>
  2811. </inpatlist>
  2812. <inpatlist>
  2813. <pid>2370847</pid>
  2814. <indd>20110629</indd>
  2815. <cretno>1</cretno>
  2816. <seqno>5</seqno>
  2817. <instcd>053</instcd>
  2818. <hngnm>이@식</hngnm>
  2819. <fsexamflag>D</fsexamflag>
  2820. <sa>M/44</sa>
  2821. <hd>308</hd>
  2822. <ad>20110629</ad>
  2823. <pod/>
  2824. <refer/>
  2825. <replstat/>
  2826. <orddeptcd>2010300000</orddeptcd>
  2827. <deptnm>소화기내과</deptnm>
  2828. <subdeptnm/>
  2829. <medispclnm>박@영</medispclnm>
  2830. <medispclid>99063</medispclid>
  2831. <atdoctnm>황@엽</atdoctnm>
  2832. <diagnm/>
  2833. <opnm/>
  2834. <cnst>N</cnst>
  2835. <dayregular>N</dayregular>
  2836. <lastprcpdd>20111103</lastprcpdd>
  2837. <cpyn>N</cpyn>
  2838. <insukind>11</insukind>
  2839. <transfer/>
  2840. <dschnoti>-</dschnoti>
  2841. <preworkup>N</preworkup>
  2842. <hsctpreday>-</hsctpreday>
  2843. <trsntype/>
  2844. <hsctday>0</hsctday>
  2845. <postcxday>0</postcxday>
  2846. <memo/>
  2847. <roomcd>6777</roomcd>
  2848. <rrgstno1>671020</rrgstno1>
  2849. <conctypenm/>
  2850. <antidrugflag>N</antidrugflag>
  2851. <ordtype>I</ordtype>
  2852. <spclflag>N</spclflag>
  2853. <color/>
  2854. <repltype/>
  2855. <coopteamcd>-</coopteamcd>
  2856. <specordtype/>
  2857. <wardnm>607병동</wardnm>
  2858. <opcnfmdd/>
  2859. <diagnmopnm/>
  2860. <had>308</had>
  2861. <adx/>
  2862. <testrslt>
  2863. <![CDATA[-]]>
  2864. </testrslt>
  2865. </inpatlist>
  2866. <inpatlist>
  2867. <pid>2351404</pid>
  2868. <indd>20110623</indd>
  2869. <cretno>1</cretno>
  2870. <seqno>7</seqno>
  2871. <instcd>053</instcd>
  2872. <hngnm>김@범</hngnm>
  2873. <fsexamflag>R</fsexamflag>
  2874. <sa>M/45</sa>
  2875. <hd>311</hd>
  2876. <ad>20110623</ad>
  2877. <pod/>
  2878. <refer/>
  2879. <replstat/>
  2880. <orddeptcd>2010300000</orddeptcd>
  2881. <deptnm>소화기내과</deptnm>
  2882. <subdeptnm/>
  2883. <medispclnm>권@오</medispclnm>
  2884. <medispclid>93437</medispclid>
  2885. <atdoctnm>황@엽</atdoctnm>
  2886. <diagnm/>
  2887. <opnm/>
  2888. <cnst>N</cnst>
  2889. <dayregular>N</dayregular>
  2890. <lastprcpdd>20111103</lastprcpdd>
  2891. <cpyn>N</cpyn>
  2892. <insukind>21</insukind>
  2893. <transfer/>
  2894. <dschnoti>-</dschnoti>
  2895. <preworkup>N</preworkup>
  2896. <hsctpreday>-</hsctpreday>
  2897. <trsntype/>
  2898. <hsctday>0</hsctday>
  2899. <postcxday>0</postcxday>
  2900. <memo/>
  2901. <roomcd>6777</roomcd>
  2902. <rrgstno1>661229</rrgstno1>
  2903. <conctypenm/>
  2904. <antidrugflag>N</antidrugflag>
  2905. <ordtype>I</ordtype>
  2906. <spclflag>N</spclflag>
  2907. <color/>
  2908. <repltype/>
  2909. <coopteamcd>-</coopteamcd>
  2910. <specordtype/>
  2911. <wardnm>607병동</wardnm>
  2912. <opcnfmdd/>
  2913. <diagnmopnm/>
  2914. <had>314</had>
  2915. <adx/>
  2916. <testrslt>
  2917. <![CDATA[-]]>
  2918. </testrslt>
  2919. </inpatlist>
  2920. <inpatlist>
  2921. <pid>3006573</pid>
  2922. <indd>20111005</indd>
  2923. <cretno>1</cretno>
  2924. <seqno>12</seqno>
  2925. <instcd>053</instcd>
  2926. <hngnm>병동K</hngnm>
  2927. <fsexamflag>D</fsexamflag>
  2928. <sa>F/34</sa>
  2929. <hd>211</hd>
  2930. <ad>20111005</ad>
  2931. <pod/>
  2932. <refer/>
  2933. <replstat/>
  2934. <orddeptcd>2010300000</orddeptcd>
  2935. <deptnm>소화기내과</deptnm>
  2936. <subdeptnm/>
  2937. <medispclnm>권@오</medispclnm>
  2938. <medispclid>93437</medispclid>
  2939. <atdoctnm>-</atdoctnm>
  2940. <diagnm>
  2941. <![CDATA[Pancreas cancer]]>
  2942. </diagnm>
  2943. <opnm/>
  2944. <cnst>N</cnst>
  2945. <dayregular>N</dayregular>
  2946. <lastprcpdd>20111006</lastprcpdd>
  2947. <cpyn>N</cpyn>
  2948. <insukind>11</insukind>
  2949. <transfer/>
  2950. <dschnoti>퇴원예고</dschnoti>
  2951. <preworkup>N</preworkup>
  2952. <hsctpreday>-</hsctpreday>
  2953. <trsntype/>
  2954. <hsctday>0</hsctday>
  2955. <postcxday>0</postcxday>
  2956. <memo/>
  2957. <roomcd>6778</roomcd>
  2958. <rrgstno1>770610</rrgstno1>
  2959. <conctypenm/>
  2960. <antidrugflag>N</antidrugflag>
  2961. <ordtype>I</ordtype>
  2962. <spclflag>N</spclflag>
  2963. <color/>
  2964. <repltype/>
  2965. <coopteamcd>-</coopteamcd>
  2966. <specordtype/>
  2967. <wardnm>607병동</wardnm>
  2968. <opcnfmdd/>
  2969. <diagnmopnm>
  2970. <![CDATA[▷Pancreas cancer
  2971. ]]>
  2972. </diagnmopnm>
  2973. <had>210</had>
  2974. <adx/>
  2975. <testrslt>
  2976. <![CDATA[-]]>
  2977. </testrslt>
  2978. </inpatlist>
  2979. <inpatlist>
  2980. <pid>3006572</pid>
  2981. <indd>20111005</indd>
  2982. <cretno>1</cretno>
  2983. <seqno>1</seqno>
  2984. <instcd>053</instcd>
  2985. <hngnm>병동J</hngnm>
  2986. <fsexamflag>D</fsexamflag>
  2987. <sa>M/22</sa>
  2988. <hd>211</hd>
  2989. <ad>20111005</ad>
  2990. <pod/>
  2991. <refer/>
  2992. <replstat/>
  2993. <orddeptcd>2010300000</orddeptcd>
  2994. <deptnm>소화기내과</deptnm>
  2995. <subdeptnm/>
  2996. <medispclnm>권@오</medispclnm>
  2997. <medispclid>93437</medispclid>
  2998. <atdoctnm>-</atdoctnm>
  2999. <diagnm>
  3000. <![CDATA[Hepatocellular carcinoma]]>
  3001. </diagnm>
  3002. <opnm/>
  3003. <cnst>N</cnst>
  3004. <dayregular>N</dayregular>
  3005. <lastprcpdd>20111103</lastprcpdd>
  3006. <cpyn>Y</cpyn>
  3007. <insukind>11</insukind>
  3008. <transfer/>
  3009. <dschnoti>-</dschnoti>
  3010. <preworkup>N</preworkup>
  3011. <hsctpreday>-</hsctpreday>
  3012. <trsntype/>
  3013. <hsctday>0</hsctday>
  3014. <postcxday>0</postcxday>
  3015. <memo/>
  3016. <roomcd>6778</roomcd>
  3017. <rrgstno1>900209</rrgstno1>
  3018. <conctypenm/>
  3019. <antidrugflag>N</antidrugflag>
  3020. <ordtype>I</ordtype>
  3021. <spclflag>N</spclflag>
  3022. <color/>
  3023. <repltype/>
  3024. <coopteamcd>-</coopteamcd>
  3025. <specordtype/>
  3026. <wardnm>607병동</wardnm>
  3027. <opcnfmdd/>
  3028. <diagnmopnm>
  3029. <![CDATA[▷Hepatocellular carcinoma
  3030. ]]>
  3031. </diagnmopnm>
  3032. <had>210</had>
  3033. <adx/>
  3034. <testrslt>
  3035. <![CDATA[-]]>
  3036. </testrslt>
  3037. </inpatlist>
  3038. <inpatlist>
  3039. <pid>1256911</pid>
  3040. <indd>20110628</indd>
  3041. <cretno>2</cretno>
  3042. <seqno>1</seqno>
  3043. <instcd>053</instcd>
  3044. <hngnm>유@림</hngnm>
  3045. <fsexamflag>R</fsexamflag>
  3046. <sa>M/60</sa>
  3047. <hd>310</hd>
  3048. <ad>20110628</ad>
  3049. <pod/>
  3050. <refer/>
  3051. <replstat/>
  3052. <orddeptcd>2010300000</orddeptcd>
  3053. <deptnm>소화기내과</deptnm>
  3054. <subdeptnm/>
  3055. <medispclnm>탁@영</medispclnm>
  3056. <medispclid>97123</medispclid>
  3057. <atdoctnm>황@엽</atdoctnm>
  3058. <diagnm/>
  3059. <opnm/>
  3060. <cnst>N</cnst>
  3061. <dayregular>N</dayregular>
  3062. <lastprcpdd>20111103</lastprcpdd>
  3063. <cpyn>N</cpyn>
  3064. <insukind>11</insukind>
  3065. <transfer/>
  3066. <dschnoti>-</dschnoti>
  3067. <preworkup>N</preworkup>
  3068. <hsctpreday>-</hsctpreday>
  3069. <trsntype/>
  3070. <hsctday>0</hsctday>
  3071. <postcxday>0</postcxday>
  3072. <memo/>
  3073. <roomcd>6778</roomcd>
  3074. <rrgstno1>520104</rrgstno1>
  3075. <conctypenm/>
  3076. <antidrugflag>N</antidrugflag>
  3077. <ordtype>I</ordtype>
  3078. <spclflag>N</spclflag>
  3079. <color/>
  3080. <repltype/>
  3081. <coopteamcd>-</coopteamcd>
  3082. <specordtype/>
  3083. <wardnm>607병동</wardnm>
  3084. <opcnfmdd/>
  3085. <diagnmopnm/>
  3086. <had>309</had>
  3087. <adx>외래</adx>
  3088. <testrslt>
  3089. <![CDATA[-]]>
  3090. </testrslt>
  3091. </inpatlist>
  3092. <inpatlist>
  3093. <pid>1390070</pid>
  3094. <indd>20110625</indd>
  3095. <cretno>1</cretno>
  3096. <seqno>1</seqno>
  3097. <instcd>053</instcd>
  3098. <hngnm>김@원</hngnm>
  3099. <fsexamflag>R</fsexamflag>
  3100. <sa>M/63</sa>
  3101. <hd>313</hd>
  3102. <ad>20110625</ad>
  3103. <pod/>
  3104. <refer/>
  3105. <replstat/>
  3106. <orddeptcd>2010300000</orddeptcd>
  3107. <deptnm>소화기내과</deptnm>
  3108. <subdeptnm/>
  3109. <medispclnm>탁@영</medispclnm>
  3110. <medispclid>97123</medispclid>
  3111. <atdoctnm>최@주</atdoctnm>
  3112. <diagnm/>
  3113. <opnm/>
  3114. <cnst>N</cnst>
  3115. <dayregular>N</dayregular>
  3116. <lastprcpdd>20111103</lastprcpdd>
  3117. <cpyn>N</cpyn>
  3118. <insukind>11</insukind>
  3119. <transfer/>
  3120. <dschnoti>-</dschnoti>
  3121. <preworkup>N</preworkup>
  3122. <hsctpreday>-</hsctpreday>
  3123. <trsntype/>
  3124. <hsctday>0</hsctday>
  3125. <postcxday>0</postcxday>
  3126. <memo/>
  3127. <roomcd>6778</roomcd>
  3128. <rrgstno1>480711</rrgstno1>
  3129. <conctypenm/>
  3130. <antidrugflag>N</antidrugflag>
  3131. <ordtype>I</ordtype>
  3132. <spclflag>N</spclflag>
  3133. <color/>
  3134. <repltype/>
  3135. <coopteamcd>-</coopteamcd>
  3136. <specordtype/>
  3137. <wardnm>607병동</wardnm>
  3138. <opcnfmdd/>
  3139. <diagnmopnm/>
  3140. <had>312</had>
  3141. <adx/>
  3142. <testrslt>
  3143. <![CDATA[-]]>
  3144. </testrslt>
  3145. </inpatlist>
  3146. <inpatlist>
  3147. <pid>1630321</pid>
  3148. <indd>20110529</indd>
  3149. <cretno>1</cretno>
  3150. <seqno>7</seqno>
  3151. <instcd>053</instcd>
  3152. <hngnm>김@대</hngnm>
  3153. <fsexamflag>D</fsexamflag>
  3154. <sa>M/73</sa>
  3155. <hd>339</hd>
  3156. <ad>20110529</ad>
  3157. <pod/>
  3158. <refer/>
  3159. <replstat/>
  3160. <orddeptcd>2010300000</orddeptcd>
  3161. <deptnm>소화기내과</deptnm>
  3162. <subdeptnm/>
  3163. <medispclnm>권@오</medispclnm>
  3164. <medispclid>93437</medispclid>
  3165. <atdoctnm>최@주</atdoctnm>
  3166. <diagnm/>
  3167. <opnm/>
  3168. <cnst>N</cnst>
  3169. <dayregular>N</dayregular>
  3170. <lastprcpdd>20111103</lastprcpdd>
  3171. <cpyn>N</cpyn>
  3172. <insukind>11</insukind>
  3173. <transfer/>
  3174. <dschnoti>-</dschnoti>
  3175. <preworkup>N</preworkup>
  3176. <hsctpreday>-</hsctpreday>
  3177. <trsntype/>
  3178. <hsctday>0</hsctday>
  3179. <postcxday>0</postcxday>
  3180. <memo/>
  3181. <roomcd>6778</roomcd>
  3182. <rrgstno1>381205</rrgstno1>
  3183. <conctypenm/>
  3184. <antidrugflag>N</antidrugflag>
  3185. <ordtype>I</ordtype>
  3186. <spclflag>N</spclflag>
  3187. <color/>
  3188. <repltype/>
  3189. <coopteamcd>-</coopteamcd>
  3190. <specordtype/>
  3191. <wardnm>607병동</wardnm>
  3192. <opcnfmdd/>
  3193. <diagnmopnm/>
  3194. <had>339</had>
  3195. <adx>외래</adx>
  3196. <testrslt>
  3197. <![CDATA[-]]>
  3198. </testrslt>
  3199. </inpatlist>
  3200. <inpatlist>
  3201. <pid>3006542</pid>
  3202. <indd>20110927</indd>
  3203. <cretno>2</cretno>
  3204. <seqno>1</seqno>
  3205. <instcd>053</instcd>
  3206. <hngnm>꿀꿀이</hngnm>
  3207. <fsexamflag>R</fsexamflag>
  3208. <sa>M/23</sa>
  3209. <hd>219</hd>
  3210. <ad>20110927</ad>
  3211. <pod/>
  3212. <refer/>
  3213. <replstat/>
  3214. <orddeptcd>2010300000</orddeptcd>
  3215. <deptnm>소화기내과</deptnm>
  3216. <subdeptnm/>
  3217. <medispclnm>권@오</medispclnm>
  3218. <medispclid>93437</medispclid>
  3219. <atdoctnm>-</atdoctnm>
  3220. <diagnm/>
  3221. <opnm/>
  3222. <cnst>N</cnst>
  3223. <dayregular>N</dayregular>
  3224. <lastprcpdd>20111103</lastprcpdd>
  3225. <cpyn>Y</cpyn>
  3226. <insukind>11</insukind>
  3227. <transfer/>
  3228. <dschnoti>-</dschnoti>
  3229. <preworkup>N</preworkup>
  3230. <hsctpreday>-</hsctpreday>
  3231. <trsntype/>
  3232. <hsctday>0</hsctday>
  3233. <postcxday>0</postcxday>
  3234. <memo/>
  3235. <roomcd>6779</roomcd>
  3236. <rrgstno1>880525</rrgstno1>
  3237. <conctypenm/>
  3238. <antidrugflag>N</antidrugflag>
  3239. <ordtype>I</ordtype>
  3240. <spclflag>N</spclflag>
  3241. <color/>
  3242. <repltype/>
  3243. <coopteamcd>-</coopteamcd>
  3244. <specordtype/>
  3245. <wardnm>607병동</wardnm>
  3246. <opcnfmdd/>
  3247. <diagnmopnm/>
  3248. <had>218</had>
  3249. <adx>외래</adx>
  3250. <testrslt>
  3251. <![CDATA[-]]>
  3252. </testrslt>
  3253. </inpatlist>
  3254. <inpatlist>
  3255. <pid>3030831</pid>
  3256. <indd>20110927</indd>
  3257. <cretno>2</cretno>
  3258. <seqno>1</seqno>
  3259. <instcd>053</instcd>
  3260. <hngnm>정@석</hngnm>
  3261. <fsexamflag>R</fsexamflag>
  3262. <sa>M/49</sa>
  3263. <hd>219</hd>
  3264. <ad>20110927</ad>
  3265. <pod/>
  3266. <refer/>
  3267. <replstat/>
  3268. <orddeptcd>2010300000</orddeptcd>
  3269. <deptnm>소화기내과</deptnm>
  3270. <subdeptnm/>
  3271. <medispclnm>권@오</medispclnm>
  3272. <medispclid>93437</medispclid>
  3273. <atdoctnm>-</atdoctnm>
  3274. <diagnm/>
  3275. <opnm/>
  3276. <cnst>N</cnst>
  3277. <dayregular>N</dayregular>
  3278. <lastprcpdd>20111103</lastprcpdd>
  3279. <cpyn>N</cpyn>
  3280. <insukind>21</insukind>
  3281. <transfer/>
  3282. <dschnoti>-</dschnoti>
  3283. <preworkup>N</preworkup>
  3284. <hsctpreday>-</hsctpreday>
  3285. <trsntype/>
  3286. <hsctday>0</hsctday>
  3287. <postcxday>0</postcxday>
  3288. <memo/>
  3289. <roomcd>6779</roomcd>
  3290. <rrgstno1>621005</rrgstno1>
  3291. <conctypenm/>
  3292. <antidrugflag>N</antidrugflag>
  3293. <ordtype>I</ordtype>
  3294. <spclflag>N</spclflag>
  3295. <color/>
  3296. <repltype/>
  3297. <coopteamcd>-</coopteamcd>
  3298. <specordtype/>
  3299. <wardnm>607병동</wardnm>
  3300. <opcnfmdd/>
  3301. <diagnmopnm/>
  3302. <had>218</had>
  3303. <adx>외래</adx>
  3304. <testrslt>
  3305. <![CDATA[-]]>
  3306. </testrslt>
  3307. </inpatlist>
  3308. <inpatlist>
  3309. <pid>3006539</pid>
  3310. <indd>20110923</indd>
  3311. <cretno>1</cretno>
  3312. <seqno>1</seqno>
  3313. <instcd>053</instcd>
  3314. <hngnm>손공주</hngnm>
  3315. <fsexamflag>R</fsexamflag>
  3316. <sa>F/34</sa>
  3317. <hd>223</hd>
  3318. <ad>20110923</ad>
  3319. <pod/>
  3320. <refer/>
  3321. <replstat/>
  3322. <orddeptcd>2010300000</orddeptcd>
  3323. <deptnm>소화기내과</deptnm>
  3324. <subdeptnm/>
  3325. <medispclnm>권@오</medispclnm>
  3326. <medispclid>93437</medispclid>
  3327. <atdoctnm>-</atdoctnm>
  3328. <diagnm>
  3329. <![CDATA[Uterine myoma]]>
  3330. </diagnm>
  3331. <opnm/>
  3332. <cnst>N</cnst>
  3333. <dayregular>N</dayregular>
  3334. <lastprcpdd>20111103</lastprcpdd>
  3335. <cpyn>Y</cpyn>
  3336. <insukind>11</insukind>
  3337. <transfer/>
  3338. <dschnoti>-</dschnoti>
  3339. <preworkup>N</preworkup>
  3340. <hsctpreday>-</hsctpreday>
  3341. <trsntype/>
  3342. <hsctday>0</hsctday>
  3343. <postcxday>0</postcxday>
  3344. <memo/>
  3345. <roomcd>6779</roomcd>
  3346. <rrgstno1>770925</rrgstno1>
  3347. <conctypenm/>
  3348. <antidrugflag>N</antidrugflag>
  3349. <ordtype>I</ordtype>
  3350. <spclflag>N</spclflag>
  3351. <color/>
  3352. <repltype/>
  3353. <coopteamcd>-</coopteamcd>
  3354. <specordtype/>
  3355. <wardnm>607병동</wardnm>
  3356. <opcnfmdd/>
  3357. <diagnmopnm>
  3358. <![CDATA[▷Uterine myoma
  3359. ]]>
  3360. </diagnmopnm>
  3361. <had>222</had>
  3362. <adx>외래</adx>
  3363. <testrslt>
  3364. <![CDATA[-]]>
  3365. </testrslt>
  3366. </inpatlist>
  3367. <inpatlist>
  3368. <pid>2105784</pid>
  3369. <indd>20110722</indd>
  3370. <cretno>2</cretno>
  3371. <seqno>3</seqno>
  3372. <instcd>053</instcd>
  3373. <hngnm>소@수</hngnm>
  3374. <fsexamflag>S</fsexamflag>
  3375. <sa>M/71</sa>
  3376. <hd>286</hd>
  3377. <ad>20110722</ad>
  3378. <pod/>
  3379. <refer/>
  3380. <replstat/>
  3381. <orddeptcd>2010300000</orddeptcd>
  3382. <deptnm>소화기내과</deptnm>
  3383. <subdeptnm/>
  3384. <medispclnm>권@오</medispclnm>
  3385. <medispclid>93437</medispclid>
  3386. <atdoctnm>-</atdoctnm>
  3387. <diagnm>
  3388. <![CDATA[Abdomen pain, Right upper quadrant]]>
  3389. </diagnm>
  3390. <opnm/>
  3391. <cnst>N</cnst>
  3392. <dayregular>N</dayregular>
  3393. <lastprcpdd>20111103</lastprcpdd>
  3394. <cpyn>N</cpyn>
  3395. <insukind>11</insukind>
  3396. <transfer/>
  3397. <dschnoti>-</dschnoti>
  3398. <preworkup>N</preworkup>
  3399. <hsctpreday>-</hsctpreday>
  3400. <trsntype/>
  3401. <hsctday>0</hsctday>
  3402. <postcxday>0</postcxday>
  3403. <memo/>
  3404. <roomcd>6779</roomcd>
  3405. <rrgstno1>410111</rrgstno1>
  3406. <conctypenm/>
  3407. <antidrugflag>N</antidrugflag>
  3408. <ordtype>I</ordtype>
  3409. <spclflag>N</spclflag>
  3410. <color/>
  3411. <repltype/>
  3412. <coopteamcd>-</coopteamcd>
  3413. <specordtype/>
  3414. <wardnm>607병동</wardnm>
  3415. <opcnfmdd/>
  3416. <diagnmopnm>
  3417. <![CDATA[▷Abdomen pain, Right upper quadrant
  3418. ]]>
  3419. </diagnmopnm>
  3420. <had>285</had>
  3421. <adx>외래</adx>
  3422. <testrslt>
  3423. <![CDATA[-]]>
  3424. </testrslt>
  3425. </inpatlist>
  3426. <inpatlist>
  3427. <pid>2501112</pid>
  3428. <indd>20110628</indd>
  3429. <cretno>3</cretno>
  3430. <seqno>1</seqno>
  3431. <instcd>053</instcd>
  3432. <hngnm>김@억</hngnm>
  3433. <fsexamflag>R</fsexamflag>
  3434. <sa>M/49</sa>
  3435. <hd>310</hd>
  3436. <ad>20110628</ad>
  3437. <pod/>
  3438. <refer/>
  3439. <replstat/>
  3440. <orddeptcd>2010300000</orddeptcd>
  3441. <deptnm>소화기내과</deptnm>
  3442. <subdeptnm/>
  3443. <medispclnm>탁@영</medispclnm>
  3444. <medispclid>97123</medispclid>
  3445. <atdoctnm>최@주</atdoctnm>
  3446. <diagnm/>
  3447. <opnm/>
  3448. <cnst>N</cnst>
  3449. <dayregular>N</dayregular>
  3450. <lastprcpdd>20111103</lastprcpdd>
  3451. <cpyn>N</cpyn>
  3452. <insukind>11</insukind>
  3453. <transfer/>
  3454. <dschnoti>-</dschnoti>
  3455. <preworkup>N</preworkup>
  3456. <hsctpreday>-</hsctpreday>
  3457. <trsntype/>
  3458. <hsctday>0</hsctday>
  3459. <postcxday>0</postcxday>
  3460. <memo/>
  3461. <roomcd>6779</roomcd>
  3462. <rrgstno1>620601</rrgstno1>
  3463. <conctypenm/>
  3464. <antidrugflag>N</antidrugflag>
  3465. <ordtype>I</ordtype>
  3466. <spclflag>N</spclflag>
  3467. <color/>
  3468. <repltype/>
  3469. <coopteamcd>-</coopteamcd>
  3470. <specordtype/>
  3471. <wardnm>607병동</wardnm>
  3472. <opcnfmdd/>
  3473. <diagnmopnm/>
  3474. <had>309</had>
  3475. <adx>외래</adx>
  3476. <testrslt>
  3477. <![CDATA[-]]>
  3478. </testrslt>
  3479. </inpatlist>
  3480. <inpatlist>
  3481. <pid>3006744</pid>
  3482. <indd>20111104</indd>
  3483. <cretno>1</cretno>
  3484. <seqno>1</seqno>
  3485. <instcd>053</instcd>
  3486. <hngnm>약시연I_1</hngnm>
  3487. <fsexamflag>F</fsexamflag>
  3488. <sa>F/52</sa>
  3489. <hd>181</hd>
  3490. <ad>20111104</ad>
  3491. <pod/>
  3492. <refer/>
  3493. <replstat/>
  3494. <orddeptcd>2010300000</orddeptcd>
  3495. <deptnm>소화기내과</deptnm>
  3496. <subdeptnm/>
  3497. <medispclnm>강명수</medispclnm>
  3498. <medispclid>80497</medispclid>
  3499. <atdoctnm>-</atdoctnm>
  3500. <diagnm>
  3501. <![CDATA[MUO]]>
  3502. </diagnm>
  3503. <opnm/>
  3504. <cnst>N</cnst>
  3505. <dayregular>N</dayregular>
  3506. <lastprcpdd>20120116</lastprcpdd>
  3507. <cpyn>N</cpyn>
  3508. <insukind>11</insukind>
  3509. <transfer/>
  3510. <dschnoti>-</dschnoti>
  3511. <preworkup>N</preworkup>
  3512. <hsctpreday>-</hsctpreday>
  3513. <trsntype/>
  3514. <hsctday>0</hsctday>
  3515. <postcxday>0</postcxday>
  3516. <memo/>
  3517. <roomcd>6780</roomcd>
  3518. <rrgstno1>590505</rrgstno1>
  3519. <conctypenm/>
  3520. <antidrugflag>N</antidrugflag>
  3521. <ordtype>I</ordtype>
  3522. <spclflag>N</spclflag>
  3523. <color/>
  3524. <repltype/>
  3525. <coopteamcd>-</coopteamcd>
  3526. <specordtype/>
  3527. <wardnm>607병동</wardnm>
  3528. <opcnfmdd/>
  3529. <diagnmopnm>
  3530. <![CDATA[▷MUO
  3531. ]]>
  3532. </diagnmopnm>
  3533. <had>180</had>
  3534. <adx/>
  3535. <testrslt>
  3536. <![CDATA[-]]>
  3537. </testrslt>
  3538. </inpatlist>
  3539. <inpatlist>
  3540. <pid>3006736</pid>
  3541. <indd>20111103</indd>
  3542. <cretno>1</cretno>
  3543. <seqno>1</seqno>
  3544. <instcd>053</instcd>
  3545. <hngnm>이정선</hngnm>
  3546. <fsexamflag>D</fsexamflag>
  3547. <sa>F/132</sa>
  3548. <hd>182</hd>
  3549. <ad>20111103</ad>
  3550. <pod/>
  3551. <refer/>
  3552. <replstat/>
  3553. <orddeptcd>2010300000</orddeptcd>
  3554. <deptnm>소화기내과</deptnm>
  3555. <subdeptnm/>
  3556. <medispclnm>김@국</medispclnm>
  3557. <medispclid>93409</medispclid>
  3558. <atdoctnm>-</atdoctnm>
  3559. <diagnm>
  3560. <![CDATA[Acute gastric ulcer]]>
  3561. </diagnm>
  3562. <opnm/>
  3563. <cnst>N</cnst>
  3564. <dayregular>N</dayregular>
  3565. <lastprcpdd>20111104</lastprcpdd>
  3566. <cpyn>N</cpyn>
  3567. <insukind>11</insukind>
  3568. <transfer/>
  3569. <dschnoti>-</dschnoti>
  3570. <preworkup>N</preworkup>
  3571. <hsctpreday>-</hsctpreday>
  3572. <trsntype/>
  3573. <hsctday>0</hsctday>
  3574. <postcxday>0</postcxday>
  3575. <memo/>
  3576. <roomcd>6780</roomcd>
  3577. <rrgstno1>790524</rrgstno1>
  3578. <conctypenm/>
  3579. <antidrugflag>N</antidrugflag>
  3580. <ordtype>I</ordtype>
  3581. <spclflag>N</spclflag>
  3582. <color/>
  3583. <repltype/>
  3584. <coopteamcd>-</coopteamcd>
  3585. <specordtype/>
  3586. <wardnm>607병동</wardnm>
  3587. <opcnfmdd/>
  3588. <diagnmopnm>
  3589. <![CDATA[▷Acute gastric ulcer
  3590. ]]>
  3591. </diagnmopnm>
  3592. <had>181</had>
  3593. <adx/>
  3594. <testrslt>
  3595. <![CDATA[-]]>
  3596. </testrslt>
  3597. </inpatlist>
  3598. <inpatlist>
  3599. <pid>3006739</pid>
  3600. <indd>20111103</indd>
  3601. <cretno>1</cretno>
  3602. <seqno>1</seqno>
  3603. <instcd>053</instcd>
  3604. <hngnm>이승일</hngnm>
  3605. <fsexamflag>F</fsexamflag>
  3606. <sa>M/29</sa>
  3607. <hd>182</hd>
  3608. <ad>20111103</ad>
  3609. <pod/>
  3610. <refer/>
  3611. <replstat/>
  3612. <orddeptcd>2010300000</orddeptcd>
  3613. <deptnm>소화기내과</deptnm>
  3614. <subdeptnm/>
  3615. <medispclnm>김@</medispclnm>
  3616. <medispclid>03074</medispclid>
  3617. <atdoctnm>-</atdoctnm>
  3618. <diagnm>
  3619. <![CDATA[Liver transplantation]]>
  3620. </diagnm>
  3621. <opnm/>
  3622. <cnst>N</cnst>
  3623. <dayregular>N</dayregular>
  3624. <lastprcpdd>20111103</lastprcpdd>
  3625. <cpyn>N</cpyn>
  3626. <insukind>11</insukind>
  3627. <transfer/>
  3628. <dschnoti>-</dschnoti>
  3629. <preworkup>N</preworkup>
  3630. <hsctpreday>-</hsctpreday>
  3631. <trsntype/>
  3632. <hsctday>0</hsctday>
  3633. <postcxday>0</postcxday>
  3634. <memo/>
  3635. <roomcd>6780</roomcd>
  3636. <rrgstno1>820816</rrgstno1>
  3637. <conctypenm/>
  3638. <antidrugflag>N</antidrugflag>
  3639. <ordtype>I</ordtype>
  3640. <spclflag>N</spclflag>
  3641. <color/>
  3642. <repltype/>
  3643. <coopteamcd>-</coopteamcd>
  3644. <specordtype/>
  3645. <wardnm>607병동</wardnm>
  3646. <opcnfmdd/>
  3647. <diagnmopnm>
  3648. <![CDATA[▷Liver transplantation
  3649. ]]>
  3650. </diagnmopnm>
  3651. <had>181</had>
  3652. <adx/>
  3653. <testrslt>
  3654. <![CDATA[-]]>
  3655. </testrslt>
  3656. </inpatlist>
  3657. <inpatlist>
  3658. <pid>3006695</pid>
  3659. <indd>20111027</indd>
  3660. <cretno>1</cretno>
  3661. <seqno>1</seqno>
  3662. <instcd>053</instcd>
  3663. <hngnm>이승기</hngnm>
  3664. <fsexamflag>F</fsexamflag>
  3665. <sa>M/26</sa>
  3666. <hd>189</hd>
  3667. <ad>20111027</ad>
  3668. <pod/>
  3669. <refer/>
  3670. <replstat/>
  3671. <orddeptcd>2010300000</orddeptcd>
  3672. <deptnm>소화기내과</deptnm>
  3673. <subdeptnm/>
  3674. <medispclnm>김@</medispclnm>
  3675. <medispclid>03074</medispclid>
  3676. <atdoctnm>-</atdoctnm>
  3677. <diagnm>
  3678. <![CDATA[Acute duodenal ulcer]]>
  3679. </diagnm>
  3680. <opnm/>
  3681. <cnst>N</cnst>
  3682. <dayregular>N</dayregular>
  3683. <lastprcpdd>20111103</lastprcpdd>
  3684. <cpyn>N</cpyn>
  3685. <insukind>11</insukind>
  3686. <transfer/>
  3687. <dschnoti>-</dschnoti>
  3688. <preworkup>N</preworkup>
  3689. <hsctpreday>-</hsctpreday>
  3690. <trsntype/>
  3691. <hsctday>0</hsctday>
  3692. <postcxday>0</postcxday>
  3693. <memo/>
  3694. <roomcd>6780</roomcd>
  3695. <rrgstno1>851111</rrgstno1>
  3696. <conctypenm/>
  3697. <antidrugflag>N</antidrugflag>
  3698. <ordtype>I</ordtype>
  3699. <spclflag>N</spclflag>
  3700. <color/>
  3701. <repltype/>
  3702. <coopteamcd>-</coopteamcd>
  3703. <specordtype/>
  3704. <wardnm>607병동</wardnm>
  3705. <opcnfmdd/>
  3706. <diagnmopnm>
  3707. <![CDATA[▷Acute duodenal ulcer
  3708. ]]>
  3709. </diagnmopnm>
  3710. <had>188</had>
  3711. <adx/>
  3712. <testrslt>
  3713. <![CDATA[-]]>
  3714. </testrslt>
  3715. </inpatlist>
  3716. <inpatlist>
  3717. <pid>3006703</pid>
  3718. <indd>20111027</indd>
  3719. <cretno>1</cretno>
  3720. <seqno>1</seqno>
  3721. <instcd>053</instcd>
  3722. <hngnm>장동건</hngnm>
  3723. <fsexamflag>S</fsexamflag>
  3724. <sa>M/109</sa>
  3725. <hd>189</hd>
  3726. <ad>20111027</ad>
  3727. <pod/>
  3728. <refer/>
  3729. <replstat/>
  3730. <orddeptcd>2010300000</orddeptcd>
  3731. <deptnm>소화기내과</deptnm>
  3732. <subdeptnm/>
  3733. <medispclnm>김@국</medispclnm>
  3734. <medispclid>93409</medispclid>
  3735. <atdoctnm>-</atdoctnm>
  3736. <diagnm>
  3737. <![CDATA[AGE]]>
  3738. </diagnm>
  3739. <opnm/>
  3740. <cnst>N</cnst>
  3741. <dayregular>N</dayregular>
  3742. <lastprcpdd>20111027</lastprcpdd>
  3743. <cpyn>N</cpyn>
  3744. <insukind>11</insukind>
  3745. <transfer/>
  3746. <dschnoti>-</dschnoti>
  3747. <preworkup>N</preworkup>
  3748. <hsctpreday>-</hsctpreday>
  3749. <trsntype/>
  3750. <hsctday>0</hsctday>
  3751. <postcxday>0</postcxday>
  3752. <memo/>
  3753. <roomcd>6780</roomcd>
  3754. <rrgstno1>030202</rrgstno1>
  3755. <conctypenm/>
  3756. <antidrugflag>N</antidrugflag>
  3757. <ordtype>I</ordtype>
  3758. <spclflag>N</spclflag>
  3759. <color/>
  3760. <repltype/>
  3761. <coopteamcd>-</coopteamcd>
  3762. <specordtype/>
  3763. <wardnm>607병동</wardnm>
  3764. <opcnfmdd/>
  3765. <diagnmopnm>
  3766. <![CDATA[▷AGE
  3767. ]]>
  3768. </diagnmopnm>
  3769. <had>188</had>
  3770. <adx/>
  3771. <testrslt>
  3772. <![CDATA[-]]>
  3773. </testrslt>
  3774. </inpatlist>
  3775. <inpatlist>
  3776. <pid>3006702</pid>
  3777. <indd>20111027</indd>
  3778. <cretno>1</cretno>
  3779. <seqno>1</seqno>
  3780. <instcd>053</instcd>
  3781. <hngnm>원빈</hngnm>
  3782. <fsexamflag>F</fsexamflag>
  3783. <sa>M/31</sa>
  3784. <hd>189</hd>
  3785. <ad>20111027</ad>
  3786. <pod/>
  3787. <refer/>
  3788. <replstat/>
  3789. <orddeptcd>2010300000</orddeptcd>
  3790. <deptnm>소화기내과</deptnm>
  3791. <subdeptnm/>
  3792. <medispclnm>김@국</medispclnm>
  3793. <medispclid>93409</medispclid>
  3794. <atdoctnm>-</atdoctnm>
  3795. <diagnm/>
  3796. <opnm/>
  3797. <cnst>N</cnst>
  3798. <dayregular>N</dayregular>
  3799. <lastprcpdd/>
  3800. <cpyn>N</cpyn>
  3801. <insukind>11</insukind>
  3802. <transfer/>
  3803. <dschnoti>-</dschnoti>
  3804. <preworkup>N</preworkup>
  3805. <hsctpreday>-</hsctpreday>
  3806. <trsntype/>
  3807. <hsctday>0</hsctday>
  3808. <postcxday>0</postcxday>
  3809. <memo/>
  3810. <roomcd>6780</roomcd>
  3811. <rrgstno1>810101</rrgstno1>
  3812. <conctypenm/>
  3813. <antidrugflag>N</antidrugflag>
  3814. <ordtype>I</ordtype>
  3815. <spclflag>N</spclflag>
  3816. <color/>
  3817. <repltype/>
  3818. <coopteamcd>-</coopteamcd>
  3819. <specordtype/>
  3820. <wardnm>607병동</wardnm>
  3821. <opcnfmdd/>
  3822. <diagnmopnm/>
  3823. <had>188</had>
  3824. <adx/>
  3825. <testrslt>
  3826. <![CDATA[-]]>
  3827. </testrslt>
  3828. </inpatlist>
  3829. <inpatlist>
  3830. <pid>3006704</pid>
  3831. <indd>20111027</indd>
  3832. <cretno>1</cretno>
  3833. <seqno>1</seqno>
  3834. <instcd>053</instcd>
  3835. <hngnm>귀요미</hngnm>
  3836. <fsexamflag>D</fsexamflag>
  3837. <sa>F/27</sa>
  3838. <hd>189</hd>
  3839. <ad>20111027</ad>
  3840. <pod/>
  3841. <refer/>
  3842. <replstat/>
  3843. <orddeptcd>2010300000</orddeptcd>
  3844. <deptnm>소화기내과</deptnm>
  3845. <subdeptnm/>
  3846. <medispclnm>김@국</medispclnm>
  3847. <medispclid>93409</medispclid>
  3848. <atdoctnm>-</atdoctnm>
  3849. <diagnm>
  3850. <![CDATA[Acute mastitis]]>
  3851. </diagnm>
  3852. <opnm/>
  3853. <cnst>N</cnst>
  3854. <dayregular>N</dayregular>
  3855. <lastprcpdd>20111103</lastprcpdd>
  3856. <cpyn>N</cpyn>
  3857. <insukind>11</insukind>
  3858. <transfer/>
  3859. <dschnoti>-</dschnoti>
  3860. <preworkup>N</preworkup>
  3861. <hsctpreday>-</hsctpreday>
  3862. <trsntype/>
  3863. <hsctday>0</hsctday>
  3864. <postcxday>0</postcxday>
  3865. <memo/>
  3866. <roomcd>6780</roomcd>
  3867. <rrgstno1>840823</rrgstno1>
  3868. <conctypenm/>
  3869. <antidrugflag>N</antidrugflag>
  3870. <ordtype>I</ordtype>
  3871. <spclflag>N</spclflag>
  3872. <color/>
  3873. <repltype/>
  3874. <coopteamcd>-</coopteamcd>
  3875. <specordtype/>
  3876. <wardnm>607병동</wardnm>
  3877. <opcnfmdd/>
  3878. <diagnmopnm>
  3879. <![CDATA[▷Acute mastitis
  3880. ]]>
  3881. </diagnmopnm>
  3882. <had>188</had>
  3883. <adx>외래</adx>
  3884. <testrslt>
  3885. <![CDATA[-]]>
  3886. </testrslt>
  3887. </inpatlist>
  3888. <inpatlist>
  3889. <pid>3006700</pid>
  3890. <indd>20111027</indd>
  3891. <cretno>1</cretno>
  3892. <seqno>1</seqno>
  3893. <instcd>053</instcd>
  3894. <hngnm>현빈</hngnm>
  3895. <fsexamflag>F</fsexamflag>
  3896. <sa>M/32</sa>
  3897. <hd>189</hd>
  3898. <ad>20111027</ad>
  3899. <pod/>
  3900. <refer/>
  3901. <replstat/>
  3902. <orddeptcd>2010300000</orddeptcd>
  3903. <deptnm>소화기내과</deptnm>
  3904. <subdeptnm/>
  3905. <medispclnm>김@국</medispclnm>
  3906. <medispclid>93409</medispclid>
  3907. <atdoctnm>-</atdoctnm>
  3908. <diagnm>
  3909. <![CDATA[Chronic atrophic gastritis]]>
  3910. </diagnm>
  3911. <opnm/>
  3912. <cnst>N</cnst>
  3913. <dayregular>N</dayregular>
  3914. <lastprcpdd>20111027</lastprcpdd>
  3915. <cpyn>N</cpyn>
  3916. <insukind>11</insukind>
  3917. <transfer/>
  3918. <dschnoti>-</dschnoti>
  3919. <preworkup>N</preworkup>
  3920. <hsctpreday>-</hsctpreday>
  3921. <trsntype/>
  3922. <hsctday>0</hsctday>
  3923. <postcxday>0</postcxday>
  3924. <memo/>
  3925. <roomcd>6780</roomcd>
  3926. <rrgstno1>791202</rrgstno1>
  3927. <conctypenm/>
  3928. <antidrugflag>N</antidrugflag>
  3929. <ordtype>I</ordtype>
  3930. <spclflag>N</spclflag>
  3931. <color/>
  3932. <repltype/>
  3933. <coopteamcd>-</coopteamcd>
  3934. <specordtype/>
  3935. <wardnm>607병동</wardnm>
  3936. <opcnfmdd/>
  3937. <diagnmopnm>
  3938. <![CDATA[▷Chronic atrophic gastritis
  3939. ]]>
  3940. </diagnmopnm>
  3941. <had>188</had>
  3942. <adx/>
  3943. <testrslt>
  3944. <![CDATA[-]]>
  3945. </testrslt>
  3946. </inpatlist>
  3947. <inpatlist>
  3948. <pid>3006705</pid>
  3949. <indd>20111027</indd>
  3950. <cretno>1</cretno>
  3951. <seqno>1</seqno>
  3952. <instcd>053</instcd>
  3953. <hngnm>나가수</hngnm>
  3954. <fsexamflag>D</fsexamflag>
  3955. <sa>M/21</sa>
  3956. <hd>189</hd>
  3957. <ad>20111027</ad>
  3958. <pod/>
  3959. <refer/>
  3960. <replstat/>
  3961. <orddeptcd>2010300000</orddeptcd>
  3962. <deptnm>소화기내과</deptnm>
  3963. <subdeptnm/>
  3964. <medispclnm>김@국</medispclnm>
  3965. <medispclid>93409</medispclid>
  3966. <atdoctnm>-</atdoctnm>
  3967. <diagnm>
  3968. <![CDATA[Advanced gastric cancer]]>
  3969. </diagnm>
  3970. <opnm/>
  3971. <cnst>N</cnst>
  3972. <dayregular>N</dayregular>
  3973. <lastprcpdd>20111103</lastprcpdd>
  3974. <cpyn>N</cpyn>
  3975. <insukind>11</insukind>
  3976. <transfer/>
  3977. <dschnoti>-</dschnoti>
  3978. <preworkup>N</preworkup>
  3979. <hsctpreday>-</hsctpreday>
  3980. <trsntype/>
  3981. <hsctday>0</hsctday>
  3982. <postcxday>0</postcxday>
  3983. <memo/>
  3984. <roomcd>6780</roomcd>
  3985. <rrgstno1>901211</rrgstno1>
  3986. <conctypenm/>
  3987. <antidrugflag>N</antidrugflag>
  3988. <ordtype>I</ordtype>
  3989. <spclflag>N</spclflag>
  3990. <color/>
  3991. <repltype/>
  3992. <coopteamcd>-</coopteamcd>
  3993. <specordtype/>
  3994. <wardnm>607병동</wardnm>
  3995. <opcnfmdd/>
  3996. <diagnmopnm>
  3997. <![CDATA[▷Advanced gastric cancer
  3998. ]]>
  3999. </diagnmopnm>
  4000. <had>188</had>
  4001. <adx>외래</adx>
  4002. <testrslt>
  4003. <![CDATA[-]]>
  4004. </testrslt>
  4005. </inpatlist>
  4006. <inpatlist>
  4007. <pid>3006532</pid>
  4008. <indd>20110920</indd>
  4009. <cretno>1</cretno>
  4010. <seqno>2</seqno>
  4011. <instcd>053</instcd>
  4012. <hngnm>DEIT테스트1</hngnm>
  4013. <fsexamflag>F</fsexamflag>
  4014. <sa>M/24</sa>
  4015. <hd>226</hd>
  4016. <ad>20110920</ad>
  4017. <pod/>
  4018. <refer/>
  4019. <replstat/>
  4020. <orddeptcd>2010300000</orddeptcd>
  4021. <deptnm>소화기내과</deptnm>
  4022. <subdeptnm/>
  4023. <medispclnm>권@오</medispclnm>
  4024. <medispclid>93437</medispclid>
  4025. <atdoctnm>-</atdoctnm>
  4026. <diagnm>
  4027. <![CDATA[HIV]]>
  4028. </diagnm>
  4029. <opnm/>
  4030. <cnst>N</cnst>
  4031. <dayregular>N</dayregular>
  4032. <lastprcpdd>20111103</lastprcpdd>
  4033. <cpyn>N</cpyn>
  4034. <insukind>11</insukind>
  4035. <transfer/>
  4036. <dschnoti>-</dschnoti>
  4037. <preworkup>N</preworkup>
  4038. <hsctpreday>-</hsctpreday>
  4039. <trsntype/>
  4040. <hsctday>0</hsctday>
  4041. <postcxday>0</postcxday>
  4042. <memo/>
  4043. <roomcd>6780</roomcd>
  4044. <rrgstno1>880101</rrgstno1>
  4045. <conctypenm/>
  4046. <antidrugflag>N</antidrugflag>
  4047. <ordtype>I</ordtype>
  4048. <spclflag>N</spclflag>
  4049. <color/>
  4050. <repltype/>
  4051. <coopteamcd>-</coopteamcd>
  4052. <specordtype/>
  4053. <wardnm>607병동</wardnm>
  4054. <opcnfmdd/>
  4055. <diagnmopnm>
  4056. <![CDATA[▷HIV
  4057. ]]>
  4058. </diagnmopnm>
  4059. <had>225</had>
  4060. <adx/>
  4061. <testrslt>
  4062. <![CDATA[-]]>
  4063. </testrslt>
  4064. </inpatlist>
  4065. <inpatlist>
  4066. <pid>1321430</pid>
  4067. <indd>20110624</indd>
  4068. <cretno>1</cretno>
  4069. <seqno>5</seqno>
  4070. <instcd>053</instcd>
  4071. <hngnm>김@</hngnm>
  4072. <fsexamflag>S</fsexamflag>
  4073. <sa>M/75</sa>
  4074. <hd>312</hd>
  4075. <ad>20110624</ad>
  4076. <pod/>
  4077. <refer/>
  4078. <replstat/>
  4079. <orddeptcd>2010300000</orddeptcd>
  4080. <deptnm>소화기내과</deptnm>
  4081. <subdeptnm/>
  4082. <medispclnm>박@영</medispclnm>
  4083. <medispclid>99063</medispclid>
  4084. <atdoctnm>황@엽</atdoctnm>
  4085. <diagnm/>
  4086. <opnm/>
  4087. <cnst>N</cnst>
  4088. <dayregular>N</dayregular>
  4089. <lastprcpdd>20111103</lastprcpdd>
  4090. <cpyn>N</cpyn>
  4091. <insukind>11</insukind>
  4092. <transfer/>
  4093. <dschnoti>-</dschnoti>
  4094. <preworkup>N</preworkup>
  4095. <hsctpreday>-</hsctpreday>
  4096. <trsntype/>
  4097. <hsctday>0</hsctday>
  4098. <postcxday>0</postcxday>
  4099. <memo/>
  4100. <roomcd>6780</roomcd>
  4101. <rrgstno1>361210</rrgstno1>
  4102. <conctypenm/>
  4103. <antidrugflag>N</antidrugflag>
  4104. <ordtype>I</ordtype>
  4105. <spclflag>N</spclflag>
  4106. <color/>
  4107. <repltype/>
  4108. <coopteamcd>-</coopteamcd>
  4109. <specordtype/>
  4110. <wardnm>607병동</wardnm>
  4111. <opcnfmdd/>
  4112. <diagnmopnm/>
  4113. <had>313</had>
  4114. <adx/>
  4115. <testrslt>
  4116. <![CDATA[-]]>
  4117. </testrslt>
  4118. </inpatlist>
  4119. <inpatlist>
  4120. <pid>2314567</pid>
  4121. <indd>20110623</indd>
  4122. <cretno>1</cretno>
  4123. <seqno>5</seqno>
  4124. <instcd>053</instcd>
  4125. <hngnm>강@석</hngnm>
  4126. <fsexamflag>R</fsexamflag>
  4127. <sa>M/52</sa>
  4128. <hd>314</hd>
  4129. <ad>20110623</ad>
  4130. <pod/>
  4131. <refer/>
  4132. <replstat/>
  4133. <orddeptcd>2010300000</orddeptcd>
  4134. <deptnm>소화기내과</deptnm>
  4135. <subdeptnm/>
  4136. <medispclnm>권@오</medispclnm>
  4137. <medispclid>93437</medispclid>
  4138. <atdoctnm>최@주</atdoctnm>
  4139. <diagnm/>
  4140. <opnm/>
  4141. <cnst>N</cnst>
  4142. <dayregular>N</dayregular>
  4143. <lastprcpdd>20111103</lastprcpdd>
  4144. <cpyn>N</cpyn>
  4145. <insukind>11</insukind>
  4146. <transfer/>
  4147. <dschnoti>-</dschnoti>
  4148. <preworkup>N</preworkup>
  4149. <hsctpreday>-</hsctpreday>
  4150. <trsntype/>
  4151. <hsctday>0</hsctday>
  4152. <postcxday>0</postcxday>
  4153. <memo/>
  4154. <roomcd>6780</roomcd>
  4155. <rrgstno1>590513</rrgstno1>
  4156. <conctypenm/>
  4157. <antidrugflag>N</antidrugflag>
  4158. <ordtype>I</ordtype>
  4159. <spclflag>N</spclflag>
  4160. <color/>
  4161. <repltype/>
  4162. <coopteamcd>-</coopteamcd>
  4163. <specordtype/>
  4164. <wardnm>607병동</wardnm>
  4165. <opcnfmdd/>
  4166. <diagnmopnm/>
  4167. <had>314</had>
  4168. <adx/>
  4169. <testrslt>
  4170. <![CDATA[-]]>
  4171. </testrslt>
  4172. </inpatlist>
  4173. <inpatlist>
  4174. <pid>1628091</pid>
  4175. <indd>20110619</indd>
  4176. <cretno>1</cretno>
  4177. <seqno>4</seqno>
  4178. <instcd>053</instcd>
  4179. <hngnm>김@수</hngnm>
  4180. <fsexamflag>R</fsexamflag>
  4181. <sa>M/53</sa>
  4182. <hd>318</hd>
  4183. <ad>20110619</ad>
  4184. <pod/>
  4185. <refer/>
  4186. <replstat/>
  4187. <orddeptcd>2010300000</orddeptcd>
  4188. <deptnm>소화기내과</deptnm>
  4189. <subdeptnm/>
  4190. <medispclnm>권@오</medispclnm>
  4191. <medispclid>93437</medispclid>
  4192. <atdoctnm>최@주</atdoctnm>
  4193. <diagnm/>
  4194. <opnm/>
  4195. <cnst>N</cnst>
  4196. <dayregular>N</dayregular>
  4197. <lastprcpdd>20111103</lastprcpdd>
  4198. <cpyn>N</cpyn>
  4199. <insukind>21</insukind>
  4200. <transfer/>
  4201. <dschnoti>-</dschnoti>
  4202. <preworkup>N</preworkup>
  4203. <hsctpreday>-</hsctpreday>
  4204. <trsntype/>
  4205. <hsctday>0</hsctday>
  4206. <postcxday>0</postcxday>
  4207. <memo/>
  4208. <roomcd>6780</roomcd>
  4209. <rrgstno1>581023</rrgstno1>
  4210. <conctypenm/>
  4211. <antidrugflag>N</antidrugflag>
  4212. <ordtype>I</ordtype>
  4213. <spclflag>N</spclflag>
  4214. <color/>
  4215. <repltype/>
  4216. <coopteamcd>-</coopteamcd>
  4217. <specordtype/>
  4218. <wardnm>607병동</wardnm>
  4219. <opcnfmdd/>
  4220. <diagnmopnm/>
  4221. <had>318</had>
  4222. <adx>외래</adx>
  4223. <testrslt>
  4224. <![CDATA[-]]>
  4225. </testrslt>
  4226. </inpatlist>
  4227. <inpatlist>
  4228. <pid>3006675</pid>
  4229. <indd>20111026</indd>
  4230. <cretno>1</cretno>
  4231. <seqno>1</seqno>
  4232. <instcd>053</instcd>
  4233. <hngnm>김수철</hngnm>
  4234. <fsexamflag>D</fsexamflag>
  4235. <sa>F/134</sa>
  4236. <hd>190</hd>
  4237. <ad>20111026</ad>
  4238. <pod/>
  4239. <refer/>
  4240. <replstat/>
  4241. <orddeptcd>2010300000</orddeptcd>
  4242. <deptnm>소화기내과</deptnm>
  4243. <subdeptnm/>
  4244. <medispclnm>김@</medispclnm>
  4245. <medispclid>03074</medispclid>
  4246. <atdoctnm>-</atdoctnm>
  4247. <diagnm>
  4248. <![CDATA[AGC]]>
  4249. </diagnm>
  4250. <opnm>
  4251. <![CDATA[위절개술]]>
  4252. </opnm>
  4253. <cnst>N</cnst>
  4254. <dayregular>N</dayregular>
  4255. <lastprcpdd>20111104</lastprcpdd>
  4256. <cpyn>Y</cpyn>
  4257. <insukind>11</insukind>
  4258. <transfer/>
  4259. <dschnoti>-</dschnoti>
  4260. <preworkup>N</preworkup>
  4261. <hsctpreday>-</hsctpreday>
  4262. <trsntype/>
  4263. <hsctday>0</hsctday>
  4264. <postcxday>0</postcxday>
  4265. <memo/>
  4266. <roomcd>6876</roomcd>
  4267. <rrgstno1>780208</rrgstno1>
  4268. <conctypenm/>
  4269. <antidrugflag>N</antidrugflag>
  4270. <ordtype>I</ordtype>
  4271. <spclflag>N</spclflag>
  4272. <color/>
  4273. <repltype/>
  4274. <coopteamcd>-</coopteamcd>
  4275. <specordtype/>
  4276. <wardnm>608병동</wardnm>
  4277. <opcnfmdd/>
  4278. <diagnmopnm>
  4279. <![CDATA[▷AGC
  4280. [OP]위절개술]]>
  4281. </diagnmopnm>
  4282. <had>189</had>
  4283. <adx>외래</adx>
  4284. <testrslt>
  4285. <![CDATA[-]]>
  4286. </testrslt>
  4287. </inpatlist>
  4288. <inpatlist>
  4289. <pid>3006682</pid>
  4290. <indd>20111026</indd>
  4291. <cretno>1</cretno>
  4292. <seqno>1</seqno>
  4293. <instcd>053</instcd>
  4294. <hngnm>간호실습00</hngnm>
  4295. <fsexamflag>D</fsexamflag>
  4296. <sa>F/44</sa>
  4297. <hd>190</hd>
  4298. <ad>20111026</ad>
  4299. <pod/>
  4300. <refer/>
  4301. <replstat/>
  4302. <orddeptcd>2010300000</orddeptcd>
  4303. <deptnm>소화기내과</deptnm>
  4304. <subdeptnm/>
  4305. <medispclnm>김@</medispclnm>
  4306. <medispclid>03074</medispclid>
  4307. <atdoctnm>-</atdoctnm>
  4308. <diagnm>
  4309. <![CDATA[Commissure of lip cancer]]>
  4310. </diagnm>
  4311. <opnm/>
  4312. <cnst>N</cnst>
  4313. <dayregular>N</dayregular>
  4314. <lastprcpdd>20111103</lastprcpdd>
  4315. <cpyn>N</cpyn>
  4316. <insukind>11</insukind>
  4317. <transfer/>
  4318. <dschnoti>-</dschnoti>
  4319. <preworkup>N</preworkup>
  4320. <hsctpreday>-</hsctpreday>
  4321. <trsntype/>
  4322. <hsctday>0</hsctday>
  4323. <postcxday>0</postcxday>
  4324. <memo/>
  4325. <roomcd>6876</roomcd>
  4326. <rrgstno1>670521</rrgstno1>
  4327. <conctypenm/>
  4328. <antidrugflag>N</antidrugflag>
  4329. <ordtype>I</ordtype>
  4330. <spclflag>Y</spclflag>
  4331. <color/>
  4332. <repltype/>
  4333. <coopteamcd>-</coopteamcd>
  4334. <specordtype/>
  4335. <wardnm>608병동</wardnm>
  4336. <opcnfmdd/>
  4337. <diagnmopnm>
  4338. <![CDATA[▷Commissure of lip cancer
  4339. ]]>
  4340. </diagnmopnm>
  4341. <had>189</had>
  4342. <adx>외래</adx>
  4343. <testrslt>
  4344. <![CDATA[-]]>
  4345. </testrslt>
  4346. </inpatlist>
  4347. <inpatlist>
  4348. <pid>3006680</pid>
  4349. <indd>20111026</indd>
  4350. <cretno>1</cretno>
  4351. <seqno>1</seqno>
  4352. <instcd>053</instcd>
  4353. <hngnm>간호실습00</hngnm>
  4354. <fsexamflag>F</fsexamflag>
  4355. <sa>F/32</sa>
  4356. <hd>190</hd>
  4357. <ad>20111026</ad>
  4358. <pod/>
  4359. <refer/>
  4360. <replstat/>
  4361. <orddeptcd>2010300000</orddeptcd>
  4362. <deptnm>소화기내과</deptnm>
  4363. <subdeptnm/>
  4364. <medispclnm>김@</medispclnm>
  4365. <medispclid>03074</medispclid>
  4366. <atdoctnm>-</atdoctnm>
  4367. <diagnm>
  4368. <![CDATA[Commissure of lip cancer]]>
  4369. </diagnm>
  4370. <opnm/>
  4371. <cnst>N</cnst>
  4372. <dayregular>N</dayregular>
  4373. <lastprcpdd>20120426</lastprcpdd>
  4374. <cpyn>N</cpyn>
  4375. <insukind>11</insukind>
  4376. <transfer/>
  4377. <dschnoti>-</dschnoti>
  4378. <preworkup>N</preworkup>
  4379. <hsctpreday>-</hsctpreday>
  4380. <trsntype/>
  4381. <hsctday>0</hsctday>
  4382. <postcxday>0</postcxday>
  4383. <memo/>
  4384. <roomcd>6876</roomcd>
  4385. <rrgstno1>800202</rrgstno1>
  4386. <conctypenm/>
  4387. <antidrugflag>N</antidrugflag>
  4388. <ordtype>I</ordtype>
  4389. <spclflag>Y</spclflag>
  4390. <color/>
  4391. <repltype/>
  4392. <coopteamcd>-</coopteamcd>
  4393. <specordtype/>
  4394. <wardnm>608병동</wardnm>
  4395. <opcnfmdd/>
  4396. <diagnmopnm>
  4397. <![CDATA[▷Commissure of lip cancer
  4398. ]]>
  4399. </diagnmopnm>
  4400. <had>189</had>
  4401. <adx/>
  4402. <testrslt>
  4403. <![CDATA[-]]>
  4404. </testrslt>
  4405. </inpatlist>
  4406. <inpatlist>
  4407. <pid>3006674</pid>
  4408. <indd>20111026</indd>
  4409. <cretno>1</cretno>
  4410. <seqno>1</seqno>
  4411. <instcd>053</instcd>
  4412. <hngnm>홍길동</hngnm>
  4413. <fsexamflag>D</fsexamflag>
  4414. <sa>F/24</sa>
  4415. <hd>190</hd>
  4416. <ad>20111026</ad>
  4417. <pod/>
  4418. <refer/>
  4419. <replstat/>
  4420. <orddeptcd>2010300000</orddeptcd>
  4421. <deptnm>소화기내과</deptnm>
  4422. <subdeptnm/>
  4423. <medispclnm>김@</medispclnm>
  4424. <medispclid>03074</medispclid>
  4425. <atdoctnm>-</atdoctnm>
  4426. <diagnm>
  4427. <![CDATA[Upper lip ca]]>
  4428. </diagnm>
  4429. <opnm/>
  4430. <cnst>N</cnst>
  4431. <dayregular>N</dayregular>
  4432. <lastprcpdd>20111027</lastprcpdd>
  4433. <cpyn>N</cpyn>
  4434. <insukind>11</insukind>
  4435. <transfer/>
  4436. <dschnoti>퇴원예고</dschnoti>
  4437. <preworkup>N</preworkup>
  4438. <hsctpreday>-</hsctpreday>
  4439. <trsntype/>
  4440. <hsctday>0</hsctday>
  4441. <postcxday>0</postcxday>
  4442. <memo/>
  4443. <roomcd>6876</roomcd>
  4444. <rrgstno1>880101</rrgstno1>
  4445. <conctypenm/>
  4446. <antidrugflag>N</antidrugflag>
  4447. <ordtype>I</ordtype>
  4448. <spclflag>N</spclflag>
  4449. <color/>
  4450. <repltype/>
  4451. <coopteamcd>-</coopteamcd>
  4452. <specordtype/>
  4453. <wardnm>608병동</wardnm>
  4454. <opcnfmdd/>
  4455. <diagnmopnm>
  4456. <![CDATA[▷Upper lip ca
  4457. ]]>
  4458. </diagnmopnm>
  4459. <had>189</had>
  4460. <adx>외래</adx>
  4461. <testrslt>
  4462. <![CDATA[-]]>
  4463. </testrslt>
  4464. </inpatlist>
  4465. <inpatlist>
  4466. <pid>3006673</pid>
  4467. <indd>20111026</indd>
  4468. <cretno>1</cretno>
  4469. <seqno>1</seqno>
  4470. <instcd>053</instcd>
  4471. <hngnm>유진낭</hngnm>
  4472. <fsexamflag>D</fsexamflag>
  4473. <sa>F/138</sa>
  4474. <hd>190</hd>
  4475. <ad>20111026</ad>
  4476. <pod/>
  4477. <refer/>
  4478. <replstat/>
  4479. <orddeptcd>2010300000</orddeptcd>
  4480. <deptnm>소화기내과</deptnm>
  4481. <subdeptnm/>
  4482. <medispclnm>김@국</medispclnm>
  4483. <medispclid>93409</medispclid>
  4484. <atdoctnm>-</atdoctnm>
  4485. <diagnm>
  4486. <![CDATA[Acute gastritis]]>
  4487. </diagnm>
  4488. <opnm/>
  4489. <cnst>N</cnst>
  4490. <dayregular>N</dayregular>
  4491. <lastprcpdd>20111104</lastprcpdd>
  4492. <cpyn>N</cpyn>
  4493. <insukind>11</insukind>
  4494. <transfer/>
  4495. <dschnoti>-</dschnoti>
  4496. <preworkup>N</preworkup>
  4497. <hsctpreday>-</hsctpreday>
  4498. <trsntype/>
  4499. <hsctday>0</hsctday>
  4500. <postcxday>0</postcxday>
  4501. <memo/>
  4502. <roomcd>6876</roomcd>
  4503. <rrgstno1>731004</rrgstno1>
  4504. <conctypenm/>
  4505. <antidrugflag>N</antidrugflag>
  4506. <ordtype>I</ordtype>
  4507. <spclflag>N</spclflag>
  4508. <color/>
  4509. <repltype/>
  4510. <coopteamcd>-</coopteamcd>
  4511. <specordtype/>
  4512. <wardnm>608병동</wardnm>
  4513. <opcnfmdd/>
  4514. <diagnmopnm>
  4515. <![CDATA[▷Acute gastritis
  4516. ]]>
  4517. </diagnmopnm>
  4518. <had>189</had>
  4519. <adx/>
  4520. <testrslt>
  4521. <![CDATA[-]]>
  4522. </testrslt>
  4523. </inpatlist>
  4524. <inpatlist>
  4525. <pid>3006677</pid>
  4526. <indd>20111026</indd>
  4527. <cretno>1</cretno>
  4528. <seqno>1</seqno>
  4529. <instcd>053</instcd>
  4530. <hngnm>이환직</hngnm>
  4531. <fsexamflag>F</fsexamflag>
  4532. <sa>M/32</sa>
  4533. <hd>190</hd>
  4534. <ad>20111026</ad>
  4535. <pod/>
  4536. <refer/>
  4537. <replstat/>
  4538. <orddeptcd>2010300000</orddeptcd>
  4539. <deptnm>소화기내과</deptnm>
  4540. <subdeptnm/>
  4541. <medispclnm>김@</medispclnm>
  4542. <medispclid>03074</medispclid>
  4543. <atdoctnm>-</atdoctnm>
  4544. <diagnm>
  4545. <![CDATA[Gastric ulcer]]>
  4546. </diagnm>
  4547. <opnm/>
  4548. <cnst>N</cnst>
  4549. <dayregular>N</dayregular>
  4550. <lastprcpdd>20111027</lastprcpdd>
  4551. <cpyn>N</cpyn>
  4552. <insukind>11</insukind>
  4553. <transfer/>
  4554. <dschnoti>퇴원예고</dschnoti>
  4555. <preworkup>N</preworkup>
  4556. <hsctpreday>-</hsctpreday>
  4557. <trsntype/>
  4558. <hsctday>0</hsctday>
  4559. <postcxday>0</postcxday>
  4560. <memo/>
  4561. <roomcd>6876</roomcd>
  4562. <rrgstno1>791107</rrgstno1>
  4563. <conctypenm/>
  4564. <antidrugflag>N</antidrugflag>
  4565. <ordtype>I</ordtype>
  4566. <spclflag>Y</spclflag>
  4567. <color/>
  4568. <repltype/>
  4569. <coopteamcd>-</coopteamcd>
  4570. <specordtype/>
  4571. <wardnm>608병동</wardnm>
  4572. <opcnfmdd/>
  4573. <diagnmopnm>
  4574. <![CDATA[▷Gastric ulcer
  4575. ]]>
  4576. </diagnmopnm>
  4577. <had>189</had>
  4578. <adx/>
  4579. <testrslt>
  4580. <![CDATA[-]]>
  4581. </testrslt>
  4582. </inpatlist>
  4583. <inpatlist>
  4584. <pid>3006699</pid>
  4585. <indd>20111027</indd>
  4586. <cretno>1</cretno>
  4587. <seqno>1</seqno>
  4588. <instcd>053</instcd>
  4589. <hngnm>뿡뿡이</hngnm>
  4590. <fsexamflag>D</fsexamflag>
  4591. <sa>M/2</sa>
  4592. <hd>189</hd>
  4593. <ad>20111027</ad>
  4594. <pod/>
  4595. <refer/>
  4596. <replstat/>
  4597. <orddeptcd>2010300000</orddeptcd>
  4598. <deptnm>소화기내과</deptnm>
  4599. <subdeptnm/>
  4600. <medispclnm>김@</medispclnm>
  4601. <medispclid>03074</medispclid>
  4602. <atdoctnm>-</atdoctnm>
  4603. <diagnm>
  4604. <![CDATA[Loculated pleural effusion]]>
  4605. </diagnm>
  4606. <opnm/>
  4607. <cnst>N</cnst>
  4608. <dayregular>N</dayregular>
  4609. <lastprcpdd>20120320</lastprcpdd>
  4610. <cpyn>N</cpyn>
  4611. <insukind>11</insukind>
  4612. <transfer/>
  4613. <dschnoti>-</dschnoti>
  4614. <preworkup>N</preworkup>
  4615. <hsctpreday>-</hsctpreday>
  4616. <trsntype/>
  4617. <hsctday>0</hsctday>
  4618. <postcxday>0</postcxday>
  4619. <memo/>
  4620. <roomcd>6880</roomcd>
  4621. <rrgstno1>100203</rrgstno1>
  4622. <conctypenm/>
  4623. <antidrugflag>N</antidrugflag>
  4624. <ordtype>I</ordtype>
  4625. <spclflag>N</spclflag>
  4626. <color/>
  4627. <repltype/>
  4628. <coopteamcd>-</coopteamcd>
  4629. <specordtype/>
  4630. <wardnm>608병동</wardnm>
  4631. <opcnfmdd/>
  4632. <diagnmopnm>
  4633. <![CDATA[▷Loculated pleural effusion
  4634. ]]>
  4635. </diagnmopnm>
  4636. <had>188</had>
  4637. <adx>외래</adx>
  4638. <testrslt>
  4639. <![CDATA[-]]>
  4640. </testrslt>
  4641. </inpatlist>
  4642. <inpatlist>
  4643. <pid>3006686</pid>
  4644. <indd>20111026</indd>
  4645. <cretno>1</cretno>
  4646. <seqno>1</seqno>
  4647. <instcd>053</instcd>
  4648. <hngnm>박인선</hngnm>
  4649. <fsexamflag>F</fsexamflag>
  4650. <sa>F/32</sa>
  4651. <hd>190</hd>
  4652. <ad>20111026</ad>
  4653. <pod/>
  4654. <refer/>
  4655. <replstat/>
  4656. <orddeptcd>2010300000</orddeptcd>
  4657. <deptnm>소화기내과</deptnm>
  4658. <subdeptnm/>
  4659. <medispclnm>김@</medispclnm>
  4660. <medispclid>03074</medispclid>
  4661. <atdoctnm>-</atdoctnm>
  4662. <diagnm>
  4663. <![CDATA[Achlorhydric anemia]]>
  4664. </diagnm>
  4665. <opnm/>
  4666. <cnst>N</cnst>
  4667. <dayregular>N</dayregular>
  4668. <lastprcpdd>20111027</lastprcpdd>
  4669. <cpyn>N</cpyn>
  4670. <insukind>11</insukind>
  4671. <transfer/>
  4672. <dschnoti>퇴원예고</dschnoti>
  4673. <preworkup>N</preworkup>
  4674. <hsctpreday>-</hsctpreday>
  4675. <trsntype/>
  4676. <hsctday>0</hsctday>
  4677. <postcxday>0</postcxday>
  4678. <memo>Y</memo>
  4679. <roomcd>6881</roomcd>
  4680. <rrgstno1>800213</rrgstno1>
  4681. <conctypenm/>
  4682. <antidrugflag>N</antidrugflag>
  4683. <ordtype>I</ordtype>
  4684. <spclflag>Y</spclflag>
  4685. <color/>
  4686. <repltype/>
  4687. <coopteamcd>-</coopteamcd>
  4688. <specordtype/>
  4689. <wardnm>608병동</wardnm>
  4690. <opcnfmdd/>
  4691. <diagnmopnm>
  4692. <![CDATA[▷Achlorhydric anemia
  4693. ]]>
  4694. </diagnmopnm>
  4695. <had>189</had>
  4696. <adx/>
  4697. <testrslt>
  4698. <![CDATA[-]]>
  4699. </testrslt>
  4700. </inpatlist>
  4701. <inpatlist>
  4702. <pid>1778238</pid>
  4703. <indd>20110613</indd>
  4704. <cretno>1</cretno>
  4705. <seqno>5</seqno>
  4706. <instcd>053</instcd>
  4707. <hngnm>김@희</hngnm>
  4708. <fsexamflag>R</fsexamflag>
  4709. <sa>F/94</sa>
  4710. <hd>324</hd>
  4711. <ad>20110613</ad>
  4712. <pod/>
  4713. <refer/>
  4714. <replstat/>
  4715. <orddeptcd>2010300000</orddeptcd>
  4716. <deptnm>소화기내과</deptnm>
  4717. <subdeptnm/>
  4718. <medispclnm>김@국</medispclnm>
  4719. <medispclid>93409</medispclid>
  4720. <atdoctnm>최@주</atdoctnm>
  4721. <diagnm>
  4722. <![CDATA[Anti-common-cold drugs causing adverse effects in therapeutic use]]>
  4723. </diagnm>
  4724. <opnm/>
  4725. <cnst>N</cnst>
  4726. <dayregular>N</dayregular>
  4727. <lastprcpdd>20120320</lastprcpdd>
  4728. <cpyn>N</cpyn>
  4729. <insukind>11</insukind>
  4730. <transfer/>
  4731. <dschnoti>-</dschnoti>
  4732. <preworkup>N</preworkup>
  4733. <hsctpreday>-</hsctpreday>
  4734. <trsntype/>
  4735. <hsctday>0</hsctday>
  4736. <postcxday>0</postcxday>
  4737. <memo/>
  4738. <roomcd>6882</roomcd>
  4739. <rrgstno1>180211</rrgstno1>
  4740. <conctypenm/>
  4741. <antidrugflag>N</antidrugflag>
  4742. <ordtype>I</ordtype>
  4743. <spclflag>N</spclflag>
  4744. <color/>
  4745. <repltype/>
  4746. <coopteamcd>-</coopteamcd>
  4747. <specordtype/>
  4748. <wardnm>608병동</wardnm>
  4749. <opcnfmdd/>
  4750. <diagnmopnm>
  4751. <![CDATA[▷Anti-common-cold drugs causing adverse effects in therapeutic use
  4752. ]]>
  4753. </diagnmopnm>
  4754. <had>324</had>
  4755. <adx/>
  4756. <testrslt>
  4757. <![CDATA[-]]>
  4758. </testrslt>
  4759. </inpatlist>
  4760. <inpatlist>
  4761. <pid>3006684</pid>
  4762. <indd>20111027</indd>
  4763. <cretno>1</cretno>
  4764. <seqno>1</seqno>
  4765. <instcd>053</instcd>
  4766. <hngnm>송중기</hngnm>
  4767. <fsexamflag>D</fsexamflag>
  4768. <sa>M/32</sa>
  4769. <hd>189</hd>
  4770. <ad>20111027</ad>
  4771. <pod/>
  4772. <refer/>
  4773. <replstat/>
  4774. <orddeptcd>2010300000</orddeptcd>
  4775. <deptnm>소화기내과</deptnm>
  4776. <subdeptnm/>
  4777. <medispclnm>김@</medispclnm>
  4778. <medispclid>03074</medispclid>
  4779. <atdoctnm>-</atdoctnm>
  4780. <diagnm>
  4781. <![CDATA[Acute gastritis]]>
  4782. </diagnm>
  4783. <opnm/>
  4784. <cnst>N</cnst>
  4785. <dayregular>N</dayregular>
  4786. <lastprcpdd>20111027</lastprcpdd>
  4787. <cpyn>N</cpyn>
  4788. <insukind>11</insukind>
  4789. <transfer/>
  4790. <dschnoti>퇴원통보</dschnoti>
  4791. <preworkup>N</preworkup>
  4792. <hsctpreday>-</hsctpreday>
  4793. <trsntype/>
  4794. <hsctday>0</hsctday>
  4795. <postcxday>0</postcxday>
  4796. <memo/>
  4797. <roomcd>6883</roomcd>
  4798. <rrgstno1>800213</rrgstno1>
  4799. <conctypenm/>
  4800. <antidrugflag>N</antidrugflag>
  4801. <ordtype>I</ordtype>
  4802. <spclflag>N</spclflag>
  4803. <color/>
  4804. <repltype/>
  4805. <coopteamcd>-</coopteamcd>
  4806. <specordtype/>
  4807. <wardnm>608병동</wardnm>
  4808. <opcnfmdd/>
  4809. <diagnmopnm>
  4810. <![CDATA[▷Acute gastritis
  4811. ]]>
  4812. </diagnmopnm>
  4813. <had>188</had>
  4814. <adx/>
  4815. <testrslt>
  4816. <![CDATA[-]]>
  4817. </testrslt>
  4818. </inpatlist>
  4819. <inpatlist>
  4820. <pid>273</pid>
  4821. <indd>20111026</indd>
  4822. <cretno>1</cretno>
  4823. <seqno>1</seqno>
  4824. <instcd>053</instcd>
  4825. <hngnm>이@례</hngnm>
  4826. <fsexamflag>F</fsexamflag>
  4827. <sa>F/50</sa>
  4828. <hd>190</hd>
  4829. <ad>20111026</ad>
  4830. <pod/>
  4831. <refer/>
  4832. <replstat/>
  4833. <orddeptcd>2010300000</orddeptcd>
  4834. <deptnm>소화기내과</deptnm>
  4835. <subdeptnm/>
  4836. <medispclnm>김@</medispclnm>
  4837. <medispclid>03074</medispclid>
  4838. <atdoctnm>-</atdoctnm>
  4839. <diagnm>
  4840. <![CDATA[Advanced esophageal cancer]]>
  4841. </diagnm>
  4842. <opnm/>
  4843. <cnst>N</cnst>
  4844. <dayregular>N</dayregular>
  4845. <lastprcpdd>20111103</lastprcpdd>
  4846. <cpyn>N</cpyn>
  4847. <insukind>51</insukind>
  4848. <transfer/>
  4849. <dschnoti>-</dschnoti>
  4850. <preworkup>N</preworkup>
  4851. <hsctpreday>-</hsctpreday>
  4852. <trsntype/>
  4853. <hsctday>0</hsctday>
  4854. <postcxday>0</postcxday>
  4855. <memo/>
  4856. <roomcd>6883</roomcd>
  4857. <rrgstno1>611203</rrgstno1>
  4858. <conctypenm/>
  4859. <antidrugflag>N</antidrugflag>
  4860. <ordtype>I</ordtype>
  4861. <spclflag>N</spclflag>
  4862. <color/>
  4863. <repltype/>
  4864. <coopteamcd>-</coopteamcd>
  4865. <specordtype/>
  4866. <wardnm>608병동</wardnm>
  4867. <opcnfmdd/>
  4868. <diagnmopnm>
  4869. <![CDATA[▷Advanced esophageal cancer
  4870. ]]>
  4871. </diagnmopnm>
  4872. <had>189</had>
  4873. <adx/>
  4874. <testrslt>
  4875. <![CDATA[-]]>
  4876. </testrslt>
  4877. </inpatlist>
  4878. <inpatlist>
  4879. <pid>3006740</pid>
  4880. <indd>20111103</indd>
  4881. <cretno>1</cretno>
  4882. <seqno>1</seqno>
  4883. <instcd>053</instcd>
  4884. <hngnm>다니엘</hngnm>
  4885. <fsexamflag>D</fsexamflag>
  4886. <sa>M/32</sa>
  4887. <hd>182</hd>
  4888. <ad>20111103</ad>
  4889. <pod/>
  4890. <refer/>
  4891. <replstat/>
  4892. <orddeptcd>2010300000</orddeptcd>
  4893. <deptnm>소화기내과</deptnm>
  4894. <subdeptnm/>
  4895. <medispclnm>김@</medispclnm>
  4896. <medispclid>03074</medispclid>
  4897. <atdoctnm>-</atdoctnm>
  4898. <diagnm>
  4899. <![CDATA[COPD]]>
  4900. </diagnm>
  4901. <opnm/>
  4902. <cnst>N</cnst>
  4903. <dayregular>N</dayregular>
  4904. <lastprcpdd>20111104</lastprcpdd>
  4905. <cpyn>N</cpyn>
  4906. <insukind>11</insukind>
  4907. <transfer/>
  4908. <dschnoti>-</dschnoti>
  4909. <preworkup>N</preworkup>
  4910. <hsctpreday>-</hsctpreday>
  4911. <trsntype/>
  4912. <hsctday>0</hsctday>
  4913. <postcxday>0</postcxday>
  4914. <memo/>
  4915. <roomcd>6885</roomcd>
  4916. <rrgstno1>800213</rrgstno1>
  4917. <conctypenm/>
  4918. <antidrugflag>N</antidrugflag>
  4919. <ordtype>I</ordtype>
  4920. <spclflag>N</spclflag>
  4921. <color/>
  4922. <repltype/>
  4923. <coopteamcd>-</coopteamcd>
  4924. <specordtype/>
  4925. <wardnm>608병동</wardnm>
  4926. <opcnfmdd/>
  4927. <diagnmopnm>
  4928. <![CDATA[▷COPD
  4929. ]]>
  4930. </diagnmopnm>
  4931. <had>181</had>
  4932. <adx>외래</adx>
  4933. <testrslt>
  4934. <![CDATA[-]]>
  4935. </testrslt>
  4936. </inpatlist>
  4937. <inpatlist>
  4938. <pid>3006678</pid>
  4939. <indd>20111026</indd>
  4940. <cretno>1</cretno>
  4941. <seqno>1</seqno>
  4942. <instcd>053</instcd>
  4943. <hngnm>김미영</hngnm>
  4944. <fsexamflag>F</fsexamflag>
  4945. <sa>F/40</sa>
  4946. <hd>190</hd>
  4947. <ad>20111026</ad>
  4948. <pod/>
  4949. <refer/>
  4950. <replstat/>
  4951. <orddeptcd>2010300000</orddeptcd>
  4952. <deptnm>소화기내과</deptnm>
  4953. <subdeptnm/>
  4954. <medispclnm>김@</medispclnm>
  4955. <medispclid>03074</medispclid>
  4956. <atdoctnm>-</atdoctnm>
  4957. <diagnm>
  4958. <![CDATA[Angina NOS]]>
  4959. </diagnm>
  4960. <opnm/>
  4961. <cnst>N</cnst>
  4962. <dayregular>N</dayregular>
  4963. <lastprcpdd>20111026</lastprcpdd>
  4964. <cpyn>N</cpyn>
  4965. <insukind>11</insukind>
  4966. <transfer/>
  4967. <dschnoti>-</dschnoti>
  4968. <preworkup>N</preworkup>
  4969. <hsctpreday>-</hsctpreday>
  4970. <trsntype/>
  4971. <hsctday>0</hsctday>
  4972. <postcxday>0</postcxday>
  4973. <memo/>
  4974. <roomcd>6886</roomcd>
  4975. <rrgstno1>720320</rrgstno1>
  4976. <conctypenm/>
  4977. <antidrugflag>N</antidrugflag>
  4978. <ordtype>I</ordtype>
  4979. <spclflag>Y</spclflag>
  4980. <color/>
  4981. <repltype/>
  4982. <coopteamcd>-</coopteamcd>
  4983. <specordtype/>
  4984. <wardnm>608병동</wardnm>
  4985. <opcnfmdd/>
  4986. <diagnmopnm>
  4987. <![CDATA[▷Angina NOS
  4988. ]]>
  4989. </diagnmopnm>
  4990. <had>189</had>
  4991. <adx/>
  4992. <testrslt>
  4993. <![CDATA[-]]>
  4994. </testrslt>
  4995. </inpatlist>
  4996. <inpatlist>
  4997. <pid>3006679</pid>
  4998. <indd>20111026</indd>
  4999. <cretno>1</cretno>
  5000. <seqno>1</seqno>
  5001. <instcd>053</instcd>
  5002. <hngnm>테스트</hngnm>
  5003. <fsexamflag>D</fsexamflag>
  5004. <sa>F/52</sa>
  5005. <hd>190</hd>
  5006. <ad>20111026</ad>
  5007. <pod/>
  5008. <refer/>
  5009. <replstat/>
  5010. <orddeptcd>2010300000</orddeptcd>
  5011. <deptnm>소화기내과</deptnm>
  5012. <subdeptnm/>
  5013. <medispclnm>김@</medispclnm>
  5014. <medispclid>03074</medispclid>
  5015. <atdoctnm>-</atdoctnm>
  5016. <diagnm>
  5017. <![CDATA[Acute delta-(super)infection of hepatitis B carrier]]>
  5018. </diagnm>
  5019. <opnm/>
  5020. <cnst>N</cnst>
  5021. <dayregular>N</dayregular>
  5022. <lastprcpdd>20111027</lastprcpdd>
  5023. <cpyn>N</cpyn>
  5024. <insukind>11</insukind>
  5025. <transfer/>
  5026. <dschnoti>-</dschnoti>
  5027. <preworkup>N</preworkup>
  5028. <hsctpreday>-</hsctpreday>
  5029. <trsntype/>
  5030. <hsctday>0</hsctday>
  5031. <postcxday>0</postcxday>
  5032. <memo/>
  5033. <roomcd>6887</roomcd>
  5034. <rrgstno1>591206</rrgstno1>
  5035. <conctypenm/>
  5036. <antidrugflag>N</antidrugflag>
  5037. <ordtype>I</ordtype>
  5038. <spclflag>N</spclflag>
  5039. <color/>
  5040. <repltype/>
  5041. <coopteamcd>-</coopteamcd>
  5042. <specordtype/>
  5043. <wardnm>608병동</wardnm>
  5044. <opcnfmdd/>
  5045. <diagnmopnm>
  5046. <![CDATA[▷Acute delta-(super)infection of hepatitis B carrier
  5047. ]]>
  5048. </diagnmopnm>
  5049. <had>189</had>
  5050. <adx>외래</adx>
  5051. <testrslt>
  5052. <![CDATA[-]]>
  5053. </testrslt>
  5054. </inpatlist>
  5055. <inpatlist>
  5056. <pid>3006676</pid>
  5057. <indd>20111026</indd>
  5058. <cretno>1</cretno>
  5059. <seqno>1</seqno>
  5060. <instcd>053</instcd>
  5061. <hngnm>강지욱</hngnm>
  5062. <fsexamflag>D</fsexamflag>
  5063. <sa>M/31</sa>
  5064. <hd>190</hd>
  5065. <ad>20111026</ad>
  5066. <pod/>
  5067. <refer/>
  5068. <replstat/>
  5069. <orddeptcd>2010300000</orddeptcd>
  5070. <deptnm>소화기내과</deptnm>
  5071. <subdeptnm/>
  5072. <medispclnm>김@</medispclnm>
  5073. <medispclid>03074</medispclid>
  5074. <atdoctnm>-</atdoctnm>
  5075. <diagnm>
  5076. <![CDATA[AGE]]>
  5077. </diagnm>
  5078. <opnm/>
  5079. <cnst>N</cnst>
  5080. <dayregular>N</dayregular>
  5081. <lastprcpdd>20111103</lastprcpdd>
  5082. <cpyn>N</cpyn>
  5083. <insukind>11</insukind>
  5084. <transfer/>
  5085. <dschnoti>-</dschnoti>
  5086. <preworkup>N</preworkup>
  5087. <hsctpreday>-</hsctpreday>
  5088. <trsntype/>
  5089. <hsctday>0</hsctday>
  5090. <postcxday>0</postcxday>
  5091. <memo/>
  5092. <roomcd>6888</roomcd>
  5093. <rrgstno1>801111</rrgstno1>
  5094. <conctypenm/>
  5095. <antidrugflag>N</antidrugflag>
  5096. <ordtype>I</ordtype>
  5097. <spclflag>Y</spclflag>
  5098. <color/>
  5099. <repltype/>
  5100. <coopteamcd>-</coopteamcd>
  5101. <specordtype/>
  5102. <wardnm>608병동</wardnm>
  5103. <opcnfmdd/>
  5104. <diagnmopnm>
  5105. <![CDATA[▷AGE
  5106. ]]>
  5107. </diagnmopnm>
  5108. <had>189</had>
  5109. <adx/>
  5110. <testrslt>
  5111. <![CDATA[-]]>
  5112. </testrslt>
  5113. </inpatlist>
  5114. <inpatlist>
  5115. <pid>3006696</pid>
  5116. <indd>20111027</indd>
  5117. <cretno>1</cretno>
  5118. <seqno>1</seqno>
  5119. <instcd>053</instcd>
  5120. <hngnm>나환자</hngnm>
  5121. <fsexamflag>D</fsexamflag>
  5122. <sa>F/28</sa>
  5123. <hd>189</hd>
  5124. <ad>20111027</ad>
  5125. <pod/>
  5126. <refer/>
  5127. <replstat/>
  5128. <orddeptcd>2010300000</orddeptcd>
  5129. <deptnm>소화기내과</deptnm>
  5130. <subdeptnm/>
  5131. <medispclnm>김@</medispclnm>
  5132. <medispclid>03074</medispclid>
  5133. <atdoctnm>-</atdoctnm>
  5134. <diagnm>
  5135. <![CDATA[Acute nasopharyngitis[common cold]]]>
  5136. </diagnm>
  5137. <opnm/>
  5138. <cnst>N</cnst>
  5139. <dayregular>N</dayregular>
  5140. <lastprcpdd>20120320</lastprcpdd>
  5141. <cpyn>N</cpyn>
  5142. <insukind>11</insukind>
  5143. <transfer/>
  5144. <dschnoti>-</dschnoti>
  5145. <preworkup>N</preworkup>
  5146. <hsctpreday>-</hsctpreday>
  5147. <trsntype/>
  5148. <hsctday>0</hsctday>
  5149. <postcxday>0</postcxday>
  5150. <memo/>
  5151. <roomcd>6889</roomcd>
  5152. <rrgstno1>840101</rrgstno1>
  5153. <conctypenm/>
  5154. <antidrugflag>N</antidrugflag>
  5155. <ordtype>I</ordtype>
  5156. <spclflag>N</spclflag>
  5157. <color/>
  5158. <repltype/>
  5159. <coopteamcd>-</coopteamcd>
  5160. <specordtype/>
  5161. <wardnm>608병동</wardnm>
  5162. <opcnfmdd/>
  5163. <diagnmopnm>
  5164. <![CDATA[▷Acute nasopharyngitis[common cold]
  5165. ]]>
  5166. </diagnmopnm>
  5167. <had>188</had>
  5168. <adx>외래</adx>
  5169. <testrslt>
  5170. <![CDATA[-]]>
  5171. </testrslt>
  5172. </inpatlist>
  5173. <inpatlist>
  5174. <pid>3006688</pid>
  5175. <indd>20111026</indd>
  5176. <cretno>1</cretno>
  5177. <seqno>1</seqno>
  5178. <instcd>053</instcd>
  5179. <hngnm>홍길동</hngnm>
  5180. <fsexamflag>F</fsexamflag>
  5181. <sa>F/54</sa>
  5182. <hd>190</hd>
  5183. <ad>20111026</ad>
  5184. <pod/>
  5185. <refer/>
  5186. <replstat/>
  5187. <orddeptcd>2010300000</orddeptcd>
  5188. <deptnm>소화기내과</deptnm>
  5189. <subdeptnm/>
  5190. <medispclnm>김@</medispclnm>
  5191. <medispclid>03074</medispclid>
  5192. <atdoctnm>-</atdoctnm>
  5193. <diagnm>
  5194. <![CDATA[Acute gastritis]]>
  5195. </diagnm>
  5196. <opnm/>
  5197. <cnst>N</cnst>
  5198. <dayregular>N</dayregular>
  5199. <lastprcpdd>20111103</lastprcpdd>
  5200. <cpyn>N</cpyn>
  5201. <insukind>11</insukind>
  5202. <transfer/>
  5203. <dschnoti>-</dschnoti>
  5204. <preworkup>N</preworkup>
  5205. <hsctpreday>-</hsctpreday>
  5206. <trsntype/>
  5207. <hsctday>0</hsctday>
  5208. <postcxday>0</postcxday>
  5209. <memo/>
  5210. <roomcd>6890</roomcd>
  5211. <rrgstno1>571231</rrgstno1>
  5212. <conctypenm/>
  5213. <antidrugflag>N</antidrugflag>
  5214. <ordtype>I</ordtype>
  5215. <spclflag>N</spclflag>
  5216. <color/>
  5217. <repltype/>
  5218. <coopteamcd>-</coopteamcd>
  5219. <specordtype/>
  5220. <wardnm>608병동</wardnm>
  5221. <opcnfmdd/>
  5222. <diagnmopnm>
  5223. <![CDATA[▷Acute gastritis
  5224. ]]>
  5225. </diagnmopnm>
  5226. <had>189</had>
  5227. <adx/>
  5228. <testrslt>
  5229. <![CDATA[-]]>
  5230. </testrslt>
  5231. </inpatlist>
  5232. <inpatlist>
  5233. <pid>3006671</pid>
  5234. <indd>20111026</indd>
  5235. <cretno>1</cretno>
  5236. <seqno>1</seqno>
  5237. <instcd>053</instcd>
  5238. <hngnm>김이쁜</hngnm>
  5239. <fsexamflag>D</fsexamflag>
  5240. <sa>F/40</sa>
  5241. <hd>190</hd>
  5242. <ad>20111026</ad>
  5243. <pod/>
  5244. <refer/>
  5245. <replstat/>
  5246. <orddeptcd>2010300000</orddeptcd>
  5247. <deptnm>소화기내과</deptnm>
  5248. <subdeptnm/>
  5249. <medispclnm>김@</medispclnm>
  5250. <medispclid>03074</medispclid>
  5251. <atdoctnm>-</atdoctnm>
  5252. <diagnm>
  5253. <![CDATA[Malignant neoplasm of commissure of lip]]>
  5254. </diagnm>
  5255. <opnm/>
  5256. <cnst>N</cnst>
  5257. <dayregular>N</dayregular>
  5258. <lastprcpdd>20111103</lastprcpdd>
  5259. <cpyn>Y</cpyn>
  5260. <insukind>11</insukind>
  5261. <transfer/>
  5262. <dschnoti>-</dschnoti>
  5263. <preworkup>N</preworkup>
  5264. <hsctpreday>-</hsctpreday>
  5265. <trsntype/>
  5266. <hsctday>0</hsctday>
  5267. <postcxday>0</postcxday>
  5268. <memo/>
  5269. <roomcd>6890</roomcd>
  5270. <rrgstno1>710924</rrgstno1>
  5271. <conctypenm/>
  5272. <antidrugflag>N</antidrugflag>
  5273. <ordtype>I</ordtype>
  5274. <spclflag>N</spclflag>
  5275. <color/>
  5276. <repltype/>
  5277. <coopteamcd>-</coopteamcd>
  5278. <specordtype/>
  5279. <wardnm>608병동</wardnm>
  5280. <opcnfmdd/>
  5281. <diagnmopnm>
  5282. <![CDATA[▷Malignant neoplasm of commissure of lip
  5283. ]]>
  5284. </diagnmopnm>
  5285. <had>189</had>
  5286. <adx/>
  5287. <testrslt>
  5288. <![CDATA[-]]>
  5289. </testrslt>
  5290. </inpatlist>
  5291. <inpatlist>
  5292. <pid>3006711</pid>
  5293. <indd>20111030</indd>
  5294. <cretno>1</cretno>
  5295. <seqno>1</seqno>
  5296. <instcd>053</instcd>
  5297. <hngnm>로미오</hngnm>
  5298. <fsexamflag>F</fsexamflag>
  5299. <sa>M/35</sa>
  5300. <hd>186</hd>
  5301. <ad>20111030</ad>
  5302. <pod/>
  5303. <refer/>
  5304. <replstat/>
  5305. <orddeptcd>2010300000</orddeptcd>
  5306. <deptnm>소화기내과</deptnm>
  5307. <subdeptnm/>
  5308. <medispclnm>김@</medispclnm>
  5309. <medispclid>03074</medispclid>
  5310. <atdoctnm>-</atdoctnm>
  5311. <diagnm>
  5312. <![CDATA[Acute nasopharyngitis[common cold]]]>
  5313. </diagnm>
  5314. <opnm/>
  5315. <cnst>N</cnst>
  5316. <dayregular>N</dayregular>
  5317. <lastprcpdd>20120320</lastprcpdd>
  5318. <cpyn>N</cpyn>
  5319. <insukind>11</insukind>
  5320. <transfer/>
  5321. <dschnoti>-</dschnoti>
  5322. <preworkup>N</preworkup>
  5323. <hsctpreday>-</hsctpreday>
  5324. <trsntype/>
  5325. <hsctday>0</hsctday>
  5326. <postcxday>0</postcxday>
  5327. <memo/>
  5328. <roomcd>6893</roomcd>
  5329. <rrgstno1>770101</rrgstno1>
  5330. <conctypenm/>
  5331. <antidrugflag>N</antidrugflag>
  5332. <ordtype>I</ordtype>
  5333. <spclflag>N</spclflag>
  5334. <color/>
  5335. <repltype/>
  5336. <coopteamcd>-</coopteamcd>
  5337. <specordtype/>
  5338. <wardnm>608병동</wardnm>
  5339. <opcnfmdd/>
  5340. <diagnmopnm>
  5341. <![CDATA[▷Acute nasopharyngitis[common cold]
  5342. ]]>
  5343. </diagnmopnm>
  5344. <had>185</had>
  5345. <adx/>
  5346. <testrslt>
  5347. <![CDATA[-]]>
  5348. </testrslt>
  5349. </inpatlist>
  5350. <inpatlist>
  5351. <pid>3006734</pid>
  5352. <indd>20111102</indd>
  5353. <cretno>1</cretno>
  5354. <seqno>1</seqno>
  5355. <instcd>053</instcd>
  5356. <hngnm>너환자</hngnm>
  5357. <fsexamflag>F</fsexamflag>
  5358. <sa>F/35</sa>
  5359. <hd>183</hd>
  5360. <ad>20111102</ad>
  5361. <pod/>
  5362. <refer/>
  5363. <replstat/>
  5364. <orddeptcd>2010300000</orddeptcd>
  5365. <deptnm>소화기내과</deptnm>
  5366. <subdeptnm/>
  5367. <medispclnm>김@</medispclnm>
  5368. <medispclid>03074</medispclid>
  5369. <atdoctnm>-</atdoctnm>
  5370. <diagnm/>
  5371. <opnm/>
  5372. <cnst>N</cnst>
  5373. <dayregular>N</dayregular>
  5374. <lastprcpdd/>
  5375. <cpyn>N</cpyn>
  5376. <insukind>11</insukind>
  5377. <transfer/>
  5378. <dschnoti>-</dschnoti>
  5379. <preworkup>N</preworkup>
  5380. <hsctpreday>-</hsctpreday>
  5381. <trsntype/>
  5382. <hsctday>0</hsctday>
  5383. <postcxday>0</postcxday>
  5384. <memo/>
  5385. <roomcd>6896</roomcd>
  5386. <rrgstno1>770101</rrgstno1>
  5387. <conctypenm/>
  5388. <antidrugflag>N</antidrugflag>
  5389. <ordtype>I</ordtype>
  5390. <spclflag>N</spclflag>
  5391. <color/>
  5392. <repltype/>
  5393. <coopteamcd>-</coopteamcd>
  5394. <specordtype/>
  5395. <wardnm>608병동</wardnm>
  5396. <opcnfmdd/>
  5397. <diagnmopnm/>
  5398. <had>182</had>
  5399. <adx/>
  5400. <testrslt>
  5401. <![CDATA[-]]>
  5402. </testrslt>
  5403. </inpatlist>
  5404. <inpatlist>
  5405. <pid>3006691</pid>
  5406. <indd>20111027</indd>
  5407. <cretno>1</cretno>
  5408. <seqno>2</seqno>
  5409. <instcd>053</instcd>
  5410. <hngnm>공유</hngnm>
  5411. <fsexamflag>D</fsexamflag>
  5412. <sa>M/27</sa>
  5413. <hd>189</hd>
  5414. <ad>20111027</ad>
  5415. <pod/>
  5416. <refer/>
  5417. <replstat/>
  5418. <orddeptcd>2010300000</orddeptcd>
  5419. <deptnm>소화기내과</deptnm>
  5420. <subdeptnm/>
  5421. <medispclnm>김@</medispclnm>
  5422. <medispclid>03074</medispclid>
  5423. <atdoctnm>-</atdoctnm>
  5424. <diagnm>
  5425. <![CDATA[Rectal ca]]>
  5426. </diagnm>
  5427. <opnm/>
  5428. <cnst>N</cnst>
  5429. <dayregular>N</dayregular>
  5430. <lastprcpdd>20111103</lastprcpdd>
  5431. <cpyn>N</cpyn>
  5432. <insukind>11</insukind>
  5433. <transfer/>
  5434. <dschnoti>-</dschnoti>
  5435. <preworkup>N</preworkup>
  5436. <hsctpreday>-</hsctpreday>
  5437. <trsntype/>
  5438. <hsctday>0</hsctday>
  5439. <postcxday>0</postcxday>
  5440. <memo/>
  5441. <roomcd>6908</roomcd>
  5442. <rrgstno1>850111</rrgstno1>
  5443. <conctypenm/>
  5444. <antidrugflag>N</antidrugflag>
  5445. <ordtype>I</ordtype>
  5446. <spclflag>N</spclflag>
  5447. <color/>
  5448. <repltype/>
  5449. <coopteamcd>-</coopteamcd>
  5450. <specordtype/>
  5451. <wardnm>609병동</wardnm>
  5452. <opcnfmdd/>
  5453. <diagnmopnm>
  5454. <![CDATA[▷Rectal ca
  5455. ]]>
  5456. </diagnmopnm>
  5457. <had>188</had>
  5458. <adx>외래</adx>
  5459. <testrslt>
  5460. <![CDATA[-]]>
  5461. </testrslt>
  5462. </inpatlist>
  5463. <inpatlist>
  5464. <pid>1729836</pid>
  5465. <indd>20110608</indd>
  5466. <cretno>1</cretno>
  5467. <seqno>1</seqno>
  5468. <instcd>053</instcd>
  5469. <hngnm>김@환</hngnm>
  5470. <fsexamflag>R</fsexamflag>
  5471. <sa>M/52</sa>
  5472. <hd>330</hd>
  5473. <ad>20110608</ad>
  5474. <pod/>
  5475. <refer/>
  5476. <replstat/>
  5477. <orddeptcd>2010300000</orddeptcd>
  5478. <deptnm>소화기내과</deptnm>
  5479. <subdeptnm/>
  5480. <medispclnm>박@영</medispclnm>
  5481. <medispclid>99063</medispclid>
  5482. <atdoctnm>황@엽</atdoctnm>
  5483. <diagnm/>
  5484. <opnm/>
  5485. <cnst>N</cnst>
  5486. <dayregular>N</dayregular>
  5487. <lastprcpdd>20111103</lastprcpdd>
  5488. <cpyn>N</cpyn>
  5489. <insukind>11</insukind>
  5490. <transfer/>
  5491. <dschnoti>-</dschnoti>
  5492. <preworkup>N</preworkup>
  5493. <hsctpreday>-</hsctpreday>
  5494. <trsntype/>
  5495. <hsctday>0</hsctday>
  5496. <postcxday>0</postcxday>
  5497. <memo/>
  5498. <roomcd>7822</roomcd>
  5499. <rrgstno1>600201</rrgstno1>
  5500. <conctypenm/>
  5501. <antidrugflag>N</antidrugflag>
  5502. <ordtype>I</ordtype>
  5503. <spclflag>N</spclflag>
  5504. <color/>
  5505. <repltype/>
  5506. <coopteamcd>-</coopteamcd>
  5507. <specordtype/>
  5508. <wardnm>708병동(내과계)</wardnm>
  5509. <opcnfmdd/>
  5510. <diagnmopnm/>
  5511. <had>329</had>
  5512. <adx/>
  5513. <testrslt>
  5514. <![CDATA[-]]>
  5515. </testrslt>
  5516. </inpatlist>
  5517. <inpatlist>
  5518. <pid>3006778</pid>
  5519. <indd>20111108</indd>
  5520. <cretno>1</cretno>
  5521. <seqno>1</seqno>
  5522. <instcd>053</instcd>
  5523. <hngnm>김천안</hngnm>
  5524. <fsexamflag>F</fsexamflag>
  5525. <sa>F/46</sa>
  5526. <hd>177</hd>
  5527. <ad>20111108</ad>
  5528. <pod/>
  5529. <refer/>
  5530. <replstat/>
  5531. <orddeptcd>2010300000</orddeptcd>
  5532. <deptnm>소화기내과</deptnm>
  5533. <subdeptnm/>
  5534. <medispclnm>김홍수</medispclnm>
  5535. <medispclid>28243</medispclid>
  5536. <atdoctnm>-</atdoctnm>
  5537. <diagnm>
  5538. <![CDATA[ABO isoimmunization of newborn]]>
  5539. </diagnm>
  5540. <opnm/>
  5541. <cnst>N</cnst>
  5542. <dayregular>N</dayregular>
  5543. <lastprcpdd>20120409</lastprcpdd>
  5544. <cpyn>N</cpyn>
  5545. <insukind>11</insukind>
  5546. <transfer/>
  5547. <dschnoti>-</dschnoti>
  5548. <preworkup>N</preworkup>
  5549. <hsctpreday>-</hsctpreday>
  5550. <trsntype/>
  5551. <hsctday>0</hsctday>
  5552. <postcxday>0</postcxday>
  5553. <memo/>
  5554. <roomcd>7831</roomcd>
  5555. <rrgstno1>660125</rrgstno1>
  5556. <conctypenm/>
  5557. <antidrugflag>N</antidrugflag>
  5558. <ordtype>I</ordtype>
  5559. <spclflag>N</spclflag>
  5560. <color/>
  5561. <repltype/>
  5562. <coopteamcd>-</coopteamcd>
  5563. <specordtype/>
  5564. <wardnm>708병동(내과계)</wardnm>
  5565. <opcnfmdd/>
  5566. <diagnmopnm>
  5567. <![CDATA[▷ABO isoimmunization of newborn
  5568. ]]>
  5569. </diagnmopnm>
  5570. <had>176</had>
  5571. <adx/>
  5572. <testrslt>
  5573. <![CDATA[-]]>
  5574. </testrslt>
  5575. </inpatlist>
  5576. <inpatlist>
  5577. <pid>3006712</pid>
  5578. <indd>20111030</indd>
  5579. <cretno>1</cretno>
  5580. <seqno>1</seqno>
  5581. <instcd>053</instcd>
  5582. <hngnm>나병원</hngnm>
  5583. <fsexamflag>D</fsexamflag>
  5584. <sa>M/35</sa>
  5585. <hd>186</hd>
  5586. <ad>20111030</ad>
  5587. <pod/>
  5588. <refer/>
  5589. <replstat/>
  5590. <orddeptcd>2010300000</orddeptcd>
  5591. <deptnm>소화기내과</deptnm>
  5592. <subdeptnm/>
  5593. <medispclnm>김@</medispclnm>
  5594. <medispclid>03074</medispclid>
  5595. <atdoctnm>-</atdoctnm>
  5596. <diagnm>
  5597. <![CDATA[Acute appendicitis, other and unspecified]]>
  5598. </diagnm>
  5599. <opnm/>
  5600. <cnst>N</cnst>
  5601. <dayregular>N</dayregular>
  5602. <lastprcpdd>20120320</lastprcpdd>
  5603. <cpyn>N</cpyn>
  5604. <insukind>11</insukind>
  5605. <transfer/>
  5606. <dschnoti>-</dschnoti>
  5607. <preworkup>N</preworkup>
  5608. <hsctpreday>-</hsctpreday>
  5609. <trsntype/>
  5610. <hsctday>0</hsctday>
  5611. <postcxday>0</postcxday>
  5612. <memo/>
  5613. <roomcd>7923</roomcd>
  5614. <rrgstno1>770101</rrgstno1>
  5615. <conctypenm/>
  5616. <antidrugflag>N</antidrugflag>
  5617. <ordtype>I</ordtype>
  5618. <spclflag>N</spclflag>
  5619. <color/>
  5620. <repltype/>
  5621. <coopteamcd>-</coopteamcd>
  5622. <specordtype/>
  5623. <wardnm>709병동(외과계)</wardnm>
  5624. <opcnfmdd/>
  5625. <diagnmopnm>
  5626. <![CDATA[▷Acute appendicitis, other and unspecified
  5627. ]]>
  5628. </diagnmopnm>
  5629. <had>185</had>
  5630. <adx/>
  5631. <testrslt>
  5632. <![CDATA[-]]>
  5633. </testrslt>
  5634. </inpatlist>
  5635. <inpatlist>
  5636. <pid>3006670</pid>
  5637. <indd>20111026</indd>
  5638. <cretno>1</cretno>
  5639. <seqno>2</seqno>
  5640. <instcd>053</instcd>
  5641. <hngnm>이연숙</hngnm>
  5642. <fsexamflag>F</fsexamflag>
  5643. <sa>F/40</sa>
  5644. <hd>190</hd>
  5645. <ad>20111026</ad>
  5646. <pod/>
  5647. <refer/>
  5648. <replstat/>
  5649. <orddeptcd>2010300000</orddeptcd>
  5650. <deptnm>소화기내과</deptnm>
  5651. <subdeptnm/>
  5652. <medispclnm>김@</medispclnm>
  5653. <medispclid>03074</medispclid>
  5654. <atdoctnm>-</atdoctnm>
  5655. <diagnm>
  5656. <![CDATA[Arthritis, rheumatic, subacute]]>
  5657. </diagnm>
  5658. <opnm/>
  5659. <cnst>N</cnst>
  5660. <dayregular>N</dayregular>
  5661. <lastprcpdd>20111105</lastprcpdd>
  5662. <cpyn>N</cpyn>
  5663. <insukind>11</insukind>
  5664. <transfer/>
  5665. <dschnoti>-</dschnoti>
  5666. <preworkup>N</preworkup>
  5667. <hsctpreday>-</hsctpreday>
  5668. <trsntype/>
  5669. <hsctday>0</hsctday>
  5670. <postcxday>0</postcxday>
  5671. <memo>Y</memo>
  5672. <roomcd>7930</roomcd>
  5673. <rrgstno1>720308</rrgstno1>
  5674. <conctypenm/>
  5675. <antidrugflag>N</antidrugflag>
  5676. <ordtype>I</ordtype>
  5677. <spclflag>Y</spclflag>
  5678. <color/>
  5679. <repltype/>
  5680. <coopteamcd>-</coopteamcd>
  5681. <specordtype/>
  5682. <wardnm>709병동(외과계)</wardnm>
  5683. <opcnfmdd/>
  5684. <diagnmopnm>
  5685. <![CDATA[▷Arthritis, rheumatic, subacute
  5686. ]]>
  5687. </diagnmopnm>
  5688. <had>189</had>
  5689. <adx/>
  5690. <testrslt>
  5691. <![CDATA[-]]>
  5692. </testrslt>
  5693. </inpatlist>
  5694. <outpatlist>
  5695. <pid>3006670</pid>
  5696. <indd>20111026</indd>
  5697. <cretno>1</cretno>
  5698. <seqno>2</seqno>
  5699. <instcd>053</instcd>
  5700. <hngnm>이연숙</hngnm>
  5701. <fsexamflag>F</fsexamflag>
  5702. <sa>F/40</sa>
  5703. <hd>190</hd>
  5704. <ad>20111026</ad>
  5705. <pod/>
  5706. <refer/>
  5707. <replstat/>
  5708. <orddeptcd>2010300000</orddeptcd>
  5709. <deptnm>소화기내과</deptnm>
  5710. <subdeptnm/>
  5711. <medispclnm>김@</medispclnm>
  5712. <medispclid>03074</medispclid>
  5713. <atdoctnm>-</atdoctnm>
  5714. <diagnm>
  5715. <![CDATA[Arthritis, rheumatic, subacute]]>
  5716. </diagnm>
  5717. <opnm/>
  5718. <cnst>N</cnst>
  5719. <dayregular>N</dayregular>
  5720. <lastprcpdd>20111105</lastprcpdd>
  5721. <cpyn>N</cpyn>
  5722. <insukind>11</insukind>
  5723. <transfer/>
  5724. <dschnoti>-</dschnoti>
  5725. <preworkup>N</preworkup>
  5726. <hsctpreday>-</hsctpreday>
  5727. <trsntype/>
  5728. <hsctday>0</hsctday>
  5729. <postcxday>0</postcxday>
  5730. <memo>Y</memo>
  5731. <roomcd>7930</roomcd>
  5732. <rrgstno1>720308</rrgstno1>
  5733. <conctypenm/>
  5734. <antidrugflag>N</antidrugflag>
  5735. <ordtype>I</ordtype>
  5736. <spclflag>Y</spclflag>
  5737. <color/>
  5738. <repltype/>
  5739. <coopteamcd>-</coopteamcd>
  5740. <specordtype/>
  5741. <wardnm>709병동(외과계)</wardnm>
  5742. <opcnfmdd/>
  5743. <diagnmopnm>
  5744. <![CDATA[▷Arthritis, rheumatic, subacute
  5745. ]]>
  5746. </diagnmopnm>
  5747. <had>189</had>
  5748. <adx/>
  5749. <testrslt>
  5750. <![CDATA[-]]>
  5751. </testrslt>
  5752. <dschtype>자의퇴원(DAMA)</dschtype>
  5753. </outpatlist>
  5754. <outpatlist>'
  5755. <pid>3006712</pid>
  5756. <indd>20111030</indd>
  5757. <cretno>1</cretno>
  5758. <seqno>1</seqno>
  5759. <instcd>053</instcd>
  5760. <hngnm>나병원</hngnm>
  5761. <fsexamflag>D</fsexamflag>
  5762. <sa>M/35</sa>
  5763. <hd>186</hd>
  5764. <ad>20111030</ad>
  5765. <pod/>
  5766. <refer/>
  5767. <replstat/>
  5768. <orddeptcd>2010300000</orddeptcd>
  5769. <deptnm>소화기내과</deptnm>
  5770. <subdeptnm/>
  5771. <medispclnm>김@</medispclnm>
  5772. <medispclid>03074</medispclid>
  5773. <atdoctnm>-</atdoctnm>
  5774. <diagnm>
  5775. <![CDATA[Acute appendicitis, other and unspecified]]>
  5776. </diagnm>
  5777. <opnm/>
  5778. <cnst>N</cnst>
  5779. <dayregular>N</dayregular>
  5780. <lastprcpdd>20120320</lastprcpdd>
  5781. <cpyn>N</cpyn>
  5782. <insukind>11</insukind>
  5783. <transfer/>
  5784. <dschnoti>-</dschnoti>
  5785. <preworkup>N</preworkup>
  5786. <hsctpreday>-</hsctpreday>
  5787. <trsntype/>
  5788. <hsctday>0</hsctday>
  5789. <postcxday>0</postcxday>
  5790. <memo/>
  5791. <roomcd>7923</roomcd>
  5792. <rrgstno1>770101</rrgstno1>
  5793. <conctypenm/>
  5794. <antidrugflag>N</antidrugflag>
  5795. <ordtype>I</ordtype>
  5796. <spclflag>N</spclflag>
  5797. <color/>
  5798. <repltype/>
  5799. <coopteamcd>-</coopteamcd>
  5800. <specordtype/>
  5801. <wardnm>709병동(외과계)</wardnm>
  5802. <opcnfmdd/>
  5803. <diagnmopnm>
  5804. <![CDATA[▷Acute appendicitis, other and unspecified
  5805. ]]>
  5806. </diagnmopnm>
  5807. <had>185</had>
  5808. <adx/>
  5809. <testrslt>
  5810. <![CDATA[-]]>
  5811. </testrslt>
  5812. <dschtype>퇴원지시후</dschtype>
  5813. </outpatlist>
  5814. <bfchngincntlist>
  5815. <inpattype>입원</inpattype>
  5816. <inpatcnt>0</inpatcnt>
  5817. </bfchngincntlist>
  5818. <bfchngincntlist>
  5819. <inpattype>퇴원</inpattype>
  5820. <inpatcnt>0</inpatcnt>
  5821. </bfchngincntlist>
  5822. <bfchngincntlist>
  5823. <inpattype>전입</inpattype>
  5824. <inpatcnt>0</inpatcnt>
  5825. </bfchngincntlist>
  5826. <bfchngincntlist>
  5827. <inpattype>전출</inpattype>
  5828. <inpatcnt>0</inpatcnt>
  5829. </bfchngincntlist>
  5830. <bfchngincntlist>
  5831. <inpattype>총원</inpattype>
  5832. <inpatcnt>0</inpatcnt>
  5833. </bfchngincntlist>
  5834. <cmtheaderfooterlist>
  5835. <existyn/>
  5836. <orddeptcd>2010300000</orddeptcd>
  5837. <cmt>
  5838. <![CDATA[소화기내과 과별 comment test]]>
  5839. </cmt>
  5840. <header>
  5841. <![CDATA[소화기내과 과별 header test]]>
  5842. </header>
  5843. <footer>
  5844. <![CDATA[소화기내과 과별 footer test]]>
  5845. </footer>
  5846. </cmtheaderfooterlist>
  5847. </inpatinfo>
  5848. </main>
  5849. <send>
  5850. <reqdata>
  5851. <srchdd>20120502</srchdd>
  5852. <orddeptcd>2010300000</orddeptcd>
  5853. <medispclid>-</medispclid>
  5854. <atdoctid>-</atdoctid>
  5855. <pid/>
  5856. <wardcd>-</wardcd>
  5857. <mypatflag>N</mypatflag>
  5858. <procflag/>
  5859. <patflagstat>-</patflagstat>
  5860. <inhospflag>-</inhospflag>
  5861. <rsltsrchflag>N</rsltsrchflag>
  5862. <bfchngincntflag>Y</bfchngincntflag>
  5863. <ordcmtsrchflag>Y</ordcmtsrchflag>
  5864. </reqdata>
  5865. </send>
  5866. <cond>
  5867. <prnttype/>
  5868. <prntoption>C▦F▦▦H</prntoption>
  5869. <prntcnt>23</prntcnt>
  5870. </cond>
  5871. <properties>
  5872. <saveloc>true</saveloc>
  5873. <uid>
  5874. <myself>1335923235807</myself>
  5875. <opener/>
  5876. </uid>
  5877. <domain/>
  5878. <title>입원환자 List</title>
  5879. <auth/>
  5880. <menu>
  5881. <menuparam/>
  5882. <menugroupcd>MG01860000|MA00000257|진료_공통(진료_공통)</menugroupcd>
  5883. <menuitemcd>MI01860205</menuitemcd>
  5884. <menuprestdeptcd/>
  5885. </menu>
  5886. <error>
  5887. <type>info</type>
  5888. <code/>
  5889. <msg>
  5890. <![CDATA[99건이 조회되었습니다.]]>
  5891. </msg>
  5892. <description/>
  5893. </error>
  5894. </properties>
  5895. <hidden>
  5896. <orddeptnm>소화기내과</orddeptnm>
  5897. <srchdd>20120502</srchdd>
  5898. <rtnbfchngincntlist>입원 : 0 퇴원 : 0 전입 : 0 전출 : 0 총원 : 0 </rtnbfchngincntlist>
  5899. <dutplceinstnm>순천향대학교부천병원</dutplceinstnm>
  5900. </hidden>
  5901. </root>