| New file | 
 |  |  | 
 |  |  | package com.dy.pipIrrBase.rtuUpgrade.task; | 
 |  |  |  | 
 |  |  | import com.dy.common.webUtil.QueryConditionVo; | 
 |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
 |  |  | import lombok.*; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * @Author: liurunyu | 
 |  |  |  * @Date: 2024/11/7 11:34 | 
 |  |  |  * @Description | 
 |  |  |  */ | 
 |  |  | @Data | 
 |  |  | @EqualsAndHashCode(callSuper = false) | 
 |  |  | @ToString(callSuper = true) | 
 |  |  | @NoArgsConstructor | 
 |  |  | @AllArgsConstructor | 
 |  |  | @Builder | 
 |  |  | @Schema(name = "升级任务查询条件") | 
 |  |  | public class QueryTaskVo extends QueryConditionVo { | 
 |  |  |  | 
 |  |  |     @Schema(description = "升级程序") | 
 |  |  |     public String programId; | 
 |  |  |  | 
 |  |  |     @Schema(description = "创建人") | 
 |  |  |     public String creator; | 
 |  |  |  | 
 |  |  | } |