1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | package com.dy.common.mw.protocol.rtuState; 
 |    
 |  import com.dy.common.mw.protocol.NotifyInfo; 
 |    
 |  /** 
 |   * @Author: liurunyu 
 |   * @Date: 2024/11/4 11:20 
 |   * @Description 
 |   */ 
 |  public class UpgradeStateInfo implements NotifyInfo { 
 |      /** 
 |       * RTU处理升级数据结果 
 |       */ 
 |      public Boolean rtuDealResult ; 
 |      public UpgradeStateInfo(boolean rtuDealResult){ 
 |          this.rtuDealResult = rtuDealResult ; 
 |      } 
 |  } 
 |  
  |