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