feat: OTA热更新 — 版本检测API + App端WGT下载安装 + app_versions表

This commit is contained in:
2026-08-07 11:49:59 +08:00
parent 0df7215134
commit bff8787e62
7 changed files with 278 additions and 1 deletions

View File

@ -5,6 +5,7 @@ from app.models.product import Product
from app.models.task import Task, TaskRecord
from app.models.task_log import TaskLog
from app.models.notification import Notification
from app.models.app_version import AppVersion
__all__ = [
"Base",
"ProductionOrder",
@ -13,4 +14,5 @@ __all__ = [
"TaskRecord",
"TaskLog",
"Notification",
"AppVersion",
]