🎉初次提交

This commit is contained in:
2025-08-03 16:50:56 +08:00
commit 56bdf5388d
67 changed files with 18379 additions and 0 deletions

16
router/aac/model.py Normal file
View File

@@ -0,0 +1,16 @@
from router.common_model import BaseResponse
from provider.aufe.aac.model import LoveACScoreInfo, LoveACScoreCategory
from typing import List
# 统一响应模型
class ScoreInfoResponse(BaseResponse[LoveACScoreInfo]):
"""爱安财总分信息响应"""
pass
class ScoreListResponse(BaseResponse[List[LoveACScoreCategory]]):
"""爱安财分数明细列表响应"""
pass