WIP-CHECKPOINT[auth-refactor]: 固化工程师崩溃前部分成果 + 同树其他未提交WIP(仅源码,不含密钥/二进制)-- 待重激活工程师续作

This commit is contained in:
Simon
2026-07-07 21:52:11 +08:00
parent 242c1967ff
commit fab75760e0
203 changed files with 21504 additions and 3345 deletions
+19
View File
@@ -93,6 +93,25 @@ class QuickReplyResponse(BaseModel):
model_config = {"from_attributes": True}
# --------------------------------------------------------------------------
# 审核快速回复模板 Schema
# --------------------------------------------------------------------------
class QuickReplyApprove(BaseModel):
"""审核通过快速回复模板请求 Schema。"""
pass
class QuickReplyReject(BaseModel):
"""驳回快速回复模板请求 Schema。
Attributes:
reason: 驳回原因
"""
reason: str = Field(..., min_length=1, max_length=500, description="驳回原因")
# --------------------------------------------------------------------------
# 快速回复模板列表响应 Schema
# --------------------------------------------------------------------------