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
  | package com.dy.pipIrrGlobal.voSt; 
 |    
 |  import com.fasterxml.jackson.annotation.JsonPropertyOrder; 
 |  import lombok.Data; 
 |    
 |  /** 
 |   * @author ZhuBaoMin 
 |   * @date 2024-08-12 14:37 
 |   * @LastEditTime 2024-08-12 14:37 
 |   * @Description 统计模块农户视图 
 |   */ 
 |    
 |  @Data 
 |  @JsonPropertyOrder({"clientId","clientName"}) 
 |  public class VoClientStatistics { 
 |      private static final long serialVersionUID = 202408121438001L; 
 |    
 |      /** 
 |       * 农户ID 
 |       */ 
 |      private Long clientId; 
 |    
 |      /** 
 |       * 农户姓名 
 |       */ 
 |      private String clientName; 
 |  } 
 |  
  |