RedisKeyConstants.java 970 Bytes
package com.topdraw.config;

/**
 * @author :
 * @description:\
 * @function :
 * @date :Created in 2022/6/18 13:25
 * @version: :
 * @modified By:
 * @since : modified in 2022/6/18 13:25
 */
public interface RedisKeyConstants {

    String cacheMemberById = "uce::member::id";
    String cacheMemberByCode = "uce::member::code";
    String updateCacheMemberById = "uce::updateMember::id";

    String updateCachePointsByMemberId = "uce::updatePoints::memberId";
    String updateCacheExpByMemberId = "uce::updateExp::memberId";
    String updateCacheCouponByMemberId = "uce::updateCoupon::memberId";

    String cacheUserTvByPlatformAccount = "uce::userTv::platformAccount";
    String cacheTaskProcessByMemberId = "uce::taskProcess::memberId";
    String cacheTaskByTaskTemplateId = "uce::task::taskTemplateId";
    String cacheTaskByEvent = "uce::task::event";
    String cacheCouponById = "uce::coupon::id";
    String cacheRightById = "uce::right::id";
}