소스 검색

提示语句修改

gao.qiang 9 달 전
부모
커밋
861763622b
1개의 변경된 파일7개의 추가작업 그리고 7개의 파일을 삭제
  1. 7 7
      vehicle-sdk/src/main/java/com/ozs/controller/upload/GeoHazardMonitorTokenController.java

+ 7 - 7
vehicle-sdk/src/main/java/com/ozs/controller/upload/GeoHazardMonitorTokenController.java

@@ -1724,11 +1724,11 @@ public class GeoHazardMonitorTokenController {
                 return SM4Utils.encryptData_ECB(JSONObject.toJSONString(AjaxResults1), key);
             }
             if (ObjectUtils.isEmpty(preAlarmResponse.getPreAlarmNum())) {
-                AjaxResults1 = new AjaxResults(0, "预警目标个数不为空");
+                AjaxResults1 = new AjaxResults(0, "预警目标个数不为空");
                 return SM4Utils.encryptData_ECB(JSONObject.toJSONString(AjaxResults1), key);
             }
             if (ObjectUtils.isEmpty(preAlarmResponse.getPreAlarmTime())) {
-                AjaxResults1 = new AjaxResults(0, "预警时间不为空");
+                AjaxResults1 = new AjaxResults(0, "预警时间不为空");
                 return SM4Utils.encryptData_ECB(JSONObject.toJSONString(AjaxResults1), key);
             }
             if (!preAlarmResponse.getPreAlarmTime().toString().matches(REGEX)) {
@@ -1736,24 +1736,24 @@ public class GeoHazardMonitorTokenController {
                 return SM4Utils.encryptData_ECB(JSONObject.toJSONString(AjaxResults1), key);
             }
             if (ObjectUtils.isEmpty(preAlarmResponse.getPreAlarmList())) {
-                AjaxResults1 = new AjaxResults(0, "预警目标集合不为空");
+                AjaxResults1 = new AjaxResults(0, "预警目标集合不为空");
                 return SM4Utils.encryptData_ECB(JSONObject.toJSONString(AjaxResults1), key);
             }
             for (PreAlarmResponse.PreAlarmList preAlarmList : preAlarmResponse.getPreAlarmList()) {
                 if (ObjectUtils.isEmpty(preAlarmList.getContent())) {
-                    AjaxResults1 = new AjaxResults(0, "预警内容不为空");
+                    AjaxResults1 = new AjaxResults(0, "预警内容不为空");
                     return SM4Utils.encryptData_ECB(JSONObject.toJSONString(AjaxResults1), key);
                 }
                 if (ObjectUtils.isEmpty(preAlarmList.getDistance())) {
-                    AjaxResults1 = new AjaxResults(0, "目标点离机车的距离不为空");
+                    AjaxResults1 = new AjaxResults(0, "目标点离机车的距离不为空");
                     return SM4Utils.encryptData_ECB(JSONObject.toJSONString(AjaxResults1), key);
                 }
                 if (ObjectUtils.isEmpty(preAlarmList.getLevel())) {
-                    AjaxResults1 = new AjaxResults(0, "预警级别不为空");
+                    AjaxResults1 = new AjaxResults(0, "预警级别不为空");
                     return SM4Utils.encryptData_ECB(JSONObject.toJSONString(AjaxResults1), key);
                 }
                 if (ObjectUtils.isEmpty(preAlarmList.getTargetType())) {
-                    AjaxResults1 = new AjaxResults(0, "预警目标点类型不为空");
+                    AjaxResults1 = new AjaxResults(0, "预警目标点类型不为空");
                     return SM4Utils.encryptData_ECB(JSONObject.toJSONString(AjaxResults1), key);
                 }
             }