From c9cd6b91170b4e887773672788187b92e778c20e Mon Sep 17 00:00:00 2001 From: xsl Date: Mon, 26 Jan 2026 09:53:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DAdjustmentEnum?= =?UTF-8?q?=E6=9E=9A=E4=B8=BE=E5=80=BC=E4=B8=BA=E8=8B=B1=E6=96=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/models/project.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/models/project.py b/backend/src/models/project.py index a2451ae7..39959a06 100644 --- a/backend/src/models/project.py +++ b/backend/src/models/project.py @@ -6,8 +6,8 @@ from ..config.database import Base class AdjustmentEnum(str, Enum): - YES = "是" - NO = "否" + YES = "yes" + NO = "no" class Project(Base):