shiyunteng
2026-06-18 5badb0e02901c3ea5570fdb9cf497aec7e48fd65
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
26
package com.by4cloud.platformx.business.vo;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class AgingVo {
 
    private String overdueRange;
 
    private BigDecimal totalAmount;
 
    private BigDecimal totalPercent;
 
    public AgingVo(String overdueRange,BigDecimal totalAmount, BigDecimal totalPercent) {
        this.overdueRange = overdueRange;
        this.totalAmount = totalAmount;
        this.totalPercent = totalPercent;
    }
 
    public AgingVo(String overdueRange, BigDecimal totalAmount) {
        this.overdueRange = overdueRange;
        this.totalAmount = totalAmount;
    }
}