auto commit
This commit is contained in:
11
Python/source/SnowFlake.py
Normal file
11
Python/source/SnowFlake.py
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/python
|
||||
# coding=UTF-8
|
||||
|
||||
# 组件编号生成器
|
||||
class SnowFlake(object):
|
||||
|
||||
def __init__(self, options):
|
||||
self.Options = options
|
||||
|
||||
def NextId(self):
|
||||
return 0
|
||||
Reference in New Issue
Block a user