This commit is contained in:
2026-06-13 17:57:43 +08:00
parent 68678304ff
commit a0f441d8ae
28 changed files with 1933 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
"""心情叶 Schema"""
from pydantic import BaseModel, Field
class LeafUpdate(BaseModel):
mood: str | None = Field(None, max_length=20)
note: str | None = Field(None, max_length=500)