package com.dy.pipIrrGlobal.voSe; 
 | 
  
 | 
import io.swagger.v3.oas.annotations.media.Schema; 
 | 
import lombok.Data; 
 | 
  
 | 
/** 
 | 
 * @author :WuZeYu 
 | 
 * @Date :2024/6/26  17:14 
 | 
 * @LastEditTime :2024/6/26  17:14 
 | 
 * @Description 
 | 
 */ 
 | 
@Data 
 | 
@Schema(title = "农户卡视图对象") 
 | 
public class VoCards2 { 
 | 
    private static final long serialVersionUID = 202406261715001L; 
 | 
  
 | 
    @Schema(title = "水卡ID") 
 | 
    private String clientCardId; 
 | 
  
 | 
    @Schema(title = "农户ID") 
 | 
    private String clientId; 
 | 
  
 | 
    @Schema(title = "农户编号") 
 | 
    private String clientNum; 
 | 
  
 | 
    @Schema(title = "农户姓名") 
 | 
    private String clientName; 
 | 
  
 | 
    @Schema(title = "水卡编号") 
 | 
    private String cardNum; 
 | 
  
 | 
    @Schema(title = "电话号码") 
 | 
    private String phone; 
 | 
  
 | 
    @Schema(title = "身份证号码") 
 | 
    private String idCard; 
 | 
  
 | 
    @Schema(title = "水卡状态") 
 | 
    private Integer cardState; 
 | 
  
 | 
    @Schema(title = "水卡状态名称") 
 | 
    private String stateName; 
 | 
  
 | 
    @Schema(title = "水卡类型") 
 | 
    private String cardType; 
 | 
  
 | 
    @Schema(title = "余额") 
 | 
    private String money; 
 | 
} 
 |