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.

SnowFlake.py 180 B

3 years ago
3 years ago
1234567891011
  1. #!/usr/bin/python
  2. # coding=UTF-8
  3. # 组件编号生成器
  4. class SnowFlake(object):
  5. def __init__(self, options):
  6. self.Options = options
  7. def NextId(self) -> int:
  8. return 0