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