| package com.dy.pipIrrGlobal.voSe; | 
|   | 
| import io.swagger.v3.oas.annotations.media.Schema; | 
| import lombok.*; | 
|   | 
| /** | 
|  * @author ZhuBaoMin | 
|  * @date 2025-01-15  | 
|  * @LastEditTime 2025-01-15 | 
|  * @Description 根据农户编号获取卡信息返回对象 | 
|  */ | 
|   | 
| @Data | 
| @NoArgsConstructor | 
| @AllArgsConstructor | 
| @Builder | 
| @Schema(name = "根据农户编号获取卡信息返回对象") | 
| public class VoCardByClientNum { | 
|   | 
|     @Schema(description = "水卡编号") | 
|     private String cardNum; | 
|   | 
|     @Schema(description = "卡状态码") | 
|     private Integer cardState; | 
|   | 
|     @Schema(description = "卡类型") | 
|     private String cardType; | 
|   | 
|     @Schema(description = "农户姓名") | 
|     private String clientName; | 
|   | 
|     @Schema(description = "农户编号") | 
|     private String clientNum; | 
|   | 
|     @Schema(description = "身份证号") | 
|     private Long idCard; | 
|   | 
|     @Schema(description = "余额") | 
|     private String money; | 
|   | 
|     @Schema(description = "手机号") | 
|     private Long phone; | 
|   | 
|     @Schema(description = "状态名称") | 
|     private String stateName; | 
| }  |