pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol4Mqtt/pSdV1/upVos/ManureVo.java
@@ -12,6 +12,18 @@
 */
@Data
public class ManureVo implements Vo4Up {
    @JSONField(name = "flexem_message_id")
    public Integer messageId ;//消息ID
    @JSONField(name = "肥料流量")
    public Float manureFlow ;//肥料流量
    @JSONField(name = "注肥时长")
    public Integer manureTime ;//注肥时长
    @JSONField(name = "搅拌时长")
    public Integer stirTime ;//搅拌时长
    @JSONField(name = "flexem_timestamp")
    public Long devDt ;//设备时间
@@ -27,9 +39,13 @@
    @Override
    public String toString(){
        StringBuilder sb = new StringBuilder();
        sb.append("水肥数据:") ;
        sb.append(" 设备时间:"+devDt) ;
        sb.append(" 设备时间:"+ this.getDevDtStr()) ;
        sb.append("水肥数据=>") ;
        sb.append(" 消息ID:" + messageId + ", ") ;
        sb.append(" 肥料流量:" + manureFlow + ", ") ;
        sb.append(" 注肥时长:" + manureTime + ", ") ;
        sb.append(" 搅拌时长:" + stirTime + ", ") ;
        sb.append(" 设备时间:" + devDt + ", ") ;
        sb.append(" 设备时间:" +  this.getDevDtStr() + ", ") ;
        sb.append("\n") ;
        return sb.toString() ;
    }