| New file | 
 |  |  | 
 |  |  | package com.dy.pipIrrBase.block; | 
 |  |  |  | 
 |  |  | 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 = "片区名称") | 
 |  |  |     public String name; | 
 |  |  |  | 
 |  |  |     @Schema(description = "负责人") | 
 |  |  |     public String header; | 
 |  |  |  | 
 |  |  |     @Schema(description = "负责人电话") | 
 |  |  |     public String phone; | 
 |  |  |  | 
 |  |  |     @Schema(description = "种植面积") | 
 |  |  |     public Integer area; | 
 |  |  | } |