A8 多套交付包(packaging_task.py): - 修复交付包只打第1条混乱note的bug,按ImageCandidate.strategy分A/B/C组 - 每组生独立note_0N夹(6图+文案.txt),同seq留最新去重,老数据兼容 - task74端到端验:3套各6图,独立agent7项交叉验证全过 M4 归档(tasks.py/exports.py/前端): - list_tasks加date_from/date_to/product_id筛选+product_name批量填(防N+1) - 新增exports.py:产品JSON导出+标杆CSV导出(UTF-8 BOM) - 前端HistoryFilters日期/产品筛选+产品列+打回原因红banner - response.py加raise_param_error;独立agent验A1/A2/A9通过 R5 产品多图(product_images.py/020迁移/前端): - product_images表+5端点(上传/列/改场景/设主图/删图) - 生图按ROLE_SCENE_PREFERENCE选对应场景图,回落primary - 前端ProductImageManager多图画廊 R6 账号config拆页(settings/): - 配置页按角色拆/settings(运营+组长+admin)+/config(仅admin) - Key只显末4位不显余额(守红线) 核销表对齐真实代码状态:D1改稿框/M7裂变/E12评图分纠偏为已完成(曾漏回写) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
app/models/
SQLAlchemy ORM 模型占位,Alembic 001-004 按顺序建:
Alembic 001 — 从banana搬3张(改造)
- user.py # users(删credits字段)
- login_record.py # login_records
- user_preference.py # user_preferences(UI设置偏好)
Alembic 002 — 多租户基础(全新)
- workspace.py # workspaces
- workspace_member.py # workspace_members(user+workspace+角色)
- user_api_key.py # user_api_keys(Fernet加密,UNIQUE user_id+workspace_id+provider)
Alembic 003 — 业务主体7张(全新)
- product.py # products(含text_angles/custom_prompt/source/workspace_id)
- benchmark_note.py # benchmark_notes
- generation_task.py # generation_tasks(状态机+审核字段平铺)
- text_candidate.py # text_candidates(source=ai/import双轨)
- image_candidate.py # image_candidates
- delivery_package.py # delivery_packages
- banned_word.py # banned_words(三级level)
Alembic 004 — 飞轮(全新)
- preference_event.py # preference_events(含data_ownership字段)
铁律
- 所有业务表有 workspace_id 字段
- generation_tasks 审核字段平铺:review_status/reviewer_id/reviewed_at/reject_reason/approved_at/archived_at
- preference_events.signal_weight 初始默认值:选文案+3/选图+3/通过+5/打回-3/重生成-1