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-01-31 18:29 
 | 
 * @LastEditTime 2024-01-31 18:29 
 | 
 * @Description 
 | 
 */ 
 | 
  
 | 
@Data 
 | 
@Schema(title = "电子钱包退款视图对象") 
 | 
public class VoWalletRefund { 
 | 
    private static final long serialVersionUID = 202401311830001L; 
 | 
  
 | 
    @Schema(title = "农户姓名") 
 | 
    private String name; 
 | 
  
 | 
    @Schema(title = "农户编号") 
 | 
    private String clientNum; 
 | 
  
 | 
    @Schema(title = "手机号") 
 | 
    private String phone; 
 | 
  
 | 
    @Schema(title = "申请退款金额") 
 | 
    private Double refundAmount; 
 | 
  
 | 
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") 
 | 
    @Schema(title = "申请时间") 
 | 
    private Date applicationTime; 
 | 
  
 | 
    @Schema(title = "退款状态代码") 
 | 
    private Byte refundStatus; 
 | 
  
 | 
    @Schema(title = "退款状态名称") 
 | 
    private String refundStatusName; 
 | 
  
 | 
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") 
 | 
    @Schema(title = "审核时间") 
 | 
    private Date auditTime; 
 | 
  
 | 
    @Schema(title = "审核备注") 
 | 
    private String remarks; 
 | 
} 
 |