You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

SnowFlakeM1.py 231 B

3 years ago
123456789101112
  1. #!/usr/bin/python
  2. # coding=UTF-8
  3. from SnowFlake import SnowFlake
  4. # 组件编号生成器
  5. class SnowFlakeM1(SnowFlake):
  6. def __init__(self, options):
  7. self.Options = options
  8. def NextId(self):
  9. return self.Options.WorkerId