修复定时任务中奖推荐生成失败问题 - 移除BetRecord模型中不存在的lottery_type字段 - 添加必需的issue字段 - 确保定时任务能正常生成每日推荐

This commit is contained in:
Mars 2025-07-02 14:24:40 +08:00
parent 27550b396c
commit 4afe401568

View File

@ -613,8 +613,8 @@ class PredictionService:
# 保存推荐记录
for rec in daily_recommendations:
bet_record = BetRecord(
lottery_type=rec['lottery_type'],
batch_id=rec['batch_id'],
issue='', # 暂时为空,等开奖后更新
recommend_type=rec['recommend_type'],
numbers=rec['numbers'],
created_at=rec['created_at'],