WXOperatorEnum.py 361 B

1234567891011121314151617181920
  1. # -*- encoding: utf-8 -*-
  2. """
  3. 五兴科技 运营商枚举类
  4. @File : WXOperatorEnum.py
  5. @Time : 2023/5/8 13:53
  6. @Author : stephen
  7. @Email : zhangdongming@asj6.wecom.work
  8. @Software: PyCharm
  9. """
  10. from enum import IntEnum, unique
  11. @unique
  12. class WXOperatorEnum(IntEnum):
  13. # 联通
  14. UNICOM = 1,
  15. # 移动
  16. MOBILE = 2,
  17. # 电信
  18. TELECOM = 3