mirror of
https://github.com/cqwu-ehall/cqwu-ehall.git
synced 2024-11-22 11:01:20 +00:00
11 lines
200 B
Python
11 lines
200 B
Python
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class ExamRound(str, Enum):
|
||
|
Supplementation = "1"
|
||
|
""" 开学补缓考 """
|
||
|
Scattered = "2"
|
||
|
""" 分散考试 """
|
||
|
Concentration = "3"
|
||
|
""" 集中考试 """
|