1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  | package com.dy.pipIrrGlobal.command.dto; 
 |    
 |  import lombok.Data; 
 |    
 |  /** 
 |   * @author ZhuBaoMin 
 |   * @date 2024-06-04 11:25 
 |   * @LastEditTime 2024-06-04 11:25 
 |   * @Description 构造命令、发送命令并处理请求结果及执行结果所需参数对象 
 |   */ 
 |    
 |  @Data 
 |  public class Param { 
 |      public static final long serialVersionUID = 202406041126001L; 
 |    
 |      private Long comId; 
 |    
 |      /** 
 |       * 命令类型,1-开发,2-关阀 
 |       */ 
 |      private Byte comType; 
 |    
 |      private String commandCode; 
 |    
 |      private String commandName; 
 |    
 |      private Long intakeId; 
 |    
 |      private String rtuAddr; 
 |    
 |      private String protocol; 
 |    
 |      private Long vcId; 
 |    
 |      /** 
 |       * 视图对象 
 |       */ 
 |      private Object param; 
 |    
 |      private String rtuResultSendWebUrl; 
 |    
 |      private Long operator; 
 |    
 |  } 
 |  
  |