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 QueryAddControllerVo 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; |
| | | |
| | | } |