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