hopms_import_result.json 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022
  1. {
  2. "mode": "commit",
  3. "base_url": "https://company.citupro.com:18183",
  4. "summary": {
  5. "attempted": 102,
  6. "succeeded": 99,
  7. "failed": 0,
  8. "skipped": 3
  9. },
  10. "results": [
  11. {
  12. "index": 1,
  13. "source_table_index": 3,
  14. "name_zh": "患者基本信息",
  15. "name_en": "patient_demographics",
  16. "column_count": 46,
  17. "status": "skipped",
  18. "existing_id": 0,
  19. "operation": "skip_existing"
  20. },
  21. {
  22. "index": 2,
  23. "source_table_index": 4,
  24. "name_zh": "挂号明细表",
  25. "name_en": "TB_MZ_GHMXB",
  26. "column_count": 26,
  27. "status": "success",
  28. "operation": "create",
  29. "response": {
  30. "category": "HOPMs标准数据集",
  31. "create_time": "2026-06-18 11:58:19",
  32. "describe": "用于对患者在挂号环节产生的挂号数据进行上传,挂号产生的方式(挂号窗口产生、医生站产生、其他预约途径产生),HOPMs平台不做限制,如果患者在挂号时产生了费用,则需要对费用的明细和结算信息一同上传。",
  33. "id": 76,
  34. "name_en": "TB_MZ_GHMXB",
  35. "name_zh": "挂号明细表",
  36. "tag": [],
  37. "type": "table",
  38. "update_time": "2026-06-18 11:58:19"
  39. }
  40. },
  41. {
  42. "index": 3,
  43. "source_table_index": 5,
  44. "name_zh": "门诊就诊明细表",
  45. "name_en": "TB_MZ_JZMXB",
  46. "column_count": 44,
  47. "status": "success",
  48. "operation": "create",
  49. "response": {
  50. "category": "HOPMs标准数据集",
  51. "create_time": "2026-06-18 11:58:20",
  52. "describe": "用于患者在就诊环节产生的数据进行上传,就诊和撤销就诊都需要上传数据。",
  53. "id": 103,
  54. "name_en": "TB_MZ_JZMXB",
  55. "name_zh": "门诊就诊明细表",
  56. "tag": [],
  57. "type": "table",
  58. "update_time": "2026-06-18 11:58:20"
  59. }
  60. },
  61. {
  62. "index": 4,
  63. "source_table_index": 6,
  64. "name_zh": "门诊诊断明细表",
  65. "name_en": "TB_MZ_ZDMXB",
  66. "column_count": 24,
  67. "status": "success",
  68. "operation": "create",
  69. "response": {
  70. "category": "HOPMs标准数据集",
  71. "create_time": "2026-06-18 11:58:22",
  72. "describe": "用于记录患者在门诊就诊期间,所有的中医、西医诊断结果。",
  73. "id": 160,
  74. "name_en": "TB_MZ_ZDMXB",
  75. "name_zh": "门诊诊断明细表",
  76. "tag": [],
  77. "type": "table",
  78. "update_time": "2026-06-18 11:58:22"
  79. }
  80. },
  81. {
  82. "index": 5,
  83. "source_table_index": 7,
  84. "name_zh": "门诊处方主表",
  85. "name_en": "TB_MZ_CFZB",
  86. "column_count": 54,
  87. "status": "success",
  88. "operation": "create",
  89. "response": {
  90. "category": "HOPMs标准数据集",
  91. "create_time": "2026-06-18 11:58:24",
  92. "describe": "填写患者药品处方单或其他申请单的主记录,每张药品处方或其他申请单产生一条主表记录(不包含药品的具体信息和其他申请单具体信息)。",
  93. "id": 211,
  94. "name_en": "TB_MZ_CFZB",
  95. "name_zh": "门诊处方主表",
  96. "tag": [],
  97. "type": "table",
  98. "update_time": "2026-06-18 11:58:24"
  99. }
  100. },
  101. {
  102. "index": 6,
  103. "source_table_index": 8,
  104. "name_zh": "门诊药品处方明细表",
  105. "name_en": "TB_MZ_YPCFMX",
  106. "column_count": 44,
  107. "status": "success",
  108. "operation": "create",
  109. "response": {
  110. "category": "HOPMs标准数据集",
  111. "create_time": "2026-06-18 11:58:27",
  112. "describe": "用于上传门诊处方主表中处方大类为01:药品处方(0101:西药处方,0102:中成药处方,0103:中药饮片处方)的数据。",
  113. "id": 278,
  114. "name_en": "TB_MZ_YPCFMX",
  115. "name_zh": "门诊药品处方明细表",
  116. "tag": [],
  117. "type": "table",
  118. "update_time": "2026-06-18 11:58:27"
  119. }
  120. },
  121. {
  122. "index": 7,
  123. "source_table_index": 9,
  124. "name_zh": "门诊其他处方明细表",
  125. "name_en": "TB_MZ_QTCFMX",
  126. "column_count": 34,
  127. "status": "success",
  128. "operation": "create",
  129. "response": {
  130. "category": "HOPMs标准数据集",
  131. "create_time": "2026-06-18 11:58:30",
  132. "describe": "门诊其他处方明细表用于上传除门诊处方主表中处方大类为01药品处方外,处方大类为 02:检验申请单、03:检查申请单、04:手术申请单、99:其他申请单相关的数据。",
  133. "id": 2152,
  134. "name_en": "TB_MZ_QTCFMX",
  135. "name_zh": "门诊其他处方明细表",
  136. "tag": [],
  137. "type": "table",
  138. "update_time": "2026-06-18 11:58:30"
  139. }
  140. },
  141. {
  142. "index": 8,
  143. "source_table_index": 10,
  144. "name_zh": "门诊费用明细表",
  145. "name_en": "TB_MZ_SFMXB",
  146. "column_count": 39,
  147. "status": "skipped",
  148. "existing_id": 41,
  149. "operation": "skip_existing"
  150. },
  151. {
  152. "index": 9,
  153. "source_table_index": 11,
  154. "name_zh": "门诊结算明细表",
  155. "name_en": "TB_MZ_JSMXB",
  156. "column_count": 16,
  157. "status": "success",
  158. "operation": "create",
  159. "response": {
  160. "category": "HOPMs标准数据集",
  161. "create_time": "2026-06-18 11:58:31",
  162. "describe": "用于门诊患者门诊费用每次结算产生的信息进行上报,每结算一次产生一条记录(含退费),退费采取相同操作。",
  163. "id": 2162,
  164. "name_en": "TB_MZ_JSMXB",
  165. "name_zh": "门诊结算明细表",
  166. "tag": [],
  167. "type": "table",
  168. "update_time": "2026-06-18 11:58:31"
  169. }
  170. },
  171. {
  172. "index": 10,
  173. "source_table_index": 12,
  174. "name_zh": "门诊结算支付方式明细表",
  175. "name_en": "TB_MZ_JSZFFSMXB",
  176. "column_count": 15,
  177. "status": "success",
  178. "operation": "create",
  179. "response": {
  180. "category": "HOPMs标准数据集",
  181. "create_time": "2026-06-18 11:58:32",
  182. "describe": "患者在门诊结算时产生的各种类型的支付方式明细进行上传。该表以字段“结算记录ID”汇总的费用,需要等于主表“门诊结算明细表”中以字段“结算记录ID”汇总的费用。",
  183. "id": 2172,
  184. "name_en": "TB_MZ_JSZFFSMXB",
  185. "name_zh": "门诊结算支付方式明细表",
  186. "tag": [],
  187. "type": "table",
  188. "update_time": "2026-06-18 11:58:32"
  189. }
  190. },
  191. {
  192. "index": 11,
  193. "source_table_index": 13,
  194. "name_zh": "入院登记明细表",
  195. "name_en": "TB_ZY_RYDJMXB",
  196. "column_count": 26,
  197. "status": "success",
  198. "operation": "create",
  199. "response": {
  200. "category": "HOPMs标准数据集",
  201. "create_time": "2026-06-18 11:58:33",
  202. "describe": "病人一旦确认须住院/留院治疗,则医疗机构须按照下列结构提供病人的入院登记信息。此信息可被以新增、更新、作废方式填报。一旦重复收到相同主键的记录,则最后接受到的信息将覆盖原先相同主键的信息。",
  203. "id": 2176,
  204. "name_en": "TB_ZY_RYDJMXB",
  205. "name_zh": "入院登记明细表",
  206. "tag": [],
  207. "type": "table",
  208. "update_time": "2026-06-18 11:58:33"
  209. }
  210. },
  211. {
  212. "index": 12,
  213. "source_table_index": 14,
  214. "name_zh": "出院登记明细表",
  215. "name_en": "TB_ZY_CYDJMXB",
  216. "column_count": 32,
  217. "status": "success",
  218. "operation": "create",
  219. "response": {
  220. "category": "HOPMs标准数据集",
  221. "create_time": "2026-06-18 11:58:34",
  222. "describe": "病人确认已出院后,则医疗机构须按照下列结构提供病人的出院登记信息。此信息可被以新增、更新、作废方式填报。一旦重复收到相同主键的记录,则最后接受到的信息将覆盖原先相同主键的信息。",
  223. "id": 2197,
  224. "name_en": "TB_ZY_CYDJMXB",
  225. "name_zh": "出院登记明细表",
  226. "tag": [],
  227. "type": "table",
  228. "update_time": "2026-06-18 11:58:34"
  229. }
  230. },
  231. {
  232. "index": 13,
  233. "source_table_index": 15,
  234. "name_zh": "住院诊断明细表",
  235. "name_en": "TB_ZY_ZDMXB",
  236. "column_count": 22,
  237. "status": "success",
  238. "operation": "create",
  239. "response": {
  240. "category": "HOPMs标准数据集",
  241. "create_time": "2026-06-18 11:58:36",
  242. "describe": "用于记录患者在住院期间,医生的所有中医、西医诊断结果,含入院时的门诊诊断、入院诊断、出院诊断等场合诊断。",
  243. "id": 2220,
  244. "name_en": "TB_ZY_ZDMXB",
  245. "name_zh": "住院诊断明细表",
  246. "tag": [],
  247. "type": "table",
  248. "update_time": "2026-06-18 11:58:36"
  249. }
  250. },
  251. {
  252. "index": 14,
  253. "source_table_index": 16,
  254. "name_zh": "住院医嘱主表",
  255. "name_en": "TB_ZY_YZZB",
  256. "column_count": 30,
  257. "status": "success",
  258. "operation": "create",
  259. "response": {
  260. "category": "HOPMs标准数据集",
  261. "create_time": "2026-06-18 11:58:37",
  262. "describe": "用于填写住院医嘱明细记录的主记录,不包含医嘱的具体内容。",
  263. "id": 2232,
  264. "name_en": "TB_ZY_YZZB",
  265. "name_zh": "住院医嘱主表",
  266. "tag": [],
  267. "type": "table",
  268. "update_time": "2026-06-18 11:58:37"
  269. }
  270. },
  271. {
  272. "index": 15,
  273. "source_table_index": 17,
  274. "name_zh": "住院药品医嘱明细表",
  275. "name_en": "TB_ZY_YPYZMX",
  276. "column_count": 59,
  277. "status": "success",
  278. "operation": "create",
  279. "response": {
  280. "category": "HOPMs标准数据集",
  281. "create_time": "2026-06-18 11:58:38",
  282. "describe": "用于上传住院医嘱主表中处方大类为01:药品处方(0101:西药处方,0102:中成药处方,0103:中药饮片处方)的数据。临时医嘱按医嘱开始时间上传。长期医嘱按医嘱下达时间上传,停医嘱后再覆盖上传。",
  283. "id": 2275,
  284. "name_en": "TB_ZY_YPYZMX",
  285. "name_zh": "住院药品医嘱明细表",
  286. "tag": [],
  287. "type": "table",
  288. "update_time": "2026-06-18 11:58:38"
  289. }
  290. },
  291. {
  292. "index": 16,
  293. "source_table_index": 18,
  294. "name_zh": "住院其他医嘱明细表",
  295. "name_en": "TB_ZY_QTYZMX",
  296. "column_count": 47,
  297. "status": "success",
  298. "operation": "create",
  299. "response": {
  300. "category": "HOPMs标准数据集",
  301. "create_time": "2026-06-18 11:58:41",
  302. "describe": "住院其他医嘱明细表用于上传除住院医嘱主表中处方大类为01药品处方外,处方大类为02:检验申请单、03:检查申请单、04:手术申请单、99:其他申请单相关的数据。临时医嘱按医嘱开始时间上传。长期医嘱按医嘱下达时间上传,停医嘱后再覆盖上传。",
  303. "id": 2309,
  304. "name_en": "TB_ZY_QTYZMX",
  305. "name_zh": "住院其他医嘱明细表",
  306. "tag": [],
  307. "type": "table",
  308. "update_time": "2026-06-18 11:58:41"
  309. }
  310. },
  311. {
  312. "index": 17,
  313. "source_table_index": 19,
  314. "name_zh": "住院收费明细表",
  315. "name_en": "TB_ZY_SFMXB",
  316. "column_count": 31,
  317. "status": "success",
  318. "operation": "create",
  319. "response": {
  320. "category": "HOPMs标准数据集",
  321. "create_time": "2026-06-18 11:58:43",
  322. "describe": "上传患者在院期间产生的费用明细记录,包含记账和冲销的费用都需要上传。",
  323. "id": 2314,
  324. "name_en": "TB_ZY_SFMXB",
  325. "name_zh": "住院收费明细表",
  326. "tag": [],
  327. "type": "table",
  328. "update_time": "2026-06-18 11:58:43"
  329. }
  330. },
  331. {
  332. "index": 18,
  333. "source_table_index": 20,
  334. "name_zh": "住院结算记录表",
  335. "name_en": "TB_ZY_JSJLB",
  336. "column_count": 17,
  337. "status": "success",
  338. "operation": "create",
  339. "response": {
  340. "category": "HOPMs标准数据集",
  341. "create_time": "2026-06-18 11:58:44",
  342. "describe": "病人在办理费用结算后,则医疗机构须按照下列结构填报病人的住院费用结算信息。该表仅接受新增不接受修改。",
  343. "id": 2338,
  344. "name_en": "TB_ZY_JSJLB",
  345. "name_zh": "住院结算记录表",
  346. "tag": [],
  347. "type": "table",
  348. "update_time": "2026-06-18 11:58:44"
  349. }
  350. },
  351. {
  352. "index": 19,
  353. "source_table_index": 21,
  354. "name_zh": "住院结算支付方式明细表",
  355. "name_en": "TB_ZY_JSZFFSMXB",
  356. "column_count": 15,
  357. "status": "success",
  358. "operation": "create",
  359. "response": {
  360. "category": "HOPMs标准数据集",
  361. "create_time": "2026-06-18 11:58:45",
  362. "describe": "对病人住院结算时产生的各种类型的支付方式明细进行上传。该表以字段“结算记录ID”汇总的费用,需要等于主表“住院结算明细表中”的字段“结算记录ID”汇总的总费用。",
  363. "id": 2340,
  364. "name_en": "TB_ZY_JSZFFSMXB",
  365. "name_zh": "住院结算支付方式明细表",
  366. "tag": [],
  367. "type": "table",
  368. "update_time": "2026-06-18 11:58:45"
  369. }
  370. },
  371. {
  372. "index": 20,
  373. "source_table_index": 22,
  374. "name_zh": "住院结算明细表",
  375. "name_en": "TB_ZY_JSMXB",
  376. "column_count": 12,
  377. "status": "success",
  378. "operation": "create",
  379. "response": {
  380. "category": "HOPMs标准数据集",
  381. "create_time": "2026-06-18 11:58:46",
  382. "describe": "结算记录ID的总费用与住院结算记录表中结算记录ID的费用相等。",
  383. "id": 2341,
  384. "name_en": "TB_ZY_JSMXB",
  385. "name_zh": "住院结算明细表",
  386. "tag": [],
  387. "type": "table",
  388. "update_time": "2026-06-18 11:58:46"
  389. }
  390. },
  391. {
  392. "index": 21,
  393. "source_table_index": 23,
  394. "name_zh": "医保结算清单",
  395. "name_en": "TB_ZY_YBJSQD",
  396. "column_count": 50,
  397. "status": "success",
  398. "operation": "create",
  399. "response": {
  400. "category": "HOPMs标准数据集",
  401. "create_time": "2026-06-18 11:58:46",
  402. "describe": "",
  403. "id": 2344,
  404. "name_en": "TB_ZY_YBJSQD",
  405. "name_zh": "医保结算清单",
  406. "tag": [],
  407. "type": "table",
  408. "update_time": "2026-06-18 11:58:46"
  409. }
  410. },
  411. {
  412. "index": 22,
  413. "source_table_index": 25,
  414. "name_zh": "门(急)诊电子病历",
  415. "name_en": "TB_CIS_MJZDZBL",
  416. "column_count": 55,
  417. "status": "success",
  418. "operation": "create",
  419. "response": {
  420. "category": "HOPMs标准数据集",
  421. "create_time": "2026-06-18 11:58:49",
  422. "describe": "用于门诊患者就诊时书写的门急诊电子病历,需在就诊完成后上传。",
  423. "id": 2385,
  424. "name_en": "TB_CIS_MJZDZBL",
  425. "name_zh": "门(急)诊电子病历",
  426. "tag": [],
  427. "type": "table",
  428. "update_time": "2026-06-18 11:58:49"
  429. }
  430. },
  431. {
  432. "index": 23,
  433. "source_table_index": 27,
  434. "name_zh": "出院小结表",
  435. "name_en": "TB_CIS_CYXJB",
  436. "column_count": 73,
  437. "status": "success",
  438. "operation": "create",
  439. "response": {
  440. "category": "HOPMs标准数据集",
  441. "create_time": "2026-06-18 11:58:51",
  442. "describe": "",
  443. "id": 2431,
  444. "name_en": "TB_CIS_CYXJB",
  445. "name_zh": "出院小结表",
  446. "tag": [],
  447. "type": "table",
  448. "update_time": "2026-06-18 11:58:51"
  449. }
  450. },
  451. {
  452. "index": 24,
  453. "source_table_index": 28,
  454. "name_zh": "入院记录表",
  455. "name_en": "TB_CIS_RYJLB",
  456. "column_count": 74,
  457. "status": "success",
  458. "operation": "create",
  459. "response": {
  460. "category": "HOPMs标准数据集",
  461. "create_time": "2026-06-18 11:58:55",
  462. "describe": "",
  463. "id": 2487,
  464. "name_en": "TB_CIS_RYJLB",
  465. "name_zh": "入院记录表",
  466. "tag": [],
  467. "type": "table",
  468. "update_time": "2026-06-18 11:58:55"
  469. }
  470. },
  471. {
  472. "index": 25,
  473. "source_table_index": 29,
  474. "name_zh": "入院评估记录",
  475. "name_en": "TB_CIS_RYPGJL",
  476. "column_count": 82,
  477. "status": "success",
  478. "operation": "create",
  479. "response": {
  480. "category": "HOPMs标准数据集",
  481. "create_time": "2026-06-18 11:58:59",
  482. "describe": "",
  483. "id": 2538,
  484. "name_en": "TB_CIS_RYPGJL",
  485. "name_zh": "入院评估记录",
  486. "tag": [],
  487. "type": "table",
  488. "update_time": "2026-06-18 11:58:59"
  489. }
  490. },
  491. {
  492. "index": 26,
  493. "source_table_index": 30,
  494. "name_zh": "出院评估记录",
  495. "name_en": "TB_CIS_CYPGJL",
  496. "column_count": 33,
  497. "status": "success",
  498. "operation": "create",
  499. "response": {
  500. "category": "HOPMs标准数据集",
  501. "create_time": "2026-06-18 11:59:04",
  502. "describe": "",
  503. "id": 2592,
  504. "name_en": "TB_CIS_CYPGJL",
  505. "name_zh": "出院评估记录",
  506. "tag": [],
  507. "type": "table",
  508. "update_time": "2026-06-18 11:59:04"
  509. }
  510. },
  511. {
  512. "index": 27,
  513. "source_table_index": 31,
  514. "name_zh": "首次病程记录",
  515. "name_en": "TB_CIS_SCBCJL",
  516. "column_count": 42,
  517. "status": "success",
  518. "operation": "create",
  519. "response": {
  520. "category": "HOPMs标准数据集",
  521. "create_time": "2026-06-18 11:59:05",
  522. "describe": "",
  523. "id": 2607,
  524. "name_en": "TB_CIS_SCBCJL",
  525. "name_zh": "首次病程记录",
  526. "tag": [],
  527. "type": "table",
  528. "update_time": "2026-06-18 11:59:05"
  529. }
  530. },
  531. {
  532. "index": 28,
  533. "source_table_index": 32,
  534. "name_zh": "日常病程记录",
  535. "name_en": "TB_CIS_RCBCJL",
  536. "column_count": 28,
  537. "status": "success",
  538. "operation": "create",
  539. "response": {
  540. "category": "HOPMs标准数据集",
  541. "create_time": "2026-06-18 11:59:07",
  542. "describe": "",
  543. "id": 2621,
  544. "name_en": "TB_CIS_RCBCJL",
  545. "name_zh": "日常病程记录",
  546. "tag": [],
  547. "type": "table",
  548. "update_time": "2026-06-18 11:59:07"
  549. }
  550. },
  551. {
  552. "index": 29,
  553. "source_table_index": 33,
  554. "name_zh": "上级医师查房记录",
  555. "name_en": "TB_CIS_SJYSCFJL",
  556. "column_count": 33,
  557. "status": "success",
  558. "operation": "create",
  559. "response": {
  560. "category": "HOPMs标准数据集",
  561. "create_time": "2026-06-18 11:59:08",
  562. "describe": "",
  563. "id": 2628,
  564. "name_en": "TB_CIS_SJYSCFJL",
  565. "name_zh": "上级医师查房记录",
  566. "tag": [],
  567. "type": "table",
  568. "update_time": "2026-06-18 11:59:08"
  569. }
  570. },
  571. {
  572. "index": 30,
  573. "source_table_index": 34,
  574. "name_zh": "疑难病例讨论",
  575. "name_en": "TB_CIS_YNBLTL",
  576. "column_count": 37,
  577. "status": "success",
  578. "operation": "create",
  579. "response": {
  580. "category": "HOPMs标准数据集",
  581. "create_time": "2026-06-18 11:59:09",
  582. "describe": "",
  583. "id": 2636,
  584. "name_en": "TB_CIS_YNBLTL",
  585. "name_zh": "疑难病例讨论",
  586. "tag": [],
  587. "type": "table",
  588. "update_time": "2026-06-18 11:59:09"
  589. }
  590. },
  591. {
  592. "index": 31,
  593. "source_table_index": 35,
  594. "name_zh": "交接班记录",
  595. "name_en": "TB_CIS_JJBJL",
  596. "column_count": 46,
  597. "status": "success",
  598. "operation": "create",
  599. "response": {
  600. "category": "HOPMs标准数据集",
  601. "create_time": "2026-06-18 11:59:10",
  602. "describe": "",
  603. "id": 2650,
  604. "name_en": "TB_CIS_JJBJL",
  605. "name_zh": "交接班记录",
  606. "tag": [],
  607. "type": "table",
  608. "update_time": "2026-06-18 11:59:10"
  609. }
  610. },
  611. {
  612. "index": 32,
  613. "source_table_index": 36,
  614. "name_zh": "转科记录",
  615. "name_en": "TB_CIS_ZKJL",
  616. "column_count": 57,
  617. "status": "success",
  618. "operation": "create",
  619. "response": {
  620. "category": "HOPMs标准数据集",
  621. "create_time": "2026-06-18 11:59:13",
  622. "describe": "",
  623. "id": 2677,
  624. "name_en": "TB_CIS_ZKJL",
  625. "name_zh": "转科记录",
  626. "tag": [],
  627. "type": "table",
  628. "update_time": "2026-06-18 11:59:13"
  629. }
  630. },
  631. {
  632. "index": 33,
  633. "source_table_index": 37,
  634. "name_zh": "阶段小结",
  635. "name_en": "TB_CIS_JDXJ",
  636. "column_count": 45,
  637. "status": "success",
  638. "operation": "create",
  639. "response": {
  640. "category": "HOPMs标准数据集",
  641. "create_time": "2026-06-18 11:59:15",
  642. "describe": "",
  643. "id": 2692,
  644. "name_en": "TB_CIS_JDXJ",
  645. "name_zh": "阶段小结",
  646. "tag": [],
  647. "type": "table",
  648. "update_time": "2026-06-18 11:59:15"
  649. }
  650. },
  651. {
  652. "index": 34,
  653. "source_table_index": 38,
  654. "name_zh": "抢救记录",
  655. "name_en": "TB_CIS_QJJL",
  656. "column_count": 41,
  657. "status": "success",
  658. "operation": "create",
  659. "response": {
  660. "category": "HOPMs标准数据集",
  661. "create_time": "2026-06-18 11:59:16",
  662. "describe": "",
  663. "id": 2697,
  664. "name_en": "TB_CIS_QJJL",
  665. "name_zh": "抢救记录",
  666. "tag": [],
  667. "type": "table",
  668. "update_time": "2026-06-18 11:59:16"
  669. }
  670. },
  671. {
  672. "index": 35,
  673. "source_table_index": 39,
  674. "name_zh": "术前小结",
  675. "name_en": "TB_CIS_SQXJ",
  676. "column_count": 46,
  677. "status": "success",
  678. "operation": "create",
  679. "response": {
  680. "category": "HOPMs标准数据集",
  681. "create_time": "2026-06-18 11:59:18",
  682. "describe": "",
  683. "id": 2720,
  684. "name_en": "TB_CIS_SQXJ",
  685. "name_zh": "术前小结",
  686. "tag": [],
  687. "type": "table",
  688. "update_time": "2026-06-18 11:59:18"
  689. }
  690. },
  691. {
  692. "index": 36,
  693. "source_table_index": 40,
  694. "name_zh": "术前讨论",
  695. "name_en": "TB_CIS_SQTL",
  696. "column_count": 51,
  697. "status": "success",
  698. "operation": "create",
  699. "response": {
  700. "category": "HOPMs标准数据集",
  701. "create_time": "2026-06-18 11:59:21",
  702. "describe": "",
  703. "id": 2741,
  704. "name_en": "TB_CIS_SQTL",
  705. "name_zh": "术前讨论",
  706. "tag": [],
  707. "type": "table",
  708. "update_time": "2026-06-18 11:59:21"
  709. }
  710. },
  711. {
  712. "index": 37,
  713. "source_table_index": 41,
  714. "name_zh": "术后首次病程记录",
  715. "name_en": "TB_CIS_SHSCBCJL",
  716. "column_count": 41,
  717. "status": "success",
  718. "operation": "create",
  719. "response": {
  720. "category": "HOPMs标准数据集",
  721. "create_time": "2026-06-18 11:59:23",
  722. "describe": "",
  723. "id": 2754,
  724. "name_en": "TB_CIS_SHSCBCJL",
  725. "name_zh": "术后首次病程记录",
  726. "tag": [],
  727. "type": "table",
  728. "update_time": "2026-06-18 11:59:23"
  729. }
  730. },
  731. {
  732. "index": 38,
  733. "source_table_index": 42,
  734. "name_zh": "出院记录",
  735. "name_en": "TB_CIS_CYJL",
  736. "column_count": 55,
  737. "status": "success",
  738. "operation": "create",
  739. "response": {
  740. "category": "HOPMs标准数据集",
  741. "create_time": "2026-06-18 11:59:25",
  742. "describe": "",
  743. "id": 2774,
  744. "name_en": "TB_CIS_CYJL",
  745. "name_zh": "出院记录",
  746. "tag": [],
  747. "type": "table",
  748. "update_time": "2026-06-18 11:59:25"
  749. }
  750. },
  751. {
  752. "index": 39,
  753. "source_table_index": 43,
  754. "name_zh": "死亡记录",
  755. "name_en": "TB_CIS_SWJL",
  756. "column_count": 39,
  757. "status": "success",
  758. "operation": "create",
  759. "response": {
  760. "category": "HOPMs标准数据集",
  761. "create_time": "2026-06-18 11:59:27",
  762. "describe": "",
  763. "id": 2786,
  764. "name_en": "TB_CIS_SWJL",
  765. "name_zh": "死亡记录",
  766. "tag": [],
  767. "type": "table",
  768. "update_time": "2026-06-18 11:59:27"
  769. }
  770. },
  771. {
  772. "index": 40,
  773. "source_table_index": 44,
  774. "name_zh": "死亡病例讨论记录",
  775. "name_en": "TB_CIS_SWBLTLJL",
  776. "column_count": 41,
  777. "status": "success",
  778. "operation": "create",
  779. "response": {
  780. "category": "HOPMs标准数据集",
  781. "create_time": "2026-06-18 11:59:29",
  782. "describe": "",
  783. "id": 2795,
  784. "name_en": "TB_CIS_SWBLTLJL",
  785. "name_zh": "死亡病例讨论记录",
  786. "tag": [],
  787. "type": "table",
  788. "update_time": "2026-06-18 11:59:29"
  789. }
  790. },
  791. {
  792. "index": 41,
  793. "source_table_index": 45,
  794. "name_zh": "会诊记录表",
  795. "name_en": "TB_CIS_HZJLB",
  796. "column_count": 45,
  797. "status": "success",
  798. "operation": "create",
  799. "response": {
  800. "category": "HOPMs标准数据集",
  801. "create_time": "2026-06-18 11:59:31",
  802. "describe": "",
  803. "id": 2807,
  804. "name_en": "TB_CIS_HZJLB",
  805. "name_zh": "会诊记录表",
  806. "tag": [],
  807. "type": "table",
  808. "update_time": "2026-06-18 11:59:31"
  809. }
  810. },
  811. {
  812. "index": 42,
  813. "source_table_index": 46,
  814. "name_zh": "会诊医生记录表",
  815. "name_en": "TB_CIS_HZYSJLB",
  816. "column_count": 19,
  817. "status": "success",
  818. "operation": "create",
  819. "response": {
  820. "category": "HOPMs标准数据集",
  821. "create_time": "2026-06-18 11:59:33",
  822. "describe": "",
  823. "id": 2834,
  824. "name_en": "TB_CIS_HZYSJLB",
  825. "name_zh": "会诊医生记录表",
  826. "tag": [],
  827. "type": "table",
  828. "update_time": "2026-06-18 11:59:33"
  829. }
  830. },
  831. {
  832. "index": 43,
  833. "source_table_index": 47,
  834. "name_zh": "—般护理记录",
  835. "name_en": "TB_CIS_BHLJL",
  836. "column_count": 56,
  837. "status": "success",
  838. "operation": "create",
  839. "response": {
  840. "category": "HOPMs标准数据集",
  841. "create_time": "2026-06-18 11:59:34",
  842. "describe": "",
  843. "id": 2844,
  844. "name_en": "TB_CIS_BHLJL",
  845. "name_zh": "—般护理记录",
  846. "tag": [],
  847. "type": "table",
  848. "update_time": "2026-06-18 11:59:34"
  849. }
  850. },
  851. {
  852. "index": 44,
  853. "source_table_index": 48,
  854. "name_zh": "病危(重)护理记录",
  855. "name_en": "TB_CIS_BWZHLJL",
  856. "column_count": 41,
  857. "status": "success",
  858. "operation": "create",
  859. "response": {
  860. "category": "HOPMs标准数据集",
  861. "create_time": "2026-06-18 11:59:36",
  862. "describe": "",
  863. "id": 2870,
  864. "name_en": "TB_CIS_BWZHLJL",
  865. "name_zh": "病危(重)护理记录",
  866. "tag": [],
  867. "type": "table",
  868. "update_time": "2026-06-18 11:59:36"
  869. }
  870. },
  871. {
  872. "index": 45,
  873. "source_table_index": 49,
  874. "name_zh": "手术护理记录",
  875. "name_en": "TB_CIS_SSHLJL",
  876. "column_count": 65,
  877. "status": "success",
  878. "operation": "create",
  879. "response": {
  880. "category": "HOPMs标准数据集",
  881. "create_time": "2026-06-18 11:59:38",
  882. "describe": "",
  883. "id": 2878,
  884. "name_en": "TB_CIS_SSHLJL",
  885. "name_zh": "手术护理记录",
  886. "tag": [],
  887. "type": "table",
  888. "update_time": "2026-06-18 11:59:38"
  889. }
  890. },
  891. {
  892. "index": 46,
  893. "source_table_index": 50,
  894. "name_zh": "生命体征测量记录",
  895. "name_en": "TB_CIS_SMTZCLJL",
  896. "column_count": 41,
  897. "status": "success",
  898. "operation": "create",
  899. "response": {
  900. "category": "HOPMs标准数据集",
  901. "create_time": "2026-06-18 11:59:40",
  902. "describe": "",
  903. "id": 2910,
  904. "name_en": "TB_CIS_SMTZCLJL",
  905. "name_zh": "生命体征测量记录",
  906. "tag": [],
  907. "type": "table",
  908. "update_time": "2026-06-18 11:59:40"
  909. }
  910. },
  911. {
  912. "index": 47,
  913. "source_table_index": 51,
  914. "name_zh": "出入量记录",
  915. "name_en": "TB_CIS_CRLJL",
  916. "column_count": 35,
  917. "status": "success",
  918. "operation": "create",
  919. "response": {
  920. "category": "HOPMs标准数据集",
  921. "create_time": "2026-06-18 11:59:42",
  922. "describe": "",
  923. "id": 2919,
  924. "name_en": "TB_CIS_CRLJL",
  925. "name_zh": "出入量记录",
  926. "tag": [],
  927. "type": "table",
  928. "update_time": "2026-06-18 11:59:42"
  929. }
  930. },
  931. {
  932. "index": 48,
  933. "source_table_index": 52,
  934. "name_zh": "出入量用药记录",
  935. "name_en": "TB_CIS_CRLYYJL",
  936. "column_count": 20,
  937. "status": "success",
  938. "operation": "create",
  939. "response": {
  940. "category": "HOPMs标准数据集",
  941. "create_time": "2026-06-18 11:59:43",
  942. "describe": "",
  943. "id": 2924,
  944. "name_en": "TB_CIS_CRLYYJL",
  945. "name_zh": "出入量用药记录",
  946. "tag": [],
  947. "type": "table",
  948. "update_time": "2026-06-18 11:59:43"
  949. }
  950. },
  951. {
  952. "index": 49,
  953. "source_table_index": 53,
  954. "name_zh": "高值耗材使用记录",
  955. "name_en": "TB_CIS_GZHCSYJL",
  956. "column_count": 33,
  957. "status": "success",
  958. "operation": "create",
  959. "response": {
  960. "category": "HOPMs标准数据集",
  961. "create_time": "2026-06-18 11:59:44",
  962. "describe": "",
  963. "id": 2934,
  964. "name_en": "TB_CIS_GZHCSYJL",
  965. "name_zh": "高值耗材使用记录",
  966. "tag": [],
  967. "type": "table",
  968. "update_time": "2026-06-18 11:59:44"
  969. }
  970. },
  971. {
  972. "index": 50,
  973. "source_table_index": 54,
  974. "name_zh": "一般手术记录",
  975. "name_en": "TB_CIS_YBSSJL",
  976. "column_count": 72,
  977. "status": "success",
  978. "operation": "create",
  979. "response": {
  980. "category": "HOPMs标准数据集",
  981. "create_time": "2026-06-18 11:59:46",
  982. "describe": "",
  983. "id": 2945,
  984. "name_en": "TB_CIS_YBSSJL",
  985. "name_zh": "一般手术记录",
  986. "tag": [],
  987. "type": "table",
  988. "update_time": "2026-06-18 11:59:46"
  989. }
  990. },
  991. {
  992. "index": 51,
  993. "source_table_index": 55,
  994. "name_zh": "麻醉术前访视记录",
  995. "name_en": "TB_CIS_MZSQFSJL",
  996. "column_count": 59,
  997. "status": "success",
  998. "operation": "create",
  999. "response": {
  1000. "category": "HOPMs标准数据集",
  1001. "create_time": "2026-06-18 11:59:48",
  1002. "describe": "",
  1003. "id": 2980,
  1004. "name_en": "TB_CIS_MZSQFSJL",
  1005. "name_zh": "麻醉术前访视记录",
  1006. "tag": [],
  1007. "type": "table",
  1008. "update_time": "2026-06-18 11:59:48"
  1009. }
  1010. },
  1011. {
  1012. "index": 52,
  1013. "source_table_index": 56,
  1014. "name_zh": "麻醉记录",
  1015. "name_en": "TB_CIS_MZJL",
  1016. "column_count": 68,
  1017. "status": "success",
  1018. "operation": "create",
  1019. "response": {
  1020. "category": "HOPMs标准数据集",
  1021. "create_time": "2026-06-18 11:59:51",
  1022. "describe": "",
  1023. "id": 3007,
  1024. "name_en": "TB_CIS_MZJL",
  1025. "name_zh": "麻醉记录",
  1026. "tag": [],
  1027. "type": "table",
  1028. "update_time": "2026-06-18 11:59:51"
  1029. }
  1030. },
  1031. {
  1032. "index": 53,
  1033. "source_table_index": 57,
  1034. "name_zh": "麻醉术后访视记录",
  1035. "name_en": "TB_CIS_MZSHFSJL",
  1036. "column_count": 41,
  1037. "status": "success",
  1038. "operation": "create",
  1039. "response": {
  1040. "category": "HOPMs标准数据集",
  1041. "create_time": "2026-06-18 11:59:55",
  1042. "describe": "",
  1043. "id": 3032,
  1044. "name_en": "TB_CIS_MZSHFSJL",
  1045. "name_zh": "麻醉术后访视记录",
  1046. "tag": [],
  1047. "type": "table",
  1048. "update_time": "2026-06-18 11:59:55"
  1049. }
  1050. },
  1051. {
  1052. "index": 54,
  1053. "source_table_index": 58,
  1054. "name_zh": "实验室检验报告表头",
  1055. "name_en": "TB_LIS_Report",
  1056. "column_count": 57,
  1057. "status": "success",
  1058. "operation": "create",
  1059. "response": {
  1060. "category": "HOPMs标准数据集",
  1061. "create_time": "2026-06-18 11:59:56",
  1062. "describe": "",
  1063. "id": 3038,
  1064. "name_en": "TB_LIS_Report",
  1065. "name_zh": "实验室检验报告表头",
  1066. "tag": [],
  1067. "type": "table",
  1068. "update_time": "2026-06-18 11:59:56"
  1069. }
  1070. },
  1071. {
  1072. "index": 55,
  1073. "source_table_index": 59,
  1074. "name_zh": "检验结果指标表",
  1075. "name_en": "TB_LIS_Indicators",
  1076. "column_count": 24,
  1077. "status": "success",
  1078. "operation": "create",
  1079. "response": {
  1080. "category": "HOPMs标准数据集",
  1081. "create_time": "2026-06-18 11:59:59",
  1082. "describe": "",
  1083. "id": 3088,
  1084. "name_en": "TB_LIS_Indicators",
  1085. "name_zh": "检验结果指标表",
  1086. "tag": [],
  1087. "type": "table",
  1088. "update_time": "2026-06-18 11:59:59"
  1089. }
  1090. },
  1091. {
  1092. "index": 56,
  1093. "source_table_index": 60,
  1094. "name_zh": "细菌结果",
  1095. "name_en": "TB_LIS_Bacteria_Result",
  1096. "column_count": 20,
  1097. "status": "success",
  1098. "operation": "create",
  1099. "response": {
  1100. "category": "HOPMs标准数据集",
  1101. "create_time": "2026-06-18 12:00:01",
  1102. "describe": "微生物检验是实验室检验中的一个特殊检验类别,包含一些特殊内容,因此设置此表。细菌结果的一条记录可能会对应多条药敏结果的记录。如果医疗机构LIS系统中并未将微生物检验独立出来,则可根据现有实施情况决定是否填写本表。",
  1103. "id": 3107,
  1104. "name_en": "TB_LIS_Bacteria_Result",
  1105. "name_zh": "细菌结果",
  1106. "tag": [],
  1107. "type": "table",
  1108. "update_time": "2026-06-18 12:00:01"
  1109. }
  1110. },
  1111. {
  1112. "index": 57,
  1113. "source_table_index": 61,
  1114. "name_zh": "药敏结果",
  1115. "name_en": "TB_LIS_Allergy_Result",
  1116. "column_count": 16,
  1117. "status": "success",
  1118. "operation": "create",
  1119. "response": {
  1120. "category": "HOPMs标准数据集",
  1121. "create_time": "2026-06-18 12:00:02",
  1122. "describe": "",
  1123. "id": 3118,
  1124. "name_en": "TB_LIS_Allergy_Result",
  1125. "name_zh": "药敏结果",
  1126. "tag": [],
  1127. "type": "table",
  1128. "update_time": "2026-06-18 12:00:02"
  1129. }
  1130. },
  1131. {
  1132. "index": 58,
  1133. "source_table_index": 62,
  1134. "name_zh": "医学影像检查报告表",
  1135. "name_en": "TB_RIS_Report",
  1136. "column_count": 81,
  1137. "status": "success",
  1138. "operation": "create",
  1139. "response": {
  1140. "category": "HOPMs标准数据集",
  1141. "create_time": "2026-06-18 12:00:03",
  1142. "describe": "",
  1143. "id": 3126,
  1144. "name_en": "TB_RIS_Report",
  1145. "name_zh": "医学影像检查报告表",
  1146. "tag": [],
  1147. "type": "table",
  1148. "update_time": "2026-06-18 12:00:03"
  1149. }
  1150. },
  1151. {
  1152. "index": 59,
  1153. "source_table_index": 63,
  1154. "name_zh": "住院病案基本信息",
  1155. "name_en": "TB_BA_JBXX",
  1156. "column_count": 103,
  1157. "status": "success",
  1158. "operation": "create",
  1159. "response": {
  1160. "category": "HOPMs标准数据集",
  1161. "create_time": "2026-06-18 12:00:06",
  1162. "describe": "记录患者住院期间,患者基本信息和入院信息、出院信息。",
  1163. "id": 3174,
  1164. "name_en": "TB_BA_JBXX",
  1165. "name_zh": "住院病案基本信息",
  1166. "tag": [],
  1167. "type": "table",
  1168. "update_time": "2026-06-18 12:00:06"
  1169. }
  1170. },
  1171. {
  1172. "index": 60,
  1173. "source_table_index": 64,
  1174. "name_zh": "住院病案辅助信息",
  1175. "name_en": "TB_BA_FZXX",
  1176. "column_count": 108,
  1177. "status": "success",
  1178. "operation": "create",
  1179. "response": {
  1180. "category": "HOPMs标准数据集",
  1181. "create_time": "2026-06-18 12:00:11",
  1182. "describe": "记录患者住院期间,医生根据患者病情信息对患者进行诊断和治疗的辅助信息。",
  1183. "id": 3248,
  1184. "name_en": "TB_BA_FZXX",
  1185. "name_zh": "住院病案辅助信息",
  1186. "tag": [],
  1187. "type": "table",
  1188. "update_time": "2026-06-18 12:00:11"
  1189. }
  1190. },
  1191. {
  1192. "index": 61,
  1193. "source_table_index": 65,
  1194. "name_zh": "住院病案诊断信息",
  1195. "name_en": "TB_BA_ZDXX",
  1196. "column_count": 29,
  1197. "status": "success",
  1198. "operation": "create",
  1199. "response": {
  1200. "category": "HOPMs标准数据集",
  1201. "create_time": "2026-06-18 12:00:17",
  1202. "describe": "记录患者住院期间,医生根据患者病情列出的中医、西医诊断结果。含入院时的门诊诊断、入院诊断、出院诊断等场合诊断信息。",
  1203. "id": 3338,
  1204. "name_en": "TB_BA_ZDXX",
  1205. "name_zh": "住院病案诊断信息",
  1206. "tag": [],
  1207. "type": "table",
  1208. "update_time": "2026-06-18 12:00:17"
  1209. }
  1210. },
  1211. {
  1212. "index": 62,
  1213. "source_table_index": 66,
  1214. "name_zh": "住院病案手术信息",
  1215. "name_en": "TB_BA_SSXX",
  1216. "column_count": 40,
  1217. "status": "success",
  1218. "operation": "create",
  1219. "response": {
  1220. "category": "HOPMs标准数据集",
  1221. "create_time": "2026-06-18 12:00:18",
  1222. "describe": "记录患者住院期间,医生根据患者病情开具手术治疗单,医生完成手术的记录信息。",
  1223. "id": 3352,
  1224. "name_en": "TB_BA_SSXX",
  1225. "name_zh": "住院病案手术信息",
  1226. "tag": [],
  1227. "type": "table",
  1228. "update_time": "2026-06-18 12:00:18"
  1229. }
  1230. },
  1231. {
  1232. "index": 63,
  1233. "source_table_index": 69,
  1234. "name_zh": "住院日报数据",
  1235. "name_en": "TB_BA_ZYRB",
  1236. "column_count": 25,
  1237. "status": "success",
  1238. "operation": "create",
  1239. "response": {
  1240. "category": "HOPMs标准数据集",
  1241. "create_time": "2026-06-18 12:00:20",
  1242. "describe": "",
  1243. "id": 3381,
  1244. "name_en": "TB_BA_ZYRB",
  1245. "name_zh": "住院日报数据",
  1246. "tag": [],
  1247. "type": "table",
  1248. "update_time": "2026-06-18 12:00:20"
  1249. }
  1250. },
  1251. {
  1252. "index": 64,
  1253. "source_table_index": 70,
  1254. "name_zh": "手术记录表",
  1255. "name_en": "TB_HIS_Opr_Rec",
  1256. "column_count": 30,
  1257. "status": "success",
  1258. "operation": "create",
  1259. "response": {
  1260. "category": "HOPMs标准数据集",
  1261. "create_time": "2026-06-18 12:00:21",
  1262. "describe": "根据医疗机构内的手术记录进行填报(相应的数据源根据医疗机构信息系统不同会有三类:收费明细记录、电子病历、手术系统)。此信息可被以新增、更新、作废方式填报。一旦重复收到相同主键的记录,则最新接受到的信息将覆盖原先收到的相同主键的信息。",
  1263. "id": 3399,
  1264. "name_en": "TB_HIS_Opr_Rec",
  1265. "name_zh": "手术记录表",
  1266. "tag": [],
  1267. "type": "table",
  1268. "update_time": "2026-06-18 12:00:21"
  1269. }
  1270. },
  1271. {
  1272. "index": 65,
  1273. "source_table_index": 71,
  1274. "name_zh": "手术明细表",
  1275. "name_en": "TB_Operation_Detail",
  1276. "column_count": 32,
  1277. "status": "success",
  1278. "operation": "create",
  1279. "response": {
  1280. "category": "HOPMs标准数据集",
  1281. "create_time": "2026-06-18 12:00:23",
  1282. "describe": "",
  1283. "id": 3421,
  1284. "name_en": "TB_Operation_Detail",
  1285. "name_zh": "手术明细表",
  1286. "tag": [],
  1287. "type": "table",
  1288. "update_time": "2026-06-18 12:00:23"
  1289. }
  1290. },
  1291. {
  1292. "index": 66,
  1293. "source_table_index": 72,
  1294. "name_zh": "体检登记表",
  1295. "name_en": "TB_TJ_REGISTER",
  1296. "column_count": 20,
  1297. "status": "success",
  1298. "operation": "create",
  1299. "response": {
  1300. "category": "HOPMs标准数据集",
  1301. "create_time": "2026-06-18 12:00:24",
  1302. "describe": "",
  1303. "id": 3437,
  1304. "name_en": "TB_TJ_REGISTER",
  1305. "name_zh": "体检登记表",
  1306. "tag": [],
  1307. "type": "table",
  1308. "update_time": "2026-06-18 12:00:24"
  1309. }
  1310. },
  1311. {
  1312. "index": 67,
  1313. "source_table_index": 73,
  1314. "name_zh": "体检收费表",
  1315. "name_en": "TB_TJ_Charge",
  1316. "column_count": 18,
  1317. "status": "success",
  1318. "operation": "create",
  1319. "response": {
  1320. "category": "HOPMs标准数据集",
  1321. "create_time": "2026-06-18 12:00:26",
  1322. "describe": "",
  1323. "id": 3449,
  1324. "name_en": "TB_TJ_Charge",
  1325. "name_zh": "体检收费表",
  1326. "tag": [],
  1327. "type": "table",
  1328. "update_time": "2026-06-18 12:00:26"
  1329. }
  1330. },
  1331. {
  1332. "index": 68,
  1333. "source_table_index": 74,
  1334. "name_zh": "报告首页",
  1335. "name_en": "TB_YL_TJBGSY",
  1336. "column_count": 42,
  1337. "status": "success",
  1338. "operation": "create",
  1339. "response": {
  1340. "category": "HOPMs标准数据集",
  1341. "create_time": "2026-06-18 12:00:26",
  1342. "describe": "",
  1343. "id": 3458,
  1344. "name_en": "TB_YL_TJBGSY",
  1345. "name_zh": "报告首页",
  1346. "tag": [],
  1347. "type": "table",
  1348. "update_time": "2026-06-18 12:00:26"
  1349. }
  1350. },
  1351. {
  1352. "index": 69,
  1353. "source_table_index": 75,
  1354. "name_zh": "体检分科(分组)报告",
  1355. "name_en": "TB_YL_TJBG",
  1356. "column_count": 14,
  1357. "status": "success",
  1358. "operation": "create",
  1359. "response": {
  1360. "category": "HOPMs标准数据集",
  1361. "create_time": "2026-06-18 12:00:28",
  1362. "describe": "",
  1363. "id": 3491,
  1364. "name_en": "TB_YL_TJBG",
  1365. "name_zh": "体检分科(分组)报告",
  1366. "tag": [],
  1367. "type": "table",
  1368. "update_time": "2026-06-18 12:00:28"
  1369. }
  1370. },
  1371. {
  1372. "index": 70,
  1373. "source_table_index": 76,
  1374. "name_zh": "体检明细表",
  1375. "name_en": "TB_YL_TJMX",
  1376. "column_count": 13,
  1377. "status": "success",
  1378. "operation": "create",
  1379. "response": {
  1380. "category": "HOPMs标准数据集",
  1381. "create_time": "2026-06-18 12:00:29",
  1382. "describe": "",
  1383. "id": 3497,
  1384. "name_en": "TB_YL_TJMX",
  1385. "name_zh": "体检明细表",
  1386. "tag": [],
  1387. "type": "table",
  1388. "update_time": "2026-06-18 12:00:29"
  1389. }
  1390. },
  1391. {
  1392. "index": 71,
  1393. "source_table_index": 78,
  1394. "name_zh": "输血记录",
  1395. "name_en": "TB_EMR_SXJL",
  1396. "column_count": 47,
  1397. "status": "success",
  1398. "operation": "create",
  1399. "response": {
  1400. "category": "HOPMs标准数据集",
  1401. "create_time": "2026-06-18 12:00:29",
  1402. "describe": "",
  1403. "id": 3505,
  1404. "name_en": "TB_EMR_SXJL",
  1405. "name_zh": "输血记录",
  1406. "tag": [],
  1407. "type": "table",
  1408. "update_time": "2026-06-18 12:00:29"
  1409. }
  1410. },
  1411. {
  1412. "index": 72,
  1413. "source_table_index": 79,
  1414. "name_zh": "会诊记录表",
  1415. "name_en": "TB_YL_HZJL",
  1416. "column_count": 22,
  1417. "status": "success",
  1418. "operation": "create",
  1419. "response": {
  1420. "category": "HOPMs标准数据集",
  1421. "create_time": "2026-06-18 12:00:32",
  1422. "describe": "该表对患者在医疗机构中的会诊记录和会诊结果数据进行收集,会诊信息通过就诊流水号与患者的门诊或住院就诊记录进行关联,通过患者主索引与患者信息进行关联。",
  1423. "id": 3531,
  1424. "name_en": "TB_YL_HZJL",
  1425. "name_zh": "会诊记录表",
  1426. "tag": [],
  1427. "type": "table",
  1428. "update_time": "2026-06-18 12:00:32"
  1429. }
  1430. },
  1431. {
  1432. "index": 73,
  1433. "source_table_index": 80,
  1434. "name_zh": "转诊(院)转出记录表",
  1435. "name_en": "TB_SXZZ_ZCJLB",
  1436. "column_count": 36,
  1437. "status": "success",
  1438. "operation": "create",
  1439. "response": {
  1440. "category": "HOPMs标准数据集",
  1441. "create_time": "2026-06-18 12:00:33",
  1442. "describe": "记录患者在就诊医疗机构进行转诊时填写的转出记录单信息,每次患者转出产一个唯一的转诊流水号,用于患者的转诊记录标识,所有的转诊记录需要与患者的就诊记录、患者信息进行关联,该表与患者就诊记录的关联通过就诊流水号,与患者信息的关联通过患者主索引。",
  1443. "id": 3547,
  1444. "name_en": "TB_SXZZ_ZCJLB",
  1445. "name_zh": "转诊(院)转出记录表",
  1446. "tag": [],
  1447. "type": "table",
  1448. "update_time": "2026-06-18 12:00:33"
  1449. }
  1450. },
  1451. {
  1452. "index": 74,
  1453. "source_table_index": 81,
  1454. "name_zh": "转诊(院)回转记录表",
  1455. "name_en": "TB_SXZZ_HZJLB",
  1456. "column_count": 33,
  1457. "status": "success",
  1458. "operation": "create",
  1459. "response": {
  1460. "category": "HOPMs标准数据集",
  1461. "create_time": "2026-06-18 12:00:35",
  1462. "describe": "记录患者在就诊医疗机构进行回转时填写的回转记录单信息,每次患者回转产生一个唯一的回转记录ID,该表的转诊流水号需要与转出记录单的转诊流水号进行关联,以确定回转记录单对应哪一次转出记录,用于患者的转诊记录标识,所有的转诊记录需要与患者的就诊记录、患者信息进行关联,该表与患者就诊记录的关联通过就诊流水号,与患者信息的关联通过患者主索引。",
  1463. "id": 3572,
  1464. "name_en": "TB_SXZZ_HZJLB",
  1465. "name_zh": "转诊(院)回转记录表",
  1466. "tag": [],
  1467. "type": "table",
  1468. "update_time": "2026-06-18 12:00:35"
  1469. }
  1470. },
  1471. {
  1472. "index": 75,
  1473. "source_table_index": 82,
  1474. "name_zh": "药品入库记录",
  1475. "name_en": "TB_YP_RRK",
  1476. "column_count": 48,
  1477. "status": "success",
  1478. "operation": "create",
  1479. "response": {
  1480. "category": "HOPMs标准数据集",
  1481. "create_time": "2026-06-18 12:00:36",
  1482. "describe": "",
  1483. "id": 3579,
  1484. "name_en": "TB_YP_RRK",
  1485. "name_zh": "药品入库记录",
  1486. "tag": [],
  1487. "type": "table",
  1488. "update_time": "2026-06-18 12:00:36"
  1489. }
  1490. },
  1491. {
  1492. "index": 76,
  1493. "source_table_index": 83,
  1494. "name_zh": "收入数据类别汇总中间表",
  1495. "name_en": "TB_KSCB_SR",
  1496. "column_count": 16,
  1497. "status": "success",
  1498. "operation": "create",
  1499. "response": {
  1500. "category": "HOPMs标准数据集",
  1501. "create_time": "2026-06-18 12:00:38",
  1502. "describe": "",
  1503. "id": 3623,
  1504. "name_en": "TB_KSCB_SR",
  1505. "name_zh": "收入数据类别汇总中间表",
  1506. "tag": [],
  1507. "type": "table",
  1508. "update_time": "2026-06-18 12:00:38"
  1509. }
  1510. },
  1511. {
  1512. "index": 77,
  1513. "source_table_index": 84,
  1514. "name_zh": "医技业务量中间表",
  1515. "name_en": "TB_KSCB_YJ",
  1516. "column_count": 12,
  1517. "status": "success",
  1518. "operation": "create",
  1519. "response": {
  1520. "category": "HOPMs标准数据集",
  1521. "create_time": "2026-06-18 12:00:39",
  1522. "describe": "",
  1523. "id": 3635,
  1524. "name_en": "TB_KSCB_YJ",
  1525. "name_zh": "医技业务量中间表",
  1526. "tag": [],
  1527. "type": "table",
  1528. "update_time": "2026-06-18 12:00:39"
  1529. }
  1530. },
  1531. {
  1532. "index": 78,
  1533. "source_table_index": 85,
  1534. "name_zh": "门诊业务量中间表",
  1535. "name_en": "TB_KSCB_MZ",
  1536. "column_count": 12,
  1537. "status": "success",
  1538. "operation": "create",
  1539. "response": {
  1540. "category": "HOPMs标准数据集",
  1541. "create_time": "2026-06-18 12:00:40",
  1542. "describe": "",
  1543. "id": 3639,
  1544. "name_en": "TB_KSCB_MZ",
  1545. "name_zh": "门诊业务量中间表",
  1546. "tag": [],
  1547. "type": "table",
  1548. "update_time": "2026-06-18 12:00:40"
  1549. }
  1550. },
  1551. {
  1552. "index": 79,
  1553. "source_table_index": 86,
  1554. "name_zh": "住院业务量中间表",
  1555. "name_en": "TB_KSCB_ZY",
  1556. "column_count": 12,
  1557. "status": "success",
  1558. "operation": "create",
  1559. "response": {
  1560. "category": "HOPMs标准数据集",
  1561. "create_time": "2026-06-18 12:00:41",
  1562. "describe": "",
  1563. "id": 3641,
  1564. "name_en": "TB_KSCB_ZY",
  1565. "name_zh": "住院业务量中间表",
  1566. "tag": [],
  1567. "type": "table",
  1568. "update_time": "2026-06-18 12:00:41"
  1569. }
  1570. },
  1571. {
  1572. "index": 80,
  1573. "source_table_index": 87,
  1574. "name_zh": "内部服务数据中间表",
  1575. "name_en": "TB_KSCB_NB",
  1576. "column_count": 17,
  1577. "status": "success",
  1578. "operation": "create",
  1579. "response": {
  1580. "category": "HOPMs标准数据集",
  1581. "create_time": "2026-06-18 12:00:41",
  1582. "describe": "",
  1583. "id": 3643,
  1584. "name_en": "TB_KSCB_NB",
  1585. "name_zh": "内部服务数据中间表",
  1586. "tag": [],
  1587. "type": "table",
  1588. "update_time": "2026-06-18 12:00:41"
  1589. }
  1590. },
  1591. {
  1592. "index": 81,
  1593. "source_table_index": 88,
  1594. "name_zh": "收入工作量中间表",
  1595. "name_en": "TB_XMCB_SR",
  1596. "column_count": 19,
  1597. "status": "success",
  1598. "operation": "create",
  1599. "response": {
  1600. "category": "HOPMs标准数据集",
  1601. "create_time": "2026-06-18 12:00:42",
  1602. "describe": "",
  1603. "id": 3652,
  1604. "name_en": "TB_XMCB_SR",
  1605. "name_zh": "收入工作量中间表",
  1606. "tag": [],
  1607. "type": "table",
  1608. "update_time": "2026-06-18 12:00:42"
  1609. }
  1610. },
  1611. {
  1612. "index": 82,
  1613. "source_table_index": 89,
  1614. "name_zh": "资产折旧明细表",
  1615. "name_en": "TB_XMCB_ZCZJ",
  1616. "column_count": 15,
  1617. "status": "success",
  1618. "operation": "create",
  1619. "response": {
  1620. "category": "HOPMs标准数据集",
  1621. "create_time": "2026-06-18 12:00:43",
  1622. "describe": "",
  1623. "id": 3664,
  1624. "name_en": "TB_XMCB_ZCZJ",
  1625. "name_zh": "资产折旧明细表",
  1626. "tag": [],
  1627. "type": "table",
  1628. "update_time": "2026-06-18 12:00:43"
  1629. }
  1630. },
  1631. {
  1632. "index": 83,
  1633. "source_table_index": 90,
  1634. "name_zh": "人员经费明细表",
  1635. "name_en": "TB_XMCB_RYJF",
  1636. "column_count": 16,
  1637. "status": "success",
  1638. "operation": "create",
  1639. "response": {
  1640. "category": "HOPMs标准数据集",
  1641. "create_time": "2026-06-18 12:00:44",
  1642. "describe": "",
  1643. "id": 3670,
  1644. "name_en": "TB_XMCB_RYJF",
  1645. "name_zh": "人员经费明细表",
  1646. "tag": [],
  1647. "type": "table",
  1648. "update_time": "2026-06-18 12:00:44"
  1649. }
  1650. },
  1651. {
  1652. "index": 84,
  1653. "source_table_index": 91,
  1654. "name_zh": "卫生材料明细表",
  1655. "name_en": "TB_XMCB_WSCL",
  1656. "column_count": 16,
  1657. "status": "success",
  1658. "operation": "create",
  1659. "response": {
  1660. "category": "HOPMs标准数据集",
  1661. "create_time": "2026-06-18 12:00:44",
  1662. "describe": "",
  1663. "id": 3672,
  1664. "name_en": "TB_XMCB_WSCL",
  1665. "name_zh": "卫生材料明细表",
  1666. "tag": [],
  1667. "type": "table",
  1668. "update_time": "2026-06-18 12:00:44"
  1669. }
  1670. },
  1671. {
  1672. "index": 85,
  1673. "source_table_index": 92,
  1674. "name_zh": "提取医疗风险基金成本明细表",
  1675. "name_en": "TB_XMCB_TQYLJJFX",
  1676. "column_count": 16,
  1677. "status": "success",
  1678. "operation": "create",
  1679. "response": {
  1680. "category": "HOPMs标准数据集",
  1681. "create_time": "2026-06-18 12:00:45",
  1682. "describe": "",
  1683. "id": 3673,
  1684. "name_en": "TB_XMCB_TQYLJJFX",
  1685. "name_zh": "提取医疗风险基金成本明细表",
  1686. "tag": [],
  1687. "type": "table",
  1688. "update_time": "2026-06-18 12:00:45"
  1689. }
  1690. },
  1691. {
  1692. "index": 86,
  1693. "source_table_index": 93,
  1694. "name_zh": "科室公摊成本明细表",
  1695. "name_en": "TB_XMCB_KSGT",
  1696. "column_count": 11,
  1697. "status": "success",
  1698. "operation": "create",
  1699. "response": {
  1700. "category": "HOPMs标准数据集",
  1701. "create_time": "2026-06-18 12:00:46",
  1702. "describe": "",
  1703. "id": 3674,
  1704. "name_en": "TB_XMCB_KSGT",
  1705. "name_zh": "科室公摊成本明细表",
  1706. "tag": [],
  1707. "type": "table",
  1708. "update_time": "2026-06-18 12:00:46"
  1709. }
  1710. },
  1711. {
  1712. "index": 87,
  1713. "source_table_index": 94,
  1714. "name_zh": "其他费用明细表",
  1715. "name_en": "TB_XMCB_OTHER",
  1716. "column_count": 16,
  1717. "status": "success",
  1718. "operation": "create",
  1719. "response": {
  1720. "category": "HOPMs标准数据集",
  1721. "create_time": "2026-06-18 12:00:46",
  1722. "describe": "",
  1723. "id": 3677,
  1724. "name_en": "TB_XMCB_OTHER",
  1725. "name_zh": "其他费用明细表",
  1726. "tag": [],
  1727. "type": "table",
  1728. "update_time": "2026-06-18 12:00:46"
  1729. }
  1730. },
  1731. {
  1732. "index": 88,
  1733. "source_table_index": 95,
  1734. "name_zh": "收费项目明细数据中间表",
  1735. "name_en": "TB_BZCB_SFXM",
  1736. "column_count": 24,
  1737. "status": "success",
  1738. "operation": "create",
  1739. "response": {
  1740. "category": "HOPMs标准数据集",
  1741. "create_time": "2026-06-18 12:00:47",
  1742. "describe": "",
  1743. "id": 3678,
  1744. "name_en": "TB_BZCB_SFXM",
  1745. "name_zh": "收费项目明细数据中间表",
  1746. "tag": [],
  1747. "type": "table",
  1748. "update_time": "2026-06-18 12:00:47"
  1749. }
  1750. },
  1751. {
  1752. "index": 89,
  1753. "source_table_index": 96,
  1754. "name_zh": "手术麻醉数据中间表",
  1755. "name_en": "TB_BZCB_SSMZ",
  1756. "column_count": 34,
  1757. "status": "success",
  1758. "operation": "create",
  1759. "response": {
  1760. "category": "HOPMs标准数据集",
  1761. "create_time": "2026-06-18 12:00:48",
  1762. "describe": "",
  1763. "id": 3693,
  1764. "name_en": "TB_BZCB_SSMZ",
  1765. "name_zh": "手术麻醉数据中间表",
  1766. "tag": [],
  1767. "type": "table",
  1768. "update_time": "2026-06-18 12:00:48"
  1769. }
  1770. },
  1771. {
  1772. "index": 90,
  1773. "source_table_index": 97,
  1774. "name_zh": "手术收入数据中间表",
  1775. "name_en": "TB_BZCB_SSSR",
  1776. "column_count": 16,
  1777. "status": "success",
  1778. "operation": "create",
  1779. "response": {
  1780. "category": "HOPMs标准数据集",
  1781. "create_time": "2026-06-18 12:00:50",
  1782. "describe": "",
  1783. "id": 3717,
  1784. "name_en": "TB_BZCB_SSSR",
  1785. "name_zh": "手术收入数据中间表",
  1786. "tag": [],
  1787. "type": "table",
  1788. "update_time": "2026-06-18 12:00:50"
  1789. }
  1790. },
  1791. {
  1792. "index": 91,
  1793. "source_table_index": 98,
  1794. "name_zh": "介入收入数据中间表",
  1795. "name_en": "TB_BZCB_JR",
  1796. "column_count": 16,
  1797. "status": "success",
  1798. "operation": "create",
  1799. "response": {
  1800. "category": "HOPMs标准数据集",
  1801. "create_time": "2026-06-18 12:00:50",
  1802. "describe": "",
  1803. "id": 3720,
  1804. "name_en": "TB_BZCB_JR",
  1805. "name_zh": "介入收入数据中间表",
  1806. "tag": [],
  1807. "type": "table",
  1808. "update_time": "2026-06-18 12:00:50"
  1809. }
  1810. },
  1811. {
  1812. "index": 92,
  1813. "source_table_index": 99,
  1814. "name_zh": "麻醉收入数据中间表",
  1815. "name_en": "TB_BZCB_MZ",
  1816. "column_count": 15,
  1817. "status": "success",
  1818. "operation": "create",
  1819. "response": {
  1820. "category": "HOPMs标准数据集",
  1821. "create_time": "2026-06-18 12:00:51",
  1822. "describe": "",
  1823. "id": 3722,
  1824. "name_en": "TB_BZCB_MZ",
  1825. "name_zh": "麻醉收入数据中间表",
  1826. "tag": [],
  1827. "type": "table",
  1828. "update_time": "2026-06-18 12:00:51"
  1829. }
  1830. },
  1831. {
  1832. "index": 93,
  1833. "source_table_index": 100,
  1834. "name_zh": "医技科室收入数据中间表",
  1835. "name_en": "TB_BZCB_YJ",
  1836. "column_count": 12,
  1837. "status": "success",
  1838. "operation": "create",
  1839. "response": {
  1840. "category": "HOPMs标准数据集",
  1841. "create_time": "2026-06-18 12:00:52",
  1842. "describe": "",
  1843. "id": 3723,
  1844. "name_en": "TB_BZCB_YJ",
  1845. "name_zh": "医技科室收入数据中间表",
  1846. "tag": [],
  1847. "type": "table",
  1848. "update_time": "2026-06-18 12:00:52"
  1849. }
  1850. },
  1851. {
  1852. "index": 94,
  1853. "source_table_index": 101,
  1854. "name_zh": "业务量、收入统计表",
  1855. "name_en": "TB_STAT_YWL_Report",
  1856. "column_count": 34,
  1857. "status": "success",
  1858. "operation": "create",
  1859. "response": {
  1860. "category": "HOPMs标准数据集",
  1861. "create_time": "2026-06-18 12:00:52",
  1862. "describe": "",
  1863. "id": 3725,
  1864. "name_en": "TB_STAT_YWL_Report",
  1865. "name_zh": "业务量、收入统计表",
  1866. "tag": [],
  1867. "type": "table",
  1868. "update_time": "2026-06-18 12:00:52"
  1869. }
  1870. },
  1871. {
  1872. "index": 95,
  1873. "source_table_index": 102,
  1874. "name_zh": "实验室检验报告数量日汇总",
  1875. "name_en": "TB_STAT_LIS_Report",
  1876. "column_count": 15,
  1877. "status": "success",
  1878. "operation": "create",
  1879. "response": {
  1880. "category": "HOPMs标准数据集",
  1881. "create_time": "2026-06-18 12:00:53",
  1882. "describe": "",
  1883. "id": 3755,
  1884. "name_en": "TB_STAT_LIS_Report",
  1885. "name_zh": "实验室检验报告数量日汇总",
  1886. "tag": [],
  1887. "type": "table",
  1888. "update_time": "2026-06-18 12:00:53"
  1889. }
  1890. },
  1891. {
  1892. "index": 96,
  1893. "source_table_index": 103,
  1894. "name_zh": "医学影像检查报告数量日汇总",
  1895. "name_en": "TB_STAT_RIS_Report",
  1896. "column_count": 15,
  1897. "status": "success",
  1898. "operation": "create",
  1899. "response": {
  1900. "category": "HOPMs标准数据集",
  1901. "create_time": "2026-06-18 12:00:54",
  1902. "describe": "",
  1903. "id": 3765,
  1904. "name_en": "TB_STAT_RIS_Report",
  1905. "name_zh": "医学影像检查报告数量日汇总",
  1906. "tag": [],
  1907. "type": "table",
  1908. "update_time": "2026-06-18 12:00:54"
  1909. }
  1910. },
  1911. {
  1912. "index": 97,
  1913. "source_table_index": 104,
  1914. "name_zh": "医院分担超指标统计",
  1915. "name_en": "TB_YB_CZBJL",
  1916. "column_count": 11,
  1917. "status": "success",
  1918. "operation": "create",
  1919. "response": {
  1920. "category": "HOPMs标准数据集",
  1921. "create_time": "2026-06-18 12:00:55",
  1922. "describe": "",
  1923. "id": 3770,
  1924. "name_en": "TB_YB_CZBJL",
  1925. "name_zh": "医院分担超指标统计",
  1926. "tag": [],
  1927. "type": "table",
  1928. "update_time": "2026-06-18 12:00:55"
  1929. }
  1930. },
  1931. {
  1932. "index": 98,
  1933. "source_table_index": 105,
  1934. "name_zh": "出院随访记录",
  1935. "name_en": "TB_CY_SFJL",
  1936. "column_count": 50,
  1937. "status": "success",
  1938. "operation": "create",
  1939. "response": {
  1940. "category": "HOPMs标准数据集",
  1941. "create_time": "2026-06-18 12:00:55",
  1942. "describe": "",
  1943. "id": 3775,
  1944. "name_en": "TB_CY_SFJL",
  1945. "name_zh": "出院随访记录",
  1946. "tag": [],
  1947. "type": "table",
  1948. "update_time": "2026-06-18 12:00:55"
  1949. }
  1950. },
  1951. {
  1952. "index": 99,
  1953. "source_table_index": 106,
  1954. "name_zh": "收费项目表",
  1955. "name_en": "TB_JC_SFXM",
  1956. "column_count": 23,
  1957. "status": "skipped",
  1958. "existing_id": 231,
  1959. "operation": "skip_existing"
  1960. },
  1961. {
  1962. "index": 100,
  1963. "source_table_index": 107,
  1964. "name_zh": "科室对照表",
  1965. "name_en": "TB_JC_KSDZB",
  1966. "column_count": 17,
  1967. "status": "success",
  1968. "operation": "create",
  1969. "response": {
  1970. "category": "HOPMs标准数据集",
  1971. "create_time": "2026-06-18 12:00:58",
  1972. "describe": "",
  1973. "id": 3813,
  1974. "name_en": "TB_JC_KSDZB",
  1975. "name_zh": "科室对照表",
  1976. "tag": [],
  1977. "type": "table",
  1978. "update_time": "2026-06-18 12:00:58"
  1979. }
  1980. },
  1981. {
  1982. "index": 101,
  1983. "source_table_index": 108,
  1984. "name_zh": "科室人员表",
  1985. "name_en": "TB_JC_KSRYB",
  1986. "column_count": 14,
  1987. "status": "success",
  1988. "operation": "create",
  1989. "response": {
  1990. "category": "HOPMs标准数据集",
  1991. "create_time": "2026-06-18 12:00:59",
  1992. "describe": "",
  1993. "id": 3826,
  1994. "name_en": "TB_JC_KSRYB",
  1995. "name_zh": "科室人员表",
  1996. "tag": [],
  1997. "type": "table",
  1998. "update_time": "2026-06-18 12:00:59"
  1999. }
  2000. },
  2001. {
  2002. "index": 102,
  2003. "source_table_index": 109,
  2004. "name_zh": "药品目录表",
  2005. "name_en": "TB_JC_YPML",
  2006. "column_count": 57,
  2007. "status": "success",
  2008. "operation": "create",
  2009. "response": {
  2010. "category": "HOPMs标准数据集",
  2011. "create_time": "2026-06-18 12:01:00",
  2012. "describe": "",
  2013. "id": 3835,
  2014. "name_en": "TB_JC_YPML",
  2015. "name_zh": "药品目录表",
  2016. "tag": [],
  2017. "type": "table",
  2018. "update_time": "2026-06-18 12:01:00"
  2019. }
  2020. }
  2021. ]
  2022. }