样式统一
This commit is contained in:
@@ -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>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user