|
|
@@ -37,6 +37,7 @@ public class UserServiceImpl implements UserService {
|
|
|
Map<String, String> resultMap = new HashMap<>();
|
|
|
resultMap.put("layer", "无曝光");
|
|
|
resultMap.put("layer_l4", "无曝光");
|
|
|
+ resultMap.put("layer_l6", "无曝光");
|
|
|
|
|
|
if (StringUtils.isEmpty(mid)) {
|
|
|
return resultMap;
|
|
|
@@ -61,8 +62,14 @@ public class UserServiceImpl implements UserService {
|
|
|
|
|
|
String layer4L = basic4lMap.getOrDefault("level", "无曝光");
|
|
|
|
|
|
+
|
|
|
resultMap.put("layer", layer3L);
|
|
|
resultMap.put("layer_l4", layer4L);
|
|
|
+
|
|
|
+ Map<String, String> basic6lMap = JSON.parseObject(layerMap.getOrDefault("basic_l6", "{}"), new TypeReference<Map<String, String>>() {
|
|
|
+ });
|
|
|
+ String layer6L = basic6lMap.getOrDefault("level", "无曝光");
|
|
|
+ resultMap.put("layer_l6", layer6L);
|
|
|
return resultMap;
|
|
|
} catch (Exception e) {
|
|
|
log.error("UserServiceImpl getUserLayer error: ", e);
|