| New file | 
|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrSell.cancel; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.dy.common.webUtil.QueryConditionVo; | 
|---|
|  |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
|---|
|  |  |  | import lombok.*; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @author ZhuBaoMin | 
|---|
|  |  |  | * @date 2023/12/6 14:18 | 
|---|
|  |  |  | * @LastEditTime 2023/12/6 14:18 | 
|---|
|  |  |  | * @Description | 
|---|
|  |  |  | */ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @EqualsAndHashCode(callSuper = false) | 
|---|
|  |  |  | @ToString(callSuper = true) | 
|---|
|  |  |  | @NoArgsConstructor | 
|---|
|  |  |  | @AllArgsConstructor | 
|---|
|  |  |  | @Builder | 
|---|
|  |  |  | @Schema(name = "IC卡注销记录查询条件") | 
|---|
|  |  |  | public class QueryVo extends QueryConditionVo { | 
|---|
|  |  |  | @Schema(description = "农户姓名") | 
|---|
|  |  |  | public String clientName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "水卡编号") | 
|---|
|  |  |  | public String cardNum; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "注销时间_开始") | 
|---|
|  |  |  | public String cancelTimeStart; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "注销时间_结束") | 
|---|
|  |  |  | public String cancelTimeStop; | 
|---|
|  |  |  | } | 
|---|