liurunyu
2 天以前 5f514e032986ae9d116aaa55a91c4b0617b6e57a
pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol4Mqtt/pSdV1/upVos/WeatherVo.java
@@ -25,10 +25,10 @@
    //public Integer atmosphericPressure ;
    @JSONField(name = "空气温度")
    public Integer airTemperature ;
    public Float airTemperature ;
    @JSONField(name = "空气湿度")
    public Integer airHumidity ;
    public Float airHumidity ;
    @JSONField(name = "紫外线")
    public Integer ultraviolet ;
@@ -37,10 +37,10 @@
    public Integer lightIntensity ;
    @JSONField(name = "雨量")
    public Integer rainfall ;
    public Float rainfall ;
    @JSONField(name = "风速")
    public Integer windSpeed ;
    public Float windSpeed ;
    @JSONField(name = "风向")
    public Integer windDirection ;
@@ -79,7 +79,7 @@
        sb.append(" 风速:" + windSpeed + ", ") ;
        sb.append(" 风向:" + windDirection + ", ") ;
        sb.append(" 设备时间:" + devDt + ", ") ;
        sb.append(" 设备时间:" +  this.getDevDtStr() + ", ") ;
        sb.append(" 设备时间:" +  this.getDevDtStr() ) ;
        sb.append("\n") ;
        return sb.toString() ;
    }