feat: initialize aivideo project

This commit is contained in:
2026-04-17 18:33:05 +08:00
commit 14b18d67fe
162 changed files with 26251 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
from pydantic import BaseModel
class SystemConfigItemPayload(BaseModel):
config_key: str
config_value: str
value_type: str = "string"
group_name: str = "default"
description: str = ""
is_public: bool = False
class RedeemBatchCreatePayload(BaseModel):
batch_no: str
points: int
quantity: int
remark: str = ""