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
  | package com.dy.pipIrrStatistics.stClient; 
 |    
 |  import com.dy.common.webUtil.QueryConditionVo; 
 |  import lombok.Data; 
 |  import lombok.EqualsAndHashCode; 
 |    
 |  /** 
 |   * @Author: liurunyu 
 |   * @Date: 2025/1/3 11:12 
 |   * @Description 
 |   */ 
 |  @Data 
 |  @EqualsAndHashCode(callSuper = false) 
 |  public class StClientQo extends QueryConditionVo { 
 |    
 |      /** 
 |       * 统计年月 
 |       */ 
 |      public String yearMonth; 
 |      /** 
 |       * 年 
 |       */ 
 |      public Integer year; 
 |    
 |      /** 
 |       * 月 
 |       */ 
 |      public Integer month; 
 |    
 |      /** 
 |       * 农户姓名 
 |       */ 
 |      public String name; 
 |  } 
 |  
  |