| package com.dy.pipIrrSell.cardOperate.qo; | 
|   | 
| import com.dy.common.webUtil.QueryConditionVo; | 
| import io.swagger.v3.oas.annotations.media.Schema; | 
| import lombok.*; | 
|   | 
| /** | 
|  * @author ZhuBaoMin | 
|  * @date 2024-02-05 11:00 | 
|  * @LastEditTime 2024-02-05 11:00 | 
|  * @Description | 
|  */ | 
|   | 
| @Data | 
| @EqualsAndHashCode(callSuper = false) | 
| @ToString(callSuper = true) | 
| @NoArgsConstructor | 
| @AllArgsConstructor | 
| @Builder | 
| @Schema(name = "IC卡挂失记录查询条件") | 
| public class QoCommonOperate extends QueryConditionVo { | 
|     /** | 
|      * 注销-3,挂失-6,冲正-7,解锁-8 | 
|      */ | 
|     @Schema(description = "操作类型") | 
|     public Integer operateType; | 
|   | 
|     @Schema(description = "农户姓名") | 
|     public String clientName; | 
|   | 
|     @Schema(description = "水卡编号") | 
|     public Long cardNum; | 
|   | 
|     @Schema(description = "挂失时间_开始") | 
|     public String timeStart; | 
|   | 
|     @Schema(description = "挂失时间_结束") | 
|     public String timeStop; | 
| } |