Files
fastapi-best-architecture/backend/plugin/notice/enums.py
T
Wu Clan 5762834744 Update the ruff rules and format the code (#846)
* Update the ruff rules and format the code

* Update the per-file-ignores

* Update the ci

* Update rules

* Fix codes

* Fix pagination

* Update rules
2025-10-10 19:02:49 +08:00

9 lines
136 B
Python

from backend.common.enums import IntEnum
class NoticeType(IntEnum):
"""通知公告类型"""
NOTICE = 0
ANNOUNCEMENT = 1