package com.dy.pipIrrProject.flowMonitoring; 
 | 
  
 | 
import com.dy.common.webUtil.QueryConditionVo; 
 | 
import io.swagger.v3.oas.annotations.media.Schema; 
 | 
import lombok.*; 
 | 
  
 | 
/** 
 | 
 * @author ZhuBaoMin 
 | 
 * @date 2024-01-04 17:21 
 | 
 * @LastEditTime 2024-01-04 17:21 
 | 
 * @Description 
 | 
 */ 
 | 
  
 | 
@Data 
 | 
@EqualsAndHashCode(callSuper = false) 
 | 
@ToString(callSuper = true) 
 | 
@NoArgsConstructor 
 | 
@AllArgsConstructor 
 | 
@Builder 
 | 
@Schema(name = "管网流量监测站查询条件") 
 | 
public class QueryVo extends QueryConditionVo { 
 | 
    @Schema(description = "流量监测站编号") 
 | 
    private Long id; 
 | 
  
 | 
    @Schema(description = "流量监测站名称") 
 | 
    public String name; 
 | 
  
 | 
    @Schema(title = "绑定状态") 
 | 
    private Integer bindState; 
 | 
} 
 |