| package com.dy.pipIrrGlobal.voSe; | 
|   | 
| import com.alibaba.fastjson2.annotation.JSONField; | 
| import com.alibaba.fastjson2.writer.ObjectWriterImplToString; | 
| import com.dy.common.po.BaseEntity; | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import io.swagger.v3.oas.annotations.media.Schema; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * @author ZhuBaoMin | 
|  * @date 2023-12-27 19:22 | 
|  * @LastEditTime 2023-12-27 19:22 | 
|  * @Description | 
|  */ | 
|   | 
| @Data | 
| @Schema(title = "IC卡视图对象") | 
| public class VoCardInfo implements BaseEntity { | 
|     private static final long serialVersionUID = 1L; | 
|   | 
|     @Schema(title = "水卡编号") | 
|     @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|     private Long cardNum; | 
|   | 
|     @Schema(title = "卡片类型") | 
|     private String cardType; | 
|   | 
|     @Schema(title = "余额") | 
|     @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) | 
|     private Float money; | 
|   | 
|     @Schema(title = "水卡状态") | 
|     private String state; | 
|   | 
| } |