| 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 QueryControllerVo extends QueryConditionVo { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "升级任务id") | 
|---|
|  |  |  | public Long taskId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "取水口编号") | 
|---|
|  |  |  | public String intakeNum; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "控制器地址") | 
|---|
|  |  |  | public String rtuAddr; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "通信协议名称") | 
|---|
|  |  |  | public String protocolName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "通信协议版本号") | 
|---|
|  |  |  | public Integer protocolVersion; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|