def get_match_hero_summary(self, account_id):
return Database.session.query(MatchHeroSummary).join(MatchHeroSummary.hero). \
filter(MatchHeroSummary.account_id == account_id). \
order_by(desc(MatchHeroSummary.matches)). \
order_by(desc(MatchHeroSummary.player_win)). \
limit(LIMIT_DATA).all()
data_access.py 文件源码
python
阅读 21
收藏 0
点赞 0
评论 0
评论列表
文章目录