mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-15 15:37:33 +08:00
migrate user data management page to composition API and typescript
This commit is contained in:
@@ -3,11 +3,21 @@ export interface ClearDataRequest {
|
||||
}
|
||||
|
||||
export interface DataStatisticsResponse {
|
||||
readonly totalAccountCount: number;
|
||||
readonly totalTransactionCategoryCount: number;
|
||||
readonly totalTransactionTagCount: number;
|
||||
readonly totalTransactionCount: number;
|
||||
readonly totalTransactionPictureCount: number;
|
||||
readonly totalTransactionTemplateCount: number;
|
||||
readonly totalScheduledTransactionCount: number;
|
||||
readonly totalAccountCount: string;
|
||||
readonly totalTransactionCategoryCount: string;
|
||||
readonly totalTransactionTagCount: string;
|
||||
readonly totalTransactionCount: string;
|
||||
readonly totalTransactionPictureCount: string;
|
||||
readonly totalTransactionTemplateCount: string;
|
||||
readonly totalScheduledTransactionCount: string;
|
||||
}
|
||||
|
||||
export interface DisplayDataStatistics {
|
||||
readonly totalAccountCount: string;
|
||||
readonly totalTransactionCategoryCount: string;
|
||||
readonly totalTransactionTagCount: string;
|
||||
readonly totalTransactionCount: string;
|
||||
readonly totalTransactionPictureCount: string;
|
||||
readonly totalTransactionTemplateCount: string;
|
||||
readonly totalScheduledTransactionCount: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user