| New file | 
 |  |  | 
 |  |  | package com.dy.pipIrrGlobal.voSe; | 
 |  |  |  | 
 |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
 |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
 |  |  | import lombok.Data; | 
 |  |  | import org.springframework.format.annotation.DateTimeFormat; | 
 |  |  |  | 
 |  |  | import java.util.Date; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * @author ZhuBaoMin | 
 |  |  |  * @date 2024-02-05 11:23 | 
 |  |  |  * @LastEditTime 2024-02-05 11:23 | 
 |  |  |  * @Description | 
 |  |  |  */ | 
 |  |  |  | 
 |  |  | @Data | 
 |  |  | @Schema(title = "通用操作记录视图对象") | 
 |  |  | public class VoOperate { | 
 |  |  |     private static final long serialVersionUID = 202402051126001L; | 
 |  |  |  | 
 |  |  |     @Schema(title = "农户姓名") | 
 |  |  |     private String clientName; | 
 |  |  |  | 
 |  |  |     @Schema(title = "农户编号") | 
 |  |  |     private String clientNum; | 
 |  |  |  | 
 |  |  |     @Schema(title = "水卡编号") | 
 |  |  |     private String cardNum; | 
 |  |  |  | 
 |  |  |     @Schema(title = "操作人") | 
 |  |  |     private String operator; | 
 |  |  |  | 
 |  |  |     @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") | 
 |  |  |     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
 |  |  |     @Schema(title = "操作时间") | 
 |  |  |     private Date operateDt; | 
 |  |  |  | 
 |  |  |     //注销查询2个返回值 | 
 |  |  |     @Schema(title = "退回金额") | 
 |  |  |     @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) | 
 |  |  |     private Float refund; | 
 |  |  |  | 
 |  |  |     @Schema(title = "退款方式名称") | 
 |  |  |     private String refundTypeName; | 
 |  |  |  | 
 |  |  |     //挂失1个返回值 | 
 |  |  |     @Schema(title = "卡片余额及冲正后余额") | 
 |  |  |     @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) | 
 |  |  |     private Double money; | 
 |  |  |  | 
 |  |  |     //冲正2个返回值,冲正后余额与挂失共用 | 
 |  |  |     @Schema(title = "冲正前余额") | 
 |  |  |     @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) | 
 |  |  |     private Double systemBalance; | 
 |  |  |  | 
 |  |  |     //解锁1个返回值,与挂失共用 | 
 |  |  | } |