New file |
| | |
| | | package com.dy.pipIrrProject.flowMonitoring; |
| | | |
| | | import com.dy.common.webUtil.QueryConditionVo; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.*; |
| | | |
| | | /** |
| | | * @author :WuZeYu |
| | | * @Date :2024/1/15 11:12 |
| | | * @LastEditTime :2024/1/15 11:12 |
| | | * @Description |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @ToString(callSuper = true) |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | @Builder |
| | | @Schema(name = "管网流量计查询条件") |
| | | public class QueryVoFlowMeter extends QueryConditionVo { |
| | | |
| | | @Schema(description = "流量计编号") |
| | | public String code; |
| | | |
| | | @Schema(title = "在线状态") |
| | | private Integer onlineState; |
| | | } |