• 通过日期时间+自增单数 生成唯一单号
import datetime

order_no=datetime.now().__format__('%Y%m%d%H%M%S') + id
print(order_no)