shiyunteng
2026-06-22 838618d0d4a7dd3b585a3a7390fa389e555c9bb0
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;
    }
}