mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-16 07:57:33 +08:00
add reconciliation statement in desktop version
This commit is contained in:
@@ -518,6 +518,12 @@ export interface TransactionListInMonthByPageRequest {
|
||||
readonly keyword: string;
|
||||
}
|
||||
|
||||
export interface TransactionReconciliationStatementRequest {
|
||||
readonly accountId: string;
|
||||
readonly startTime: number;
|
||||
readonly endTime: number;
|
||||
}
|
||||
|
||||
export type TransactionGeoLocationResponse = Coordinate;
|
||||
|
||||
export interface TransactionInfoResponse {
|
||||
@@ -655,6 +661,14 @@ export interface TransactionInfoPageWrapperResponse2 {
|
||||
readonly totalCount: number;
|
||||
}
|
||||
|
||||
export interface TransactionReconciliationStatementResponseItem extends TransactionInfoResponse {
|
||||
readonly accountBalance: number;
|
||||
}
|
||||
|
||||
export interface TransactionReconciliationStatementResponse {
|
||||
readonly transactions: TransactionReconciliationStatementResponseItem[];
|
||||
}
|
||||
|
||||
export interface TransactionPageWrapper {
|
||||
readonly items: Transaction[];
|
||||
readonly totalCount?: number;
|
||||
|
||||
Reference in New Issue
Block a user