v2.6更新

This commit is contained in:
2026-05-29 21:07:27 +08:00
parent b2c36cab2c
commit 69adb30fa0
12 changed files with 117 additions and 29 deletions

View File

@@ -320,7 +320,8 @@ async def get_conduct_history(
grouped: bool = Query(False),
related_type: Optional[str] = None,
reason_prefix: Optional[str] = None,
is_revoked: Optional[int] = None
is_revoked: Optional[int] = None,
reason_search: Optional[str] = None
):
"""获取操行分历史记录"""
try:
@@ -337,7 +338,8 @@ async def get_conduct_history(
grouped=grouped,
related_type=related_type,
reason_prefix=reason_prefix,
is_revoked=is_revoked
is_revoked=is_revoked,
reason_search=reason_search
)
return success_response(data=result)
except Exception as e: