| New file | 
 |  |  | 
 |  |  | package com.dy.pipIrrStatistics.intaker; | 
 |  |  |  | 
 |  |  | import com.dy.common.webUtil.QueryConditionVo; | 
 |  |  | import lombok.Data; | 
 |  |  | import lombok.EqualsAndHashCode; | 
 |  |  |  | 
 |  |  | import java.util.Date; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * @Author: liurunyu | 
 |  |  |  * @Date: 2024/12/12 16:34 | 
 |  |  |  * @Description | 
 |  |  |  */ | 
 |  |  | @Data | 
 |  |  | @EqualsAndHashCode(callSuper = false) | 
 |  |  | public class IntakerQo extends QueryConditionVo { | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 统计年月 | 
 |  |  |      */ | 
 |  |  |     public String yearMonth; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 查询开始日期(年月日) | 
 |  |  |      */ | 
 |  |  |     public Date startDt ; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 查询截止日期(年月日) | 
 |  |  |      */ | 
 |  |  |     public Date endDt ; | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 年 | 
 |  |  |      */ | 
 |  |  |     public Integer year; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 月 | 
 |  |  |      */ | 
 |  |  |     public Integer month; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 取水口编号 | 
 |  |  |      */ | 
 |  |  |     public String intakeNum; | 
 |  |  | } |