1
0
mirror of synced 2025-12-21 04:28:03 +08:00
Files
SnowFlake-IdGenerator/Python/soure/SnowFlake.py
2021-12-08 23:36:18 +08:00

12 lines
173 B
Python

#!/usr/bin/python
# coding=UTF-8
# 组件编号生成器
class SnowFlake(object):
def __init__(self, options):
self.Options = options
def NextId(self):
return 0