package com.moral.constant; import lombok.Data; /** * @ClassName RedisConstants * @Description Redis中Key常量 * @Author 陈凯裕 * @Date 2021/4/14 10:08 * @Version TODO **/ @Data public class RedisConstants { /* * 字典数据 redis中的key * 使用Map>接收,key为字典类型名称,Value为对应的数据集合 * */ public static final String DICT_DATA_KEY = "dict_data"; /* * 字典类型 redis中的key * 使用List接收 * */ public static final String DICT_TYPE_KEY = "dict_type"; /* * 因子 redis中的key * 使用Map接收 * */ public static final String SENSOR_KEY = "sensor"; /* * 设备信息前缀 * */ public static final String DEVICE = "device"; /* * 设备状态信息前缀 * */ public static final String STATE = "state"; }