From eac2280e8cb1c4cd32b2806c89f162973d9e9a18 Mon Sep 17 00:00:00 2001 From: liuyebo <1515783401@qq.com> Date: Fri, 14 Jun 2024 17:12:38 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=B5=8B=E8=AF=95=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=E5=85=B3=E9=94=AE=E8=AF=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- visual_model_test/visual_model_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/visual_model_test/visual_model_test.py b/visual_model_test/visual_model_test.py index dbfc86f..bdaed07 100644 --- a/visual_model_test/visual_model_test.py +++ b/visual_model_test/visual_model_test.py @@ -75,12 +75,12 @@ def main(model_type, pic_name=None): schema = ["患者姓名", "入院日期", "出院日期", "费用总额", "个人现金支付", "个人账户支付", "自费金额", "医保类型"] elif model_type == "discharge": task_path = "../config/model/discharge_record_model" - test_img_path = ucloud.get_private_url(pic_name) if pic_name else "img/PH20240401000003_3_001938_2.jpg" - schema = ["医院", "科别", "姓名", "入院日期", "出院日期", "主治医生"] + test_img_path = ucloud.get_private_url(pic_name) if pic_name else "img/PH20240428000832_1_093844_2.jpg" + schema = ["医院", "科室", "患者姓名", "入院日期", "出院日期", "主治医生"] elif model_type == "cost": task_path = "../config/model/cost_list_model" test_img_path = ucloud.get_private_url(pic_name) if pic_name else "img/PH20240511000648_4_094542_2.jpg" - schema = ["姓名", "入院日期", "出院日期", "费用总额"] + schema = ["患者姓名", "入院日期", "出院日期", "费用总额"] elif model_type == "cost_detail": task_path = "../config/model/cost_list_detail_model" test_img_path = ucloud.get_private_url(pic_name) if pic_name else "img/PH20240511000648_4_094542_2.jpg"