fix: 修复AdjustmentEnum枚举值为英文

This commit is contained in:
xsl
2026-01-26 09:53:52 +08:00
parent 58a1d50261
commit c9cd6b9117
+2 -2
View File
@@ -6,8 +6,8 @@ from ..config.database import Base
class AdjustmentEnum(str, Enum):
YES = ""
NO = ""
YES = "yes"
NO = "no"
class Project(Base):