This commit is contained in:
fengchuanhn@gmail.com
2026-05-21 01:47:21 +08:00
parent 7f57dfa9ed
commit 5ee6a57dd1
29 changed files with 794 additions and 18 deletions

12
app/schemas/oem_public.py Normal file
View File

@@ -0,0 +1,12 @@
from pydantic import BaseModel, ConfigDict
class OemPublicBrandingOut(BaseModel):
"""对外公开的品牌信息(无需登录)。"""
model_config = ConfigDict(from_attributes=True)
oem_id: int
software_name: str = ""
logo_url: str | None = None
wechat: str | None = None