This commit is contained in:
SunCheng
2026-02-15 10:10:28 +08:00
parent e51a3edd50
commit a88556c784
92 changed files with 6751 additions and 776 deletions

View File

@@ -84,14 +84,18 @@ public class BudgetApplication(
Limit = result.Month.Limit,
Current = result.Month.Current,
Remaining = result.Month.Limit - result.Month.Current,
UsagePercentage = result.Month.Rate
UsagePercentage = result.Month.Rate,
Trend = result.Month.Trend,
Description = result.Month.Description
},
Year = new BudgetStatsDetail
{
Limit = result.Year.Limit,
Current = result.Year.Current,
Remaining = result.Year.Limit - result.Year.Current,
UsagePercentage = result.Year.Rate
UsagePercentage = result.Year.Rate,
Trend = result.Year.Trend,
Description = result.Year.Description
}
};
}