| package com.dy.pipIrrProject.mqtt.manure; | 
|   | 
| import com.dy.common.webUtil.QueryConditionVo; | 
| import io.swagger.v3.oas.annotations.media.Schema; | 
| import lombok.*; | 
|   | 
| /** | 
|  * @Author: liurunyu | 
|  * @Date: 2025/6/24 17:21 | 
|  * @Description | 
|  */ | 
|   | 
| @Data | 
| @EqualsAndHashCode(callSuper = false) | 
| @ToString(callSuper = true) | 
| @NoArgsConstructor | 
| @AllArgsConstructor | 
| @Builder | 
| @Schema(name = "水肥机查询条件") | 
| public class QueryVo extends QueryConditionVo { | 
|     @Schema(description = "水肥机名称") | 
|     public String name; | 
| } |