This commit is contained in:
2025-03-29 16:13:35 +08:00
parent 7d0d59677d
commit 55057185c6
16 changed files with 1627 additions and 420 deletions

15
model/items.py Normal file
View File

@@ -0,0 +1,15 @@
from pydantic import BaseModel
from typing import Optional
class Item(BaseModel):
id: int
key: str
name: str
icon: str
status: str
phone: int
lost_description: Optional[str]
find_ip: Optional[str]
create_time: str
lost_time: Optional[str]