| New file | 
|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrBase.divide; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.dy.common.webUtil.QueryConditionVo; | 
|---|
|  |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
|---|
|  |  |  | import lombok.*; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @author wuzeyu | 
|---|
|  |  |  | * @date 2023/12/26 11:12 | 
|---|
|  |  |  | * @LastEditTime 2023/12/26 11:12 | 
|---|
|  |  |  | * @Description | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @EqualsAndHashCode(callSuper = false) | 
|---|
|  |  |  | @ToString(callSuper = true) | 
|---|
|  |  |  | @NoArgsConstructor | 
|---|
|  |  |  | @AllArgsConstructor | 
|---|
|  |  |  | @Builder | 
|---|
|  |  |  | @Schema(name = "分水口查询条件") | 
|---|
|  |  |  | public class DivideVo extends QueryConditionVo { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "分水口名称") | 
|---|
|  |  |  | public String name; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "所属片区") | 
|---|
|  |  |  | public String blockName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "负责人") | 
|---|
|  |  |  | public String header; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "负责人电话") | 
|---|
|  |  |  | public String phone; | 
|---|
|  |  |  | } | 
|---|