| New file | 
|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrBase.client; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.dy.common.webUtil.QueryConditionVo; | 
|---|
|  |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
|---|
|  |  |  | import lombok.*; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @EqualsAndHashCode(callSuper = false) | 
|---|
|  |  |  | @ToString(callSuper = true) | 
|---|
|  |  |  | @NoArgsConstructor | 
|---|
|  |  |  | @AllArgsConstructor | 
|---|
|  |  |  | @Builder | 
|---|
|  |  |  | @Schema(name = "农户查询条件") | 
|---|
|  |  |  | public class QueryVo extends QueryConditionVo { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "县ID") | 
|---|
|  |  |  | public Long countyId ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "镇ID") | 
|---|
|  |  |  | public Long townId ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "村ID") | 
|---|
|  |  |  | public Long villageId ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "片区ID") | 
|---|
|  |  |  | public Long blockId ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "农户姓名") | 
|---|
|  |  |  | public String name; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "农户编号") | 
|---|
|  |  |  | public String num; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "农户电话") | 
|---|
|  |  |  | public String phone; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|