package com.nq.utils.redis; import org.omg.CORBA.PUBLIC_MEMBER; /** * redis Key * */ public class RedisKeyConstant { /** * 基础数据key * */ public static final String RK_BASE_STOCK = "rk_base_stock"; /** * 股票实时数据key * */ public static final String RK_REAL_TIME_STOCK = "rk_real_time_stock"; /** * 股票实时数据key * */ public static final String RK_COMPANY_INFO = "rk_company_info"; /** * 股票K线图数据key * */ public static final String RK_STOCK_KDATA = "rk_stock_kdata"; }