cqwu-ehall/cqwu/enums/webvpn.py

21 lines
372 B
Python
Raw Normal View History

2023-06-01 09:03:36 +00:00
from enum import Enum
class ExamRound(str, Enum):
Supplementation = "1"
""" 开学补缓考 """
Scattered = "2"
""" 分散考试 """
Concentration = "3"
""" 集中考试 """
2023-10-17 13:54:16 +00:00
class ScoreSearchType(str, Enum):
""" 成绩查询类型 """
All = "1"
"""入学以来"""
XUENIAN = "2"
"""学年"""
XUEQI = "3"
"""学期"""