wuzeyu
2023-11-30 ee6e575076ba17c1fc8f4ba33253b7ea0fba45f8
pipIrr-platform/pipIrr-mw/pipIrr-mwTest-server/src/main/java/com/dy/testServer/forRmi/MwTestClientStatus.java
New file
@@ -0,0 +1,58 @@
package com.dy.testServer.forRmi;
public class MwTestClientStatus {
   public MwConfigVo confVo ;
   public ResStartVo startVo ;
   public Integer count ;//mwTest上报数据数量
   public Integer overCount ;//mwTest完成全部上报数据RTU数量
   public Boolean over ;//mwTest上报数据结束
   public Long seconds ;//mwTest上报数据用时(秒)
   public MwConfigVo getConfVo() {
      return confVo;
   }
   public void setConfVo(MwConfigVo confVo) {
      this.confVo = confVo;
   }
   public ResStartVo getStartVo() {
      return startVo;
   }
   public void setStartVo(ResStartVo startVo) {
      this.startVo = startVo;
   }
   public Integer getCount() {
      return count;
   }
   public void setCount(Integer count) {
      this.count = count;
   }
   public Boolean getOver() {
      return over;
   }
   public void setOver(Boolean over) {
      this.over = over;
   }
   public Long getSeconds() {
      return seconds;
   }
   public void setSeconds(Long seconds) {
      this.seconds = seconds;
   }
}