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
  | package com.dy.pipIrrGlobal.voPr; 
 |    
 |  import com.dy.common.po.BaseEntity; 
 |  import lombok.Data; 
 |    
 |  /** 
 |   * @author ZhuBaoMin 
 |   * @date 2024-05-27 17:02 
 |   * @LastEditTime 2024-05-27 17:02 
 |   * @Description 在线取水口对象 
 |   */ 
 |    
 |  @Data 
 |  public class VoOnLineIntake implements BaseEntity { 
 |      private static final long serialVersionUID = 202405271703001L; 
 |    
 |      /** 
 |       * 取水口ID 
 |       */ 
 |      private String intakeId; 
 |    
 |      /** 
 |       * 阀控器地址 
 |       */ 
 |      private String rtuAddr; 
 |    
 |      /** 
 |       * 取水口编号 
 |       */ 
 |      private String intakeNum; 
 |    
 |      /** 
 |       * 是否在线 
 |       */ 
 |      private Boolean isOnLine; 
 |  } 
 |  
  |