From f615f9b6d36016160595b55b7746c1d46d2be084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=87=8E=E9=96=93?= Date: Thu, 20 Apr 2023 18:21:28 +0900 Subject: [PATCH] =?UTF-8?q?Revert=20"=E5=85=88=E9=80=B2=E5=8C=BB=E7=99=82?= =?UTF-8?q?=E6=A9=9F=E5=99=A8=E3=80=80=E8=BF=BD=E5=8A=A0"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 143ba78b3802577961f221487afe27746a26ff55. --- .../utmp_tables/tables/com_forfront_med_equip.py | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 ecs/jskult-batch-daily/src/batch/ultmarc/utmp_tables/tables/com_forfront_med_equip.py diff --git a/ecs/jskult-batch-daily/src/batch/ultmarc/utmp_tables/tables/com_forfront_med_equip.py b/ecs/jskult-batch-daily/src/batch/ultmarc/utmp_tables/tables/com_forfront_med_equip.py deleted file mode 100644 index 261ca07c..00000000 --- a/ecs/jskult-batch-daily/src/batch/ultmarc/utmp_tables/tables/com_forfront_med_equip.py +++ /dev/null @@ -1,15 +0,0 @@ -from src.batch.ultmarc.utmp_tables.tables.ultmarc_table import UltmarcTable - - -class ComForfrontMedEquip(UltmarcTable): - """レイアウト区分022: COM_先端医療機器""" - hi_medicmach_code: str # 先進医療機器コード - hi_medicmach_name: str # 先端医療機器名 - maint_flag: str # 修正区分 - - def __init__(self, record: list[str]): - super().__init__(record) - - self.hi_medicmach_code = record[1] - self.hi_medicmach_name = record[4] - self.maint_flag = record[2]