Browse Source

优化天气服务 天气情况判断逻辑

develop
zhaoxianglong 9 months ago
parent
commit
69925e8cec
  1. 7
      zc-business/src/main/java/com/zc/business/controller/WeatherForecastController.java

7
zc-business/src/main/java/com/zc/business/controller/WeatherForecastController.java

@ -267,6 +267,12 @@ public class WeatherForecastController extends BaseController {
String visLevel = jsonObject.getString("visLevel");
Double rhu = jsonObject.getDouble("rhu");
if (rhu > UniversalEnum.SIXTY.getNumber()) {
jsonObject.put("weatherCondition", UniversalEnum.OVERCAST_SKY.getValue());
jsonObject.put("weatherConditionCode", UniversalEnum.OVERCAST_SKY.getNumber());
} else {
if (Objects.equals(visLevel, UniversalEnum.ONE.getValue())) {
jsonObject.put("weatherCondition", UniversalEnum.CLEAR_WEATHER.getValue());
jsonObject.put("weatherConditionCode", UniversalEnum.CLEAR_WEATHER.getNumber());
@ -277,6 +283,7 @@ public class WeatherForecastController extends BaseController {
jsonObject.put("weatherCondition", UniversalEnum.OVERCAST_SKY.getValue());
jsonObject.put("weatherConditionCode", UniversalEnum.OVERCAST_SKY.getNumber());
}
}
} else {
String preLevel = jsonObject.getString("preLevel");

Loading…
Cancel
Save