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
45
46
47
48
49
50
51
52
53
  | package com.dy.pipIrrGlobal.voSpecial; 
 |    
 |  import com.alibaba.fastjson2.annotation.JSONField; 
 |  import com.alibaba.fastjson2.writer.ObjectWriterImplToString; 
 |  import com.fasterxml.jackson.annotation.JsonPropertyOrder; 
 |  import lombok.Data; 
 |    
 |  /** 
 |   * @Author: liurunyu 
 |   * @Date: 2025/2/10 9:13 
 |   * @Description 
 |   */ 
 |    
 |  @Data 
 |  @JsonPropertyOrder({"id", 
 |          "intakeId", 
 |          "intakeNum", 
 |          "intakeLng", 
 |          "intakeLat", 
 |          "amount" 
 |  }) 
 |  public class VoTopXIntake { 
 |      private static final long serialVersionUID = 202502100913001L; 
 |      /** 
 |       * 数据记录id(开关阀记录) 
 |       */ 
 |      @JSONField(serializeUsing= ObjectWriterImplToString.class) 
 |      public Long id ; 
 |    
 |      /** 
 |       * 农户ID 
 |       */ 
 |      @JSONField(serializeUsing= ObjectWriterImplToString.class) 
 |      public Long intakeId; 
 |      /** 
 |       * 取水口编号 
 |       */ 
 |      public String intakeNum; 
 |      /** 
 |       * 取水口经度 
 |       */ 
 |      public Double intakeLng; 
 |      /** 
 |       * 取水口纬度 
 |       */ 
 |      public Double intakeLat; 
 |    
 |      /** 
 |       * 用水量 
 |       */ 
 |      public Double amount; 
 |    
 |  } 
 |  
  |