mirror of
https://github.com/cqwu-ehall/cqwu-ehall.git
synced 2024-11-21 18:38:18 +00:00
13 lines
193 B
Python
13 lines
193 B
Python
from enum import Enum
|
|
|
|
|
|
class ScoreSearchType(str, Enum):
|
|
"""成绩查询类型"""
|
|
|
|
All = "1"
|
|
"""入学以来"""
|
|
XUENIAN = "2"
|
|
"""学年"""
|
|
XUEQI = "3"
|
|
"""学期"""
|