| | |
| | | package com.dy.pipIrrProject.controller; |
| | | |
| | | import com.dy.common.webUtil.QueryConditionVo; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.*; |
| | | |
| | | /** |
| | | * @author ZhuBaoMin |
| | | * @date 2023-12-29 10:07 |
| | | * @LastEditTime 2023-12-29 10:07 |
| | | * @Description |
| | | */ |
| | | public class QueryVo { |
| | | |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @ToString(callSuper = true) |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | @Builder |
| | | @Schema(name = "控制器查询条件") |
| | | public class QueryVo extends QueryConditionVo { |
| | | |
| | | @Schema(description = "控制器ID") |
| | | private Long id; |
| | | |
| | | @Schema(description = "控制器编号") |
| | | private String controllerCode; |
| | | |
| | | @Schema(description = "在线状态") |
| | | public Integer onlineState; |
| | | |
| | | @Schema(description = "绑定数量") |
| | | public Integer bindNumber; |
| | | } |