| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022 |
- {
- "mode": "commit",
- "base_url": "https://company.citupro.com:18183",
- "summary": {
- "attempted": 102,
- "succeeded": 99,
- "failed": 0,
- "skipped": 3
- },
- "results": [
- {
- "index": 1,
- "source_table_index": 3,
- "name_zh": "患者基本信息",
- "name_en": "patient_demographics",
- "column_count": 46,
- "status": "skipped",
- "existing_id": 0,
- "operation": "skip_existing"
- },
- {
- "index": 2,
- "source_table_index": 4,
- "name_zh": "挂号明细表",
- "name_en": "TB_MZ_GHMXB",
- "column_count": 26,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:19",
- "describe": "用于对患者在挂号环节产生的挂号数据进行上传,挂号产生的方式(挂号窗口产生、医生站产生、其他预约途径产生),HOPMs平台不做限制,如果患者在挂号时产生了费用,则需要对费用的明细和结算信息一同上传。",
- "id": 76,
- "name_en": "TB_MZ_GHMXB",
- "name_zh": "挂号明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:19"
- }
- },
- {
- "index": 3,
- "source_table_index": 5,
- "name_zh": "门诊就诊明细表",
- "name_en": "TB_MZ_JZMXB",
- "column_count": 44,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:20",
- "describe": "用于患者在就诊环节产生的数据进行上传,就诊和撤销就诊都需要上传数据。",
- "id": 103,
- "name_en": "TB_MZ_JZMXB",
- "name_zh": "门诊就诊明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:20"
- }
- },
- {
- "index": 4,
- "source_table_index": 6,
- "name_zh": "门诊诊断明细表",
- "name_en": "TB_MZ_ZDMXB",
- "column_count": 24,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:22",
- "describe": "用于记录患者在门诊就诊期间,所有的中医、西医诊断结果。",
- "id": 160,
- "name_en": "TB_MZ_ZDMXB",
- "name_zh": "门诊诊断明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:22"
- }
- },
- {
- "index": 5,
- "source_table_index": 7,
- "name_zh": "门诊处方主表",
- "name_en": "TB_MZ_CFZB",
- "column_count": 54,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:24",
- "describe": "填写患者药品处方单或其他申请单的主记录,每张药品处方或其他申请单产生一条主表记录(不包含药品的具体信息和其他申请单具体信息)。",
- "id": 211,
- "name_en": "TB_MZ_CFZB",
- "name_zh": "门诊处方主表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:24"
- }
- },
- {
- "index": 6,
- "source_table_index": 8,
- "name_zh": "门诊药品处方明细表",
- "name_en": "TB_MZ_YPCFMX",
- "column_count": 44,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:27",
- "describe": "用于上传门诊处方主表中处方大类为01:药品处方(0101:西药处方,0102:中成药处方,0103:中药饮片处方)的数据。",
- "id": 278,
- "name_en": "TB_MZ_YPCFMX",
- "name_zh": "门诊药品处方明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:27"
- }
- },
- {
- "index": 7,
- "source_table_index": 9,
- "name_zh": "门诊其他处方明细表",
- "name_en": "TB_MZ_QTCFMX",
- "column_count": 34,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:30",
- "describe": "门诊其他处方明细表用于上传除门诊处方主表中处方大类为01药品处方外,处方大类为 02:检验申请单、03:检查申请单、04:手术申请单、99:其他申请单相关的数据。",
- "id": 2152,
- "name_en": "TB_MZ_QTCFMX",
- "name_zh": "门诊其他处方明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:30"
- }
- },
- {
- "index": 8,
- "source_table_index": 10,
- "name_zh": "门诊费用明细表",
- "name_en": "TB_MZ_SFMXB",
- "column_count": 39,
- "status": "skipped",
- "existing_id": 41,
- "operation": "skip_existing"
- },
- {
- "index": 9,
- "source_table_index": 11,
- "name_zh": "门诊结算明细表",
- "name_en": "TB_MZ_JSMXB",
- "column_count": 16,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:31",
- "describe": "用于门诊患者门诊费用每次结算产生的信息进行上报,每结算一次产生一条记录(含退费),退费采取相同操作。",
- "id": 2162,
- "name_en": "TB_MZ_JSMXB",
- "name_zh": "门诊结算明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:31"
- }
- },
- {
- "index": 10,
- "source_table_index": 12,
- "name_zh": "门诊结算支付方式明细表",
- "name_en": "TB_MZ_JSZFFSMXB",
- "column_count": 15,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:32",
- "describe": "患者在门诊结算时产生的各种类型的支付方式明细进行上传。该表以字段“结算记录ID”汇总的费用,需要等于主表“门诊结算明细表”中以字段“结算记录ID”汇总的费用。",
- "id": 2172,
- "name_en": "TB_MZ_JSZFFSMXB",
- "name_zh": "门诊结算支付方式明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:32"
- }
- },
- {
- "index": 11,
- "source_table_index": 13,
- "name_zh": "入院登记明细表",
- "name_en": "TB_ZY_RYDJMXB",
- "column_count": 26,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:33",
- "describe": "病人一旦确认须住院/留院治疗,则医疗机构须按照下列结构提供病人的入院登记信息。此信息可被以新增、更新、作废方式填报。一旦重复收到相同主键的记录,则最后接受到的信息将覆盖原先相同主键的信息。",
- "id": 2176,
- "name_en": "TB_ZY_RYDJMXB",
- "name_zh": "入院登记明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:33"
- }
- },
- {
- "index": 12,
- "source_table_index": 14,
- "name_zh": "出院登记明细表",
- "name_en": "TB_ZY_CYDJMXB",
- "column_count": 32,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:34",
- "describe": "病人确认已出院后,则医疗机构须按照下列结构提供病人的出院登记信息。此信息可被以新增、更新、作废方式填报。一旦重复收到相同主键的记录,则最后接受到的信息将覆盖原先相同主键的信息。",
- "id": 2197,
- "name_en": "TB_ZY_CYDJMXB",
- "name_zh": "出院登记明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:34"
- }
- },
- {
- "index": 13,
- "source_table_index": 15,
- "name_zh": "住院诊断明细表",
- "name_en": "TB_ZY_ZDMXB",
- "column_count": 22,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:36",
- "describe": "用于记录患者在住院期间,医生的所有中医、西医诊断结果,含入院时的门诊诊断、入院诊断、出院诊断等场合诊断。",
- "id": 2220,
- "name_en": "TB_ZY_ZDMXB",
- "name_zh": "住院诊断明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:36"
- }
- },
- {
- "index": 14,
- "source_table_index": 16,
- "name_zh": "住院医嘱主表",
- "name_en": "TB_ZY_YZZB",
- "column_count": 30,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:37",
- "describe": "用于填写住院医嘱明细记录的主记录,不包含医嘱的具体内容。",
- "id": 2232,
- "name_en": "TB_ZY_YZZB",
- "name_zh": "住院医嘱主表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:37"
- }
- },
- {
- "index": 15,
- "source_table_index": 17,
- "name_zh": "住院药品医嘱明细表",
- "name_en": "TB_ZY_YPYZMX",
- "column_count": 59,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:38",
- "describe": "用于上传住院医嘱主表中处方大类为01:药品处方(0101:西药处方,0102:中成药处方,0103:中药饮片处方)的数据。临时医嘱按医嘱开始时间上传。长期医嘱按医嘱下达时间上传,停医嘱后再覆盖上传。",
- "id": 2275,
- "name_en": "TB_ZY_YPYZMX",
- "name_zh": "住院药品医嘱明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:38"
- }
- },
- {
- "index": 16,
- "source_table_index": 18,
- "name_zh": "住院其他医嘱明细表",
- "name_en": "TB_ZY_QTYZMX",
- "column_count": 47,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:41",
- "describe": "住院其他医嘱明细表用于上传除住院医嘱主表中处方大类为01药品处方外,处方大类为02:检验申请单、03:检查申请单、04:手术申请单、99:其他申请单相关的数据。临时医嘱按医嘱开始时间上传。长期医嘱按医嘱下达时间上传,停医嘱后再覆盖上传。",
- "id": 2309,
- "name_en": "TB_ZY_QTYZMX",
- "name_zh": "住院其他医嘱明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:41"
- }
- },
- {
- "index": 17,
- "source_table_index": 19,
- "name_zh": "住院收费明细表",
- "name_en": "TB_ZY_SFMXB",
- "column_count": 31,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:43",
- "describe": "上传患者在院期间产生的费用明细记录,包含记账和冲销的费用都需要上传。",
- "id": 2314,
- "name_en": "TB_ZY_SFMXB",
- "name_zh": "住院收费明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:43"
- }
- },
- {
- "index": 18,
- "source_table_index": 20,
- "name_zh": "住院结算记录表",
- "name_en": "TB_ZY_JSJLB",
- "column_count": 17,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:44",
- "describe": "病人在办理费用结算后,则医疗机构须按照下列结构填报病人的住院费用结算信息。该表仅接受新增不接受修改。",
- "id": 2338,
- "name_en": "TB_ZY_JSJLB",
- "name_zh": "住院结算记录表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:44"
- }
- },
- {
- "index": 19,
- "source_table_index": 21,
- "name_zh": "住院结算支付方式明细表",
- "name_en": "TB_ZY_JSZFFSMXB",
- "column_count": 15,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:45",
- "describe": "对病人住院结算时产生的各种类型的支付方式明细进行上传。该表以字段“结算记录ID”汇总的费用,需要等于主表“住院结算明细表中”的字段“结算记录ID”汇总的总费用。",
- "id": 2340,
- "name_en": "TB_ZY_JSZFFSMXB",
- "name_zh": "住院结算支付方式明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:45"
- }
- },
- {
- "index": 20,
- "source_table_index": 22,
- "name_zh": "住院结算明细表",
- "name_en": "TB_ZY_JSMXB",
- "column_count": 12,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:46",
- "describe": "结算记录ID的总费用与住院结算记录表中结算记录ID的费用相等。",
- "id": 2341,
- "name_en": "TB_ZY_JSMXB",
- "name_zh": "住院结算明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:46"
- }
- },
- {
- "index": 21,
- "source_table_index": 23,
- "name_zh": "医保结算清单",
- "name_en": "TB_ZY_YBJSQD",
- "column_count": 50,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:46",
- "describe": "",
- "id": 2344,
- "name_en": "TB_ZY_YBJSQD",
- "name_zh": "医保结算清单",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:46"
- }
- },
- {
- "index": 22,
- "source_table_index": 25,
- "name_zh": "门(急)诊电子病历",
- "name_en": "TB_CIS_MJZDZBL",
- "column_count": 55,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:49",
- "describe": "用于门诊患者就诊时书写的门急诊电子病历,需在就诊完成后上传。",
- "id": 2385,
- "name_en": "TB_CIS_MJZDZBL",
- "name_zh": "门(急)诊电子病历",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:49"
- }
- },
- {
- "index": 23,
- "source_table_index": 27,
- "name_zh": "出院小结表",
- "name_en": "TB_CIS_CYXJB",
- "column_count": 73,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:51",
- "describe": "",
- "id": 2431,
- "name_en": "TB_CIS_CYXJB",
- "name_zh": "出院小结表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:51"
- }
- },
- {
- "index": 24,
- "source_table_index": 28,
- "name_zh": "入院记录表",
- "name_en": "TB_CIS_RYJLB",
- "column_count": 74,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:55",
- "describe": "",
- "id": 2487,
- "name_en": "TB_CIS_RYJLB",
- "name_zh": "入院记录表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:55"
- }
- },
- {
- "index": 25,
- "source_table_index": 29,
- "name_zh": "入院评估记录",
- "name_en": "TB_CIS_RYPGJL",
- "column_count": 82,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:58:59",
- "describe": "",
- "id": 2538,
- "name_en": "TB_CIS_RYPGJL",
- "name_zh": "入院评估记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:58:59"
- }
- },
- {
- "index": 26,
- "source_table_index": 30,
- "name_zh": "出院评估记录",
- "name_en": "TB_CIS_CYPGJL",
- "column_count": 33,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:04",
- "describe": "",
- "id": 2592,
- "name_en": "TB_CIS_CYPGJL",
- "name_zh": "出院评估记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:04"
- }
- },
- {
- "index": 27,
- "source_table_index": 31,
- "name_zh": "首次病程记录",
- "name_en": "TB_CIS_SCBCJL",
- "column_count": 42,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:05",
- "describe": "",
- "id": 2607,
- "name_en": "TB_CIS_SCBCJL",
- "name_zh": "首次病程记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:05"
- }
- },
- {
- "index": 28,
- "source_table_index": 32,
- "name_zh": "日常病程记录",
- "name_en": "TB_CIS_RCBCJL",
- "column_count": 28,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:07",
- "describe": "",
- "id": 2621,
- "name_en": "TB_CIS_RCBCJL",
- "name_zh": "日常病程记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:07"
- }
- },
- {
- "index": 29,
- "source_table_index": 33,
- "name_zh": "上级医师查房记录",
- "name_en": "TB_CIS_SJYSCFJL",
- "column_count": 33,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:08",
- "describe": "",
- "id": 2628,
- "name_en": "TB_CIS_SJYSCFJL",
- "name_zh": "上级医师查房记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:08"
- }
- },
- {
- "index": 30,
- "source_table_index": 34,
- "name_zh": "疑难病例讨论",
- "name_en": "TB_CIS_YNBLTL",
- "column_count": 37,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:09",
- "describe": "",
- "id": 2636,
- "name_en": "TB_CIS_YNBLTL",
- "name_zh": "疑难病例讨论",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:09"
- }
- },
- {
- "index": 31,
- "source_table_index": 35,
- "name_zh": "交接班记录",
- "name_en": "TB_CIS_JJBJL",
- "column_count": 46,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:10",
- "describe": "",
- "id": 2650,
- "name_en": "TB_CIS_JJBJL",
- "name_zh": "交接班记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:10"
- }
- },
- {
- "index": 32,
- "source_table_index": 36,
- "name_zh": "转科记录",
- "name_en": "TB_CIS_ZKJL",
- "column_count": 57,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:13",
- "describe": "",
- "id": 2677,
- "name_en": "TB_CIS_ZKJL",
- "name_zh": "转科记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:13"
- }
- },
- {
- "index": 33,
- "source_table_index": 37,
- "name_zh": "阶段小结",
- "name_en": "TB_CIS_JDXJ",
- "column_count": 45,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:15",
- "describe": "",
- "id": 2692,
- "name_en": "TB_CIS_JDXJ",
- "name_zh": "阶段小结",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:15"
- }
- },
- {
- "index": 34,
- "source_table_index": 38,
- "name_zh": "抢救记录",
- "name_en": "TB_CIS_QJJL",
- "column_count": 41,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:16",
- "describe": "",
- "id": 2697,
- "name_en": "TB_CIS_QJJL",
- "name_zh": "抢救记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:16"
- }
- },
- {
- "index": 35,
- "source_table_index": 39,
- "name_zh": "术前小结",
- "name_en": "TB_CIS_SQXJ",
- "column_count": 46,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:18",
- "describe": "",
- "id": 2720,
- "name_en": "TB_CIS_SQXJ",
- "name_zh": "术前小结",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:18"
- }
- },
- {
- "index": 36,
- "source_table_index": 40,
- "name_zh": "术前讨论",
- "name_en": "TB_CIS_SQTL",
- "column_count": 51,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:21",
- "describe": "",
- "id": 2741,
- "name_en": "TB_CIS_SQTL",
- "name_zh": "术前讨论",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:21"
- }
- },
- {
- "index": 37,
- "source_table_index": 41,
- "name_zh": "术后首次病程记录",
- "name_en": "TB_CIS_SHSCBCJL",
- "column_count": 41,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:23",
- "describe": "",
- "id": 2754,
- "name_en": "TB_CIS_SHSCBCJL",
- "name_zh": "术后首次病程记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:23"
- }
- },
- {
- "index": 38,
- "source_table_index": 42,
- "name_zh": "出院记录",
- "name_en": "TB_CIS_CYJL",
- "column_count": 55,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:25",
- "describe": "",
- "id": 2774,
- "name_en": "TB_CIS_CYJL",
- "name_zh": "出院记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:25"
- }
- },
- {
- "index": 39,
- "source_table_index": 43,
- "name_zh": "死亡记录",
- "name_en": "TB_CIS_SWJL",
- "column_count": 39,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:27",
- "describe": "",
- "id": 2786,
- "name_en": "TB_CIS_SWJL",
- "name_zh": "死亡记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:27"
- }
- },
- {
- "index": 40,
- "source_table_index": 44,
- "name_zh": "死亡病例讨论记录",
- "name_en": "TB_CIS_SWBLTLJL",
- "column_count": 41,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:29",
- "describe": "",
- "id": 2795,
- "name_en": "TB_CIS_SWBLTLJL",
- "name_zh": "死亡病例讨论记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:29"
- }
- },
- {
- "index": 41,
- "source_table_index": 45,
- "name_zh": "会诊记录表",
- "name_en": "TB_CIS_HZJLB",
- "column_count": 45,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:31",
- "describe": "",
- "id": 2807,
- "name_en": "TB_CIS_HZJLB",
- "name_zh": "会诊记录表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:31"
- }
- },
- {
- "index": 42,
- "source_table_index": 46,
- "name_zh": "会诊医生记录表",
- "name_en": "TB_CIS_HZYSJLB",
- "column_count": 19,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:33",
- "describe": "",
- "id": 2834,
- "name_en": "TB_CIS_HZYSJLB",
- "name_zh": "会诊医生记录表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:33"
- }
- },
- {
- "index": 43,
- "source_table_index": 47,
- "name_zh": "—般护理记录",
- "name_en": "TB_CIS_BHLJL",
- "column_count": 56,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:34",
- "describe": "",
- "id": 2844,
- "name_en": "TB_CIS_BHLJL",
- "name_zh": "—般护理记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:34"
- }
- },
- {
- "index": 44,
- "source_table_index": 48,
- "name_zh": "病危(重)护理记录",
- "name_en": "TB_CIS_BWZHLJL",
- "column_count": 41,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:36",
- "describe": "",
- "id": 2870,
- "name_en": "TB_CIS_BWZHLJL",
- "name_zh": "病危(重)护理记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:36"
- }
- },
- {
- "index": 45,
- "source_table_index": 49,
- "name_zh": "手术护理记录",
- "name_en": "TB_CIS_SSHLJL",
- "column_count": 65,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:38",
- "describe": "",
- "id": 2878,
- "name_en": "TB_CIS_SSHLJL",
- "name_zh": "手术护理记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:38"
- }
- },
- {
- "index": 46,
- "source_table_index": 50,
- "name_zh": "生命体征测量记录",
- "name_en": "TB_CIS_SMTZCLJL",
- "column_count": 41,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:40",
- "describe": "",
- "id": 2910,
- "name_en": "TB_CIS_SMTZCLJL",
- "name_zh": "生命体征测量记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:40"
- }
- },
- {
- "index": 47,
- "source_table_index": 51,
- "name_zh": "出入量记录",
- "name_en": "TB_CIS_CRLJL",
- "column_count": 35,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:42",
- "describe": "",
- "id": 2919,
- "name_en": "TB_CIS_CRLJL",
- "name_zh": "出入量记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:42"
- }
- },
- {
- "index": 48,
- "source_table_index": 52,
- "name_zh": "出入量用药记录",
- "name_en": "TB_CIS_CRLYYJL",
- "column_count": 20,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:43",
- "describe": "",
- "id": 2924,
- "name_en": "TB_CIS_CRLYYJL",
- "name_zh": "出入量用药记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:43"
- }
- },
- {
- "index": 49,
- "source_table_index": 53,
- "name_zh": "高值耗材使用记录",
- "name_en": "TB_CIS_GZHCSYJL",
- "column_count": 33,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:44",
- "describe": "",
- "id": 2934,
- "name_en": "TB_CIS_GZHCSYJL",
- "name_zh": "高值耗材使用记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:44"
- }
- },
- {
- "index": 50,
- "source_table_index": 54,
- "name_zh": "一般手术记录",
- "name_en": "TB_CIS_YBSSJL",
- "column_count": 72,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:46",
- "describe": "",
- "id": 2945,
- "name_en": "TB_CIS_YBSSJL",
- "name_zh": "一般手术记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:46"
- }
- },
- {
- "index": 51,
- "source_table_index": 55,
- "name_zh": "麻醉术前访视记录",
- "name_en": "TB_CIS_MZSQFSJL",
- "column_count": 59,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:48",
- "describe": "",
- "id": 2980,
- "name_en": "TB_CIS_MZSQFSJL",
- "name_zh": "麻醉术前访视记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:48"
- }
- },
- {
- "index": 52,
- "source_table_index": 56,
- "name_zh": "麻醉记录",
- "name_en": "TB_CIS_MZJL",
- "column_count": 68,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:51",
- "describe": "",
- "id": 3007,
- "name_en": "TB_CIS_MZJL",
- "name_zh": "麻醉记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:51"
- }
- },
- {
- "index": 53,
- "source_table_index": 57,
- "name_zh": "麻醉术后访视记录",
- "name_en": "TB_CIS_MZSHFSJL",
- "column_count": 41,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:55",
- "describe": "",
- "id": 3032,
- "name_en": "TB_CIS_MZSHFSJL",
- "name_zh": "麻醉术后访视记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:55"
- }
- },
- {
- "index": 54,
- "source_table_index": 58,
- "name_zh": "实验室检验报告表头",
- "name_en": "TB_LIS_Report",
- "column_count": 57,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:56",
- "describe": "",
- "id": 3038,
- "name_en": "TB_LIS_Report",
- "name_zh": "实验室检验报告表头",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:56"
- }
- },
- {
- "index": 55,
- "source_table_index": 59,
- "name_zh": "检验结果指标表",
- "name_en": "TB_LIS_Indicators",
- "column_count": 24,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 11:59:59",
- "describe": "",
- "id": 3088,
- "name_en": "TB_LIS_Indicators",
- "name_zh": "检验结果指标表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 11:59:59"
- }
- },
- {
- "index": 56,
- "source_table_index": 60,
- "name_zh": "细菌结果",
- "name_en": "TB_LIS_Bacteria_Result",
- "column_count": 20,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:01",
- "describe": "微生物检验是实验室检验中的一个特殊检验类别,包含一些特殊内容,因此设置此表。细菌结果的一条记录可能会对应多条药敏结果的记录。如果医疗机构LIS系统中并未将微生物检验独立出来,则可根据现有实施情况决定是否填写本表。",
- "id": 3107,
- "name_en": "TB_LIS_Bacteria_Result",
- "name_zh": "细菌结果",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:01"
- }
- },
- {
- "index": 57,
- "source_table_index": 61,
- "name_zh": "药敏结果",
- "name_en": "TB_LIS_Allergy_Result",
- "column_count": 16,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:02",
- "describe": "",
- "id": 3118,
- "name_en": "TB_LIS_Allergy_Result",
- "name_zh": "药敏结果",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:02"
- }
- },
- {
- "index": 58,
- "source_table_index": 62,
- "name_zh": "医学影像检查报告表",
- "name_en": "TB_RIS_Report",
- "column_count": 81,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:03",
- "describe": "",
- "id": 3126,
- "name_en": "TB_RIS_Report",
- "name_zh": "医学影像检查报告表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:03"
- }
- },
- {
- "index": 59,
- "source_table_index": 63,
- "name_zh": "住院病案基本信息",
- "name_en": "TB_BA_JBXX",
- "column_count": 103,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:06",
- "describe": "记录患者住院期间,患者基本信息和入院信息、出院信息。",
- "id": 3174,
- "name_en": "TB_BA_JBXX",
- "name_zh": "住院病案基本信息",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:06"
- }
- },
- {
- "index": 60,
- "source_table_index": 64,
- "name_zh": "住院病案辅助信息",
- "name_en": "TB_BA_FZXX",
- "column_count": 108,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:11",
- "describe": "记录患者住院期间,医生根据患者病情信息对患者进行诊断和治疗的辅助信息。",
- "id": 3248,
- "name_en": "TB_BA_FZXX",
- "name_zh": "住院病案辅助信息",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:11"
- }
- },
- {
- "index": 61,
- "source_table_index": 65,
- "name_zh": "住院病案诊断信息",
- "name_en": "TB_BA_ZDXX",
- "column_count": 29,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:17",
- "describe": "记录患者住院期间,医生根据患者病情列出的中医、西医诊断结果。含入院时的门诊诊断、入院诊断、出院诊断等场合诊断信息。",
- "id": 3338,
- "name_en": "TB_BA_ZDXX",
- "name_zh": "住院病案诊断信息",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:17"
- }
- },
- {
- "index": 62,
- "source_table_index": 66,
- "name_zh": "住院病案手术信息",
- "name_en": "TB_BA_SSXX",
- "column_count": 40,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:18",
- "describe": "记录患者住院期间,医生根据患者病情开具手术治疗单,医生完成手术的记录信息。",
- "id": 3352,
- "name_en": "TB_BA_SSXX",
- "name_zh": "住院病案手术信息",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:18"
- }
- },
- {
- "index": 63,
- "source_table_index": 69,
- "name_zh": "住院日报数据",
- "name_en": "TB_BA_ZYRB",
- "column_count": 25,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:20",
- "describe": "",
- "id": 3381,
- "name_en": "TB_BA_ZYRB",
- "name_zh": "住院日报数据",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:20"
- }
- },
- {
- "index": 64,
- "source_table_index": 70,
- "name_zh": "手术记录表",
- "name_en": "TB_HIS_Opr_Rec",
- "column_count": 30,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:21",
- "describe": "根据医疗机构内的手术记录进行填报(相应的数据源根据医疗机构信息系统不同会有三类:收费明细记录、电子病历、手术系统)。此信息可被以新增、更新、作废方式填报。一旦重复收到相同主键的记录,则最新接受到的信息将覆盖原先收到的相同主键的信息。",
- "id": 3399,
- "name_en": "TB_HIS_Opr_Rec",
- "name_zh": "手术记录表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:21"
- }
- },
- {
- "index": 65,
- "source_table_index": 71,
- "name_zh": "手术明细表",
- "name_en": "TB_Operation_Detail",
- "column_count": 32,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:23",
- "describe": "",
- "id": 3421,
- "name_en": "TB_Operation_Detail",
- "name_zh": "手术明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:23"
- }
- },
- {
- "index": 66,
- "source_table_index": 72,
- "name_zh": "体检登记表",
- "name_en": "TB_TJ_REGISTER",
- "column_count": 20,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:24",
- "describe": "",
- "id": 3437,
- "name_en": "TB_TJ_REGISTER",
- "name_zh": "体检登记表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:24"
- }
- },
- {
- "index": 67,
- "source_table_index": 73,
- "name_zh": "体检收费表",
- "name_en": "TB_TJ_Charge",
- "column_count": 18,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:26",
- "describe": "",
- "id": 3449,
- "name_en": "TB_TJ_Charge",
- "name_zh": "体检收费表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:26"
- }
- },
- {
- "index": 68,
- "source_table_index": 74,
- "name_zh": "报告首页",
- "name_en": "TB_YL_TJBGSY",
- "column_count": 42,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:26",
- "describe": "",
- "id": 3458,
- "name_en": "TB_YL_TJBGSY",
- "name_zh": "报告首页",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:26"
- }
- },
- {
- "index": 69,
- "source_table_index": 75,
- "name_zh": "体检分科(分组)报告",
- "name_en": "TB_YL_TJBG",
- "column_count": 14,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:28",
- "describe": "",
- "id": 3491,
- "name_en": "TB_YL_TJBG",
- "name_zh": "体检分科(分组)报告",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:28"
- }
- },
- {
- "index": 70,
- "source_table_index": 76,
- "name_zh": "体检明细表",
- "name_en": "TB_YL_TJMX",
- "column_count": 13,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:29",
- "describe": "",
- "id": 3497,
- "name_en": "TB_YL_TJMX",
- "name_zh": "体检明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:29"
- }
- },
- {
- "index": 71,
- "source_table_index": 78,
- "name_zh": "输血记录",
- "name_en": "TB_EMR_SXJL",
- "column_count": 47,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:29",
- "describe": "",
- "id": 3505,
- "name_en": "TB_EMR_SXJL",
- "name_zh": "输血记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:29"
- }
- },
- {
- "index": 72,
- "source_table_index": 79,
- "name_zh": "会诊记录表",
- "name_en": "TB_YL_HZJL",
- "column_count": 22,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:32",
- "describe": "该表对患者在医疗机构中的会诊记录和会诊结果数据进行收集,会诊信息通过就诊流水号与患者的门诊或住院就诊记录进行关联,通过患者主索引与患者信息进行关联。",
- "id": 3531,
- "name_en": "TB_YL_HZJL",
- "name_zh": "会诊记录表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:32"
- }
- },
- {
- "index": 73,
- "source_table_index": 80,
- "name_zh": "转诊(院)转出记录表",
- "name_en": "TB_SXZZ_ZCJLB",
- "column_count": 36,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:33",
- "describe": "记录患者在就诊医疗机构进行转诊时填写的转出记录单信息,每次患者转出产一个唯一的转诊流水号,用于患者的转诊记录标识,所有的转诊记录需要与患者的就诊记录、患者信息进行关联,该表与患者就诊记录的关联通过就诊流水号,与患者信息的关联通过患者主索引。",
- "id": 3547,
- "name_en": "TB_SXZZ_ZCJLB",
- "name_zh": "转诊(院)转出记录表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:33"
- }
- },
- {
- "index": 74,
- "source_table_index": 81,
- "name_zh": "转诊(院)回转记录表",
- "name_en": "TB_SXZZ_HZJLB",
- "column_count": 33,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:35",
- "describe": "记录患者在就诊医疗机构进行回转时填写的回转记录单信息,每次患者回转产生一个唯一的回转记录ID,该表的转诊流水号需要与转出记录单的转诊流水号进行关联,以确定回转记录单对应哪一次转出记录,用于患者的转诊记录标识,所有的转诊记录需要与患者的就诊记录、患者信息进行关联,该表与患者就诊记录的关联通过就诊流水号,与患者信息的关联通过患者主索引。",
- "id": 3572,
- "name_en": "TB_SXZZ_HZJLB",
- "name_zh": "转诊(院)回转记录表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:35"
- }
- },
- {
- "index": 75,
- "source_table_index": 82,
- "name_zh": "药品入库记录",
- "name_en": "TB_YP_RRK",
- "column_count": 48,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:36",
- "describe": "",
- "id": 3579,
- "name_en": "TB_YP_RRK",
- "name_zh": "药品入库记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:36"
- }
- },
- {
- "index": 76,
- "source_table_index": 83,
- "name_zh": "收入数据类别汇总中间表",
- "name_en": "TB_KSCB_SR",
- "column_count": 16,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:38",
- "describe": "",
- "id": 3623,
- "name_en": "TB_KSCB_SR",
- "name_zh": "收入数据类别汇总中间表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:38"
- }
- },
- {
- "index": 77,
- "source_table_index": 84,
- "name_zh": "医技业务量中间表",
- "name_en": "TB_KSCB_YJ",
- "column_count": 12,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:39",
- "describe": "",
- "id": 3635,
- "name_en": "TB_KSCB_YJ",
- "name_zh": "医技业务量中间表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:39"
- }
- },
- {
- "index": 78,
- "source_table_index": 85,
- "name_zh": "门诊业务量中间表",
- "name_en": "TB_KSCB_MZ",
- "column_count": 12,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:40",
- "describe": "",
- "id": 3639,
- "name_en": "TB_KSCB_MZ",
- "name_zh": "门诊业务量中间表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:40"
- }
- },
- {
- "index": 79,
- "source_table_index": 86,
- "name_zh": "住院业务量中间表",
- "name_en": "TB_KSCB_ZY",
- "column_count": 12,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:41",
- "describe": "",
- "id": 3641,
- "name_en": "TB_KSCB_ZY",
- "name_zh": "住院业务量中间表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:41"
- }
- },
- {
- "index": 80,
- "source_table_index": 87,
- "name_zh": "内部服务数据中间表",
- "name_en": "TB_KSCB_NB",
- "column_count": 17,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:41",
- "describe": "",
- "id": 3643,
- "name_en": "TB_KSCB_NB",
- "name_zh": "内部服务数据中间表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:41"
- }
- },
- {
- "index": 81,
- "source_table_index": 88,
- "name_zh": "收入工作量中间表",
- "name_en": "TB_XMCB_SR",
- "column_count": 19,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:42",
- "describe": "",
- "id": 3652,
- "name_en": "TB_XMCB_SR",
- "name_zh": "收入工作量中间表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:42"
- }
- },
- {
- "index": 82,
- "source_table_index": 89,
- "name_zh": "资产折旧明细表",
- "name_en": "TB_XMCB_ZCZJ",
- "column_count": 15,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:43",
- "describe": "",
- "id": 3664,
- "name_en": "TB_XMCB_ZCZJ",
- "name_zh": "资产折旧明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:43"
- }
- },
- {
- "index": 83,
- "source_table_index": 90,
- "name_zh": "人员经费明细表",
- "name_en": "TB_XMCB_RYJF",
- "column_count": 16,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:44",
- "describe": "",
- "id": 3670,
- "name_en": "TB_XMCB_RYJF",
- "name_zh": "人员经费明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:44"
- }
- },
- {
- "index": 84,
- "source_table_index": 91,
- "name_zh": "卫生材料明细表",
- "name_en": "TB_XMCB_WSCL",
- "column_count": 16,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:44",
- "describe": "",
- "id": 3672,
- "name_en": "TB_XMCB_WSCL",
- "name_zh": "卫生材料明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:44"
- }
- },
- {
- "index": 85,
- "source_table_index": 92,
- "name_zh": "提取医疗风险基金成本明细表",
- "name_en": "TB_XMCB_TQYLJJFX",
- "column_count": 16,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:45",
- "describe": "",
- "id": 3673,
- "name_en": "TB_XMCB_TQYLJJFX",
- "name_zh": "提取医疗风险基金成本明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:45"
- }
- },
- {
- "index": 86,
- "source_table_index": 93,
- "name_zh": "科室公摊成本明细表",
- "name_en": "TB_XMCB_KSGT",
- "column_count": 11,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:46",
- "describe": "",
- "id": 3674,
- "name_en": "TB_XMCB_KSGT",
- "name_zh": "科室公摊成本明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:46"
- }
- },
- {
- "index": 87,
- "source_table_index": 94,
- "name_zh": "其他费用明细表",
- "name_en": "TB_XMCB_OTHER",
- "column_count": 16,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:46",
- "describe": "",
- "id": 3677,
- "name_en": "TB_XMCB_OTHER",
- "name_zh": "其他费用明细表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:46"
- }
- },
- {
- "index": 88,
- "source_table_index": 95,
- "name_zh": "收费项目明细数据中间表",
- "name_en": "TB_BZCB_SFXM",
- "column_count": 24,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:47",
- "describe": "",
- "id": 3678,
- "name_en": "TB_BZCB_SFXM",
- "name_zh": "收费项目明细数据中间表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:47"
- }
- },
- {
- "index": 89,
- "source_table_index": 96,
- "name_zh": "手术麻醉数据中间表",
- "name_en": "TB_BZCB_SSMZ",
- "column_count": 34,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:48",
- "describe": "",
- "id": 3693,
- "name_en": "TB_BZCB_SSMZ",
- "name_zh": "手术麻醉数据中间表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:48"
- }
- },
- {
- "index": 90,
- "source_table_index": 97,
- "name_zh": "手术收入数据中间表",
- "name_en": "TB_BZCB_SSSR",
- "column_count": 16,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:50",
- "describe": "",
- "id": 3717,
- "name_en": "TB_BZCB_SSSR",
- "name_zh": "手术收入数据中间表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:50"
- }
- },
- {
- "index": 91,
- "source_table_index": 98,
- "name_zh": "介入收入数据中间表",
- "name_en": "TB_BZCB_JR",
- "column_count": 16,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:50",
- "describe": "",
- "id": 3720,
- "name_en": "TB_BZCB_JR",
- "name_zh": "介入收入数据中间表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:50"
- }
- },
- {
- "index": 92,
- "source_table_index": 99,
- "name_zh": "麻醉收入数据中间表",
- "name_en": "TB_BZCB_MZ",
- "column_count": 15,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:51",
- "describe": "",
- "id": 3722,
- "name_en": "TB_BZCB_MZ",
- "name_zh": "麻醉收入数据中间表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:51"
- }
- },
- {
- "index": 93,
- "source_table_index": 100,
- "name_zh": "医技科室收入数据中间表",
- "name_en": "TB_BZCB_YJ",
- "column_count": 12,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:52",
- "describe": "",
- "id": 3723,
- "name_en": "TB_BZCB_YJ",
- "name_zh": "医技科室收入数据中间表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:52"
- }
- },
- {
- "index": 94,
- "source_table_index": 101,
- "name_zh": "业务量、收入统计表",
- "name_en": "TB_STAT_YWL_Report",
- "column_count": 34,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:52",
- "describe": "",
- "id": 3725,
- "name_en": "TB_STAT_YWL_Report",
- "name_zh": "业务量、收入统计表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:52"
- }
- },
- {
- "index": 95,
- "source_table_index": 102,
- "name_zh": "实验室检验报告数量日汇总",
- "name_en": "TB_STAT_LIS_Report",
- "column_count": 15,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:53",
- "describe": "",
- "id": 3755,
- "name_en": "TB_STAT_LIS_Report",
- "name_zh": "实验室检验报告数量日汇总",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:53"
- }
- },
- {
- "index": 96,
- "source_table_index": 103,
- "name_zh": "医学影像检查报告数量日汇总",
- "name_en": "TB_STAT_RIS_Report",
- "column_count": 15,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:54",
- "describe": "",
- "id": 3765,
- "name_en": "TB_STAT_RIS_Report",
- "name_zh": "医学影像检查报告数量日汇总",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:54"
- }
- },
- {
- "index": 97,
- "source_table_index": 104,
- "name_zh": "医院分担超指标统计",
- "name_en": "TB_YB_CZBJL",
- "column_count": 11,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:55",
- "describe": "",
- "id": 3770,
- "name_en": "TB_YB_CZBJL",
- "name_zh": "医院分担超指标统计",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:55"
- }
- },
- {
- "index": 98,
- "source_table_index": 105,
- "name_zh": "出院随访记录",
- "name_en": "TB_CY_SFJL",
- "column_count": 50,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:55",
- "describe": "",
- "id": 3775,
- "name_en": "TB_CY_SFJL",
- "name_zh": "出院随访记录",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:55"
- }
- },
- {
- "index": 99,
- "source_table_index": 106,
- "name_zh": "收费项目表",
- "name_en": "TB_JC_SFXM",
- "column_count": 23,
- "status": "skipped",
- "existing_id": 231,
- "operation": "skip_existing"
- },
- {
- "index": 100,
- "source_table_index": 107,
- "name_zh": "科室对照表",
- "name_en": "TB_JC_KSDZB",
- "column_count": 17,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:58",
- "describe": "",
- "id": 3813,
- "name_en": "TB_JC_KSDZB",
- "name_zh": "科室对照表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:58"
- }
- },
- {
- "index": 101,
- "source_table_index": 108,
- "name_zh": "科室人员表",
- "name_en": "TB_JC_KSRYB",
- "column_count": 14,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:00:59",
- "describe": "",
- "id": 3826,
- "name_en": "TB_JC_KSRYB",
- "name_zh": "科室人员表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:00:59"
- }
- },
- {
- "index": 102,
- "source_table_index": 109,
- "name_zh": "药品目录表",
- "name_en": "TB_JC_YPML",
- "column_count": 57,
- "status": "success",
- "operation": "create",
- "response": {
- "category": "HOPMs标准数据集",
- "create_time": "2026-06-18 12:01:00",
- "describe": "",
- "id": 3835,
- "name_en": "TB_JC_YPML",
- "name_zh": "药品目录表",
- "tag": [],
- "type": "table",
- "update_time": "2026-06-18 12:01:00"
- }
- }
- ]
- }
|