From 13d0243111bf7fc97e5821d7be4f46992d8193c9 Mon Sep 17 00:00:00 2001 From: langjin Date: Thu, 7 Aug 2025 18:24:14 +0800 Subject: [PATCH] =?UTF-8?q?fix(dict):=20=E5=88=9D=E5=A7=8B=E5=8C=96?= =?UTF-8?q?=E5=AD=97=E5=85=B8=E5=A4=B1=E8=B4=A5=E7=9A=84=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/api/v1/services/system/dict_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/api/v1/services/system/dict_service.py b/backend/app/api/v1/services/system/dict_service.py index f2451396..52b6fc68 100644 --- a/backend/app/api/v1/services/system/dict_service.py +++ b/backend/app/api/v1/services/system/dict_service.py @@ -212,7 +212,7 @@ class DictDataService: ) except Exception as e: logger.error(f"初始化字典数据失败: {e}") - raise CustomException(msg=f"初始化字典数据成功 {e}") + raise CustomException(msg=f"初始化字典数据失败 {e}") @classmethod async def get_init_dict_service(cls, redis: Redis, dict_type: str)->List[Dict]: