|  |  | 
 |  |  |  | 
 |  |  | import com.baomidou.mybatisplus.annotation.*; | 
 |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
 |  |  | import com.ruoyi.framework.aspectj.lang.annotation.Excel; | 
 |  |  | import lombok.Data; | 
 |  |  |  | 
 |  |  | import java.math.BigDecimal; | 
 |  |  | 
 |  |  |     /** | 
 |  |  |      * 本次付款金额 | 
 |  |  |      */ | 
 |  |  |     @Excel(name = "付款金额") | 
 |  |  |     private BigDecimal currentPaymentAmount; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 付款形式 | 
 |  |  |      */ | 
 |  |  |     @Excel(name = "付款形式") | 
 |  |  |     private String paymentMethod; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  | 
 |  |  |      * 付款日期 | 
 |  |  |      */ | 
 |  |  |     @JsonFormat(pattern = "yyyy-MM-dd") | 
 |  |  |     @Excel(name = "付款日期", width = 30, dateFormat = "yyyy-MM-dd") | 
 |  |  |     private Date paymentDate; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 登记日期 | 
 |  |  |      */ | 
 |  |  |     @JsonFormat(pattern = "yyyy-MM-dd") | 
 |  |  |     @Excel(name = "登记日期", width = 30, dateFormat = "yyyy-MM-dd") | 
 |  |  |     private Date registrationtDate; | 
 |  |  |  | 
 |  |  |     /** |