样式统一
Some checks failed
Docker Build & Deploy / Build Docker Image (push) Failing after 6s
Docker Build & Deploy / Deploy to Production (push) Has been skipped

This commit is contained in:
孙诚
2025-12-30 17:02:30 +08:00
parent 8ba279e957
commit 1f01d13ed3
15 changed files with 1528 additions and 929 deletions

View File

@@ -24,6 +24,7 @@ public class TransactionRecordController(
[FromQuery] int? type = null,
[FromQuery] int? year = null,
[FromQuery] int? month = null,
[FromQuery] string? reason = null,
[FromQuery] bool sortByAmount = false
)
{
@@ -38,13 +39,15 @@ public class TransactionRecordController(
transactionType,
year,
month,
reason,
sortByAmount);
var total = await transactionRepository.GetTotalCountAsync(
searchKeyword,
classify,
transactionType,
year,
month);
month,
reason);
return new PagedResponse<TransactionRecord>
{