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
  | package com.dy.pipIrrStatistics.intake.qo; 
 |    
 |  import com.dy.common.webUtil.QueryConditionVo; 
 |  import lombok.Data; 
 |    
 |  /** 
 |   * @author ZhuBaoMin 
 |   * @date 2024-08-08 9:59 
 |   * @LastEditTime 2024-08-08 9:59 
 |   * @Description 
 |   */ 
 |    
 |  @Data 
 |  public class IntakeAmountQO extends QueryConditionVo { 
 |    
 |      /** 
 |       * 年 
 |       */ 
 |      private Integer year; 
 |    
 |      /** 
 |       * 月 
 |       */ 
 |      private Integer month; 
 |    
 |      /** 
 |       * 取水口编号 
 |       */ 
 |      private String intakeNum; 
 |  } 
 |  
  |