move all transactions from one account to another account (#288)

This commit is contained in:
MaysWind
2025-10-11 01:10:13 +08:00
parent 3ce7f6e99a
commit 2cb47bfd75
29 changed files with 974 additions and 41 deletions
+5
View File
@@ -488,6 +488,11 @@ export interface TransactionModifyRequest {
readonly geoLocation?: TransactionGeoLocationRequest;
}
export interface TransactionMoveBetweenAccountsRequest {
readonly fromAccountId: string;
readonly toAccountId: string;
}
export interface TransactionDeleteRequest {
readonly id: string;
}