chore: fork from IRIS track 供 LICA 部门独立运行
- 复制来源: /home/yueli/track @ 192c8ee (feature/ai-audit-update) - 组织隔离目标: LICA - 端口规划: 前端 8030 / 后端 8031 / 数据库 8032 - 已排除 deploy.sh、deploy_full.sh、docker-compose.prod.yml(IRIS 生产发布脚本) - 已排除工作区未提交改动,取干净的 192c8ee 状态
This commit is contained in:
14
backend/app/schemas/app_version.py
Normal file
14
backend/app/schemas/app_version.py
Normal file
@ -0,0 +1,14 @@
|
||||
"""App 版本 Schema"""
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class AppVersionResponse(BaseModel):
|
||||
"""返回给 App 的版本信息"""
|
||||
version: str
|
||||
version_code: int
|
||||
has_update: bool
|
||||
wgt_url: str | None = None
|
||||
description: str | None = None
|
||||
force_update: bool = False
|
||||
|
||||
model_config = {"from_attributes": True}
|
||||
Reference in New Issue
Block a user