fix(user): 修复用户注册逻辑并更新Redis键格式
- 修改设备模板和监测点位置的Redis键格式,统一添加冒号后缀 - 移除未使用的ResponseEntity导入 - 简化用户注册流程,移除重复的手机号验证逻辑 - 在网关配置中添加新的白名单接口路径
This commit is contained in:
@@ -13,7 +13,7 @@ public interface AppRedisKey {
|
||||
/**
|
||||
* 设备模板前缀
|
||||
*/
|
||||
String MODEL = "MODEL";
|
||||
String MODEL = "MODEL:";
|
||||
|
||||
|
||||
/**
|
||||
@@ -39,7 +39,7 @@ public interface AppRedisKey {
|
||||
/**
|
||||
* 监测点位置数据
|
||||
*/
|
||||
String LINE_POSITION = "LINEPOSITION";
|
||||
String LINE_POSITION = "LINEPOSITION:";
|
||||
|
||||
/**
|
||||
* rocketMQ消费key
|
||||
|
||||
Reference in New Issue
Block a user