This commit is contained in:
2023-08-16 19:47:03 +08:00
parent 49e939c550
commit f77e7f48ab
5 changed files with 61 additions and 1 deletions

View File

@@ -0,0 +1,44 @@
package com.njcn.redis.pojo.enums;
/**
* 类的介绍:
*
* @author xuyang
* @version 1.0.0
* @createTime 2023/8/16 16:22
*/
public interface AppRedisKey {
/**
* 设备模板前缀
*/
String MODEL = "MODEL";
/**
* 监测点模板前缀
*/
String LINE = "LINE";
/**
* 设备软件信息前缀
*/
String SOFTINFO = "SOFTINFO";
/**
* 电能质量监测点详细数据
*/
String LINE_DATA = "LINEDATA";
/**
* 指标字典和influxDB表名数据
*/
String ELE_EPD_PQD = "ELEEPDPQD";
/**
* 监测点位置数据
*/
String LINE_POSITION = "LINEPOSITION";
}