Files
2026-08-01 16:50:55 +08:00

8 lines
147 B
Python

"""模型共用的小工具。"""
import uuid
def new_uuid() -> str:
"""主键默认值:UUID4 字符串。"""
return str(uuid.uuid4())