第一次提交

This commit is contained in:
2026-08-01 16:50:55 +08:00
commit c8f9e39039
68 changed files with 6016 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
"""模型共用的小工具。"""
import uuid
def new_uuid() -> str:
"""主键默认值:UUID4 字符串。"""
return str(uuid.uuid4())