- # -*- encoding: utf-8 -*-
- """
- @File : RedisKeyConstant.py
- @Time : 2024/11/20 15:13
- @Author : stephen
- @Email : zhangdongming@asj6.wecom.work
- @Software: PyCharm
- """
- from enum import Enum
- class RedisKeyConstant(Enum):
- # 设备版本信息
- ZOSI_DEVICE_VERSION_INFO = 'ZOSI:DEVICE:VERSION:'
- # 优惠券id锁
- COUPON_ID_LOCK = 'COUPON:ID:LOCK:'
|