| New file | 
|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrSell.clientCard.qo; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.dy.common.webUtil.QueryConditionVo; | 
|---|
|  |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
|---|
|  |  |  | import lombok.*; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @author ZhuBaoMin | 
|---|
|  |  |  | * @date 2024-01-26 19:11 | 
|---|
|  |  |  | * @LastEditTime 2024-01-26 19:11 | 
|---|
|  |  |  | * @Description | 
|---|
|  |  |  | */ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @EqualsAndHashCode(callSuper = false) | 
|---|
|  |  |  | @ToString(callSuper = true) | 
|---|
|  |  |  | @NoArgsConstructor | 
|---|
|  |  |  | @AllArgsConstructor | 
|---|
|  |  |  | @Builder | 
|---|
|  |  |  | @Schema(name = "水卡记录查询条件") | 
|---|
|  |  |  | public class QoCards extends QueryConditionVo { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "农户编号") | 
|---|
|  |  |  | public Long clientNum; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "农户姓名") | 
|---|
|  |  |  | private String clientName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "水卡编号") | 
|---|
|  |  |  | public Long cardNum; | 
|---|
|  |  |  | } | 
|---|