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
  | package com.dy.pipIrrGlobal.voIr; 
 |    
 |  import com.fasterxml.jackson.annotation.JsonPropertyOrder; 
 |  import lombok.Data; 
 |    
 |  /** 
 |   * @author ZhuBaoMin 
 |   * @date 2025-04-18 17:08 
 |   * @LastEditTime 2025-04-18 17:08 
 |   * @Description 取水口视图对象,用于轮灌组详情展示取水口信息,包括名称和在线情况 
 |   */ 
 |    
 |  @Data 
 |  @JsonPropertyOrder({"intakeName", "rtuAddr", "isOnLine", "isOpen"}) 
 |  public class VoIntake { 
 |      private static final long serialVersionUID = 202504181410001L; 
 |    
 |      /** 
 |       * 取水口名称 
 |       */ 
 |      private String intakeName; 
 |    
 |      /** 
 |       * rtu地址 
 |       */ 
 |      private String rtuAddr; 
 |    
 |      /** 
 |       * 是否在线 
 |       */ 
 |      private Boolean isOnLine; 
 |    
 |      /** 
 |       * 是否打开 
 |       */ 
 |      private Boolean isOpen; 
 |  } 
 |  
  |