package com.by4cloud.platformx.business.vo; import lombok.Data; import java.math.BigDecimal; @Data public class AgingVo { private Long sort; private String overdueRange; private BigDecimal totalAmount; private 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(Long sort,String overdueRange, BigDecimal totalAmount) { this.sort = sort; this.overdueRange = overdueRange; this.totalAmount = totalAmount; } }