platformx-business-finance-api/src/main/java/com/by4cloud/platformx/business/vo/AgingVo.java
@@ -7,19 +7,23 @@
@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;
   }