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 16:43 
 | 
 * @LastEditTime 2024-01-31 16:43 
 | 
 * @Description 
 | 
 */ 
 | 
  
 | 
@Data 
 | 
@Schema(title = "电子钱包充值视图对象") 
 | 
public class VoWalletRecharge { 
 | 
    private static final long serialVersionUID = 202401311644001L; 
 | 
  
 | 
    @Schema(title = "农户姓名") 
 | 
    private String name; 
 | 
  
 | 
    @Schema(title = "农户编号") 
 | 
    private String clientNum; 
 | 
  
 | 
    @Schema(title = "手机号") 
 | 
    private String phone; 
 | 
  
 | 
    @Schema(title = "充值金额") 
 | 
    @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) 
 | 
    private Double amount; 
 | 
  
 | 
    @Schema(title = "电子钱包余额") 
 | 
    @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) 
 | 
    private Double afterRecharge; 
 | 
  
 | 
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") 
 | 
    @Schema(title = "充值时间") 
 | 
    private Date rechargeTime; 
 | 
} 
 |