| New file | 
|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrIrrigate.project; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.dy.common.webUtil.QueryConditionVo; | 
|---|
|  |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
|---|
|  |  |  | import lombok.*; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @author :WuZeYu | 
|---|
|  |  |  | * @Date :2024/5/15  21:11 | 
|---|
|  |  |  | * @LastEditTime :2024/5/15  21:11 | 
|---|
|  |  |  | * @Description | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @EqualsAndHashCode(callSuper = false) | 
|---|
|  |  |  | @ToString(callSuper = true) | 
|---|
|  |  |  | @NoArgsConstructor | 
|---|
|  |  |  | @AllArgsConstructor | 
|---|
|  |  |  | @Builder | 
|---|
|  |  |  | @Schema(name = "项目查询条件") | 
|---|
|  |  |  | public class QueryVo extends QueryConditionVo { | 
|---|
|  |  |  | @Schema(description = "项目名称") | 
|---|
|  |  |  | public String projectName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "项目状态") | 
|---|
|  |  |  | public String projectState; | 
|---|
|  |  |  | } | 
|---|