|  |  |  | 
|---|
|  |  |  | 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; | 
|---|
|  |  |  | 
|---|
|  |  |  | public class VoRecharge implements BaseEntity { | 
|---|
|  |  |  | private static final long serialVersionUID = 1L; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "ID") | 
|---|
|  |  |  | private String id; | 
|---|
|  |  |  | //@Schema(title = "ID") | 
|---|
|  |  |  | //private String id; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|---|
|  |  |  | private Long opeId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|---|
|  |  |  | private Long cardId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "农户姓名") | 
|---|
|  |  |  | private String clientName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String phone; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String idCard; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "农户编号") | 
|---|
|  |  |  | private String clientNum; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "水卡编号") | 
|---|
|  |  |  | private String cardNum; | 
|---|
|  |  |  | private String address; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 水卡余额 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private Float money; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|---|
|  |  |  | private Long cardNum; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Integer cardCost; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "充值金额") | 
|---|
|  |  |  | private Float amount; | 
|---|
|  |  |  | 
|---|
|  |  |  | private Float price; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "操作人") | 
|---|
|  |  |  | private String operator; | 
|---|
|  |  |  | private String opr; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String operateType; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") | 
|---|
|  |  |  | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
|---|