| | |
| | | @Data |
| | | public class AgingVo { |
| | | |
| | | private Long sort; |
| | | |
| | | private String overdueRange; |
| | | |
| | | private BigDecimal totalAmount; |
| | | |
| | | private BigDecimal totalPercent; |
| | | |
| | | public AgingVo(String overdueRange,BigDecimal totalAmount, BigDecimal totalPercent) { |
| | | public AgingVo(Long sort,String overdueRange,BigDecimal totalAmount, BigDecimal totalPercent) { |
| | | this.sort = sort; |
| | | this.overdueRange = overdueRange; |
| | | this.totalAmount = totalAmount; |
| | | this.totalPercent = totalPercent; |
| | | } |
| | | |
| | | public AgingVo(String overdueRange, BigDecimal totalAmount) { |
| | | public AgingVo(Long sort,String overdueRange, BigDecimal totalAmount) { |
| | | this.sort = sort; |
| | | this.overdueRange = overdueRange; |
| | | this.totalAmount = totalAmount; |
| | | } |