| 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-08 9:59 | 
|---|
|  |  |  | * @LastEditTime 2024-08-08 9:59 | 
|---|
|  |  |  | * @Description 取水口用水查询对象、漏算查询对象 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @EqualsAndHashCode(callSuper = false) | 
|---|
|  |  |  | public class IntakeAmountQO extends QueryConditionVo { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 统计年月 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private String yearMonth; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 年 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private Integer year; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 月 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private Integer month; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 取水口编号 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private String intakeNum; | 
|---|
|  |  |  | } | 
|---|