| New file | 
 |  |  | 
 |  |  | package com.dy.pipIrrStatistics.intake.qo; | 
 |  |  |  | 
 |  |  | import com.dy.common.webUtil.QueryConditionVo; | 
 |  |  | import lombok.Data; | 
 |  |  | import lombok.EqualsAndHashCode; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * @author ZhuBaoMin | 
 |  |  |  * @date 2024-08-09 11:18 | 
 |  |  |  * @LastEditTime 2024-08-09 11:18 | 
 |  |  |  * @Description 统计农户用水查询对象 | 
 |  |  |  */ | 
 |  |  |  | 
 |  |  | @Data | 
 |  |  | @EqualsAndHashCode(callSuper = false) | 
 |  |  | public class ClientAmountQO extends QueryConditionVo { | 
 |  |  |     /** | 
 |  |  |      * 统计年月 | 
 |  |  |      */ | 
 |  |  |     private String yearMonth; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 年 | 
 |  |  |      */ | 
 |  |  |     private Integer year; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 月 | 
 |  |  |      */ | 
 |  |  |     private Integer month; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 农户姓名 | 
 |  |  |      */ | 
 |  |  |     private String clientName; | 
 |  |  | } |