liding
2026-04-23 1b3d13f691957d4fffdfb3671dc09f66b6e3dfd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.ruoyi.purchase.dto;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDate;
 
@Data
public class PaymentHistoryRecordVo {
 
    /** 发生时间 */
    private LocalDate happenTime;
 
    /** 发票金额 */
    private BigDecimal invoiceAmount;
 
    /** 类型 1 发票登记  0 回款登记 */
    private int type;
 
    /** 本次回款金额 */
    private BigDecimal currentPaymentAmount;
 
    /** 应付金额 */
    private BigDecimal payableAmount;
}